@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS - SUSTAINABILITY / NATURE THEME ===== */
:root {
  --bg-cream: #FAF7F2;
  --bg-warm: #F5F0E8;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-deep: #2C1810;
  --bg-earth: #3D2418;

  --color-olive: #5D8B3D;
  --color-olive-dark: #4A7030;
  --color-olive-light: #7AAE55;
  --color-olive-glow: rgba(93, 139, 61, 0.12);
  --color-olive-glow-strong: rgba(93, 139, 61, 0.25);

  --color-terra: #C4713B;
  --color-terra-dark: #A05A2C;
  --color-terra-light: #D4895A;
  --color-terra-glow: rgba(196, 113, 59, 0.15);

  --color-brown: #8B6914;
  --color-brown-light: #C4A35A;

  --text-dark: #2C1810;
  --text-body: #5C4030;
  --text-muted: #9A7B68;
  --text-light: #C4A88A;
  --text-cream: #FAF7F2;

  --border-soft: rgba(44, 24, 16, 0.08);
  --border-olive: rgba(93, 139, 61, 0.25);
  --border-terra: rgba(196, 113, 59, 0.25);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 24, 16, 0.10);
  --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.14);
  --shadow-olive: 0 8px 32px rgba(93, 139, 61, 0.18);
  --shadow-olive-strong: 0 12px 40px rgba(93, 139, 61, 0.30);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
.global-reset { margin: 0; padding: 0; box-sizing: border-box; }
.global-html { scroll-behavior: smooth; }
.global-body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.global-img { max-width: 100%; height: auto; display: block; }
.global-a { text-decoration: none; color: inherit; transition: var(--transition); }
.global-ul { list-style: none; }
.global-li { list-style: none; }
.global-button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ===== PRELOADER ===== */
.preloader-wrapper {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader-wrapper.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content-wrapper { text-align: center; }
.preloader-logo-wrap {
  margin: 0 auto 2rem;
  animation: preloaderPulse 2s ease-in-out infinite;
}
.preloader-logo-img {
  height: 52px;
  width: auto;
  display: inline-block;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.04); opacity: 1; }
}
.preloader-bar-container {
  width: 240px; height: 3px; background: rgba(250, 247, 242, 0.15);
  border-radius: 99px; overflow: hidden; margin: 0 auto 1.25rem;
}
.preloader-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--color-olive-light), var(--color-terra-light)); border-radius: 99px;
  width: 0%; animation: preloaderFill 2s ease forwards;
}
@keyframes preloaderFill {
  0% { width: 0%; }
  40% { width: 60%; }
  70% { width: 85%; }
  100% { width: 100%; }
}
.preloader-status-text {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner-wrapper {
  background: linear-gradient(90deg, var(--color-olive), var(--color-olive-dark));
  padding: 0.5rem 1rem; text-align: center;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-cream);
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.header-main {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: var(--transition);
}
.header-main.sticky-top {
  position: fixed; top: 0 !important;
  box-shadow: var(--shadow-sm);
}
.header-main.scrolled {
  background: rgba(250, 247, 242, 0.97);
  border-bottom-color: var(--border-olive);
}
.header-nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
}
.brand-logo-link { display: flex; align-items: center; }
.brand-logo-img { height: 42px; width: auto; }
.nav-menu-list { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-menu-item {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--text-body); padding: 0.5rem 1rem;
  border-radius: var(--radius-full); transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-menu-item:hover, .nav-menu-item.active {
  color: var(--color-olive); background: var(--color-olive-glow);
}
.menu-toggle-button {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none; cursor: pointer;
}
.menu-toggle-bar {
  width: 24px; height: 2px; background: var(--text-dark);
  border-radius: 2px; transition: var(--transition);
}
.menu-toggle-button.active .menu-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle-button.active .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle-button.active .menu-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--bg-cream); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-close-btn {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; color: var(--text-dark); background: none;
  border: none; cursor: pointer; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-list { list-style: none; text-align: center; }
.mobile-nav-list-item { margin: 0.75rem 0; }
.mobile-nav-list-link {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--text-dark); display: block; padding: 0.75rem 2rem;
  border-radius: var(--radius-md); transition: var(--transition);
}
.mobile-nav-list-link:hover { color: var(--color-olive); background: var(--color-olive-glow); }

