:root {
  --primary-color: #3A6B4A;
  --secondary-color: #4E8A61;
  --accent-color: #6AA87A;
  --light-color: #EEF5EF;
  --dark-color: #1F3D28;
  --gradient-primary: linear-gradient(135deg, #3A6B4A 0%, #4E8A61 100%);
  --hover-color: #2B5238;
  --background-color: #F6FAF6;
  --text-color: #374840;
  --border-color: rgba(58, 107, 74, 0.15);
  --divider-color: rgba(58, 107, 74, 0.1);
  --shadow-color: rgba(31, 61, 40, 0.1);
  --highlight-color: #F2D57F;
  --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 - diagonal lines */
.pattern-bg {
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(58,107,74,0.035) 0px,
      rgba(58,107,74,0.035) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(78,138,97,0.025) 0px,
      rgba(78,138,97,0.025) 1px,
      transparent 1px,
      transparent 18px
    );
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--primary-color);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

header::before,
header::after { content: ''; position: absolute; display: none; }
@media (min-width: 768px) {
  header::before {
    display: block;
    top: 50%; right: 90px;
    transform: translateY(-50%) rotate(45deg);
    width: 40px; height: 40px;
    background: rgba(242,213,127,0.18);
    border-radius: 4px;
  }
  header::after {
    display: block;
    top: 50%; right: 170px;
    transform: translateY(-50%) rotate(45deg);
    width: 22px; height: 22px;
    background: rgba(255,255,255,0.12);
    border-radius: 3px;
  }
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  width: fit-content;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--highlight-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.8rem 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 1.25fr; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-image-container {
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--shadow-color);
  background: white;
  padding: 1rem;
  border: 1px solid var(--border-color);
  text-align: center;
}
.product-image-container picture { display: flex; justify-content: center; }
.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.product-image:hover { transform: scale(1.03); }

.guarantee-block {
  background: white;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  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.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.guarantee-block p { font-size: 0.81rem; line-height: 1.5; color: var(--text-color); }

/* feature-item: horizontal row style */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateX(3px);
  border-color: var(--accent-color);
}
.feature-item .feature-icon {
  width: 34px; height: 34px;
  background: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}
.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--main-font);
  line-height: 1.2;
}

.cart-button {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 8px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.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.7rem;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.6rem 0;
  font-family: var(--main-font);
}
.product-description {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
  color: var(--text-color);
}
.highlight-text {
  background: var(--highlight-color);
  color: var(--dark-color);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 0.9rem 0;
  text-align: center;
  font-size: 0.88rem;
  font-family: var(--main-font);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-left: 4px solid var(--primary-color);
}

.features-list {
  list-style: none;
  margin: 0.8rem 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
  padding: 0.6rem 0.8rem;
  background: white;
  border-radius: 7px;
  box-shadow: 0 2px 5px var(--shadow-color);
  border-left: 3px solid var(--primary-color);
  font-size: 0.83rem;
  transition: all 0.3s ease;
}
.features-list li:hover { transform: translateX(3px); }
.feature-check {
  width: 17px; height: 17px;
  background: var(--primary-color);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.7rem;
}

/* Benefits block - stat cards style */
.benefits-block {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}
.benefits-block h2 {
  font-family: var(--main-font);
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
  color: white;
  font-weight: 700;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
.benefit-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 1.1rem 1rem;
  border: 1px solid rgba(106,168,122,0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.benefit-card:hover { transform: translateY(-2px); }
.benefit-card-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.benefit-card-text h3 {
  font-family: var(--main-font);
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--highlight-color);
  letter-spacing: 0.02em;
  font-weight: 700;
}
.benefit-card-text p { font-size: 0.8rem; opacity: 0.88; line-height: 1.5; }

/* Testimonials */
.testimonials {
  background: var(--light-color);
  padding: 2rem 1.5rem;
}
.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: 0.02em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1060px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--primary-color);
}
.testimonial:hover { transform: translateY(-2px); }
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.testimonial-icon {
  width: 36px; height: 36px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-color);
  flex-shrink: 0;
  border: 1px solid var(--border-color);
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.87rem;
  font-family: var(--main-font);
  color: var(--primary-color);
}
.testimonial p { line-height: 1.55; font-size: 0.83rem; color: var(--text-color); }

/* Footer */
footer {
  background: var(--dark-color);
  color: white;
  padding: 1.5rem;
}
.footer-content {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  padding-bottom: 0.9rem;
}
@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.75rem;
  justify-content: center;
}
@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }
.footer-nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.81rem;
}
.footer-nav a:hover { color: var(--highlight-color); }
.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.48);
  font-size: 0.77rem;
  max-width: 1060px;
  margin: 0 auto;
}
.footer-credit a { color: var(--highlight-color); text-decoration: none; }