/*
Theme Name: Himalayan Shilajit
Theme URI: 
Author: wpkayce
Author URI: https://wordpress.org/
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.3.1
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: himalayanshilajit
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/* =============================================================
   GOLD HIMALAYAN SHILAJIT — Premium Design System
   Brand Colors: Forest Green + Gold + Cream
   Fonts: Heebo (headings) + Inter (body)
============================================================= */

/* Google Fonts — Heebo + Inter + Josefin Sans (nav) */
/* @import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Josefin+Sans:wght@400;600;700&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");
/* -------------------------------------------------------
   CSS CUSTOM PROPERTIES
------------------------------------------------------- */
:root {
  /* Brand Greens */
  --green-900: #0a1f15;
  --green-800: #122a1d;
  --green-700: #1a3d2b;
  --green-600: #235238;
  --green-500: #09ba65;
  --green-400: #2cc97a;
  --green-300: #52d093;
  --green-100: #e8f5ee;
  --green-50: #f3fbf6;

  /* Gold Accents */
  --gold-700: #8b6a0a;
  --gold-600: #a8800f;
  --gold-500: #c4922a;
  --gold-400: #d4af37;
  --gold-300: #e8c96a;
  --gold-200: #f5e4a8;
  --gold-100: #fbf4da;

  /* Neutrals */
  --cream: #fafaf5;
  --cream-2: #f4f1e8;
  --white: #ffffff;
  --gray-100: #f5f5f0;
  --gray-200: #e8e8e0;
  --gray-300: #d0d0c5;
  --gray-500: #8a8a80;
  --gray-700: #4a4a44;
  --gray-900: #1a1a16;

  /* Typography */
  --font-display: "Heebo", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-nav: "Josefin Sans", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 7rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 31, 21, 0.08);
  --shadow-md: 0 6px 24px rgba(10, 31, 21, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 31, 21, 0.16);
  --shadow-xl: 0 32px 80px rgba(10, 31, 21, 0.2);
  --shadow-gold: 0 8px 32px rgba(196, 146, 42, 0.3);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease-smooth);

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
}

/* -------------------------------------------------------
   RESET & BASE
------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* -------------------------------------------------------
   CONTAINER
------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* -------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 800;
  color: var(--green-900);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-900);
  text-align: center;
  padding-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-700);
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-2xl);
}

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: #d4af37 !important;
  color: #0b2212 !important; /* Deep green text for contrast */
  border: none !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 15px 35px !important;
  border-radius: 4px !important; /* Slightly sharper corners feel more premium than heavy rounding */
}
.btn-primary:hover {
  background-color: #c4a133 !important; /* Slightly darker gold */
}
/* .btn-primary {
  background: linear-gradient(
    135deg,
    var(--green-500) 0%,
    var(--green-400) 100%
  );
  color: var(--white);
  box-shadow: 0 4px 16px rgba(9, 186, 101, 0.35);
} 
  
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(9, 186, 101, 0.45);
  background: linear-gradient(
    135deg,
    var(--green-400) 0%,
    var(--green-300) 100%
  );
}
  */

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 100%);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 146, 42, 0.45);
}

/* .btn-ghost {
  background: transparent;
  color: var(--green-500);
  border: 1px solid var(--green-600);
} 
  .btn-ghost:hover {
  background: var(--green-900);
  color: var(--white);
}

*/

.btn-ghost {
  border: 2px solid #d4af37 !important;
  color: #d4af37 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 13px 30px !important; /* Compensate for border */
  border-radius: 4px !important;
}