/* ===== CONTAINER ===== */
.container-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 100vh; padding: 140px 0 80px;
  background: var(--bg-cream); overflow: hidden;
}
.hero-bg-nature {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-leaf {
  position: absolute; opacity: 0.04;
  border-radius: 50%;
}
.hero-bg-leaf-1 { width: 600px; height: 600px; background: var(--color-olive); top: -200px; right: -150px; }
.hero-bg-leaf-2 { width: 400px; height: 400px; background: var(--color-terra); bottom: -100px; left: -100px; }
.hero-bg-leaf-3 { width: 300px; height: 300px; background: var(--color-olive-light); top: 40%; left: 50%; }
.hero-nature-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-terra), var(--color-olive));
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-terra);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; background: var(--color-terra);
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700; line-height: 1.08; color: var(--text-dark);
  letter-spacing: -0.01em;
}
.hero-title-accent { color: var(--color-olive); font-style: italic; }
.hero-description {
  font-size: 1rem; color: var(--text-body); line-height: 1.85; max-width: 480px;
}
.hero-meta-row { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.hero-badge-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; background: var(--color-olive-glow);
  border: 1px solid var(--border-olive); border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  color: var(--color-olive-dark); letter-spacing: 0.02em;
}
.hero-badge-tag span { font-size: 1rem; }
.hero-rating { display: flex; align-items: center; gap: 0.5rem; }
.hero-stars { color: var(--color-terra); font-size: 1rem; letter-spacing: 2px; }
.hero-rating-text { font-size: 0.8rem; color: var(--text-muted); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-product-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
}
.hero-product-wrap::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--color-olive), var(--color-terra), var(--color-olive-light));
  border-radius: calc(var(--radius-xl) + 2px); z-index: -1; opacity: 0.3;
}
.hero-product-img {
  width: 100%; max-width: 420px; height: auto; display: block;
  transition: var(--transition-slow);
}
.hero-product-wrap:hover .hero-product-img { transform: scale(1.03); }
.hero-badge-floating {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: rgba(250, 247, 242, 0.95); backdrop-filter: blur(10px);
  border: 1px solid var(--border-olive); border-radius: var(--radius-md);
  padding: 0.6rem 1rem; display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-olive);
}
.hero-badge-floating-icon { font-size: 1.2rem; }
.hero-badge-floating-text {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  color: var(--color-olive-dark); letter-spacing: 0.03em; line-height: 1.3;
}

/* ===== BUTTONS ===== */
.btn-main {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: var(--radius-full);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; border: none;
  cursor: pointer; transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--color-olive); color: var(--text-cream);
  box-shadow: 0 4px 16px rgba(93, 139, 61, 0.25);
}
.btn-primary:hover {
  background: var(--color-olive-dark);
  box-shadow: var(--shadow-olive-strong);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--bg-white); color: var(--text-dark);
  border: 2px solid var(--border-soft);
}
.btn-secondary:hover {
  border-color: var(--color-olive); color: var(--color-olive);
  background: var(--color-olive-glow);
  transform: translateY(-2px);
}
.btn-terra {
  background: var(--color-terra); color: var(--text-cream);
  box-shadow: 0 4px 16px rgba(196, 113, 59, 0.25);
}
.btn-terra:hover {
  background: var(--color-terra-dark);
  box-shadow: 0 8px 32px rgba(196, 113, 59, 0.35);
  transform: translateY(-2px);
}

/* ===== STATS STRIP ===== */
.stats-strip-section {
  background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-dark) 100%);
  padding: 3.5rem 0;
}
.stats-grid-layout { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item-card {
  text-align: center; padding: 1.5rem 1rem;
  position: relative; color: var(--text-cream);
}
.stat-item-card:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-number {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--text-cream); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
}

