:root {
  --primary-color: #F79C92;
  --secondary-color: #E88A82;
  --accent-color: #B22B5B;
  --light-color: #F5F5F5;
  --dark-color: #8B4545;
  --gradient-primary: linear-gradient(135deg, #F79C92 0%, #E88A82 100%);
  --hover-color: #E68B81;
  --background-color: #FFFCFC;
  --text-color: #4A3A3A;
  --border-color: rgba(247, 156, 146, 0.22);
  --divider-color: rgba(232, 138, 130, 0.12);
  --shadow-color: rgba(232, 138, 130, 0.13);
  --highlight-color: #2ECC71;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--alt-font);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--text-color);
  background-color: var(--background-color);
}

.pattern-bg {
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(247, 156, 146, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(245, 245, 245, 0.5) 0%, transparent 45%),
    linear-gradient(180deg, transparent 0%, rgba(232, 138, 130, 0.015) 100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.info-section {
  background: white;
  padding: 3.3rem 1.2rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 15px var(--shadow-color);
}

.info-content {
  max-width: 1000px;
  margin: 0 auto;
}

.info-section h2 {
  font-family: var(--main-font);
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
  text-align: center;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.info-card {
  background: var(--light-color);
  padding: 1.9rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(247, 156, 146, 0.1), transparent);
  transition: left 0.5s ease;
}

.info-card:hover::after {
  left: 100%;
}

.info-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
  box-shadow: 0 8px 25px var(--shadow-color);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.info-card-icon {
  width: 58px;
  height: 58px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
}

.info-card h3 {
  font-family: var(--main-font);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.info-card p {
  font-size: 0.89rem;
  line-height: 1.6;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
  border-bottom: 3px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 12%;
  width: 32px;
  height: 32px;
  background: var(--light-color);
  transform: translateY(-50%) rotate(45deg);
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 3px 10px var(--shadow-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2.7rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.7rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 18px var(--shadow-color);
  border: 2px solid var(--light-color);
}

.product-image {
  width: 100%;
  padding: 27px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .product-image {
    padding: 27px 54px;
  }
}

.product-image:hover {
  transform: scale(1.02);
}

.guarantee-block {
  background: var(--light-color);
  color: var(--text-color);
  padding: 1.6rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.9rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 0.9rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 43px;
  height: 43px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 1.2rem 2.2rem;
  border: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 5px 18px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 7px 25px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.price {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.1rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.91rem;
  margin-bottom: 1.6rem;
  line-height: 1.65;
  color: var(--text-color);
}

.highlight-text {
  background: var(--primary-color);
  color: white;
  padding: 1.6rem;
  border-radius: 12px;
  font-weight: 700;
  margin: 1.6rem 0;
  text-align: center;
  font-size: 1.05rem;
  box-shadow: 0 5px 18px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.features-list {
  list-style: none;
  margin: 1.6rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
  padding: 1.1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 12px var(--shadow-color);
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.features-list li:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.feature-check {
  width: 26px;
  height: 26px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.88rem;
}

.testimonials {
  background: var(--light-color);
  color: var(--text-color);
  padding: 3.3rem 1.2rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.7rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.6rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px var(--shadow-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.testimonial-header > div {
  min-width: 0;
}

.testimonial-icon {
  width: 48px;
  height: 48px;
  background: var(--light-color);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.45px;
  word-break: break-word;
}

.testimonial p {
  line-height: 1.65;
  font-size: 0.88rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.7rem 1.2rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  padding-bottom: 1.6rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-nav {
    justify-content: flex-end;
  }
}

.footer-content .logo {
  color: white;
}

.footer-content .logo-icon {
  background: white;
  color: var(--dark-color);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.86rem;
}

.footer-nav a:hover {
  color: var(--light-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.81rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--light-color);
  text-decoration: none;
}