:root {
  --primary-color: #3D6B47;
  --secondary-color: #5A8C65;
  --accent-color: #E07B54;
  --light-color: #EEF5EE;
  --dark-color: #1C2E1E;
  --gradient-primary: linear-gradient(135deg, #5A8C65 0%, #3D6B47 100%);
  --hover-color: #2E5237;
  --background-color: #F7F4EF;
  --text-color: #2E3A30;
  --border-color: rgba(61, 107, 71, 0.14);
  --divider-color: rgba(61, 107, 71, 0.08);
  --shadow-color: rgba(28, 46, 30, 0.08);
  --highlight-color: #B84E20;
  --highlight-bg: #FEF0E8;
  --main-font: 'Lora', serif;
  --alt-font: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--alt-font);
  font-size: clamp(14px, 4vw, 15px);
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── PATTERN: subtle triangles ── */
.pattern-bg {
  background-color: var(--background-color);
  background-image:
    linear-gradient(60deg, rgba(61,107,71,0.04) 25%, transparent 25%),
    linear-gradient(-60deg, rgba(61,107,71,0.04) 25%, transparent 25%),
    linear-gradient(60deg, transparent 75%, rgba(61,107,71,0.04) 75%),
    linear-gradient(-60deg, transparent 75%, rgba(61,107,71,0.04) 75%);
  background-size: 30px 52px;
  background-position: 0 0, 0 0, 15px 26px, 15px 26px;
}

/* ════════════ HEADER ════════════ */
.site-header {
  padding: 1.2rem 0;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.header-deco { display: none; position: absolute; inset: 0; pointer-events: none; }
.header-deco::before {
  content: '';
  position: absolute;
  right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(90,140,101,0.1);
}
.header-deco::after {
  content: '';
  position: absolute;
  right: 11%; top: 50%;
  transform: translateY(-50%);
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(224,123,84,0.07);
}
@media (min-width: 768px) { .header-deco { display: block; } }

.header-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(17px, 4vw, 22px);
  color: #fff;
  letter-spacing: 0.02em;
}
.logo-text em { font-style: normal; color: var(--accent-color); }

/* ════════════ MAIN ════════════ */
main { flex: 1; }

/* Wrapper for full-width split — no .container here */
.product-section { width: 100%; }

/* ════ SPLIT PRODUCT GRID ════ */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}

/* ────── LEFT COL — DARK ────── */
.left-col {
  background: var(--dark-color);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .left-col { padding: 3rem 2.5rem 3rem calc((100vw - 1020px) / 2 + 1.5rem); }
}

.product-image-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(90,140,101,0.2);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,140,101,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.product-image-wrap picture,
.product-image-wrap img {
  display: block;
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto;
}

.guarantee-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(224,123,84,0.25);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.guarantee-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--accent-color); margin-top: 2px; }
.guarantee-block p {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}
.guarantee-block span {
  display: block;
  font-family: var(--alt-font);
  font-style: normal;
  font-weight: 400;
  font-size: 11.5px;
  color: rgba(255,255,255,0.58);
  margin-top: 3px;
}

/* Features — 3 col numbered on dark bg */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.feature-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,140,101,0.18);
  border-radius: 8px;
  padding: 0.75rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.2s;
}
.feature-item:hover { background: rgba(255,255,255,0.08); }
.feature-icon-circle {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(61,107,71,0.35);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-circle svg { width: 17px; height: 17px; color: var(--secondary-color); }
.feature-item span {
  font-family: var(--alt-font);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.35;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 6px 20px rgba(224,123,84,0.3);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-cart:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-1px);
}
.btn-cart svg { width: 18px; height: 18px; }

/* ────── RIGHT COL — LIGHT ────── */
.product-info-col {
  background: var(--background-color);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .product-info-col { padding: 3rem calc((100vw - 1020px) / 2 + 1.5rem) 3rem 2.5rem; }
}