/* ===== SECTION HEADER ===== */
.section-header-wrapper { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-badge-tag {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-terra);
  margin-bottom: 1rem;
}
.section-main-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.15;
}
.section-subtitle-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ===== FEATURES ===== */
.features-section { padding: 7rem 0; background: var(--bg-cream); }
.features-grid-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card-item {
  background: var(--bg-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-olive), var(--color-terra));
  transform: scaleX(0); transition: var(--transition);
}
.feature-card-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-olive); }
.feature-card-item:hover::after { transform: scaleX(1); }
.feature-icon-box {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--color-olive-glow); border: 1px solid var(--border-olive);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feature-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.6rem; line-height: 1.3;
}
.feature-card-description { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase-section { padding: 7rem 0; background: var(--bg-warm); }
.product-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.product-gallery-area {}
.product-main-image {
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1rem;
  box-shadow: var(--shadow-md); background: var(--bg-white);
  border: 1px solid var(--border-soft);
}
.product-main-image .global-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product-thumbnails { display: flex; gap: 0.75rem; }
.product-thumbnail-img {
  width: 90px; height: 68px; object-fit: cover; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer; transition: var(--transition); opacity: 0.6;
}
.product-thumbnail-img:hover, .product-thumbnail-img.active {
  border-color: var(--color-olive); opacity: 1;
}
.product-details-area {}
.product-category {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-terra);
  margin-bottom: 0.5rem;
}
.product-details-title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.2;
}
.product-price-tag {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--color-olive); margin-bottom: 0.25rem;
}
.product-tax-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.product-description-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.85; margin-bottom: 1.5rem; }
.product-specifications { list-style: none; margin-bottom: 1.5rem; }
.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid var(--border-soft);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label-name { color: var(--text-muted); font-weight: 500; }
.spec-value-info { color: var(--text-dark); font-weight: 600; }
.btn-purchase {
  display: block; text-align: center; margin-bottom: 0.5rem;
}
.purchase-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; }

/* ===== SPLIT SECTION ===== */
.split-content-section { padding: 7rem 0; background: var(--bg-cream); }
.split-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image-wrapper img { width: 100%; display: block; transition: var(--transition-slow); }
.split-image-wrapper:hover img { transform: scale(1.04); }
.split-text-content { display: flex; flex-direction: column; gap: 1.25rem; }
.split-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.1;
}
.split-heading-accent { color: var(--color-olive); font-style: italic; }
.split-paragraph { font-size: 0.95rem; color: var(--text-body); line-height: 1.85; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 7rem 0; background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--color-terra); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--font-display); font-size: 1rem; font-style: italic;
  color: var(--text-body); line-height: 1.7; margin-bottom: 1rem;
}
.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.03em; }