.btn-ghost:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--green-600);
  border: 2px solid var(--green-300);
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 15px 35px !important;
  border-radius: 4px !important;
}
.btn-outline:hover {
  background: var(--green-100);
  border-color: var(--green-500);
  color: var(--green-700);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-full {
  width: 100%;
}

/* -------------------------------------------------------
   ANNOUNCEMENT BAR
------------------------------------------------------- */
.announcement-bar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.625rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.announcement-track span strong {
  color: var(--gold-300);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* -------------------------------------------------------
   HEADER / NAVIGATION
------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background: rgba(250, 250, 245, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-lg);
}
/* Logo */
.custom-header-logo {
  display: block;
  max-height: 60px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-300);
  padding: 5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-title {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 1.5px;
  margin: 0;
  color: #222;
  word-spacing: -3px;
}

.logo-subtitle {
  display: inline-block;
  margin-top: 3px;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  background: #d4af37;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}
/* Tablet Responsive */
@media (max-width: 1024px) {
  .logo {
    flex-shrink: 1 !important; /* Allows the container to shrink */
    min-width: 0 !important;   /* Crucial: Prevents Flexbox from blowing out the width */
  }

  .custom-header-logo {
    max-height: 45px !important;
    max-width: 100% !important; /* Constrains image to the parent link */
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo {
    max-width: 50vw !important; /* Prevents the logo area from pushing icons off screen */
    flex-shrink: 1 !important;
    min-width: 0 !important;
  }

  .custom-header-logo {
    max-height: 35px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Hides text entirely on mobile to save space */
  .logo-title,
  .logo-subtitle {
    display: none !important;
  }
}
/* Primary Nav */

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.primary-nav > ul > li {
  position: static;
}

.primary-nav > ul > li.menu-item-has-children:not(.has-mega-menu) {
  position: relative;
}

.primary-nav a {
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: var(--header-height);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--green-500);
  border-bottom-color: var(--green-500);
  background: transparent;
}

.primary-nav .nav-arrow {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.primary-nav .has-mega-menu:hover .nav-arrow {
  transform: rotate(180deg);
}

.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm, 8px);
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}

.primary-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu a {
  height: auto;
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  white-space: normal;
  transition: all var(--transition);
  justify-content: flex-start;
  width: 100%;
}

.primary-nav .sub-menu a:hover {
  color: var(--green-500);
  background-color: rgba(0, 0, 0, 0.02);
  border: none;
}
/* -------------------------------------------------------
   MEGA MENU
------------------------------------------------------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(8px);
  background: var(--white);
  border-top: 2px solid var(--green-500);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 24px 64px rgba(10, 31, 21, 0.16);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s var(--ease-smooth),
    transform 0.22s var(--ease-smooth);
  z-index: 2000;
  overflow: hidden;
}
.has-mega-menu:hover .mega-menu,
.has-mega-menu:focus-within .mega-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
/* Invisible bridge so mouse can travel to mega menu */
.has-mega-menu::after {
  content: "";
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: 12px;
  z-index: 1999;
}

.mega-menu-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr;
  gap: 0;
}

.mega-col {
  padding: var(--space-xl) var(--space-xl);
}
.mega-col + .mega-col {
  border-left: 1px solid var(--gray-200);
}
.mega-col-browse {
  background: var(--green-50);
}

.mega-col-title {
  font-family: var(--font-nav);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

/* Product links in mega menu */
.mega-product-link {
  display: flex !important;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.625rem !important;
  border-radius: var(--radius-md) !important;
  height: auto !important;
  border-bottom: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.9375rem !important;
  font-family: var(--font-display) !important;
  color: var(--green-900) !important;
  font-weight: 700 !important;
  margin-bottom: 0.25rem;
}
.mega-product-link:hover {
  background: var(--green-50) !important;
  color: var(--green-600) !important;
}
.mega-product-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--cream-2);
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.mega-product-info {
  flex: 1;
  min-width: 0;
}
.mega-product-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-product-info span {
  font-size: 0.8125rem;
  color: var(--green-500);
  font-weight: 600;
  font-family: var(--font-body);
}
.mega-product-badge {
  font-family: var(--font-nav) !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  background: var(--gold-100);
  color: var(--gold-600) !important;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

/* Benefit links in mega menu */
.mega-benefit-link {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem !important;
  border-radius: var(--radius-sm) !important;
  height: auto !important;
  border-bottom: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: var(--gray-700) !important;
  margin-bottom: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-benefit-link:hover {
  color: var(--green-600) !important;
  background: var(--green-50) !important;
}
.mega-benefit-icon {
  font-size: 1rem;
}

/* Featured promo card in mega menu */
.mega-featured {
  padding: var(--space-lg) !important;
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}
.mega-featured .mega-col-title {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.mega-featured-eyebrow {
  font-family: var(--font-nav);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: 0.5rem;
}
.mega-featured-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.mega-featured-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}
.mega-featured-cta {
  display: inline-flex !important;
  height: auto !important;
  border-bottom: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--font-display) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  background: linear-gradient(
    135deg,
    var(--gold-500),
    var(--gold-400)
  ) !important;
  color: var(--white) !important;
  padding: 0.625rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
}
.mega-featured-cta:hover {
  background: linear-gradient(
    135deg,
    var(--gold-400),
    var(--gold-300)
  ) !important;
  transform: translateY(-1px);
}

/* Mega menu promo strip — full-width footer bar */
.mega-promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.75rem var(--space-md);
  background: linear-gradient(
    90deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.mega-promo-strip strong {
  color: var(--gold-300);
}
.mega-promo-strip a {
  font-family: var(--font-nav) !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--gold-300) !important;
  height: auto !important;
  border-bottom: none !important;
  padding: 0.3rem 0.75rem !important;
  border-radius: var(--radius-full) !important;
  border: 1px solid rgba(196, 146, 42, 0.4) !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.mega-promo-strip a:hover {
  background: rgba(196, 146, 42, 0.15) !important;
  border-color: var(--gold-300) !important;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
  position: relative;
}
.icon-btn svg {
  stroke: #d4af37 !important;
  color: #d4af37 !important;
  width: 20px;
  height: 20px;
}
.icon-btn:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.cart-btn {
  position: relative;
}
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: #d4af37 !important;
  color: #0b2212 !important;
  font-size: 0.625rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--transition);
}
.cart-count.pulse {
  animation: cartPulse 0.4s var(--ease-bounce);
}

@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle:hover {
  background: var(--green-100);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------
   HERO SECTION
------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 70% 50%,
      rgba(9, 186, 101, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 80%,
      rgba(196, 146, 42, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #0a1f15 0%, #122a1d 50%, #0e2318 100%);
  z-index: 0;
}

/* Decorative lines pattern */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 186, 101, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 186, 101, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: var(--space-md);
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-300);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}
/* 
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
} */

.hero-stats {
  margin-top: 40px !important;
  display: flex !important;
  gap: 30px !important;
  align-items: center !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2) !important; /* Subtle gold divider line */
  padding-top: 20px !important;
}

.stat strong {
  color: #d4af37 !important;
  font-size: 24px !important;
  display: block !important;
}

.stat span {
  font-size: 13px !important;
  opacity: 0.8 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.5);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 460px;
  max-width: 100%;
}

.hero-product-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--gold-300);
}
.hero-badge-1 {
  top: 2rem;
  left: -1.5rem;
}
.hero-badge-2 {
  bottom: 3rem;
  right: -1.5rem;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  z-index: 1;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(4px);
  }
}

/* -------------------------------------------------------
   TRUST BADGES
------------------------------------------------------- */
.trust-section {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--space-lg) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
}

.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
}
.trust-icon svg {
  width: 25px;
  height: 25px;
}

.trust-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.trust-text span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* =========================================
   TRUST BADGES SECTION
========================================= */

.trust-section {
  background-color: #fbfdfa !important;
  border-bottom: 1px solid #eaeaea !important;
}

.trust-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}

.trust-item {
  flex: 0 1 300px !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  justify-content: center !important;
}

.trust-icon svg {
  color: #d4af37 !important;
}

.trust-text strong {
  color: #0b2212 !important;
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
}

/* -------------------------------------------------------
   PRODUCTS SECTION
------------------------------------------------------- */
.products-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
/* ==========================================================================
  E-commerce Product Card Styling
   ========================================================================== */

/* 1. Main Card Container */
.product-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s ease;
  position: relative;
}

/* Subtle elevation lift on hover */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* 2. Media Wrapper & Badges */
.product-image-wrapper {
  position: relative;
  background-color: #f9f9f9;
  padding-top: 100%; /* Forces a clean 1:1 square aspect ratio */
  overflow: hidden;
  width: 100%;
}

.product-image-wrapper a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Elegant image scale zoom on hover */
.product-card:hover .product-img {
  transform: scale(1.06);
}

/* Sale/Bestseller Badges */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 30px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge-bestseller {
  background: #b8860b; /* Sophisticated Gold tone matching Shilajit identity */
}

.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
}

.product-actions .add_to_cart_button.added {
  display: none !important;
}

.product-actions .added_to_cart {
  background-color: transparent;
  color: var(--green-600);
  border: 2px solid #d1a73b;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  padding: 15px 35px !important;
  border-radius: 4px !important;
}

.product-actions .added_to_cart:hover {
  background-color: #b58f2e;
}

.product-hover-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  transition: bottom 0.3s ease;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.product-image-wrapper:hover .product-hover-actions {
  bottom: 0;
  opacity: 1;
}

/* 4. Product Info Structure */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Ratings Line */
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.stars {
  color: #ffb400; /* Bright gold stars */
}

.review-count {
  color: #777777;
}

/* Product Typography */
.product-name {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.product-name a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-name a:hover {
  color: #b8860b; /* Accents matching brand color scheme */
}

/* 5. Pricing Architecture */
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto; /* Pushes price details consistently to the bottom */
  margin-bottom: 20px;
}

.price-sale {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
}

.price-original {
  font-size: 1rem;
  color: #999999;
  text-decoration: line-through;
}

.price-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: #df2020;
  background: #ffebeb;
  padding: 2px 8px;
  border-radius: 4px;
}

/* 6. Action Row Grid Buttons */
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .btn {
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.product-actions .btn-primary {
  background: #111111;
  color: #ffffff;
  border: 1px solid #111111;
}

.product-actions .btn-primary:hover {
  background: #b8860b;
  border-color: #b8860b;
}

.product-actions .btn-outline {
  background: transparent;
  color: #111111;
  border: 1px solid #eaeaea;
}

.product-actions .btn-outline:hover {
  background: #f5f5f5;
  border-color: #111111;
}

/* -------------------------------------------------------
   BENEFITS SECTION
------------------------------------------------------- */
/* .benefits-section {
  padding: var(--space-3xl) 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 80% 50%,
      rgba(9, 186, 101, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(196, 146, 42, 0.06) 0%,
      transparent 50%
    );
}

.benefits-section .section-eyebrow {
  color: var(--gold-300);
}
.benefits-section .section-title {
  color: var(--white);
}
.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.35s var(--ease-smooth);
}
.benefit-card:hover {
  background: rgba(9, 186, 101, 0.08);
  border-color: rgba(9, 186, 101, 0.25);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(9, 186, 101, 0.12);
  border: 1px solid rgba(9, 186, 101, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
  margin-bottom: var(--space-md);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
} */

/* -------------------------------------------------------
   BENEFITS SECTION (Updated to Premium Gold)
------------------------------------------------------- */
.benefits-section {
  padding: var(--space-3xl) 0;
  background: var(--green-900); /* Keep the dark green base */
  position: relative;
  overflow: hidden;
}

/* Updated gradients to use Gold instead of Neon Green */
.benefits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 60% at 80% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      /* Swapped to Gold */ transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(196, 146, 42, 0.06) 0%,
      transparent 50%
    );
}

.benefits-section .section-eyebrow {
  color: #d4af37; /* Premium Gold */
}
.benefits-section .section-title {
  color: var(--white);
}
.benefits-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all 0.35s var(--ease-smooth);
}

/* Updated Hover state to glow Gold instead of Mint Green */
.benefit-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

