:root {
  --primary-color: #F79C92;
  --secondary-color: #FF6F61;
  --accent-color: #F2D4C9;
  --light-color: #F5F5F5;
  --dark-color: #0C0F24;
  --gradient-primary: linear-gradient(135deg, #F79C92 0%, #FF6F61 100%);
  --hover-color: #FF8A7D;
  --background-color: #F7FAFB;
  --text-color: #5D6D7E;
  --border-color: rgba(247, 156, 146, 0.3);
  --divider-color: rgba(255, 111, 97, 0.15);
  --shadow-color: rgba(247, 156, 146, 0.2);
  --highlight-color: #F0DB4F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', 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.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 111, 97, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, transparent 48%, rgba(247, 156, 146, 0.02) 48%, rgba(247, 156, 146, 0.02) 52%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 111, 97, 0.015) 48%, rgba(255, 111, 97, 0.015) 52%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 70px 70px, 70px 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: white;
  padding: 3rem 1.2rem;
  margin: 2rem 0 0 0;
  position: relative;
  border-top: 1px solid var(--divider-color);
  border-bottom: 1px solid var(--divider-color);
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247, 156, 146, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-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: 2px;
  position: relative;
  padding-bottom: 1.2rem;
}

.benefits-section h2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 2px;
}

.benefits-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.benefit-card {
  background: linear-gradient(135deg, white 0%, var(--light-color) 100%);
  padding: 2.2rem 1.8rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247, 156, 146, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.benefit-card:hover::after {
  bottom: -50px;
  right: -50px;
}

.benefit-card-icon {
  width: 75px;
  height: 75px;
  background: white;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  margin: 0 auto 1.4rem;
  color: var(--primary-color);
  box-shadow: 0 6px 20px var(--shadow-color);
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
  border-bottom: 6px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
  .header-decoration::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 0;
    left: 0;
    border: 3px solid var(--primary-color);
  }
  .header-decoration::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    bottom: -10px;
    right: -10px;
    opacity: 0.4;
  }
}

.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.9rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.9rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  border-radius: 12px;
  border: 3px solid var(--accent-color);
  box-shadow: 0 4px 15px var(--shadow-color);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 25px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 5px solid var(--accent-color);
  overflow: hidden;
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(247, 156, 146, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 25px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-image {
    padding: 20px 65px;
  }
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.7rem;
  border-radius: 25px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 6px 25px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(247, 156, 146, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  z-index: 1;
}

.guarantee-block p {
  position: relative;
  z-index: 1;
}

.features-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 1.4rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.4s ease;
  border: 3px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.feature-item:hover::before {
  width: 8px;
}

.feature-item .feature-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 5px 20px var(--shadow-color);
  position: relative;
  z-index: 1;
}

.feature-item span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 1;
}

.cart-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.4rem 2.6rem;
  border: none;
  border-radius: 25px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 8px 30px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.7rem;
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 2.2px;
}

.price {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.3rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.92rem;
  margin-bottom: 1.6rem;
  line-height: 1.8;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.7rem;
  border-radius: 25px;
  font-weight: 700;
  margin: 1.6rem 0;
  text-align: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  font-family: var(--main-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.highlight-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.features-list {
  list-style: none;
  margin: 1.6rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
  padding: 1.3rem;
  background: white;
  border-radius: 25px;
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.4s ease;
  border: 3px solid var(--border-color);
  position: relative;
}

.features-list li::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.features-list li:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.features-list li:hover::before {
  opacity: 1;
  right: 15px;
}

.feature-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.92rem;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.testimonials {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFE5E0 100%);
  color: var(--text-color);
  padding: 3.2rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 156, 146, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.6rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.9rem;
  border-radius: 25px;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: transform 0.4s ease;
  border: 3px solid var(--primary-color);
}

.testimonial:hover {
  transform: translateY(-6px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}

.testimonial-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  color: white;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.testimonial p {
  line-height: 1.8;
  font-size: 0.9rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.3rem 1.2rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.5rem;
}

@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);
  border-color: white;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.87rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}