/* ===== FAQ ===== */
.faq-section { padding: 7rem 0; background: var(--bg-cream); }
.faq-container-wrapper { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item-card {
  background: var(--bg-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item-card:hover { border-color: var(--border-olive); }
.faq-item-card.active { border-color: var(--color-olive); background: rgba(93,139,61,0.03); }
.faq-question-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text-dark); transition: var(--transition); gap: 1rem;
}
.faq-question-btn:hover { color: var(--color-olive); }
.faq-question-btn.active { color: var(--color-olive); }
.faq-toggle-icon {
  flex-shrink: 0; font-size: 1.4rem; color: var(--color-olive); font-style: normal;
  transition: var(--transition);
}
.faq-question-btn.active .faq-toggle-icon { transform: rotate(45deg); }
.faq-answer-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content.open { max-height: 400px; }
.faq-answer-content p { padding: 0 1.5rem 1.5rem; font-size: 0.9rem; color: var(--text-body); line-height: 1.8; }

/* ===== CTA ===== */
.cta-section {
  padding: 7rem 0; background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -30%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.cta-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; color: var(--text-cream); line-height: 1.1; margin-bottom: 1rem;
}
.cta-description { font-size: 1rem; color: rgba(250,247,242,0.75); line-height: 1.7; max-width: 540px; margin: 0 auto 2rem; }

/* ===== FOOTER ===== */
.main-footer-section {
  background: var(--bg-deep);
  color: rgba(250, 247, 242, 0.75);
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: start;
}
.footer-col-brand {
  max-width: 440px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
  transition: opacity 0.2s ease;
}
.footer-logo-link:hover {
  opacity: 0.9;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-col-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.72);
  margin-bottom: 1.5rem;
}
.footer-author-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.15rem;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: var(--radius-sm);
}
.footer-author-name {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: 0.02em;
}
.footer-author-email {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-olive-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-author-email:hover {
  color: #9cdb6d;
  text-decoration: underline;
}
.footer-heading-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-olive-light);
  margin-bottom: 1.25rem;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.footer-col-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  transition: all 0.2s ease;
}
.footer-col-link:hover {
  color: var(--text-cream);
  transform: translateX(4px);
  padding-left: 2px;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-bar p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.55);
  margin: 0;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner-wrapper {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 5000;
  background: var(--bg-white); border-top: 3px solid var(--color-olive);
  padding: 1.25rem 1.5rem; box-shadow: 0 -4px 30px rgba(44,24,16,0.12);
  display: none; animation: slideUp 0.5s ease;
}
.cookie-banner-wrapper.active-cookie { display: block; }
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.25rem;
}
.cookie-banner-description { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.cookie-banner-description a { color: var(--color-olive); }
.cookie-buttons-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== REVIEW PAGE ===== */
.review-page-body { background: var(--bg-cream); color: var(--text-body); }
.review-hero {
  padding: 130px 0 3rem; background: var(--bg-warm);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.review-hero .container-wrapper {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.review-content-body { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem 6rem; }
.review-content-body h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--text-dark); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-olive-glow);
}
.review-content-body h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--color-terra); margin: 1.75rem 0 0.75rem; font-style: italic;
}
.review-content-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.9; margin-bottom: 1.25rem; }
.review-content-body ul { list-style: none; margin-bottom: 1.5rem; }
.review-content-body ul li {
  font-size: 0.9rem; color: var(--text-body); padding: 0.4rem 0;
  padding-left: 1.5rem; position: relative;
}
.review-content-body ul li::before {
  content: '🌿'; position: absolute; left: 0; font-size: 0.8rem;
}
.review-cta-block {
  background: var(--bg-white); border: 2px solid var(--border-olive);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin: 2.5rem 0;
}