/* Updated Icon box to be Gold instead of Mint Green */
.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37; /* Premium Gold */
  margin-bottom: var(--space-md);
}
.benefit-icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card h3 {
  font-family:
    "Playfair Display", serif !important; /* Ensure premium font is applied */
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* -------------------------------------------------------
   HOW TO USE
------------------------------------------------------- */
/* .how-to-use-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.35s var(--ease-smooth);
}
.step-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: var(--space-sm);
  -webkit-text-stroke: 2px var(--green-300);
  text-stroke: 2px var(--green-300);
}

.step-icon {
  width: 72px;
  height: 72px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--green-600);
  transition: all var(--transition);
}
.step-card:hover .step-icon {
  background: var(--green-500);
  color: var(--white);
}
.step-icon svg {
  width: 36px;
  height: 36px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.625rem;
}
.step-card p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  color: var(--gray-300);
}
.step-connector svg {
  width: 28px;
  height: 28px;
}

.how-to-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
}
.how-to-note svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.how-to-note p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.how-to-note strong {
  color: var(--green-800);
} */

/* -------------------------------------------------------
   HOW TO USE (Updated to Premium Gold & Deep Green)
------------------------------------------------------- */
.how-to-use-section {
  padding: var(--space-3xl) 0;
  background: #fbfdfa; /* Clean premium off-white */
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius-xl);
  transition: all 0.35s var(--ease-smooth);
}

/* Hover state now glows with a soft gold border */
.step-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* Gold border */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05); /* Softer premium shadow */
  transform: translateY(-4px);
}

/* Elegant gold outline for the numbers */
.step-number {
  display: inline-block;
  font-family: "Playfair Display", serif !important;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-stroke: 1.5px #d4af37;
  color: #d4af37 !important;
  -webkit-text-stroke: 0px !important;
  opacity: 0.9 !important;
}

/* Icon box styling */
.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(212, 175, 55, 0.1); /* Faint gold background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: #d4af37; /* Gold Icon */
  transition: all var(--transition);
}

/* On hover, background fills gold, icon turns deep green for contrast */
.step-card:hover .step-icon {
  background: #d4af37;
  color: #0b2212;
}
.step-icon svg {
  width: 36px;
  height: 36px;
}

.step-card h3 {
  font-family: "Playfair Display", serif !important;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0b2212; /* Deep green */
  margin-bottom: 0.625rem;
}
.step-card p {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.65;
}

/* Connecting arrows */
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  color: #d4af37; /* Gold arrows */
  opacity: 0.5;
}
.step-connector svg {
  width: 28px;
  height: 28px;
}

/* Pro Tip Note Box */
.how-to-note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(212, 175, 55, 0.05); /* Subtle gold tint */
  border: 1px solid rgba(212, 175, 55, 0.2); /* Soft gold border */
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
}
.how-to-note svg {
  width: 20px;
  height: 20px;
  color: #d4af37; /* Premium Gold */
  flex-shrink: 0;
  margin-top: 2px;
}
.how-to-note p {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
}
.how-to-note strong {
  color: #0b2212; /* Deep green */
}

/* =======================================================
   ABOUT SECTION (Full Premium & Compact Final Version)
======================================================= */
.about-section {
  padding: 70px 0 !important; /* Compact vertical spacing */
  background: #fbfdfa;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px !important; /* Tighter space between image and text */
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 480px !important; /* Shorter image height to prevent stretching */
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, #183e22, #0b2212);
  color: #ffffff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 15px 30px rgba(11, 34, 18, 0.2);
}

.about-tag strong {
  display: block;
  font-family: "Playfair Display", serif !important;
  font-size: 1.75rem;
  font-weight: 900;
  color: #d4af37; /* Premium Gold */
  line-height: 1;
}

.about-tag span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.about-content {
  padding-left: var(--space-lg);
}

.about-content p {
  font-size: 0.95rem !important; /* Slightly smaller, elegant text */
  color: #555555;
  line-height: 1.6 !important;
  margin-bottom: 15px !important; /* Tighter paragraph spacing */
}

.about-content em {
  color: #d4af37;
  font-style: italic;
  font-weight: 600;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px !important; /* Tighter gap between cards */
  margin: 25px 0 !important; /* Tighter top/bottom margin */
}

