:root {
  --primary-color: #4A7C59;
  --secondary-color: #5A9F77;
  --accent-color: #3D6B4A;
  --light-color: #EEF5F0;
  --dark-color: #1F3626;
  --gradient-primary: linear-gradient(135deg, #4A7C59 0%, #5A9F77 100%);
  --hover-color: #366045;
  --background-color: #F8FCF9;
  --text-color: #2E4435;
  --border-color: rgba(74, 124, 89, 0.15);
  --shadow-color: rgba(31, 54, 38, 0.09);
  --highlight-color: #C0E0B1;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Lato', 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 - wave/sine lines */
.pattern-bg {
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(74, 124, 89, 0.045) 28px,
      rgba(74, 124, 89, 0.045) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(74, 124, 89, 0.03) 28px,
      rgba(74, 124, 89, 0.03) 29px
    );
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--dark-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

header::before,
header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  display: none;
}
@media (min-width: 768px) {
  header::before {
    display: block;
    right: 60px; top: -20px;
    width: 90px; height: 90px;
    background: var(--highlight-color);
  }
  header::after {
    display: block;
    right: 180px; top: 10px;
    width: 30px; height: 30px;
    background: var(--secondary-color);
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  width: fit-content;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--secondary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  justify-content: center;
}

.product-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 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.1rem;
}

.product-image-container {
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-color);
  background: white;
  padding: 1.3rem;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}
.product-image-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 12px 12px 0 0;
}
.product-image-container picture { display: flex; justify-content: center; }
.product-image {
  width: 52%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-image:hover { transform: scale(1.04); }

.guarantee-block {
  background: white;
  color: var(--text-color);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow-color);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--primary-color);
}
.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.91rem;
  font-weight: 700;
}
.guarantee-block p { font-size: 0.83rem; line-height: 1.5; }

/* feature-items as horizontal pill rows */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.feature-item:hover {
  border-color: var(--primary-color);
  transform: translateX(3px);
}
.feature-item .feature-icon {
  width: 32px; height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: white;
}
.feature-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.82rem 1.6rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.04em;
}
.cart-button:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 0.65rem;
  font-weight: 700;
  line-height: 1.15;
}
.price {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0.7rem 0;
  font-family: var(--main-font);
}
.product-description {
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}
.highlight-text {
  background: var(--dark-color);
  color: white;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.91rem;
  font-family: var(--main-font);
  letter-spacing: 0.02em;
}

.features-list {
  list-style: none;
  margin: 1rem 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  padding: 0.65rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.features-list li:hover { transform: translateX(3px); border-color: var(--primary-color); }
.feature-check {
  width: 18px; height: 18px;
  background: var(--gradient-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.72rem;
}

/* Full-width benefits block - ingredient cards */
.promo-block {
  background: var(--light-color);
  padding: 2.2rem 1.5rem;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}
.promo-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: var(--dark-color);
  font-weight: 700;
}
.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  background: white;
  border-radius: 10px;
  padding: 1.2rem 1rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.3s ease;
}
.promo-card:hover { transform: translateY(-3px); }
.promo-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}
.promo-card h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.35rem;
}
.promo-card p { font-size: 0.82rem; color: var(--text-color); line-height: 1.5; }

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  padding: 2.2rem 1.5rem;
}
.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  background: rgba(255,255,255,0.07);
  padding: 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(192,224,177,0.2);
  transition: transform 0.3s ease;
}
.testimonial:hover { transform: translateY(-2px); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}
.testimonial-icon {
  width: 38px; height: 38px;
  background: var(--highlight-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark-color);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--main-font);
  color: var(--highlight-color);
}
.testimonial p { line-height: 1.55; font-size: 0.85rem; color: rgba(255,255,255,0.87); }

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.7rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}
@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: 0.85rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-nav { justify-content: flex-end; }
}
.footer-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.83rem;
}
.footer-nav a:hover { color: var(--highlight-color); }
.footer-credit {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.79rem;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }