/* ============================================================
   Naturally Shilajit — Main Stylesheet
   Version: 1.0 | June 2025
   ============================================================ */

/* ── THEME VARIABLES ──────────────────────────────────────── */
:root,
[data-theme="light"] {
  --bg:           #FFFFFF;
  --bg2:          #F5F7F5;
  --bg3:          #EEF3EE;
  --card:         #FFFFFF;
  --border:       #E4EAE4;
  --heading:      #1A2E1A;
  --body:         #444444;
  --muted:        #777777;
  --green:        #1B4D2E;
  --green-hover:  #2D6A4F;
  --green-light:  rgba(27,77,46,.08);
  --gold:         #C9A84C;
  --gold-hover:   #B8962E;
  --gold-light:   rgba(201,168,76,.12);
  --gold-border:  rgba(201,168,76,.35);
  --star:         #F5A623;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.16);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   .25s ease;
}

[data-theme="dark"] {
  --bg:           #0E1810;
  --bg2:          #131F15;
  --bg3:          #182B1A;
  --card:         #1A2C1C;
  --border:       #2A3D2C;
  --heading:      #F0F7F0;
  --body:         #C8D9C8;
  --muted:        #7A9A7A;
  --green:        #3A8A56;
  --green-hover:  #4DAA6A;
  --green-light:  rgba(58,138,86,.12);
  --gold:         #D4AD52;
  --gold-hover:   #E8C060;
  --gold-light:   rgba(212,173,82,.1);
  --gold-border:  rgba(212,173,82,.3);
  --star:         #F5A623;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.2);
  --shadow:       0 4px 16px rgba(0,0,0,.3);
  --shadow-md:    0 8px 32px rgba(0,0,0,.4);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.5);
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; transition:color var(--transition); }
ul  { list-style:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input, textarea, select { font-family:inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--heading);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem,   4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem);  }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { color: var(--body); line-height: 1.7; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container  { max-width:1200px; margin:0 auto; padding:0 24px; }
.text-center{ text-align:center; }
.text-gold  { color:var(--gold); }
.text-green { color:var(--green); }
.text-muted { color:var(--muted); }

.section-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.gold-line {
  width: 52px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.gold-line.left { margin-left:0; }

section { padding: 80px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: #1A2E1A;
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm { padding:8px 18px; font-size:13px; }
.btn-lg { padding:16px 36px; font-size:16px; }
.btn-block { width:100%; }

/* ── FORM ELEMENTS ────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 6px;
}
.form-group label .required { color:#e53935; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--heading);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}
.form-control::placeholder { color: var(--muted); }
.form-control.error { border-color:#e53935; }

select.form-control { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:38px; }

.form-error { font-size:12px; color:#e53935; margin-top:4px; display:none; }
.form-control.error + .form-error { display:block; }

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.ann-bar {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
}
.ann-inner { display:flex; align-items:center; gap:0; flex-wrap:wrap; justify-content:center; }
.ann-inner span { padding:0 14px; }
.ann-inner span:not(:last-child) { border-right:1px solid rgba(255,255,255,.25); }
.ann-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 16px;
  padding: 4px 8px;
  cursor: pointer;
  transition: color var(--transition);
}
.ann-close:hover { color:#fff; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  background: var(--bg);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: .5px;
  flex-shrink: 0;
}
.nav-logo em { color:var(--gold); font-style:normal; }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position:relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--heading);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--green);
  background: var(--bg2);
}
.nav-links .sale-item > a { color:var(--gold); font-weight:700; }
.nav-links .buynow-item > a {
  background: var(--green);
  color: #fff !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
}
.nav-links .buynow-item > a:hover { background:var(--green-hover); }

/* Dropdown */
.nav-links .has-dropdown > a .caret { font-size:10px; opacity:.6; }
.nav-links .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-links .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-links .dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-links .dropdown li:last-child a { border-bottom:none; border-radius:0 0 var(--radius) var(--radius); }
.nav-links .dropdown li:first-child a { border-radius:var(--radius) var(--radius) 0 0; }
.nav-links .dropdown li a:hover { background:var(--bg2); color:var(--green); padding-left:24px; }

/* Nav right icons */
.nav-right { display:flex; align-items:center; gap:6px; flex-shrink:0; }

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  color: var(--heading);
  transition: all var(--transition);
}
.nav-icon-btn:hover { background:var(--bg2); color:var(--green); }

.cart-btn { position:relative; }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.theme-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading);
  background: var(--bg2);
  transition: all var(--transition);
  cursor: pointer;
}
.theme-toggle:hover { border-color:var(--gold); color:var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 34px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Search bar */
.nav-search {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.nav-search.open { max-height: 80px; padding: 12px 0; }
.search-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-inner form { display:flex; gap:0; flex:1; }
.search-inner input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: var(--bg);
  color: var(--heading);
  font-size: 14px;
  outline: none;
}
.search-inner input:focus { border-color:var(--green); }
.search-inner button[type=submit] {
  padding: 10px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition);
}
.search-inner button[type=submit]:hover { background:var(--green-hover); }
.search-close {
  color: var(--muted);
  font-size: 18px;
  padding: 6px;
  transition: color var(--transition);
}
.search-close:hover { color:var(--heading); }