.pillar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 12px 20px !important; /* Thinner inside padding */
  background: rgba(212, 175, 55, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.pillar-icon {
  font-size: 1.5rem;
  color: #d4af37;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-family: "Playfair Display", serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: #0b2212;
  margin-bottom: 0.2rem;
}

.pillar span {
  font-size: 0.875rem;
  color: #666666;
}

/* Pull the explore button up */
.about-content .btn-primary,
.about-content a.button {
  margin-top: 5px !important;
  display: inline-block !important;
}

/* -------------------------------------------------------
   REVIEWS / TESTIMONIALS
------------------------------------------------------- */
/* .reviews-section {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.big-stars {
  font-size: 1.5rem;
  color: var(--gold-400);
}
.overall-rating strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--green-900);
}
.overall-rating span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.35s var(--ease-smooth);
}
.review-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-featured {
  border-color: var(--gold-300);
  background: linear-gradient(135deg, #fffdf5 0%, var(--white) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.review-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info {
  flex: 1;
}
.reviewer-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
}
.reviewer-info span {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.review-stars {
  color: var(--gold-400);
  font-size: 0.875rem;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.review-text::before {
  content: '"';
}
.review-text::after {
  content: '"';
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--gray-200);
}
.review-product {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-600);
}
.review-date {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-xl);
} */

/* -------------------------------------------------------
   ABOUT SECTION (Updated to Premium Brand Colors)
------------------------------------------------------- */
.about-section {
  padding: var(--space-3xl) 0;
  background: #ffffff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* The Altitude Tag - Deep Green Gradient */
.about-tag {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, #183e22, #0b2212);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 20px rgba(11, 34, 18, 0.3);
}
.about-tag strong {
  display: block;
  font-family: "Playfair Display", serif !important;
  font-size: 1.75rem;
  font-weight: 900;
  color: #d4af37; /* Premium Gold */
  line-height: 1;
}
.about-tag span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content {
  padding-left: var(--space-lg);
}
.about-content p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.75;
  margin-bottom: var(--space-md);
}
.about-content em {
  color: #d4af37; /* Gold emphasis */
  font-style: italic;
  font-weight: 600;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

/* Pillar Cards - Soft Gold Tint */
.pillar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(212, 175, 55, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-family: "Playfair Display", serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: #0b2212;
  margin-bottom: 0.2rem;
}
.pillar span {
  font-size: 0.875rem;
  color: #666666;
}
/* -------------------------------------------------------
   REVIEWS / TESTIMONIALS (Updated to Premium Brand Colors)
------------------------------------------------------- */
.reviews-section {
  padding: var(--space-3xl) 0;
  background: #fbfdfa; /* Clean premium off-white */
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.big-stars {
  font-size: 1.5rem;
  color: #d4af37; /* Gold Stars */
}
.overall-rating strong {
  font-family: "Playfair Display", serif !important;
  font-size: 1.125rem;
  color: #0b2212; /* Deep Green */
}
.overall-rating span {
  font-size: 0.875rem;
  color: #666666;
}

.reviews-grid {
  display: grid;
  /* UPDATED: Auto-fit columns to prevent squishing on tablets/mobile */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 0.35s var(--ease-smooth);
}
.review-card:hover {
  border-color: rgba(212, 175, 55, 0.5); /* Gold hover border */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.review-featured {
  border-color: #d4af37;
  background: linear-gradient(
    135deg,
    #fffcf5 0%,
    #ffffff 100%
  ); /* Subtle gold wash */
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
  transform: scale(1.02);
}
.review-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap; /* UPDATED: Allows wrapping if space gets tight */
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

/* Reviewer Avatar - Deep Green Gradient */
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #183e22, #0b2212);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif !important;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info {
  flex: 1;
}
.reviewer-info strong {
  display: block;
  font-family: "Playfair Display", serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: #0b2212;
}
.reviewer-info span {
  font-size: 0.8125rem;
  color: #777777;
}
.review-stars {
  color: #d4af37;
}

.review-text {
  font-size: 0.9375rem;
  color: #444444;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}
.review-text::before {
  content: '"';
  color: #d4af37;
  font-weight: 700;
}
.review-text::after {
  content: '"';
  color: #d4af37;
  font-weight: 700;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid #eaeaea;
}
.review-product {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d4af37; /* Gold product link */
}
.review-date {
  font-size: 0.8125rem;
  color: #888888;
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.reviews-cta .btn-outline {
  text-align: center;
  margin-top: var(--space-xl);
  border: 2px solid #d4af37 !important;
  color: #d4af37 !important;
}
.reviews-cta .btn-outline:hover {
  background-color: rgba(212, 175, 55, 0.1) !important;
}

/* -------------------------------------------------------
   FAQ SECTION
------------------------------------------------------- */
.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  text-align: left;
  transition: all var(--transition);
  background: var(--white);
}
.faq-question:hover {
  background: var(--green-50);
  color: var(--green-700);
}
.faq-question.active {
  background: var(--green-50);
  color: var(--green-700);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: transform var(--transition);
}
.faq-question.active .faq-icon {
  transform: rotate(180deg);
  color: var(--green-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s var(--ease-smooth),
    padding 0.3s var(--ease-smooth);
}
.faq-answer.open {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.75;
}
.faq-answer strong {
  color: var(--green-800);
}

/* -------------------------------------------------------
   CTA SECTION
------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-900) 50%,
    #0d2010 100%
  );
}
.cta-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(9, 186, 101, 0.07);
}
.cta-bg::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 146, 42, 0.06);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.cta-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.cta-content strong {
  color: var(--gold-300);
}
.cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.footer-brand .footer-logo .logo-main {
  color: var(--white);
}
.footer-brand .logo-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: var(--space-md) 0 var(--space-lg);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}
.footer-social a svg {
  width: 16px;
  height: 16px;
}
.footer-social a:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.footer-col li {
  margin-bottom: 0.625rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--green-300);
}

.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form input:focus {
  border-color: var(--green-400);
}
.newsletter-form .btn-primary {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-md) 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: var(--green-300);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-payment span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}
.payment-icons {
  display: flex;
  gap: 0.375rem;
}
.payment-icon {
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

/* =======================================================
   PREMIUM SPLIT SECTION (Unified Seamless Design)
======================================================= */
/* 1. Apply the dark background and circles to the WHOLE section */
.premium-split-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #081a0e; /* Unified Deep Green Background */
  position: relative;
  overflow: hidden;
}

/* 2. Spread the subtle background circles across the entire banner */
.premium-split-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(22, 66, 35, 0.4);
  z-index: 1;
}
.premium-split-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(22, 66, 35, 0.4);
  z-index: 1;
}

.premium-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
  z-index: 2; /* Keeps all text/content above the circles */
}

/* -----------------------------------------
   LEFT COLUMN: Dark CTA (Now Transparent)
----------------------------------------- */
.split-left-cta {
  background-color: transparent; /* Removed so it uses the section background */
  padding: 100px 10%;
  display: flex;
  align-items: center;
}

.cta-content {
  text-align: left;
}

.cta-eyebrow {
  display: block;
  color: #d4af37; /* Gold */
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cta-heading {
  color: #ffffff;
  font-family: "Playfair Display", serif !important;
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.cta-text strong {
  color: #d4af37;
}

/* The Glowing Gold Button */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-glow-gold {
  background-color: #d4af37;
  color: #0b2212;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
.btn-glow-gold:hover {
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.6);
  background-color: #c4a133;
}

/* The Dark Ghost Button */
.btn-ghost-dark {
  background-color: transparent;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.btn-ghost-dark:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* -----------------------------------------
   RIGHT COLUMN: Instagram (Now Transparent)
----------------------------------------- */
.split-right-insta {
  background-color: transparent; /* Removed so it uses the section background */
  padding: 100px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(212, 175, 55, 0.15); /* Keeps the elegant gold divider */
}

.insta-header h3 {
  font-family: "Playfair Display", serif !important;
  font-size: 32px;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.insta-header h3 a {
  color: #d4af37; /* Gold */
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.insta-header h3 a:hover {
  opacity: 0.8;
}

.insta-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 30px;
}

/* Hide Smash Balloon's default button */
.split-right-insta #sb_instagram #sbi_load {
  display: none !important;
}

/* -----------------------------------------
   MOBILE RESPONSIVENESS
----------------------------------------- */
@media (max-width: 992px) {
  .premium-split-grid {
    grid-template-columns: 1fr; /* Stacks on mobile */
  }
  .split-left-cta,
  .split-right-insta {
    padding: 60px 5%;
    text-align: center;
  }
  .split-right-insta {
    border-left: none; /* Remove vertical divider */
    border-top: 1px solid rgba(212, 175, 55, 0.15); /* Move divider to horizontal */
  }
  .cta-content {
    text-align: center;
  }
  .cta-text {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-buttons {
    justify-content: center;
  }
}

/* -------------------------------------------------------
   CART DRAWER
------------------------------------------------------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 21, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 95vw;
  background: var(--white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
  box-shadow: var(--shadow-xl);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}
.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
}
.cart-close svg {
  width: 20px;
  height: 20px;
}
.cart-close:hover {
  background: var(--gray-100);
  color: var(--green-900);
}
.cart-items .woocommerce-mini-cart__total {
  display: none;
}
.cart-items .woocommerce-mini-cart-item .quantity,
.cart-items .woocommerce-mini-cart__total,
.cart-items .woocommerce-mini-cart__buttons {
  display: none;
}
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg) var(--space-xl);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-md);
  text-align: center;
  padding: var(--space-2xl) 0;
}
.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--gray-300);
}
.cart-empty p {
  color: var(--gray-500);
  font-size: 1rem;
}

.cart-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-200);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--gray-100);
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.25rem;
}
.cart-item-price {
  font-size: 0.875rem;
  color: var(--green-600);
  font-weight: 600;
}
.cart-item-remove {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  display: inline-block;
  transition: color var(--transition);
}
.cart-item-remove:hover {
  color: #dc2626;
}

.cart-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-sm);
}
.cart-subtotal span {
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.cart-subtotal strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-900);
}
.cart-shipping-note {
  font-size: 0.8125rem;
  color: var(--green-500);
  text-align: center;
}

.drawer-footer-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
  background: #fff;
}

.drawer-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  color: #222;
}

.drawer-qty-btn:hover {
  background: #f4f4f4;
}

.drawer-qty-number {
  min-width: 34px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 14px;
  font-weight: 600;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-subtotal > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart-subtotal > div:first-child > span {
  font-size: 14px;
  color: #666;
}

#cart-subtotal {
  font-size: 18px;
  font-weight: 700;
}

/* -------------------------------------------------------
   BACK TO TOP
------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--green-700);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-500);
  transform: translateY(-3px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* -------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-smooth),
    transform 0.7s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* -------------------------------------------------------
   RESPONSIVE — TABLET
------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 640px;
    margin: 0 auto;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-subtext {
    margin: 0 auto var(--space-xl);
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
  }

  .primary-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .primary-nav.open {
    display: block;
  }
  .primary-nav ul {
    flex-direction: column;
    padding: var(--space-md);
    gap: 0.25rem;
  }
  .primary-nav a {
    display: block;
    padding: 0.875rem var(--space-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
  .nav-toggle {
    display: flex;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    display: none;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-featured {
    transform: none;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding-left: 0;
  }
  .about-tag {
    bottom: -1rem;
    right: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-payment {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  .stat-divider {
    display: none;
  }
  .product-actions {
    flex-direction: column;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================================
   PAGE STYLES — Shop, Single Product, Checkout
============================================================= */

/* -------------------------------------------------------
   SHARED PAGE COMPONENTS
------------------------------------------------------- */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--green-900) 0%,
    var(--green-800) 100%
  );
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 186, 101, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 186, 101, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-md);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--gold-300);
}
.breadcrumb .sep {
  opacity: 0.4;
}
.breadcrumb .current {
  color: var(--gold-300);
}

