/* ============================================================
   Naturally Shilajit — Redesigned Stylesheet (healingshilajit.com style)
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

/* ── THEME VARIABLES ──────────────────────────────────────── */
:root,
[data-theme="light"] {
  --bg:           #FDFAF4;
  --bg2:          #F5F0E8;
  --bg3:          #EDE5D5;
  --card:         #FFFFFF;
  --border:       #E2D9C8;
  --heading:      #1A1008;
  --body:         #3D3325;
  --muted:        #8A7A65;
  --green:        #1C3A28;
  --green-hover:  #2A5438;
  --green-light:  rgba(28,58,40,.08);
  --gold:         #C9A227;
  --gold-hover:   #B08A10;
  --gold-light:   rgba(201,162,39,.12);
  --gold-border:  rgba(201,162,39,.35);
  --star:         #D4A017;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.05);
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.16);
  --radius-sm:    4px;
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   .28s ease;
}

[data-theme="dark"] {
  --bg:           #0D1208;
  --bg2:          #131A0E;
  --bg3:          #1A2414;
  --card:         #182010;
  --border:       #283820;
  --heading:      #F5F0E0;
  --body:         #C8BFA8;
  --muted:        #7A8A6A;
  --green:        #3A7A50;
  --green-hover:  #4D9A66;
  --green-light:  rgba(58,122,80,.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 20px rgba(0,0,0,.3);
  --shadow-md:    0 8px 40px rgba(0,0,0,.4);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.5);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
/* Prevent sideways scroll on mobile. overflow-x:hidden on <html> makes it the
   scroll container (keeps the sticky header working); overflow-x:clip on <body>
   clips any stray wide child without the "overflow-y becomes auto" gotcha that
   `hidden` would trigger (which would break position:sticky). */
html { scroll-behavior:smooth; font-size:16px; overflow-x:hidden; }
body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
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: 'Cormorant Garamond', 'Palatino', Georgia, serif;
  color: var(--heading);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { color: var(--body); line-height: 1.75; }

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

.section-tag {
  font-family: 'Jost', sans-serif;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 24px;
}
.gold-line.left { margin-left:0; }

section { padding: 90px 0; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px 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: 0 10px 30px rgba(28,58,40,.25);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,162,39,.3);
}
.btn-outline {
  background: transparent;
  color: var(--heading);
  border-color: var(--heading);
}
.btn-outline:hover {
  background: var(--heading);
  color: #fff;
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}
.btn-sm { padding:10px 22px; font-size:11px; }
.btn-lg { padding:17px 44px; font-size:14px; }
.btn-block { width:100%; }

/* ── FORM ELEMENTS ────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.form-group label .required { color:#e53935; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--bg);
  color: var(--heading);
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-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: rgba(255,255,255,0.92);
  padding: 10px 40px 10px 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.ann-slider-wrap { display:flex; justify-content:center; align-items:center; }
.ann-slide { display:inline; transition:opacity .4s; }
.ann-close {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.7);
  font-size: 14px;
  padding: 4px 8px;
  cursor: pointer;
  transition: color var(--transition);
}
.ann-close:hover { color:#fff; }

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  background: rgba(253,250,244,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
[data-theme="dark"] .site-header { background:rgba(13,18,8,0.97); }
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.header-logo img { height: 68px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1px;
}
.logo-text em { color:var(--gold); font-style:italic; }
.header-left { display:flex; align-items:center; gap:4px; }
.header-right { display:flex; align-items:center; gap:6px; margin-left:auto; }
.hdr-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  color: var(--heading);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
  position: relative;
}
.hdr-icon-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 16px; height: 16px;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── CURRENCY SELECTOR ────────────────────────────────────── */
.currency-selector { position:relative; }
.currency-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  font-size: 12px; font-weight: 600;
  letter-spacing: .5px;
  color: var(--heading);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Jost', sans-serif;
}
.currency-btn:hover { border-color: var(--gold); color: var(--gold); }
.flag-img { width:18px; height:13px; border-radius:2px; object-fit:cover; }
.currency-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); width: 290px; max-height: 340px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s ease; z-index: 2000; overflow: hidden; display: flex; flex-direction: column;
}
.currency-dropdown.open { opacity:1; visibility:visible; transform:translateY(0); }
.currency-search-wrap { display:flex; align-items:center; gap:8px; padding:12px 14px; border-bottom:1px solid var(--border); flex-shrink:0; }
.currency-search-wrap svg { color:var(--muted); flex-shrink:0; }
.currency-search-wrap input { flex:1; border:none; outline:none; font-size:14px; color:var(--heading); background:transparent; font-family:'Jost',sans-serif; }
.currency-list { overflow-y:auto; max-height:280px; padding:6px 0; }
.currency-list::-webkit-scrollbar { width:3px; }
.currency-list::-webkit-scrollbar-thumb { background:var(--border); border-radius:4px; }
.currency-list li { padding:9px 16px; font-size:13px; color:var(--heading); cursor:pointer; transition:background .15s; }
.currency-list li:hover { background:var(--bg2); }

