:root {
  --primary-color: #5A7A4A;
  --secondary-color: #3D5430;
  --accent-color: #8AAF6E;
  --light-color: #EEF4E8;
  --dark-color: #243318;
  --gradient-primary: linear-gradient(135deg, #5A7A4A 0%, #3D5430 100%);
  --hover-color: #6B9158;
  --background-color: #F7FAF4;
  --text-color: #2F3D22;
  --border-color: rgba(90, 122, 74, 0.15);
  --divider-color: rgba(90, 122, 74, 0.1);
  --shadow-color: rgba(61, 84, 48, 0.1);
  --highlight-color: #DFF0D0;
  --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: organic hexagon dots */
.pattern-bg {
  background-image:
    radial-gradient(circle, rgba(90,122,74,0.07) 1px, transparent 1px),
    radial-gradient(ellipse at 90% 10%, rgba(138,175,110,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 5% 95%, rgba(61,84,48,0.06) 0%, transparent 50%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

header {
  background: var(--gradient-primary);
  padding: 1.2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.header-deco {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 10px;
}

.header-deco-leaf {
  width: 18px; height: 18px;
  background: rgba(255,255,255,0.12);
  border-radius: 0 50% 0 50%;
  transform: rotate(45deg);
}

.header-deco-leaf:nth-child(2) {
  width: 24px; height: 24px;
  opacity: 0.8;
}

.header-deco-leaf:nth-child(3) {
  width: 14px; height: 14px;
  opacity: 0.6;
}

@media (min-width: 768px) { .header-deco { display: flex; } }

.container {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.logo-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.3);
}

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: 38% 62%; }
}

.product-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-image-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 18px var(--shadow-color);
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--border-color);
}

.product-image-container picture { display: flex; justify-content: center; width: 100%; }

.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover { transform: scale(1.02); }

.guarantee-block {
  background: white;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow-color);
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gradient-primary);
}

.guarantee-block h3 {
  font-family: var(--main-font);
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.guarantee-block p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-color);
}

/* feature-item: horizontal rows with left accent */
.features-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: white;
  border-radius: 8px;
  border-left: 3px solid var(--primary-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  transition: all 0.25s ease;
}

.feature-item:hover {
  transform: translateX(3px);
  box-shadow: 0 3px 10px var(--shadow-color);
}

.feature-item .feature-icon {
  width: 34px; height: 34px;
  background: var(--light-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--main-font);
  letter-spacing: 0.01em;
}

.cart-button {
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 0 3px 10px var(--shadow-color);
  font-family: var(--main-font);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-button:hover {
  background: linear-gradient(135deg, var(--hover-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 14px var(--shadow-color);
}

.product-right h1 {
  font-family: var(--main-font);
  font-size: 1.9rem;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0.5rem 0;
  font-family: var(--main-font);
  display: inline-block;
  letter-spacing: 0.04em;
}

.product-description {
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
  line-height: 1.72;
  color: var(--text-color);
}

.product-description p { margin-bottom: 0.7rem; }

.highlight-text {
  background: var(--highlight-color);
  color: var(--secondary-color);
  padding: 0.85rem 1.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.02em;
  border: 2px dashed var(--accent-color);
}

.features-list {
  list-style: none;
  margin: 0.7rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 4px var(--shadow-color);
  border: 1px solid var(--border-color);
  font-size: 0.79rem;
  transition: border-color 0.2s ease;
  line-height: 1.4;
}

.features-list li:hover { border-color: var(--accent-color); }

.feature-check {
  width: 15px; height: 15px;
  background: var(--gradient-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.55rem;
  margin-top: 1px;
}

/* Benefits section - alternating icon+text rows */
.benefits-section {
  background: var(--light-color);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--primary-color);
}

.benefits-inner {
  max-width: 1050px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.benefits-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .benefits-row { flex-direction: row; flex-wrap: wrap; }
  .benefit-row-item { flex: 1 1 calc(50% - 0.4rem); }
}

.benefit-row-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 6px var(--shadow-color);
  transition: transform 0.25s ease;
}

.benefit-row-item:hover { transform: translateY(-2px); }

.benefit-row-icon {
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-row-text h3 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
}

.benefit-row-text p {
  font-size: 0.78rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  background: var(--dark-color);
  color: white;
  padding: 2rem 1.5rem;
}

.testimonials h2 {
  font-family: var(--main-font);
  text-align: center;
  margin-bottom: 1.6rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  background: rgba(255,255,255,0.08);
  padding: 1rem;
  border-radius: 8px;
  border-bottom: 3px solid var(--accent-color);
  transition: all 0.3s ease;
}

.testimonial:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.testimonial-icon {
  width: 34px; height: 34px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--main-font);
  color: white;
  letter-spacing: 0.02em;
}

.testimonial-city { font-size: 0.73rem; color: rgba(255,255,255,0.55); }

.testimonial p {
  line-height: 1.55;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.85);
}

footer {
  background: var(--secondary-color);
  color: white;
  padding: 1.6rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  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.8rem;
  justify-content: center;
}

@media (min-width: 768px) { .footer-nav { justify-content: flex-end; } }

.footer-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.78rem;
}

.footer-nav a:hover { color: white; }

.footer-credit {
  text-align: center;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  max-width: 1050px;
  margin: 0 auto;
}

.footer-credit a { color: var(--light-color); text-decoration: none; }