/* -------------------------------------------------------
   SHOP PAGE
------------------------------------------------------- */
.shop-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--space-xl);
  gap: var(--space-md);
  flex-wrap: wrap;
}

.shop-result-count {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.shop-sort {
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23235238' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.shop-sort:focus {
  border-color: var(--green-500);
}

.view-toggle {
  display: flex;
  gap: 0.25rem;
}
.view-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all var(--transition);
  background: var(--white);
}
.view-btn svg {
  width: 16px;
  height: 16px;
}
.view-btn.active,
.view-btn:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}

/* Shop filter chips */
.shop-filters {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.shop-filters-label {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.filter-chip {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4375rem 1rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-chip:hover {
  border-color: var(--green-400);
  color: var(--green-700);
}
.filter-chip.active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}

/* Shop product grid */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}
.shop-products-grid.list-view {
  grid-template-columns: 1fr;
}
.shop-products-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 320px 1fr;
}
.shop-products-grid.list-view .product-image-wrapper {
  height: 100%;
  min-height: 280px;
}

/* Shop page banner */
.shop-banner {
  background: linear-gradient(135deg, var(--gold-100), var(--cream));
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}
.shop-banner-text h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 0.375rem;
}
.shop-banner-text p {
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.shop-banner-text strong {
  color: var(--gold-600);
}

/* -------------------------------------------------------
   SINGLE PRODUCT PAGE
------------------------------------------------------- */
.product-page {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.product-main-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-2);
  margin-bottom: var(--space-sm);
  position: relative;
  border: 1px solid var(--gray-200);
  aspect-ratio: 1;
}
.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.product-main-img-wrapper:hover .product-main-img {
  transform: scale(1.04);
}