/* ── FLASH MESSAGES ───────────────────────────────────────── */
.flash-msg {
  position: fixed;
  top: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  animation: flashIn .3s ease;
}
@keyframes flashIn { from{opacity:0;transform:translateX(-50%) translateY(-10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.flash-success { background:#f0fdf4; color:#166534; border:1.5px solid #bbf7d0; }
.flash-error   { background:#fef2f2; color:#991b1b; border:1.5px solid #fecaca; }
.flash-info    { background:#eff6ff; color:#1e40af; border:1.5px solid #bfdbfe; }
.flash-close   { background:none; border:none; cursor:pointer; color:inherit; opacity:.6; font-size:16px; margin-left:auto; }
.flash-close:hover { opacity:1; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-left { flex:1; max-width:55%; }
.hero-right { flex:1; display:flex; justify-content:center; align-items:center; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1.5px solid var(--gold-border);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom:20px; }
.hero h1 em {
  color: var(--green);
  font-style: normal;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px; left:0; right:0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:42px; }

.hero-stats {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right:none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.stat-lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 3px;
  display: block;
}

/* Product showcase */
.product-showcase { position:relative; display:flex; justify-content:center; align-items:center; width:380px; height:380px; }
.p-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--gold-border);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
.p-ring2 {
  position: absolute;
  inset: 30px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
}
@keyframes spin { to{transform:rotate(360deg)} }

.product-img-box {
  width: 240px; height: 240px;
  background: var(--bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold-border);
  box-shadow: var(--shadow-lg), 0 0 60px var(--gold-light);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.product-img-box img { width:100%; height:100%; object-fit:cover; }
.product-img-box .p-emoji { font-size:90px; }

.float-tag {
  position: absolute;
  background: var(--card);
  border: 1.5px solid var(--gold-border);
  padding: 9px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  color: var(--heading);
  box-shadow: var(--shadow);
  z-index: 3;
  white-space: nowrap;
}
.float-tag span { color:var(--green); }
.ft1 { top: 10px; right: 10px; }
.ft2 { bottom: 20px; left: 0; }

.hero-viewers {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
  box-shadow: var(--shadow);
}
.pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: #6ef29a;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(110,242,154,.5)}50%{box-shadow:0 0 0 5px rgba(110,242,154,0)} }

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { display:flex; align-items:center; gap:14px; }
.trust-icon {
  width: 48px; height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-text strong { display:block; font-size:14px; font-weight:700; color:var(--heading); }
.trust-text span   { font-size:12px; color:var(--muted); }

/* ── BENEFITS ─────────────────────────────────────────────── */
.benefits-section { background:var(--bg); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 0;
}
.benefit-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit-icon { font-size:44px; margin-bottom:16px; display:block; }
.benefit-card h3 { margin-bottom:10px; }
.benefit-card p  { color:var(--muted); font-size:14px; line-height:1.65; }

/* ── PRODUCT CARDS ────────────────────────────────────────── */
.products-section { background:var(--bg2); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}
.p-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}
.p-badge-hot    { background:#C0392B; }
.p-badge-purple { background:#7b1fa2; }
.p-badge-gold   { background:var(--gold); color:#1A2E1A; }

.p-img-wrap {
  background: var(--bg2);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.p-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .p-img-wrap img { transform:scale(1.05); }
.p-img-emoji { font-size:72px; }

.p-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.p-wishlist:hover { border-color:var(--gold); background:var(--gold-light); }

.p-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.p-viewers { color:var(--muted); font-size:12px; margin-bottom:8px; display:flex; align-items:center; gap:5px; }
.p-vdot { color:#4caf50; font-size:18px; line-height:1; }
.p-name { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; color:var(--heading); margin-bottom:6px; }
.p-stars { color:var(--star); font-size:13px; margin-bottom:10px; }
.p-stars span { color:var(--muted); font-size:12px; margin-left:4px; }
.p-price { display:flex; align-items:center; flex-wrap:wrap; gap:7px; margin-bottom:16px; margin-top:auto; }
.p-sale  { font-size:22px; font-weight:700; color:var(--green); }
.p-orig  { font-size:14px; color:var(--muted); text-decoration:line-through; }
.p-disc  {
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

.p-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .2px;
  transition: background var(--transition);
}
.p-btn:hover { background:var(--green-hover); }

/* ── HOW TO USE ───────────────────────────────────────────── */
.how-section {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.step { flex:1; text-align:center; padding:0 32px; position:relative; }
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -12px; top: 30px;
  font-size: 22px;
  color: var(--gold);
  opacity: .6;
}
.step-icon {
  width: 72px; height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: var(--shadow-md);
}
.step h3 { color:var(--heading); margin-bottom:10px; }
.step p  { color:var(--muted); font-size:14px; line-height:1.65; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section { background:var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.r-quote  { color:var(--gold); font-size:40px; line-height:1; opacity:.5; margin-bottom:6px; }
.r-stars  { color:var(--star); font-size:14px; margin-bottom:12px; }
.r-text   { color:var(--body); font-size:14px; line-height:1.7; margin-bottom:18px; flex:1; }
.r-author { display:flex; align-items:center; gap:12px; margin-top:auto; }
.r-avatar {
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.r-name     { font-weight:700; color:var(--heading); font-size:14px; }
.r-loc      { color:var(--muted); font-size:12px; }
.r-verified {
  display: inline-block;
  background: rgba(46,125,50,.1);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 4px;
}
[data-theme="dark"] .r-verified { background:rgba(100,200,100,.12); color:#7fd47f; }

/* ── LAB REPORTS ─────────────────────────────────────────── */
.lab-section { background:var(--bg2); border-top:1px solid var(--border); }
.lab-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.lab-cert {
  flex: 0 0 270px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--gold-border);
  box-shadow: var(--shadow-md);
}
.cert-icon    { font-size:70px; display:block; margin-bottom:14px; }
.cert-title   { font-family:'Playfair Display',serif; font-size:20px; color:var(--heading); margin-bottom:6px; }
.cert-sub     { color:var(--muted); font-size:13px; margin-bottom:18px; }
.cert-badge   {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(27,77,46,.2);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.lab-points         { list-style:none; }
.lab-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--body);
}
.lab-points li:last-child { border-bottom:none; }
.lab-points li::before {
  content: '✓';
  background: var(--green);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background:var(--bg); }
.faq-list    { max-width:750px; margin:0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color:var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
  user-select: none;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover           { background:var(--bg2); }
.faq-item.open .faq-q  { background:var(--gold-light); }
.faq-toggle {
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .35s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform:rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-item.open .faq-a { max-height:200px; padding:0 22px 20px; }
.faq-a p { color:var(--muted); font-size:14px; line-height:1.7; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.newsletter-section {
  background: var(--green);
  padding: 60px 24px;
}
.nl-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.nl-inner h2 { color:#fff; margin-bottom:10px; }
.nl-inner p  { color:rgba(255,255,255,.75); font-size:15px; margin-bottom:26px; }
.nl-form { display:flex; gap:10px; max-width:460px; margin:0 auto; }
.nl-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.nl-form input::placeholder { color:rgba(255,255,255,.45); }
.nl-form input:focus { border-color:var(--gold); }
.nl-form button {
  padding: 13px 22px;
  background: var(--gold);
  color: #1A2E1A;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
  white-space: nowrap;
}
.nl-form button:hover { background:#e0b840; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 3px solid var(--gold);
}
.footer-strip {
  background: var(--green);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 14px 24px;
  flex-wrap: wrap;
}
.footer-strip span { color:#fff; font-weight:600; font-size:13px; opacity:.92; }

.footer-main { padding: 56px 24px 0; max-width:1200px; margin:0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo { font-family:'Playfair Display',serif; font-size:22px; font-weight:800; color:var(--green); margin-bottom:10px; }
.footer-logo em { color:var(--gold); font-style:normal; }
.footer-tagline { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:18px; }
.footer-trust { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:18px; }
.ft-badge {
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.footer-socials { display:flex; gap:9px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: all var(--transition);
}
.social-btn:hover { background:var(--gold); color:#1A2E1A; border-color:var(--gold); }

.footer-col h4 { color:var(--heading); font-size:14px; font-weight:700; margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--border); }
.footer-links li { margin-bottom:9px; }
.footer-links a { color:var(--muted); font-size:13px; transition:color var(--transition); }
.footer-links a:hover { color:var(--gold); }

.contact-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:13px; font-size:13px; color:var(--muted); }
.contact-item a { color:var(--muted); transition:color var(--transition); }
.contact-item a:hover { color:var(--gold); }
.ci-icon { font-size:15px; flex-shrink:0; margin-top:2px; }
.contact-item small { display:block; font-size:11px; margin-top:2px; }

.wa-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  margin-top: 14px;
  transition: all var(--transition);
}
.wa-footer-btn:hover { background:#1ebe5d; transform:translateY(-2px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-links { display:flex; gap:14px; flex-wrap:wrap; }
.footer-bottom-links a { color:var(--muted); transition:color var(--transition); }
.footer-bottom-links a:hover { color:var(--gold); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9999;
  transition: all var(--transition);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 6px 30px rgba(37,211,102,.5); }

/* ── CART PAGE ────────────────────────────────────────────── */
.cart-section { background:var(--bg); min-height:60vh; }
.cart-layout { display:flex; gap:32px; align-items:flex-start; }
.cart-items { flex:1.6; }
.cart-summary { flex:1; position:sticky; top:88px; }

.cart-empty { text-align:center; padding:80px 24px; }
.cart-empty h2 { color:var(--heading); margin-bottom:12px; }
.cart-empty p  { color:var(--muted); margin-bottom:28px; }

.cart-table { width:100%; border-collapse:collapse; }
.cart-table th {
  text-align:left; padding:12px 16px;
  border-bottom:2px solid var(--border);
  font-size:13px; font-weight:700;
  color:var(--heading); text-transform:uppercase; letter-spacing:.5px;
}
.cart-table td { padding:16px; border-bottom:1px solid var(--border); vertical-align:middle; }
.cart-product-info { display:flex; align-items:center; gap:14px; }
.cart-img {
  width:64px; height:64px;
  background:var(--bg2);
  border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; overflow:hidden; flex-shrink:0;
}
.cart-img img { width:100%; height:100%; object-fit:cover; }
.cart-product-name { font-weight:600; color:var(--heading); font-size:14px; }
.cart-product-price { font-size:13px; color:var(--muted); }

.qty-control { display:flex; align-items:center; gap:0; }
.qty-btn {
  width:32px; height:32px;
  background:var(--bg2);
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  font-size:16px; font-weight:700; color:var(--heading);
  transition:all var(--transition);
}
.qty-btn:hover { background:var(--green); color:#fff; border-color:var(--green); }
.qty-input {
  width:44px; height:32px;
  border:1.5px solid var(--border);
  border-left:none; border-right:none;
  text-align:center;
  font-size:14px; font-weight:600; color:var(--heading);
  background:var(--bg);
  outline:none;
}
.cart-remove { color:var(--muted); font-size:18px; transition:color var(--transition); }
.cart-remove:hover { color:#e53935; }

.cart-countdown {
  background: linear-gradient(135deg,var(--green),var(--green-hover));
  color:#fff; padding:14px 20px; border-radius:var(--radius);
  display:flex; align-items:center; gap:12px; margin-bottom:20px;
  font-size:14px; font-weight:600;
}
.countdown-timer { font-size:20px; font-weight:800; font-family:'Playfair Display',serif; color:var(--gold); }

/* Summary card */
.summary-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}
.summary-card h3 { color:var(--heading); font-size:18px; margin-bottom:20px; padding-bottom:14px; border-bottom:1px solid var(--border); }
.summary-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; font-size:14px; }
.summary-row.total { border-top:1px solid var(--border); padding-top:14px; margin-top:6px; font-weight:700; font-size:16px; color:var(--heading); }
.summary-row .free { color:#22c55e; font-weight:700; }

.coupon-form { display:flex; gap:8px; margin:16px 0; }
.coupon-form input { flex:1; }
.coupon-applied { background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3); color:#166534; padding:10px 14px; border-radius:var(--radius-sm); font-size:13px; font-weight:600; display:flex; justify-content:space-between; align-items:center; }
[data-theme="dark"] .coupon-applied { background:rgba(100,200,100,.1); color:#7fd47f; border-color:rgba(100,200,100,.2); }

/* ── CHECKOUT PAGE ────────────────────────────────────────── */
.checkout-section { background:var(--bg); min-height:80vh; }
.checkout-layout { display:flex; gap:32px; align-items:flex-start; }
.checkout-form { flex:1.4; }
.checkout-sidebar { flex:1; position:sticky; top:88px; }

.checkout-trust { display:flex; gap:12px; margin-bottom:24px; flex-wrap:wrap; }
.checkout-trust-item {
  display:flex; align-items:center; gap:7px;
  background:var(--bg2); border:1px solid var(--border);
  padding:8px 14px; border-radius:50px;
  font-size:12px; font-weight:600; color:var(--heading);
  flex:1; justify-content:center;
}

.form-section { background:var(--card); border:1.5px solid var(--border); border-radius:var(--radius-lg); padding:28px; margin-bottom:20px; }
.form-section h3 { font-size:18px; color:var(--heading); margin-bottom:22px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.payment-option {
  display:flex; align-items:center; gap:14px;
  background:var(--bg2); border:2px solid var(--border);
  border-radius:var(--radius); padding:16px 20px; cursor:pointer;
  transition:all var(--transition);
}
.payment-option.selected { border-color:var(--green); background:var(--green-light); }
.payment-option-icon { font-size:24px; }
.payment-option-text strong { display:block; font-size:15px; color:var(--heading); }
.payment-option-text span { font-size:13px; color:var(--muted); }

/* ── ORDER CONFIRMATION ───────────────────────────────────── */
.confirmation-section { background:var(--bg); min-height:80vh; }
.confirmation-card {
  max-width: 640px; margin:0 auto;
  background:var(--card); border-radius:var(--radius-lg);
  border:1.5px solid var(--border); overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.confirmation-header { background:var(--green); padding:36px; text-align:center; }
.confirmation-header h1 { color:var(--gold); margin-bottom:6px; }
.confirmation-header p  { color:rgba(255,255,255,.8); }
.check-circle { width:72px; height:72px; background:var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:32px; margin:0 auto 16px; }
.confirmation-body { padding:32px; }
.order-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px; }
.order-info-item { background:var(--bg2); border-radius:var(--radius-sm); padding:14px; }
.order-info-item label { font-size:11px; text-transform:uppercase; letter-spacing:.8px; color:var(--muted); display:block; margin-bottom:4px; }
.order-info-item span  { font-weight:700; color:var(--heading); font-size:15px; }
.wa-share-btn { width:100%; display:flex; align-items:center; justify-content:center; gap:10px; background:#25D366; color:#fff; padding:15px; border-radius:var(--radius-sm); font-weight:700; font-size:15px; margin-top:16px; transition:all var(--transition); }
.wa-share-btn:hover { background:#1ebe5d; transform:translateY(-2px); }

/* ── TRACK ORDER ──────────────────────────────────────────── */
.track-section { background:var(--bg); min-height:70vh; }
.track-card    { max-width:640px; margin:0 auto; }
.track-search  { background:var(--card); border-radius:var(--radius-lg); border:1.5px solid var(--border); padding:32px; margin-bottom:28px; box-shadow:var(--shadow); }
.track-timeline { position:relative; }
.track-timeline::before { content:''; position:absolute; left:20px; top:0; bottom:0; width:2px; background:var(--border); }
.track-step { display:flex; gap:20px; margin-bottom:24px; position:relative; }
.track-dot { width:42px; height:42px; border-radius:50%; border:2px solid var(--border); background:var(--bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; z-index:1; font-size:16px; }
.track-dot.done   { background:var(--green); border-color:var(--green); color:#fff; }
.track-dot.active { background:var(--gold); border-color:var(--gold); color:#fff; box-shadow:0 0 0 4px var(--gold-light); }
.track-info strong { display:block; color:var(--heading); font-size:15px; font-weight:600; }
.track-info span   { font-size:13px; color:var(--muted); }
.track-info small  { font-size:12px; color:var(--muted); display:block; margin-top:3px; }

/* ── ADMIN BASE ───────────────────────────────────────────── */
.admin-layout { display:flex; min-height:100vh; }
.admin-sidebar { width:260px; background:#0d1f13; flex-shrink:0; position:fixed; top:0; left:0; bottom:0; overflow-y:auto; z-index:100; }
.admin-main { flex:1; margin-left:260px; background:var(--bg2); min-height:100vh; }
.admin-topbar { background:var(--bg); border-bottom:1px solid var(--border); padding:0 28px; height:64px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:50; box-shadow:var(--shadow-sm); }
.admin-content { padding:28px; }

.admin-logo { padding:24px 20px 20px; border-bottom:1px solid rgba(255,255,255,.08); }
.admin-logo span { font-family:'Playfair Display',serif; color:var(--gold); font-size:18px; font-weight:800; }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-left-color: var(--gold);
}
.admin-nav a .nav-ico { font-size:18px; width:24px; text-align:center; }

/* Stats cards */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:28px; }
.stat-card {
  background:var(--card); border-radius:var(--radius-lg);
  border:1.5px solid var(--border); padding:22px;
  display:flex; align-items:center; gap:16px;
  box-shadow:var(--shadow-sm); transition:all var(--transition);
}
.stat-card:hover { box-shadow:var(--shadow); transform:translateY(-2px); }
.stat-icon { width:52px; height:52px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.stat-icon.green  { background:var(--green-light); }
.stat-icon.gold   { background:var(--gold-light); }
.stat-icon.blue   { background:rgba(59,130,246,.1); }
.stat-icon.purple { background:rgba(139,92,246,.1); }
.stat-info label { font-size:12px; text-transform:uppercase; letter-spacing:.8px; color:var(--muted); display:block; margin-bottom:4px; }
.stat-info .val  { font-family:'Playfair Display',serif; font-size:26px; font-weight:800; color:var(--heading); }

/* Admin table */
.admin-table { width:100%; border-collapse:collapse; background:var(--card); border-radius:var(--radius-lg); overflow:hidden; border:1.5px solid var(--border); }
.admin-table th { background:var(--bg2); padding:13px 16px; text-align:left; font-size:12px; text-transform:uppercase; letter-spacing:.5px; color:var(--muted); font-weight:700; }
.admin-table td { padding:14px 16px; border-bottom:1px solid var(--border); font-size:14px; color:var(--body); }
.admin-table tr:last-child td { border-bottom:none; }
.admin-table tr:hover td { background:var(--bg2); }

/* Status badges */
.badge {
  display:inline-block; padding:4px 10px; border-radius:50px;
  font-size:11px; font-weight:700; letter-spacing:.3px;
}
.badge-pending    { background:rgba(245,158,11,.12); color:#b45309; }
.badge-confirmed  { background:rgba(59,130,246,.12);  color:#1d4ed8; }
.badge-shipped    { background:rgba(6,182,212,.12);   color:#0e7490; }
.badge-delivered  { background:rgba(34,197,94,.12);   color:#15803d; }
.badge-cancelled  { background:rgba(239,68,68,.12);   color:#b91c1c; }
.badge-suspicious { background:rgba(239,68,68,.15);   color:#b91c1c; border:1px solid rgba(239,68,68,.3); }

/* Page header */
.page-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:24px; }
.page-header h1 { font-size:26px; color:var(--heading); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); margin-bottom:28px; flex-wrap:wrap; }
.breadcrumb a { color:var(--muted); transition:color var(--transition); }
.breadcrumb a:hover { color:var(--green); }
.breadcrumb span { color:var(--muted); }
.breadcrumb .current { color:var(--heading); font-weight:600; }

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { display:flex; gap:6px; justify-content:center; margin-top:36px; }
.page-btn {
  width:38px; height:38px; border-radius:var(--radius-sm);
  border:1.5px solid var(--border); background:var(--card);
  color:var(--body); font-size:14px; font-weight:500;
  display:flex; align-items:center; justify-content:center;
  transition:all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background:var(--green); border-color:var(--green); color:#fff;
}

/* ── LOADING SPINNER ──────────────────────────────────────── */
.spinner {
  width:40px; height:40px;
  border:3px solid var(--border);
  border-top-color:var(--green);
  border-radius:50%;
  animation:spin .8s linear infinite;
}
@keyframes spin { to{transform:rotate(360deg)} }

/* ── SECTION HEADERS (shared) ─────────────────────────────── */
.section-header { text-align:center; margin-bottom:48px; }
.section-header .section-tag { margin-bottom:10px; }
.section-header h2 { margin-bottom:14px; }
.section-header p  { color:var(--muted); font-size:16px; max-width:520px; margin:0 auto; }
