:root {
  --primary-color: #2ECC71;
  --secondary-color: #5A9F77;
  --accent-color: #C0E0B1;
  --light-color: #ECF1F1;
  --dark-color: #1D2A3C;
  --gradient-primary: linear-gradient(135deg, #2ECC71 0%, #5A9F77 100%);
  --hover-color: #27AE60;
  --background-color: #F7FAFB;
  --text-color: #5D6D7E;
  --border-color: rgba(46, 204, 113, 0.25);
  --divider-color: rgba(46, 204, 113, 0.15);
  --shadow-color: rgba(46, 204, 113, 0.18);
  --highlight-color: #F0DB4F;
  --main-font: 'Lora', 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 50% 50%, rgba(46, 204, 113, 0.05) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(46, 204, 113, 0.02) 40px, rgba(46, 204, 113, 0.02) 42px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(90, 159, 119, 0.02) 40px, rgba(90, 159, 119, 0.02) 42px);
  background-size: 100% 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.benefits-section {
  background: var(--accent-color);
  padding: 2.8rem 1.2rem;
  margin: 2rem 0 0 0;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(90, 159, 119, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.benefits-section h2 {
  font-family: var(--main-font);
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: none;
  letter-spacing: 0.5px;
  font-style: italic;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: white;
  padding: 2rem 1.6rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 6px 20px var(--shadow-color);
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--primary-color);
}

.benefit-card-icon {
  width: 70px;
  height: 70px;
  background: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.3rem;
  color: var(--primary-color);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.benefit-card h3 {
  font-family: var(--main-font);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--primary-color);
  font-style: italic;
}

.benefit-card p {
  font-size: 0.89rem;
  line-height: 1.65;
  color: var(--text-color);
}

header {
  background: white;
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px var(--shadow-color);
  border-bottom: 5px solid var(--primary-color);
}

.header-decoration {
  position: absolute;
  top: 50%;
  right: 6%;
  width: 60px;
  height: 60px;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 768px) {
  .header-decoration {
    display: block;
  }
  .header-decoration::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    left: 0;
    opacity: 0.3;
  }
  .header-decoration::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 5px;
    right: 5px;
    border: 2px solid var(--primary-color);
  }
}

.container {
  max-width: 1200px;
  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.85rem;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  font-style: italic;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  border-radius: 50% 50% 0 50%;
  border: 3px solid var(--secondary-color);
  transform: rotate(15deg);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .product-section {
    grid-template-columns: 1fr 1fr;
  }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.product-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px var(--shadow-color);
  border: 4px solid var(--accent-color);
  overflow: hidden;
}

.product-image-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 60%);
}

.product-image {
  width: 100%;
  padding: 20px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .product-image {
    padding: 20px 60px;
  }
}

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1.6rem;
  border-radius: 20px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 5px 20px var(--shadow-color);
  position: relative;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--accent-color);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
}

.features-icons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.4rem 1.3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 55px;
  height: 55px;
  background: var(--accent-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.feature-item span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  font-style: italic;
}

.cart-button {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.3rem 2.4rem;
  border: none;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 6px 25px var(--shadow-color);
  font-family: var(--main-font);
  font-style: italic;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 2.6rem;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1.2rem 0;
  font-family: var(--main-font);
}

.product-description {
  font-size: 0.91rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
  color: var(--text-color);
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 1.6rem;
  border-radius: 20px;
  font-weight: 700;
  margin: 1.5rem 0;
  text-align: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 25px var(--shadow-color);
  font-family: var(--main-font);
  font-style: italic;
}

.features-list {
  list-style: none;
  margin: 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 3px solid var(--border-color);
  position: relative;
}

.features-list li::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.features-list li:hover {
  transform: translateX(8px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.features-list li:hover::after {
  opacity: 1;
}

.feature-check {
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px var(--shadow-color);
}

.testimonials {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 3rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial {
  background: white;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 3px solid var(--accent-color);
  color: var(--text-color);
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--main-font);
  color: var(--primary-color);
  font-style: italic;
}

.testimonial p {
  line-height: 1.75;
  font-size: 0.89rem;
  color: var(--text-color);
}

footer {
  background: var(--dark-color);
  color: white;
  padding: 2.2rem 1.2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: center;
  padding-bottom: 1.4rem;
}

@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.2rem;
  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.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.86rem;
}

.footer-nav a:hover {
  color: var(--highlight-color);
}

.footer-credit {
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.81rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-credit a {
  color: var(--highlight-color);
  text-decoration: none;
}