.product-gallery-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  z-index: 2;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.product-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  aspect-ratio: 1;
  background: var(--cream-2);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb.active {
  border-color: var(--green-500);
}
.product-thumb:hover {
  border-color: var(--green-300);
}

/* Product summary */
.product-summary {
}

.product-summary .product-rating {
  margin-bottom: var(--space-sm);
}
.product-summary .product-rating a {
  font-size: 0.875rem;
  color: var(--green-600);
  text-decoration: underline;
  font-weight: 500;
}

.product-summary h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--green-900);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.product-summary .product-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.product-summary .price-sale {
  font-size: 2rem;
}

/* Subscription toggle */
.subscription-toggle {
  display: flex;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.sub-option {
  flex: 1;
  padding: var(--space-md);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.sub-option.active {
  background: var(--green-50);
  border-left: 2px solid var(--green-500);
}
.sub-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.sub-option-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
  display: block;
  margin-bottom: 0.25rem;
}
.sub-option-price {
  font-size: 0.875rem;
  color: var(--gray-500);
}
.sub-option.active .sub-option-price {
  color: var(--green-600);
  font-weight: 600;
}
.sub-save-badge {
  display: inline-block;
  background: var(--green-500);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
}

/* Quantity + Add to cart */
.add-to-cart-row {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  height: 52px;
  flex-shrink: 0;
}
.qty-btn {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--green-800);
  font-size: 1.25rem;
  font-weight: 700;
  transition: background var(--transition);
}
.qty-btn:hover {
  background: var(--green-100);
}
.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  outline: none;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.add-to-cart-row .btn-primary {
  flex: 1;
  height: 52px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.buy-now-btn {
  width: 100%;
  height: 52px;
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  margin-bottom: var(--space-md);
}
.buy-now-btn:hover {
  background: var(--green-700);
}

/* Product trust icons */
.product-trust-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.product-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: var(--space-sm) 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
  border-right: 1px solid var(--gray-200);
}
.product-trust-item:last-child {
  border-right: none;
}
.product-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--green-500);
}
.product-trust-item strong {
  display: block;
  font-size: 0.75rem;
  color: var(--green-800);
  font-weight: 600;
}

/* Product meta highlights */
.product-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: var(--space-md);
  background: var(--green-50);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
}
.product-meta-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--green-800);
  font-weight: 500;
}
.product-meta-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--green-500);
}

/* Product Tabs */
.product-tabs {
  margin-top: var(--space-3xl);
}

.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
  margin-bottom: var(--space-xl);
  overflow-x: auto;
}
.tab-btn {
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: var(--space-md) var(--space-xl);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover {
  color: var(--green-700);
}
.tab-btn.active {
  color: var(--green-700);
  border-bottom-color: var(--green-500);
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.tab-panel p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}
.tab-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: var(--space-sm);
}
.tab-panel ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-md);
}
.tab-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}
.tab-panel ul li::before {
  content: "✦";
  color: var(--green-500);
  font-size: 0.625rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.product-tabs-section {
  padding: 60px 0;
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid #e5e5e5;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
}

.woocommerce-tabs ul.tabs li a {
  display: inline-flex;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  border-bottom: 2px solid transparent;
}

.woocommerce-tabs ul.tabs li.active a {
  color: #111;
  border-bottom-color: #111;
}

.woocommerce-Tabs-panel {
  line-height: 1.7;
  color: #444;
}

.woocommerce-Tabs-panel.active {
  opacity: 1;
  visibility: visible;
}

.woocommerce-Tabs-panel p {
  margin-bottom: 15px;
}

.woocommerce-Tabs-panel h2 {
  margin-bottom: 16px;
}
/* Supplement facts table */
.supplement-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border: 2px solid var(--gray-900);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.supplement-table th {
  background: var(--gray-900);
  color: var(--white);
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-display);
  font-size: 0.875rem;
}
.supplement-table td {
  padding: 0.5rem var(--space-md);
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}
.supplement-table tr:last-child td {
  border-bottom: none;
}
.supplement-table td:last-child {
  text-align: right;
}