/* ===== CONTACT PAGE ===== */
.contact-page-body { background: var(--bg-cream); color: var(--text-body); }
.contact-hero {
  padding: 130px 0 3rem; background: var(--bg-warm);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.contact-hero .container-wrapper {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.contact-content-wrap { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem 6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card {}
.contact-info-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.contact-info-item { margin-bottom: 1.5rem; }
.contact-info-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-terra);
  margin-bottom: 0.35rem;
}
.contact-info-value { font-size: 0.95rem; color: var(--text-dark); line-height: 1.6; }
.contact-info-value a { color: var(--color-olive); }
.contact-info-value a:hover { color: var(--color-olive-dark); text-decoration: underline; }
.contact-form-card {
  background: var(--bg-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-form-card h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 90%; padding: 0.75rem 1rem; background: var(--bg-cream);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  color: var(--text-dark); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--color-olive); box-shadow: 0 0 0 3px var(--color-olive-glow); }
.form-textarea {
  width: 90%; padding: 0.75rem 1rem; background: var(--bg-cream);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  color: var(--text-dark); font-family: var(--font-body); font-size: 0.9rem;
  transition: var(--transition); outline: none; resize: vertical; min-height: 120px;
}
.form-textarea:focus { border-color: var(--color-olive); box-shadow: 0 0 0 3px var(--color-olive-glow); }
.contact-submit-btn {
  width: 100%; padding: 1rem; background: var(--color-olive); color: var(--text-cream);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; border: none;
  border-radius: var(--radius-full); cursor: pointer; transition: var(--transition);
}
.contact-submit-btn:hover { background: var(--color-olive-dark); box-shadow: var(--shadow-olive-strong); }
.contact-feedback { display: none; margin-top: 1rem; padding: 1rem; background: var(--color-olive-glow); border: 1px solid var(--border-olive); border-radius: var(--radius-sm); font-size: 0.85rem; color: var(--color-olive-dark); text-align: center; }

/* ===== ORDER PAGE ===== */
.order-page-body { background: var(--bg-cream); color: var(--text-body); }
.order-hero {
  padding: 130px 0 3rem; background: var(--bg-warm);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.order-hero .container-wrapper {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.order-content-wrap { max-width: 560px; margin: 0 auto; padding: 3rem 1.5rem 6rem; }
.order-card-nature {
  background: var(--bg-white); border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl); padding: 2.5rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.order-product-title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.order-price-display {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--color-olive); margin: 1rem 0;
}
.order-description { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.order-cta-btn {
  display: block; width: 100%; padding: 1.1rem;
  background: var(--color-olive); color: var(--text-cream);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: var(--transition); text-decoration: none;
}
.order-cta-btn:hover { background: var(--color-olive-dark); box-shadow: var(--shadow-olive-strong); transform: translateY(-2px); }
.order-guarantee { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.75rem; text-align: center; }

/* ===== LEGAL PAGES ===== */
.legal-page-body { background: var(--bg-cream); color: var(--text-body); min-height: 100vh; }
.legal-header-nature {
  background: var(--bg-white); border-bottom: 1px solid var(--border-soft); padding: 1.5rem 0;
}
.legal-header-inner { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.legal-logo-nature {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.02em;
}
.legal-logo-nature span { color: var(--color-olive); }
.legal-back-nature {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  transition: var(--transition);
}
.legal-back-nature:hover { color: var(--color-olive); }
.legal-content-nature { max-width: 760px; margin: 0 auto; padding: 130px 1.5rem 5rem; }
.legal-content-nature h1 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.5rem; text-align: center;
}
.legal-content-nature h2 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--color-olive-dark); margin: 2rem 0 0.75rem; letter-spacing: 0.03em;
}
.legal-content-nature p { font-size: 0.9rem; color: var(--text-body); line-height: 1.85; margin-bottom: 1rem; }
.legal-content-nature ul { list-style: none; margin-bottom: 1rem; }
.legal-content-nature ul li {
  font-size: 0.9rem; color: var(--text-body); padding: 0.35rem 0;
  padding-left: 1.25rem; position: relative;
}
.legal-content-nature ul li::before { content: '–'; position: absolute; left: 0; color: var(--color-olive); }
.legal-content-nature a { color: var(--color-olive); }
.legal-content-nature a:hover { text-decoration: underline; }
.legal-date-nature { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 2.5rem; letter-spacing: 0.03em; text-align: center; }
.legal-footer-nature { background: var(--bg-warm); border-top: 1px solid var(--border-soft); padding: 1.5rem; text-align: center; }
.legal-footer-text-nature { font-size: 0.75rem; color: var(--text-muted); }

/* ===== SCROLL REVEAL ===== */
.reveal-animate { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-animate.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-product-img { max-width: 320px; }
  .product-grid-layout { grid-template-columns: 1fr; gap: 3rem; }
  .split-grid-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid-layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu-list { display: none; }
  .menu-toggle-button { display: flex; }
  .stats-grid-layout { grid-template-columns: repeat(2, 1fr); }
  .features-grid-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-bar { flex-direction: column; text-align: center; }
  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-buttons-group { width: 100%; justify-content: center; }
  .contact-content-wrap { grid-template-columns: 1fr; }
  .hero-meta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .legal-header-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .stat-item-card:not(:last-child)::after { display: none; }
  .stats-grid-layout { grid-template-columns: 1fr; }
}