/* ── BOTTOM NAV BAR ───────────────────────────────────────── */
.bottom-nav {
  background: var(--green);
  position: sticky;
  top: 80px;
  z-index: 999;
}
.bottom-nav-inner { max-width:1320px; margin:0 auto; padding:0 28px; }
.bottom-nav .nav-links {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.bottom-nav .nav-links > li > a {
  display: block;
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.bottom-nav .nav-links > li > a:hover,
.bottom-nav .nav-links > li > a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger { display:none; flex-direction:column; gap:5px; width:34px; padding:6px; cursor:pointer; }
.mobile-nav-close { display:none; border:none; 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); 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:11px 16px; border:1px solid var(--border); border-right:none; background:var(--card); color:var(--heading); font-size:14px; outline:none; font-family:'Jost',sans-serif; }
.search-inner input:focus { border-color:var(--gold); }
.search-inner button[type=submit] { padding:11px 22px; background:var(--green); color:#fff; font-weight:500; font-size:13px; letter-spacing:1px; text-transform:uppercase; cursor:pointer; transition:background var(--transition); font-family:'Jost',sans-serif; }
.search-inner button[type=submit]:hover { background:var(--green-hover); }
.search-close { background:none; border:none; font-size:18px; color:var(--muted); cursor:pointer; padding:6px; }
.search-close:hover { color:var(--heading); }

/* ── LOGIN POPUP ──────────────────────────────────────────── */
.login-overlay { position:fixed; inset:0; background:rgba(0,0,0,.45); z-index:9999; display:flex; align-items:center; justify-content:center; opacity:0; visibility:hidden; transition:all .3s ease; padding:16px; }
.login-overlay.open { opacity:1; visibility:visible; }
body.popup-open { overflow:hidden; }
.login-popup { background:var(--card); border-radius:var(--radius-lg); padding:36px 28px 28px; width:100%; max-width:380px; position:relative; box-shadow:var(--shadow-lg); transform:scale(.95); transition:transform .3s ease; }
.login-overlay.open .login-popup { transform:scale(1); }
.login-close { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; background:var(--bg2); color:var(--muted); font-size:14px; display:flex; align-items:center; justify-content:center; cursor:pointer; border:none; }
.login-title { font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; color:var(--heading); margin-bottom:22px; }
.btn-whatsapp-login { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:13px 20px; background:#25D366; color:#fff; font-size:14px; font-weight:500; letter-spacing:.5px; transition:background .2s; margin-bottom:4px; border-radius:0; }
.btn-whatsapp-login:hover { background:#1ebe5d; color:#fff; }
.login-divider { text-align:center; position:relative; margin:16px 0; color:var(--muted); font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; }
.login-divider::before,.login-divider::after { content:''; position:absolute; top:50%; width:40%; height:1px; background:var(--border); }
.login-divider::before { left:0; } .login-divider::after { right:0; }
.login-email-wrap { display:flex; align-items:center; border:1px solid var(--border); overflow:hidden; transition:border-color .2s; }
.login-email-wrap:focus-within { border-color:var(--gold); }
.login-email-wrap input { flex:1; padding:13px 16px; font-size:15px; border:none; outline:none; color:var(--heading); background:var(--card); font-family:'Jost',sans-serif; }
.login-email-wrap button { width:44px; background:transparent; border:none; cursor:pointer; color:var(--muted); display:flex; align-items:center; justify-content:center; transition:color .2s; }
.login-email-wrap button:hover { color:var(--gold); }
.login-newsletter { display:flex; align-items:center; gap:8px; margin:14px 0; font-size:13px; color:var(--muted); cursor:pointer; }
.login-newsletter input { cursor:pointer; accent-color:var(--gold); }
.login-actions { display:flex; gap:10px; margin-top:10px; }
.login-action-btn { flex:1; display:flex; align-items:center; justify-content:center; gap:7px; padding:11px; border:1px solid var(--border); font-size:13px; letter-spacing:.5px; color:var(--heading); font-weight:500; transition:all .2s; }
.login-action-btn:hover { border-color:var(--gold); color:var(--gold); }
.navbar { display:none; }

/* ── FLASH MESSAGES ───────────────────────────────────────── */
.flash-msg { position:fixed; top:90px; left:50%; transform:translateX(-50%); z-index:9999; padding:14px 24px; font-size:14px; font-weight:500; 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:1px solid #bbf7d0; }
.flash-error   { background:#fef2f2; color:#991b1b; border:1px solid #fecaca; }
.flash-info    { background:#fffbeb; color:#92400e; border:1px solid #fde68a; }
.flash-close   { background:none; border:none; cursor:pointer; color:inherit; opacity:.6; font-size:16px; margin-left:auto; }

/* ══════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0D1208;
}
.hero-slides { display:flex; transition:transform .8s cubic-bezier(.25,.46,.45,.94); will-change:transform; }
.hero-slide {
  min-width: 100%;
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: none;
}
.hero-slide.active .hero-slide-img { animation: kenBurnsZoom 6s ease-out forwards; }
@keyframes kenBurnsZoom {
  0%   { transform: scale(1)    translate(0,    0); }
  100% { transform: scale(1.10) translate(-1%, -0.5%); }
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10,15,8,.72) 0%, rgba(10,15,8,.30) 55%, rgba(10,15,8,.10) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  text-align: center;
}
.hero-slide-tag {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s .2s ease, transform .6s .2s ease;
}
.hero-slide.active .hero-slide-tag { opacity:1; transform:translateY(0); }

.hero-slide h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 5.4rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  max-width: 100%;
  margin: 0 auto 20px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s .35s ease, transform .7s .35s ease;
}
.hero-slide.active h1 { opacity:1; transform:translateY(0); }

.hero-slide-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 300;
  letter-spacing: .3px;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin: 0 auto 36px;
  font-style: italic;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s .5s ease, transform .6s .5s ease;
}
.hero-slide.active .hero-slide-sub { opacity:1; transform:translateY(0); }

.hero-slide-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s .65s ease, transform .6s .65s ease;
}
.hero-slide.active .hero-slide-btns { opacity:1; transform:translateY(0); }

/* Badges row on slide */
.hero-slide-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s .8s ease, transform .6s .8s ease;
}
.hero-slide.active .hero-slide-badges { opacity:1; transform:translateY(0); }
.hero-slide-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
}
.hero-slide-badge-icon {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(201,162,39,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.hero-slide-badge span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,.65);
}

/* Slider controls */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 50px; height: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
}
.slider-prev { left: 28px; }
.slider-next { right: 28px; }
.slider-prev:hover, .slider-next:hover { background:var(--gold); border-color:var(--gold); color:#fff; }
.slider-dots {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: background .3s, width .3s;
}
.slider-dot.active { background: var(--gold); width: 44px; }

/* ── AFTER-HERO: BRAND TEXT + TRUST BADGES ─────────────────── */
.after-hero-section { background:#fff; padding:52px 0 44px; border-bottom:1px solid #f0efec; }
[data-theme="dark"] .after-hero-section { background:var(--bg); border-bottom-color:var(--border); }
.after-hero-text { max-width:740px; margin:0 auto 36px; text-align:center; font-size:clamp(14px,1.55vw,15.5px); color:var(--body); line-height:1.85; }
.after-hero-text strong { color:var(--heading); }
.after-hero-text em { color:#B8930E; font-style:italic; }
[data-theme="dark"] .after-hero-text em { color:#D4AD52; }

.trust-inner { max-width:960px; margin:0 auto; padding:0 28px; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.trust-item { display:flex; flex-direction:column; align-items:center; gap:12px; padding:22px 16px 18px; border:1px solid #e5e7eb; border-top:3px solid rgba(201,162,39,.6); border-radius:12px; text-align:center; background:#fff; transition:border-color .2s,box-shadow .2s; }
[data-theme="dark"] .trust-item { background:var(--card); border-color:var(--border); border-top-color:rgba(201,162,39,.55); }
.trust-item:hover { border-color:rgba(201,162,39,.35); border-top-color:rgba(201,162,39,.9); box-shadow:0 4px 16px rgba(0,0,0,.07); }
.trust-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0; color:rgba(201,162,39,.85); }
.trust-icon svg { width:36px; height:36px; stroke:rgba(201,162,39,.85); }
[data-theme="dark"] .trust-icon { color:rgba(212,173,82,.85); }
[data-theme="dark"] .trust-icon svg { stroke:rgba(212,173,82,.85); }
.trust-text strong { display:block; font-size:13px; font-weight:700; color:var(--heading); margin-bottom:3px; }
.trust-text span   { font-size:11.5px; color:var(--muted); }

/* ── TRUSTPILOT BADGE SECTION ────────────────────────────── */
.tp-badge-section { display:flex; justify-content:center; padding:20px 0 4px; }
.tp-badge-card { display:inline-flex; flex-direction:column; align-items:center; gap:6px; padding:16px 28px; border:1.5px solid #e5e7eb; border-radius:12px; background:#fff; text-decoration:none; transition:box-shadow .2s,border-color .2s; }
[data-theme="dark"] .tp-badge-card { background:var(--card); border-color:var(--border); }
.tp-badge-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.1); border-color:#00b67a; }
.tp-badge-logo-line { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:700; color:#191919; display:flex; align-items:center; gap:6px; }
[data-theme="dark"] .tp-badge-logo-line { color:var(--heading); }
.tp-star-icon { color:#00b67a; font-size:1.1rem; }
.tp-badge-stars-row { display:flex; gap:2px; }
.tp-star-filled { color:#fff; background:#00b67a; width:22px; height:22px; display:flex; align-items:center; justify-content:center; font-size:13px; border-radius:3px; }
.tp-badge-info { font-size:12px; color:#666; }
[data-theme="dark"] .tp-badge-info { color:var(--muted); }
/* Trustpilot badge link (from reviews section when no embed) */
.tp-badge-link { text-decoration:none; }
.tp-badge-box { display:inline-flex; flex-direction:column; align-items:center; gap:8px; padding:20px 40px; border:1.5px solid #e5e7eb; border-radius:12px; background:#fff; }
[data-theme="dark"] .tp-badge-box { background:var(--card); border-color:var(--border); }
.tp-badge-logo { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:700; color:#191919; }
[data-theme="dark"] .tp-badge-logo { color:var(--heading); }
.tp-badge-stars { color:#00b67a; font-size:1.4rem; letter-spacing:2px; }
.tp-badge-sub { font-size:13px; color:#00b67a; font-weight:600; }
.hs-badge-icon { width:56px; height:56px; border:1.5px solid var(--gold-border); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); margin:0 auto 14px; }
.hs-badge span { font-family:'Jost',sans-serif; font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--heading); }

/* ── PRODUCTS SECTION ─────────────────────────────────────── */
.products-section { background:var(--bg2); padding:90px 0; }
.section-header { text-align:center; margin-bottom:56px; }
.section-header h2 { margin-bottom:16px; }
.section-header p  { color:var(--muted); max-width:560px; margin:0 auto; font-size:16px; }

.products-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }

.product-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  border: 1px solid var(--border);
}
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); z-index:2; }

.p-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
  background: var(--green);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
}
.p-badge-hot { background:var(--gold); color:#fff; }
.p-badge-purple { background:#5B2D8E; }

.p-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}
.p-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.product-card:hover .p-img-wrap img { transform:scale(1.05); }
.p-img-emoji { font-size:90px; }

.p-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  width: 36px; height: 36px;
  background: var(--card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.p-wishlist:hover { transform:scale(1.15); }

.p-body { padding: 20px 22px 24px; }
.p-viewers { font-size:11.5px; color:var(--muted); margin-bottom:8px; display:flex; align-items:center; gap:5px; }
.p-vdot { color:#22c55e; font-size:8px; }
.p-name { font-family:'Cormorant Garamond',serif; font-size:1.35rem; font-weight:600; color:var(--heading); display:block; margin-bottom:8px; line-height:1.2; }
.p-name:hover { color:var(--gold); }
.p-stars { color:var(--star); font-size:14px; margin-bottom:10px; }
.p-stars span { color:var(--muted); font-size:12px; margin-left:4px; }
.p-price { display:flex; align-items:baseline; gap:10px; margin-bottom:16px; }
.p-sale { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--heading); }
.p-orig { font-size:14px; color:var(--muted); text-decoration:line-through; }
.p-disc { font-size:12px; font-weight:700; color:#fff; background:var(--gold); padding:2px 8px; letter-spacing:.5px; }
.p-btn {
  width: 100%;
  padding: 13px;
  background: var(--green);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .25s;
  border: none;
  cursor: pointer;
}
.p-btn:hover { background:var(--green-hover); }

/* ── HOW TO USE ───────────────────────────────────────────── */
.how-section { background:var(--bg); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.step {
  padding: 44px 36px;
  text-align: center;
  border: 1px solid var(--border);
  transition: background .25s;
}
.step:hover { background:var(--bg2); }
.step-icon { font-size:40px; margin-bottom:18px; display:block; }
.step h3 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; margin-bottom:12px; }
.step p { color:var(--muted); font-size:14.5px; line-height:1.7; }

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews-section { background:var(--bg2); }
.reviews-slider-wrap { position:relative; overflow:hidden; padding:0 52px; }
.reviews-track { display:flex; gap:20px; transition:transform .45s ease; will-change:transform; }
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 240px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px 30px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.review-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.rv-nav { position:absolute; top:50%; transform:translateY(-50%); background:var(--card); border:1px solid var(--border); color:var(--body); width:42px; height:42px; border-radius:50%; font-size:28px; cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:2; transition:background .2s,color .2s,border-color .2s; line-height:1; padding:0; }
.rv-nav:hover { background:var(--accent-color,#C9A227); color:#fff; border-color:var(--accent-color,#C9A227); }
.rv-prev { left:0; }
.rv-next { right:0; }
.reviews-dots { display:flex; justify-content:center; gap:8px; margin-top:20px; }
.r-dot { width:8px; height:8px; border-radius:50%; background:var(--border); border:none; cursor:pointer; padding:0; transition:all .25s; }
.r-dot.active { background:var(--accent-color,#C9A227); width:24px; border-radius:4px; }
.r-quote { font-family:'Cormorant Garamond',serif; font-size:72px; color:var(--gold); line-height:.8; margin-bottom:8px; opacity:.3; }
.r-stars { color:var(--star); font-size:16px; margin-bottom:14px; }
.r-text { font-size:15px; line-height:1.75; color:var(--body); margin-bottom:20px; font-style:italic; }
.r-author { display:flex; align-items:center; gap:14px; }
.r-avatar { width:42px; height:42px; background:var(--green); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:16px; font-weight:700; flex-shrink:0; }
.r-name { font-weight:600; font-size:14px; color:var(--heading); }
.r-loc  { font-size:12px; color:var(--muted); margin-top:2px; }
.r-verified { font-size:11px; color:var(--green); font-weight:600; letter-spacing:.5px; }

/* ── LAB SECTION ──────────────────────────────────────────── */
.lab-section { background:var(--green); color:#fff; }
.lab-inner { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; align-items:center; }
.lab-cert { text-align:center; }
.cert-icon { font-size:64px; display:block; margin-bottom:16px; }
.cert-title { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:600; color:#fff; margin-bottom:6px; }
.cert-sub { font-size:13px; color:rgba(255,255,255,.65); letter-spacing:.5px; text-transform:uppercase; margin-bottom:14px; }
.cert-badge { display:inline-block; background:var(--gold); color:#fff; padding:8px 20px; font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.lab-content .section-tag { color:var(--gold); }
.lab-content h2 { color:#fff; margin-bottom:18px; }
.lab-content p  { color:rgba(255,255,255,.75); margin-bottom:20px; font-size:16px; }
.lab-points { display:flex; flex-direction:column; gap:10px; }
.lab-points li { display:flex; align-items:flex-start; gap:10px; color:rgba(255,255,255,.85); font-size:14.5px; }
.lab-points li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; margin-top:2px; }

/* ── WHY US ────────────────────────────────────────────────── */
.why-us-section { background:var(--bg); }
.why-us-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.why-us-card { padding:40px 32px; border:1px solid var(--border); transition:background .25s, transform .3s; }
.why-us-card:hover { background:var(--bg2); transform:translateY(-4px); }
.why-us-icon { width:52px; height:52px; border:1.5px solid var(--gold-border); display:flex; align-items:center; justify-content:center; color:var(--gold); margin-bottom:20px; }
.why-us-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:10px; }
.why-us-body p  { font-size:14.5px; color:var(--muted); line-height:1.7; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { background:var(--bg2); }
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:20px 0; font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:600; color:var(--heading); cursor:pointer; gap:12px; transition:color .2s; }
.faq-q:hover { color:var(--gold); }
.faq-toggle { font-size:20px; color:var(--gold); flex-shrink:0; transition:transform .3s; font-weight:300; }
.faq-item.open .faq-toggle { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s; }
.faq-a p { padding:0 0 20px; font-size:15px; color:var(--muted); line-height:1.75; }
.faq-item.open .faq-a { max-height:220px; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--heading);
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color:#fff; font-size:24px; }
.footer-brand p { font-size:14px; line-height:1.75; margin:16px 0 22px; color:rgba(255,255,255,.55); }
.footer-social { display:flex; gap:10px; }
.social-link { width:36px; height:36px; border:1px solid rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); font-size:15px; transition:all .2s; }
.social-link:hover { border-color:var(--gold); color:var(--gold); }
.footer-col h4 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:#fff; margin-bottom:20px; font-weight:600; letter-spacing:.5px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:13.5px; color:rgba(255,255,255,.55); transition:color .2s; letter-spacing:.3px; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:20px 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; letter-spacing:.3px; }

/* ── PRODUCT PAGE ─────────────────────────────────────────── */
.product-page { padding:60px 0 90px; }
.product-layout { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.product-gallery { position:sticky; top:100px; }
.gallery-main { aspect-ratio:1; overflow:hidden; background:var(--bg2); border:1px solid var(--border); margin-bottom:12px; }
.gallery-main img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.gallery-main:hover img { transform:scale(1.03); }
.gallery-thumbs { display:flex; gap:10px; }
.gallery-thumb { width:72px; height:72px; border:1px solid var(--border); overflow:hidden; cursor:pointer; opacity:.65; transition:all .2s; flex-shrink:0; }
.gallery-thumb.active,.gallery-thumb:hover { opacity:1; border-color:var(--gold); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }

.product-info .product-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:600; margin-bottom:14px; line-height:1.1; }
.product-rating { display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.product-stars { color:var(--star); font-size:16px; }
.product-price-wrap { display:flex; align-items:baseline; gap:14px; margin-bottom:28px; padding-bottom:24px; border-bottom:1px solid var(--border); }
.product-price { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:700; color:var(--heading); }
.product-price-orig { font-size:16px; color:var(--muted); text-decoration:line-through; }
.product-discount { background:var(--gold); color:#fff; padding:3px 10px; font-size:12px; font-weight:700; letter-spacing:.5px; }
.product-desc { font-size:15.5px; color:var(--body); line-height:1.8; margin-bottom:26px; }

.qty-row { display:flex; align-items:center; gap:16px; margin-bottom:18px; }
.qty-ctrl { display:flex; align-items:center; border:1px solid var(--border); }
.qty-ctrl button { width:40px; height:44px; font-size:18px; color:var(--heading); transition:background .2s; }
.qty-ctrl button:hover { background:var(--bg2); }
.qty-ctrl input { width:50px; height:44px; border:none; border-left:1px solid var(--border); border-right:1px solid var(--border); text-align:center; font-size:16px; font-weight:600; color:var(--heading); background:transparent; outline:none; }

.cart-add-btn { flex:1; padding:15px 28px; background:var(--green); color:#fff; font-family:'Jost',sans-serif; font-size:13px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; border:none; cursor:pointer; transition:background .25s; }
.cart-add-btn:hover { background:var(--green-hover); }
.buy-now-btn { padding:15px 28px; background:var(--gold); color:#fff; font-family:'Jost',sans-serif; font-size:13px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; border:none; cursor:pointer; transition:background .25s; }
.buy-now-btn:hover { background:var(--gold-hover); }

.product-meta { display:flex; flex-direction:column; gap:8px; margin-top:22px; padding-top:22px; border-top:1px solid var(--border); }
.product-meta span { font-size:13px; color:var(--muted); letter-spacing:.3px; }
.product-meta strong { color:var(--heading); }

/* ── CART & CHECKOUT PAGES ────────────────────────────────── */
.cart-page,.checkout-section { padding:60px 0 90px; }
.page-header-simple { padding:50px 0 30px; border-bottom:1px solid var(--border); margin-bottom:40px; }
.page-header-simple h1 { font-family:'Cormorant Garamond',serif; }

.cart-layout,.checkout-layout { display:grid; grid-template-columns:1.5fr 1fr; gap:40px; align-items:start; }
.cart-table { width:100%; border-collapse:collapse; }
.cart-table th { padding:12px 0; border-bottom:2px solid var(--border); text-align:left; font-size:12px; text-transform:uppercase; letter-spacing:1px; color:var(--muted); font-weight:600; }
.cart-table td { padding:20px 0; border-bottom:1px solid var(--border); vertical-align:middle; }

.cart-sidebar,.checkout-sidebar { background:var(--bg2); border:1px solid var(--border); padding:28px; }
.order-summary h3 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; margin-bottom:22px; }
.summary-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); font-size:14.5px; }
.summary-row:last-child { border-bottom:none; font-weight:700; font-size:16px; }

/* ── ORDER CONFIRMATION ───────────────────────────────────── */
.order-confirmation { padding:80px 0; text-align:center; }
.order-success-icon { font-size:72px; margin-bottom:24px; }
.order-confirmation h1 { font-family:'Cormorant Garamond',serif; margin-bottom:12px; }
.order-details-card { background:var(--card); border:1px solid var(--border); padding:36px; text-align:left; max-width:560px; margin:32px auto; }
.tracking-id-box { background:var(--green); color:#fff; padding:20px; text-align:center; margin-top:20px; }
.tracking-id-box .t-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.7); margin-bottom:8px; }
.tracking-id-box .t-id { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:700; letter-spacing:3px; }

/* ── TRACK ORDER PAGE ─────────────────────────────────────── */
.track-page { padding:80px 0; }
.track-card { background:var(--card); border:1px solid var(--border); max-width:560px; margin:0 auto; padding:44px; }
.track-card h2 { font-family:'Cormorant Garamond',serif; margin-bottom:24px; }

/* ── LAB REPORTS PAGE ─────────────────────────────────────── */
.lab-page { padding:60px 0 90px; }
.lab-reports-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.report-card { background:var(--card); border:1px solid var(--border); padding:36px; text-align:center; transition:transform .3s; }
.report-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.report-icon { font-size:52px; margin-bottom:16px; display:block; }
.report-card h3 { font-family:'Cormorant Garamond',serif; margin-bottom:10px; }

/* ── BLOG PAGE ────────────────────────────────────────────── */
.blog-page { padding:60px 0 90px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.blog-card { background:var(--card); border:1px solid var(--border); overflow:hidden; transition:transform .3s; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.blog-card-img { aspect-ratio:16/9; overflow:hidden; background:var(--bg2); }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-body { padding:24px; }
.blog-card-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.25rem; margin-bottom:10px; }
.blog-card-body p  { font-size:14px; color:var(--muted); line-height:1.65; }

/* ── COUPON INPUT ─────────────────────────────────────────── */
.coupon-row { display:flex; gap:0; margin-bottom:16px; }
.coupon-row input { flex:1; padding:12px 14px; border:1px solid var(--border); font-size:14px; outline:none; background:var(--bg); color:var(--heading); font-family:'Jost',sans-serif; }
.coupon-row input:focus { border-color:var(--gold); }
.coupon-row button { padding:12px 20px; background:var(--green); color:#fff; font-size:12px; font-weight:600; letter-spacing:1px; text-transform:uppercase; cursor:pointer; transition:background .2s; font-family:'Jost',sans-serif; }
.coupon-row button:hover { background:var(--green-hover); }

/* ── TOAST NOTIFICATIONS ──────────────────────────────────── */
.toast-container { position:fixed; bottom:24px; right:24px; z-index:9999; display:flex; flex-direction:column; gap:10px; }
.toast { background:var(--heading); color:#fff; padding:13px 20px; min-width:240px; max-width:360px; font-size:14px; font-weight:500; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:10px; animation:toastIn .3s ease; }
@keyframes toastIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.toast.success { background:var(--green); }
.toast.error   { background:#991b1b; }
.toast.info    { background:#1e3a5f; }

/* ── ADMIN PANEL ──────────────────────────────────────────── */
.admin-layout { display:flex; min-height:100vh; font-family:'Jost',sans-serif; }
.admin-sidebar { width:240px; background:var(--heading); color:#fff; position:fixed; top:0; left:0; height:100vh; overflow-y:auto; z-index:200; display:flex; flex-direction:column; flex-shrink:0; }
.admin-main { margin-left:240px; flex:1; min-height:100vh; background:var(--bg2); }
.admin-content { padding:28px 32px 60px; }
.page-header { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:28px; flex-wrap:wrap; }
.page-header h1 { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:600; color:var(--heading); }
.sidebar-logo { padding:22px 20px; border-bottom:1px solid rgba(255,255,255,.08); }
.sidebar-logo .logo-text { color:#fff; font-size:20px; }
.sidebar-nav { padding:16px 0; flex:1; }
.sidebar-nav a { display:flex; align-items:center; gap:10px; padding:11px 20px; color:rgba(255,255,255,.7); font-size:13.5px; font-weight:400; transition:all .2s; letter-spacing:.3px; }
.sidebar-nav a:hover,.sidebar-nav a.active { background:rgba(255,255,255,.08); color:#fff; }
.sidebar-nav a.active { border-left:3px solid var(--gold); }
.nav-ico { font-size:16px; min-width:20px; }
.admin-topbar { background:var(--card); border-bottom:1px solid var(--border); padding:0 32px; height:64px; display:flex; align-items:center; justify-content:space-between; gap:16px; position:sticky; top:0; z-index:100; }
.topbar-title { font-family:'Cormorant Garamond',serif; font-size:1.4rem; font-weight:600; color:var(--heading); }
.admin-card { background:var(--card); border:1px solid var(--border); border-radius:0; padding:24px; }
.stat-card { background:var(--card); border:1px solid var(--border); padding:24px; transition:transform .25s; }
.stat-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.badge { display:inline-flex; align-items:center; padding:3px 10px; font-size:11px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; }
.badge-pending   { background:rgba(245,158,11,.12); color:#b45309; }
.badge-confirmed { background:rgba(34,197,94,.12); color:#166534; }
.badge-delivered { background:rgba(59,130,246,.12); color:#1e40af; }
.badge-cancelled { background:rgba(239,68,68,.12); color:#b91c1c; }
.badge-returned  { background:rgba(107,114,128,.12); color:#374151; }
.badge-suspicious{ background:rgba(239,68,68,.12); color:#b91c1c; }

/* ── PAGINATION ───────────────────────────────────────────── */
.pagination { display:flex; align-items:center; gap:6px; justify-content:center; margin-top:36px; }
.pagination a,.pagination span { display:flex; align-items:center; justify-content:center; width:36px; height:36px; border:1px solid var(--border); font-size:13.5px; color:var(--heading); transition:all .2s; }
.pagination a:hover { border-color:var(--gold); color:var(--gold); }
.pagination .active { background:var(--green); color:#fff; border-color:var(--green); }

/* Misc */
.wishlist-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.empty-state { text-align:center; padding:80px 40px; }
.empty-state .empty-icon { font-size:72px; margin-bottom:16px; display:block; }
.quick-actions { display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin-bottom:28px; }
.quick-action { background:var(--card); border:1px solid var(--border); padding:18px 14px; text-align:center; font-size:13px; font-weight:500; color:var(--heading); transition:all .2s; display:flex; flex-direction:column; align-items:center; gap:8px; }
.quick-action:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }
.qa-icon { font-size:22px; }

/* ══ NEWSLETTER ══════════════════════════════════════════════ */
.newsletter-section {
  background: var(--green);
  padding: 70px 0;
}
.nl-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.nl-inner h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); margin-bottom: 10px; }
.nl-inner p  { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 30px; font-style: italic; }
.nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.3);
  overflow: hidden;
}
.nl-form input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255,255,255,.08);
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  letter-spacing: .3px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form button {
  padding: 15px 28px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background .2s;
}
.nl-form button:hover { background: var(--gold-hover); }
.nl-success { color: #6ef29a; font-size: 14px; margin-top: 14px; }

/* ══ FOOTER ══════════════════════════════════════════════════ */
.footer-strip {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 16px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.site-footer { background: #0D1208; color: rgba(255,255,255,.6); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 60px 0 50px;
}
.footer-logo-wrap img  { height: 50px; filter: brightness(0) invert(1); }
.footer-brand .logo-text { color: #fff; font-size: 22px; }
.footer-brand .logo-text em { color: var(--gold); }
.footer-brand p  { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.5); margin: 14px 0 18px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-badges span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(201,162,39,.3);
  color: rgba(201,162,39,.8);
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-family: 'Jost', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,.55); }
.fc-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.fc-item a { color: rgba(255,255,255,.55); transition: color .2s; }
.fc-item a:hover { color: var(--gold); }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: background .2s;
}
.footer-wa-btn:hover { background: #1ebe5d; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  font-size: 12.5px;
  letter-spacing: .3px;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); transition: color .2s; font-size: 12px; letter-spacing: .5px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 990;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); color: #fff; }

/* ══ ADMIN PANEL IMPROVEMENTS ════════════════════════════════ */

/* Theme color classes — set via JS/cookie on <html> */
[data-admin-accent="gold"]   { --admin-accent: #C9A227; --admin-accent2: #B08A10; }
[data-admin-accent="green"]  { --admin-accent: #1C3A28; --admin-accent2: #2A5438; }
[data-admin-accent="purple"] { --admin-accent: #7C3AED; --admin-accent2: #6D28D9; }
[data-admin-accent="blue"]   { --admin-accent: #1D4ED8; --admin-accent2: #1E40AF; }
[data-admin-accent="rose"]   { --admin-accent: #BE185D; --admin-accent2: #9D174D; }

/* ══ USER ACCOUNT / OTP MODAL ════════════════════════════════ */
.auth-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s;
  padding: 16px;
}
.auth-modal-overlay.open { opacity: 1; visibility: visible; }
.auth-modal {
  background: var(--card);
  max-width: 420px; width: 100%;
  padding: 40px 32px 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px); transition: transform .3s;
}
.auth-modal-overlay.open .auth-modal { transform: translateY(0); }
.auth-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: var(--bg2); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px; transition: background .2s;
}
.auth-close:hover { background: var(--border); }
.auth-step { display: none; }
.auth-step.active { display: block; }
.auth-title { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.otp-inputs input {
  width: 48px; height: 56px;
  text-align: center; font-size: 22px; font-weight: 700;
  border: 1.5px solid var(--border); outline: none;
  font-family: 'Cormorant Garamond',serif; color: var(--heading);
  background: var(--bg); transition: border-color .2s;
}
.otp-inputs input:focus { border-color: var(--gold); }
.auth-btn {
  width: 100%; padding: 14px;
  background: var(--green); color: #fff;
  font-family: 'Jost',sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer;
  transition: background .25s; margin-top: 8px;
}
.auth-btn:hover { background: var(--green-hover); }
.auth-btn.gold { background: var(--gold); }
.auth-btn.gold:hover { background: var(--gold-hover); }
.auth-divider { text-align: center; color: var(--muted); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin: 20px 0; position: relative; }
.auth-divider::before,.auth-divider::after { content:''; position:absolute; top:50%; width:40%; height:1px; background:var(--border); }
.auth-divider::before { left:0; } .auth-divider::after { right:0; }
.otp-resend { text-align: center; margin-top: 14px; font-size: 13px; color: var(--muted); }
.otp-resend button { color: var(--gold); font-weight: 600; cursor: pointer; border: none; background: none; font-family: 'Jost',sans-serif; }
.auth-back { background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; padding: 0; margin-bottom: 16px; display: flex; align-items: center; gap: 4px; font-family: 'Jost',sans-serif; transition: color .2s; }
.auth-back:hover { color: var(--gold); }
.password-strength { height: 4px; margin-top: 8px; display: flex; gap: 3px; }
.ps-bar { flex: 1; height: 100%; background: var(--border); transition: background .3s; }
.ps-bar.weak { background: #ef4444; }
.ps-bar.fair { background: #f59e0b; }
.ps-bar.good { background: #22c55e; }
.user-avatar-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* ── PRODUCT DETAIL PAGE ─────────────────────────────────────── */
.product-page { padding: 60px 0 90px; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main { aspect-ratio: 1; overflow: hidden; background: var(--bg2); border: 1px solid var(--border); margin-bottom: 12px; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb { width: 72px; height: 72px; border: 1px solid var(--border); overflow: hidden; cursor: pointer; opacity: .65; transition: all .2s; flex-shrink: 0; }
.gallery-thumb.active, .gallery-thumb:hover { opacity: 1; border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; margin-bottom: 14px; line-height: 1.1; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-stars { color: var(--star); font-size: 18px; }
.product-price-wrap { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--heading); }
.product-price-orig { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.product-discount { background: var(--gold); color: #fff; padding: 3px 10px; font-size: 12px; font-weight: 700; }
.product-desc { font-size: 15.5px; color: var(--body); line-height: 1.8; margin-bottom: 24px; }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--border); }
.qty-ctrl button { width: 40px; height: 44px; font-size: 18px; color: var(--heading); background: var(--bg2); border: none; cursor: pointer; }
.qty-ctrl button:hover { background: var(--bg3); }
.qty-ctrl input { width: 50px; height: 44px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 16px; font-weight: 600; color: var(--heading); background: transparent; outline: none; }
.cart-add-btn { flex: 1; min-width: 140px; padding: 14px 20px; background: var(--primary); color: #fff; font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background .25s; }
.cart-add-btn:hover { background: #2A5438; }
.buy-now-btn { padding: 14px 20px; background: var(--gold); color: #fff; font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background .25s; }
.buy-now-btn:hover { background: #B08A10; }
.product-meta { display: flex; flex-direction: column; gap: 8px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.product-meta span { font-size: 13px; color: var(--muted); }
.product-meta strong { color: var(--heading); }

/* ── ACCOUNT DASHBOARD ───────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding: 40px 0 80px; }
.account-sidebar { background: var(--card); border: 1px solid var(--border); padding: 24px; align-self: start; position: sticky; top: 100px; }
.account-nav-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--body); transition: all .2s; margin-bottom: 4px; }
.account-nav-item:hover, .account-nav-item.active { background: var(--bg2); color: var(--primary); }
.account-nav-item.active { border-left: 3px solid var(--gold); padding-left: 13px; }
.account-card { background: var(--card); border: 1px solid var(--border); padding: 28px; margin-bottom: 20px; }
.account-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); color: var(--heading); }
.order-status-timeline { display: flex; align-items: center; gap: 8px; margin: 20px 0; flex-wrap: wrap; }
.ost-step { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); text-align: center; min-width: 60px; }
.ost-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; background: var(--bg2); }
.ost-step.done .ost-dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.ost-step.current .ost-dot { background: var(--gold); border-color: var(--gold); color: #fff; }
.ost-line { flex: 1; height: 2px; background: var(--border); min-width: 20px; }
.ost-line.done { background: var(--primary); }

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────────── */
[data-sr] { opacity: 0; transition-property: opacity, transform; transition-timing-function: cubic-bezier(.25,.46,.45,.94); }
[data-sr="fade-up"]    { transform: translateY(32px); }
[data-sr="fade-down"]  { transform: translateY(-32px); }
[data-sr="fade-left"]  { transform: translateX(-32px); }
[data-sr="fade-right"] { transform: translateX(32px); }
[data-sr="zoom-in"]    { transform: scale(.92); }
[data-sr="zoom-out"]   { transform: scale(1.08); }
[data-sr="flip-up"]    { transform: perspective(400px) rotateX(25deg); }
[data-sr].sr-visible   { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) { [data-sr] { opacity: 1; transform: none; transition: none; } }

/* ── TOAST ───────────────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--heading); color: #fff; padding: 13px 20px; min-width: 240px; max-width: 360px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: toastIn .3s ease; }
@keyframes toastIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:translateX(0)} }
.toast.success { background: var(--green); }
.toast.error   { background: #991b1b; }
.toast.info    { background: #1e3a5f; }

/* ── FLASH MESSAGES ──────────────────────────────────────────── */
.flash-msg { padding: 14px 24px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 12px; animation: flashIn .3s ease; margin: 16px 0; }
@keyframes flashIn { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
.flash-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.flash-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ── ALT HERO (split layout — light theme) ────────────────────── */
.alt-hero {
  background: #ffffff;
  padding: 40px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  /* Full view: fill the viewport below the sticky header (80px) + bottom nav (48px) */
  min-height: calc(100vh - 128px);
  border-bottom: 1px solid #f0f0ec;
}
.alt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Tag badge */
.alt-hero-content .section-tag {
  background: #faf6ea;
  border: 1px solid rgba(201,162,39,.35);
  color: #1C3A28;
  font-size: 10px;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 1.2px;
  font-weight: 700;
  display: inline-block;
}

/* Heading */
.alt-hero-h1 {
  color: #1C3A28;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
}
.alt-hero-hl {
  color: #B8930E;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* Subtext */
.alt-hero-sub {
  color: #475569;
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Buttons — stacked vertically */
.alt-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 360px;
}
.alt-hero-btns .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}
.alt-hero-btns .btn-outline-light {
  background: transparent;
  border: 1.5px solid #1C3A28;
  color: #1C3A28;
}
.alt-hero-btns .btn-outline-light:hover { background: #1C3A28; color: #fff; }

/* Stats bar */
.alt-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  max-width: 460px;
}
.alt-hero-stat {
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}
.alt-hero-stat:last-child { border-right: none; }
.alt-hero-stat-num { font-size: 17px; font-weight: 800; color: #1C3A28; line-height: 1; margin-bottom: 4px; font-family: 'Jost', sans-serif; }
.alt-hero-stat-lbl { font-size: 9px; color: #9ca3af; text-transform: uppercase; letter-spacing: .7px; line-height: 1.3; }

.alt-hero-image { display: flex; justify-content: center; align-items: center; }
.alt-hero-image img { max-height: 500px; width: 100%; object-fit: contain; filter: drop-shadow(0 20px 60px rgba(0,0,0,.12)); }

/* ── TABLET (769px – 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .review-card   { flex: 0 0 calc(50% - 10px); }
  .why-us-grid   { grid-template-columns: repeat(2,1fr); }
  .reviews-slider-wrap { padding: 0 46px; }
  .steps-grid    { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lab-inner     { grid-template-columns: 1fr; gap: 48px; }
  .alt-hero-inner { padding: 0 40px; gap: 40px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1.2fr 1fr; }
}

/* ── MOBILE (≤ 768px) ────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Show hamburger, convert bottom-nav to slide-in drawer */
  .hamburger { display: flex !important; }
  /* IMPORTANT: backdrop-filter on the header creates a containing block for
     fixed-position descendants, which would trap the fixed drawer below inside
     the header box. Disable it on mobile so the drawer fills the viewport. */
  .site-header { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
  .mobile-nav-close {
    display: block; position: absolute; top: 18px; right: 20px;
    width: 44px; height: 44px; font-size: 34px; line-height: 1;
    color: #fff; background: rgba(255,255,255,.08); border-radius: 50%;
    z-index: 2;
  }
  .bottom-nav {
    position: fixed !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1C3A28;
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform .32s cubic-bezier(.25,.46,.45,.94);
    padding: 88px 0 40px;
    overflow-y: auto;
    display: block !important;
    border: none;
  }
  .bottom-nav.open { transform: translateX(0); }
  .bottom-nav-inner { padding: 0; }
  .bottom-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
  }
  .bottom-nav .nav-links > li > a,
  .bottom-nav .nav-links > li button {
    padding: 18px 28px;
    font-size: 15px;
    letter-spacing: 1px;
    color: rgba(255,255,255,.85) !important;
    border-bottom: 1px solid rgba(255,255,255,.09);
    display: block;
    width: 100%;
    text-align: left;
    background: none;
  }
  .bottom-nav .nav-links > li > a:hover { color: #fff !important; background: rgba(255,255,255,.06); }

  /* Header — keep left icons + centered logo + right icons (incl. cart) all visible */
  .header-inner { height: 68px; padding: 0 12px; gap: 4px; }
  .header-logo { position: static; transform: none; flex: 1 1 auto; justify-content: center; min-width: 0; overflow: hidden; }
  .header-logo img { height: 42px; max-width: 120px; }
  .logo-text { font-size: 18px; white-space: nowrap; }
  .header-left, .header-right { flex-shrink: 0; }
  .header-right { gap: 2px; }
  .hdr-icon-btn { width: 36px; height: 36px; }

  /* Hero */
  .hero-slide { height: 92vh; min-height: 500px; }
  .hero-slide-content { padding: 0 22px; }
  .hero-slide-badges { flex-wrap: wrap; gap: 16px; margin-top: 28px; }
  .hero-slide-badge-icon { width: 38px; height: 38px; }
  .hero-slide-badge span { font-size: 9px; }

  /* Section grids → 2 columns on mobile */
  .products-grid, .steps-grid, .why-us-grid { grid-template-columns: repeat(2,1fr); gap:12px; }
  .review-card   { flex: 0 0 100%; }
  .reviews-slider-wrap { padding: 0 36px; }
  .lab-inner     { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  /* Trust badges: 2 columns on tablet */
  .trust-inner { grid-template-columns: repeat(2,1fr); gap:12px; }

  /* Alt hero → single column, full view below 68px header */
  .alt-hero { min-height: calc(100vh - 68px); padding: 32px 0 40px; }
  .alt-hero-inner { grid-template-columns: 1fr; padding: 0 22px; gap: 32px; }
  .alt-hero-visual { order: -1; }
  .alt-hero-image  { order: -1; }
  .alt-hero-stats  { max-width: 100%; grid-template-columns: repeat(2,1fr); }
  .alt-hero-btns   { max-width: 100%; }
  .alt-hero-btns .btn { text-align: center; justify-content: center; }
  .alt-hero-image img { max-height: 240px; }

  /* Spacing */
  section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .trust-inner { gap: 10px; }

  /* Slider controls */
  .slider-prev { left: 10px; width: 38px; height: 38px; }
  .slider-next { right: 10px; width: 38px; height: 38px; }

  /* Tab buttons (product page) */
  .tab-btn { padding: 10px 14px; font-size: 13px; }

  /* Admin */
  .admin-grid-2, .admin-grid-3, .admin-grid-4 { grid-template-columns: 1fr !important; }
}

/* ── SMALL MOBILE (≤ 540px) ──────────────────────────────────── */
@media (max-width: 540px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-slide h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-slide-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-slide-badges { display: none; }
  section { padding: 48px 0; }
  .btn-lg { padding: 14px 28px; font-size: 13px; }
  .trust-text strong { font-size: 12px; }
  .trust-text span   { font-size: 10px; }
  .trust-item { padding: 14px 8px; }
  .why-us-grid  { grid-template-columns: repeat(2,1fr); }
  .steps-grid   { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════
   ALT-HERO ORBITING CIRCLES (light theme)
══════════════════════════════════════════ */
.alt-hero-visual { display: flex; justify-content: center; align-items: center; }
.alt-hero-orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,162,39,.45);
}
.orbit-1 { width: 280px; height: 280px; }
.orbit-2 { width: 360px; height: 360px; border-color: rgba(201,162,39,.22); }
.orbit-3 { width: 420px; height: 420px; border-color: rgba(201,162,39,.18); border-style: dashed; }
.orbit-spin { animation: orbitSpin 20s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Center image circle — light style */
.alt-hero-img-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #f5f3ee, #eae8e0);
  border: 2px solid rgba(201,162,39,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 48px rgba(0,0,0,.10);
}
.alt-hero-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badges — white pill on light bg */
.orbit-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1C3A28;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  z-index: 3;
  letter-spacing: .2px;
}
.orbit-badge-top    { top: 8px; right: 50px; }
.orbit-badge-left   { left: -10px; top: 50%; transform: translateY(-50%); }
.orbit-badge-bottom {
  bottom: 28px; right: 20px;
  background: #1C3A28;
  border-color: #1C3A28;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.orbit-badge-bottom::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.25);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .alt-hero-orbit-wrap { width: 280px; height: 280px; }
  .orbit-1 { width: 180px; height: 180px; }
  .orbit-2 { width: 240px; height: 240px; }
  .orbit-3 { width: 280px; height: 280px; }
  .alt-hero-img-circle { width: 145px; height: 145px; }
  .orbit-badge { font-size: 10px; padding: 4px 10px; }
  .orbit-badge-top  { top: 0; right: 20px; }
  .orbit-badge-left { left: -8px; }
  .orbit-badge-bottom { bottom: 10px; right: 8px; }
}

/* ══════════════════════════════════════════
   ALT-HERO ENTRY ANIMATIONS
══════════════════════════════════════════ */
@keyframes heroSlideLeft {
  from { opacity:0; transform:translateX(-60px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes heroSlideRight {
  from { opacity:0; transform:translateX(60px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes heroPulse {
  0%,100% { box-shadow:0 12px 48px rgba(0,0,0,.10),0 0 0 0 rgba(201,162,39,.2); }
  50%     { box-shadow:0 16px 56px rgba(0,0,0,.14),0 0 0 10px rgba(201,162,39,0); }
}
@keyframes badgeFloat {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-6px); }
}
@keyframes badgeFloatLeft {
  0%,100% { transform:translateY(-50%) translateX(0); }
  50%     { transform:translateY(-50%) translateX(-5px); }
}

/* Apply entry animations with stagger delays */
.alt-hero .section-tag    { animation:heroFadeUp .6s .10s both; }
.alt-hero .alt-hero-h1    { animation:heroSlideLeft .7s .20s both; }
.alt-hero .alt-hero-sub   { animation:heroFadeUp .6s .40s both; }
.alt-hero .alt-hero-btns  { animation:heroFadeUp .6s .55s both; }
.alt-hero .alt-hero-stats { animation:heroFadeUp .6s .70s both; }

/* Visual side */
.alt-hero .alt-hero-visual { animation:heroSlideRight .8s .15s both; }

/* Pulsing glow on center image */
.alt-hero-img-circle { animation:heroPulse 4s 1.2s ease-in-out infinite; }

/* Floating badges */
.orbit-badge-top    { animation:badgeFloat 4s 1.5s ease-in-out infinite; }
.orbit-badge-bottom { animation:badgeFloat 4s 2s ease-in-out infinite; }
.orbit-badge-left   { animation:badgeFloatLeft 5s 1.8s ease-in-out infinite; }

/* Stat counter: numbers animate up when visible */
.alt-hero-stat-num[data-count] { transition:color .3s; }

/* ══════════════════════════════════════════
   SOCIAL VIDEOS SECTION
══════════════════════════════════════════ */
.social-videos-section { padding: 80px 0; background: var(--bg2); }
.social-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.social-video-card { background: var(--card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.social-video-label {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.social-video-wrap { position: relative; padding-bottom: 177.78%; height: 0; overflow: hidden; }
.social-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

@media (max-width: 900px) { .social-videos-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .social-videos-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════
   MAP SECTION
══════════════════════════════════════════ */
.map-section { padding: 80px 0; }
.map-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; margin-top: 40px; align-items: start; }
.map-info { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.map-info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.map-info-row:last-of-type { border-bottom: none; }
.map-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.map-info-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.map-info-val { font-size: 14px; color: var(--text); line-height: 1.5; }
@media (max-width: 768px) {
  .map-inner { grid-template-columns: 1fr; }
  .map-embed iframe { height: 240px; }
}

/* ══════════════════════════════════════════
   DARK MODE — ALT HERO OVERRIDES
══════════════════════════════════════════ */
[data-theme="dark"] .alt-hero {
  background: linear-gradient(135deg, #0A1208 0%, #1A2E14 50%, #0D1A0C 100%);
  border-bottom-color: rgba(255,255,255,.06);
}
[data-theme="dark"] .alt-hero-content .section-tag {
  background: rgba(201,162,39,.12);
  border-color: rgba(201,162,39,.35);
  color: #D4AD52;
}
[data-theme="dark"] .alt-hero-h1 { color: #F5F0E0; }
[data-theme="dark"] .alt-hero-hl { color: #D4AD52; }
[data-theme="dark"] .alt-hero-sub { color: rgba(245,240,224,.65); }
[data-theme="dark"] .alt-hero-btns .btn-outline-light {
  border-color: rgba(245,240,224,.4);
  color: #F5F0E0;
}
[data-theme="dark"] .alt-hero-btns .btn-outline-light:hover {
  background: rgba(245,240,224,.1);
  color: #F5F0E0;
}
[data-theme="dark"] .alt-hero-stats {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
}
[data-theme="dark"] .alt-hero-stat { border-right-color: rgba(255,255,255,.08); }
[data-theme="dark"] .alt-hero-stat-num { color: #D4AD52; }
[data-theme="dark"] .alt-hero-stat-lbl { color: rgba(245,240,224,.45); }

/* orbit on dark */
[data-theme="dark"] .orbit { border-color: rgba(212,173,82,.3); }
[data-theme="dark"] .orbit-2 { border-color: rgba(212,173,82,.15); }
[data-theme="dark"] .orbit-3 { border-color: rgba(255,255,255,.06); }
[data-theme="dark"] .alt-hero-img-circle {
  background: radial-gradient(circle at 40% 35%, #2A5438, #0d1a0f);
  border-color: rgba(212,173,82,.4);
  box-shadow: 0 0 60px rgba(212,173,82,.15), inset 0 0 40px rgba(0,0,0,.4);
}
[data-theme="dark"] .orbit-badge {
  background: rgba(14,32,22,.92);
  border-color: rgba(201,162,39,.35);
  color: #F5F0E0;
}
[data-theme="dark"] .orbit-badge-bottom {
  background: rgba(28,58,40,.95);
  border-color: rgba(34,197,94,.4);
  color: #4ade80;
}
[data-theme="dark"] .orbit-badge-bottom::before { background: #4ade80; }

/* ── INSTAGRAM SECTION ──────────────────────────────────────── */
.ig-section { padding:72px 0; border-top:1px solid var(--border); background:var(--bg2); }
.ig-header { text-align:center; margin-bottom:36px; }
.ig-title { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,2.8vw,2.2rem); font-weight:700; color:var(--heading); margin:0 0 8px; }
.ig-sub { color:var(--muted); font-size:15px; margin:0; }
.ig-follow-btn { display:inline-flex; align-items:center; gap:8px; padding:12px 28px; border-radius:100px; background:#111; color:#fff; font-size:14px; font-weight:600; text-decoration:none; transition:transform .2s,box-shadow .2s,background .2s; border:1.5px solid transparent; }
.ig-follow-btn:hover { background:linear-gradient(135deg,#f09433,#dc2743,#bc1888); transform:translateY(-2px); box-shadow:0 8px 24px rgba(188,24,136,.3); color:#fff; }
.ig-gallery { display:flex; gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-bottom:4px; }
.ig-gallery::-webkit-scrollbar { display:none; }
.ig-thumb { flex:0 0 clamp(220px,22vw,320px); aspect-ratio:1; border-radius:12px; overflow:hidden; scroll-snap-align:start; position:relative; display:block; background:var(--card); }
.ig-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s; display:block; }
.ig-thumb:hover img { transform:scale(1.07); }
.ig-thumb-overlay { position:absolute; inset:0; background:rgba(0,0,0,.38); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; }
.ig-thumb:hover .ig-thumb-overlay { opacity:1; }

@media(max-width:600px) {
  .ig-header { text-align:left; }
  .ig-thumb { flex:0 0 clamp(160px,60vw,220px); border-radius:10px; }
}

/* Trustpilot widget wrapper */
.trustpilot-widget-wrap { overflow:hidden; border-radius:12px; margin-top:16px; }

/* ── DARK MODE: Instagram ──────────────────────────────────── */
[data-theme="dark"] .ig-title { color: #F5F0E0; }
[data-theme="dark"] .ig-post  { background: #1a2410; }

/* ── CERTIFICATIONS / THIRD-PARTY TESTED SECTION ───────────── */
.cert-section { padding: 80px 0; background: var(--bg2); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cert-frame {
  display: block;
  background: linear-gradient(145deg, #d9b864, #b8923a);
  padding: 10px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.cert-frame:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cert-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  background: #fff;
  display: block;
}
.cert-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cert-section { padding: 56px 0; }
  .cert-grid { grid-template-columns: 1fr; gap: 18px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .cert-btns .btn { flex: 1 1 auto; text-align: center; }
}
[data-theme="dark"] .cert-frame { background: linear-gradient(145deg, #8a6f2c, #6b5320); }