/* Product review form */
.review-form-wrap {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.review-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: var(--space-lg);
}
.form-group {
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 0.375rem;
}
.form-control {
  width: 100%;
  padding: 0.875rem var(--space-md);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus {
  border-color: var(--green-400);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.star-select {
  display: flex;
  gap: 0.375rem;
  font-size: 1.5rem;
  color: var(--gray-300);
  cursor: pointer;
}
.star-select span {
  transition: color var(--transition);
}
.star-select span.active,
.star-select span:hover {
  color: var(--gold-400);
}

/* Related products */
.related-products {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}
.related-products .section-header {
  margin-bottom: var(--space-xl);
}

/* -------------------------------------------------------
   CHECKOUT PAGE
------------------------------------------------------- */
.checkout-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
}
.checkout-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-secure {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
}
.checkout-secure svg {
  width: 16px;
  height: 16px;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-lg) 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0 var(--space-lg);
}
.checkout-step.active {
  color: var(--green-700);
}
.checkout-step.completed {
  color: var(--green-500);
}
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-300);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.checkout-step.active .step-num {
  background: var(--green-600);
}
.checkout-step.completed .step-num {
  background: var(--green-500);
  font-size: 0;
}
.checkout-step.completed .step-num::after {
  content: "✓";
  font-size: 0.75rem;
}
.step-sep {
  width: 48px;
  height: 1px;
  background: var(--gray-300);
}

.checkout-main {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--cream);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: start;
}

.checkout-form-section {
}

.checkout-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.checkout-section-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout-section-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-900);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.checkout-section-header h3 svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
}
.checkout-section-edit {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  cursor: pointer;
}
.checkout-section-body {
  padding: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-row.full {
  grid-template-columns: 1fr;
}

/* Checkout shipping options */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition);
}
.shipping-option:hover {
  border-color: var(--green-400);
}
.shipping-option.selected {
  border-color: var(--green-500);
  background: var(--green-50);
}
.shipping-option input[type="radio"] {
  accent-color: var(--green-500);
  width: 16px;
  height: 16px;
}
.shipping-option-info {
  flex: 1;
}
.shipping-option-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
}
.shipping-option-eta {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.shipping-option-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
}
.shipping-option-price.free {
  color: var(--green-500);
}

/* Payment section */
.payment-methods {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.payment-method-btn {
  flex: 1;
  min-width: 80px;
  padding: 0.625rem var(--space-sm);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-method-btn.active {
  border-color: var(--green-500);
  background: var(--green-50);
  color: var(--green-700);
}
.payment-method-btn svg {
  width: 20px;
  height: 20px;
}

.card-icons {
  display: flex;
  gap: 0.375rem;
  margin-bottom: var(--space-md);
}
.card-icon {
  padding: 0.25rem 0.625rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

/* Order summary */
.order-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
.order-summary-header {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-toggle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-600);
  cursor: pointer;
}

.order-items {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}

.order-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.order-item:last-child {
  margin-bottom: 0;
}
.order-item-img-wrap {
  position: relative;
  flex-shrink: 0;
}
.order-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--gray-200);
  background: var(--cream-2);
}
.order-item-qty {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-item-info {
  flex: 1;
}
.order-item-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}
.order-item-variant {
  font-size: 0.8125rem;
  color: var(--gray-500);
}
.order-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  flex-shrink: 0;
}

/* Coupon */
.coupon-row {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}
.coupon-form {
  display: flex;
  gap: 0.5rem;
}
.coupon-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  outline: none;
  transition: border-color var(--transition);
}
.coupon-form input:focus {
  border-color: var(--green-400);
  background: var(--white);
}
.coupon-form .btn-outline {
  flex-shrink: 0;
  padding: 0.75rem 1.25rem;
}

/* Order totals */
.order-totals {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-200);
}
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}
.total-row:last-child {
  margin-bottom: 0;
}
.total-row span {
  color: var(--gray-700);
}
.total-row strong {
  color: var(--green-900);
  font-weight: 600;
}
.total-row.discount strong {
  color: var(--green-500);
}
.total-row.grand-total {
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: 2px solid var(--gray-200);
}
.total-row.grand-total span {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--green-900);
}
.total-row.grand-total strong {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--green-700);
}

.order-cta {
  padding: var(--space-lg) var(--space-xl);
}
.order-cta .btn-primary {
  width: 100%;
  padding: 1.0625rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}
.order-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
  text-align: center;
}
.order-secure-note svg {
  width: 14px;
  height: 14px;
  color: var(--green-500);
}

/* Checkout responsive */
@media (max-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
}

@media (max-width: 640px) {
  .shop-products-grid {
    grid-template-columns: 1fr;
  }
  .shop-products-grid.list-view .product-card {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .checkout-steps {
    gap: 0;
    padding: var(--space-sm) 0;
  }
  .checkout-step span {
    display: none;
  }
  .step-sep {
    width: 24px;
  }
}

/* ======================= spacing and typography ====================== */

.trust-section,
.products-section,
.benefits-section,
.how-to-use-section,
.about-section,
.reviews-section,
.faq-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.section-header {
  margin-bottom: 30px !important;
}
.hero {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.trust-grid,
.products-grid,
.benefits-grid,
.steps-grid {
  gap: 20px !important;
}

body,
p,
span,
a,
li,
input,
button,
.section-subtitle,
.hero-subtext {
  font-family: "Montserrat", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-headline {
  font-family: "Playfair Display", serif !important;
  letter-spacing: 0.5px;
}

.trust-text strong,
.benefit-card h3 {
  font-weight: 600 !important;
}

.trust-icon svg,
.benefit-icon svg,
.step-icon svg,
.pillar-icon {
  width: 36px !important;
  height: 36px !important;
  stroke-width: 2px !important;
}

.trust-icon,
.benefit-icon,
.step-icon {
  width: 60px !important;
  height: 60px !important;
}