.product-eyebrow {
  font-family: var(--alt-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.product-info-col h1 {
  font-family: var(--main-font);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 5.5vw, 44px);
  color: var(--dark-color);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.product-info-col h1 strong {
  font-style: normal;
  font-weight: 400;
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-top: 4px;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.75rem 0;
  border-top: 2px solid var(--light-color);
  border-bottom: 2px solid var(--light-color);
}
.price-amount {
  font-family: var(--main-font);
  font-weight: 700;
  font-size: clamp(32px, 6vw, 46px);
  color: var(--primary-color);
  line-height: 1;
}
.price-currency {
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-color);
}

.product-description {
  font-family: var(--alt-font);
  font-size: clamp(13px, 4vw, 14px);
  line-height: 1.8;
  color: var(--text-color);
}
.product-description + .product-description { margin-top: -0.35rem; }

.advantages-label {
  font-family: var(--alt-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.55rem;
}
.advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 13px;
  color: var(--text-color);
  line-height: 1.5;
  padding: 0.45rem 0.75rem;
  background: var(--light-color);
  border-radius: 6px;
  border-left: 3px solid var(--secondary-color);
}
.advantages-list li svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-color);
}

.cta-highlight {
  background: var(--dark-color);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.cta-highlight::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(224,123,84,0.12);
  pointer-events: none;
}
.cta-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(14px, 4vw, 15px);
  color: #fff;
  line-height: 1.45;
}
.cta-highlight strong em {
  font-style: normal;
  color: var(--accent-color);
}

/* ════════════ BENEFITS BAND ════════════ */
.benefits-band {
  background: var(--primary-color);
  padding: 2.75rem 0;
  position: relative;
  overflow: hidden;
}
.benefits-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.container {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.band-header { text-align: center; margin-bottom: 1.75rem; }
.band-header h2 {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 4vw, 26px);
  color: #fff;
}
.band-header h2 em { font-style: normal; color: var(--accent-color); }
.band-header p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 580px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.12); }
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
}
.benefit-icon svg { width: 21px; height: 21px; color: #fff; }
.benefit-card h3 {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 0.35rem;
}
.benefit-card p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* ════════════ TESTIMONIALS ════════════ */
.testimonials-section {
  background: var(--light-color);
  padding: 2.75rem 0;
}

.section-title { text-align: center; margin-bottom: 1.75rem; }
.section-title h2 {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(18px, 4vw, 24px);
  color: var(--dark-color);
}
.section-title-bar {
  width: 36px; height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
  margin: 0.55rem auto 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  border-top: 3px solid var(--primary-color);
  padding: 1.25rem;
  box-shadow: 0 2px 10px var(--shadow-color);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '"';
  position: absolute;
  bottom: -0.5rem; right: 0.75rem;
  font-size: 64px;
  font-family: Georgia, serif;
  color: var(--light-color);
  line-height: 1;
  pointer-events: none;
}

.t-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.55rem; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.t-name { font-family: var(--main-font); font-style: italic; font-weight: 700; font-size: 13px; color: var(--dark-color); }
.t-loc  { font-family: var(--alt-font); font-size: 11px; color: var(--secondary-color); }
.t-stars { display: flex; gap: 2px; margin-bottom: 0.5rem; }
.t-stars svg { width: 13px; height: 13px; fill: var(--accent-color); }
.t-text { font-family: var(--alt-font); font-size: 13px; color: var(--text-color); line-height: 1.65; font-style: italic; position: relative; z-index: 1; }

/* ════════════ FOOTER ════════════ */
.site-footer { background: var(--dark-color); }

.footer-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.footer-logo-icon { width: 26px; height: 26px; }
.footer-logo-text {
  font-family: var(--main-font);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.footer-logo-text em { font-style: normal; color: var(--accent-color); }

.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
@media (min-width: 768px) { .footer-nav { flex-direction: row; gap: 1.5rem; } }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-color); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0.6rem 1.5rem;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.26);
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
}