/* ============================================================
   TERAVIX rebuild — design system
   Palette from live site: #8EE600 lime · #071427 navy · #F4F5F6 light
   Fonts: Space Grotesk (display), DM Serif Display (serif accents), Figtree (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&family=Figtree:wght@300;400;500;600;700&display=swap');

:root {
  --lime: #8EE600;
  --lime-dark: #76c400;
  --navy: #071427;
  --navy-2: #122540;
  --navy-3: #0B1D33;
  --ink: #101828;
  --gray: #5B6472;
  --line: #E9EBEC;
  --bg-soft: #F4F5F6;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(7, 20, 39, .08);
  --shadow-lg: 0 24px 60px rgba(7, 20, 39, .14);
  --font-display: 'Space Grotesk', Arial, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Figtree', 'Manrope', Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.15; letter-spacing: -.01em; }
.serif { font-family: var(--font-serif); font-weight: 400; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--navy); color: var(--lime);
  text-align: center; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; padding: .55rem 1rem; font-weight: 600;
  font-family: var(--font-display);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 20, 39, .96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(142, 230, 0, .15);
}
.header-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.logo { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .08em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px; background: var(--lime);
  display: grid; place-items: center; color: var(--navy);
  font-size: 1.05rem; font-weight: 700;
}
.main-nav { display: flex; gap: 1.6rem; margin-left: 1rem; flex: 1; }
.main-nav > li { position: relative; }
.main-nav a {
  color: #E7ECF3; font-size: .82rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: .5rem 0; display: inline-block;
  font-family: var(--font-display);
}
.main-nav a:hover { color: var(--lime); }
.main-nav .has-sub > a::after { content: ' ▾'; font-size: .7em; opacity: .6; }
.sub-menu {
  position: absolute; top: 100%; left: -1rem; min-width: 230px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: .6rem; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s ease; z-index: 60;
}
.main-nav li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.sub-menu a { color: var(--ink); padding: .55rem .9rem; border-radius: 8px; display: block; letter-spacing: .02em; text-transform: none; font-size: .92rem; }
.sub-menu a:hover { background: var(--bg-soft); color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.icon-btn { position: relative; background: none; border: none; color: #fff; font-size: 1.15rem; }
.icon-btn:hover { color: var(--lime); }
.cart-count {
  position: absolute; top: -.5rem; right: -.7rem; background: var(--lime); color: var(--navy);
  font-size: .68rem; font-weight: 700; min-width: 17px; height: 17px; border-radius: 9px;
  display: grid; place-items: center; font-family: var(--font-display);
}
.mobile-toggle { display: none; }

/* mobile nav */
.mobile-nav { display: none; background: var(--navy); padding: 1rem 0 1.4rem; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: #E7ECF3; padding: .6rem 0; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 600; font-size: .92rem; letter-spacing: .04em; transition: .18s ease;
  font-family: var(--font-display); text-transform: uppercase;
}
.btn-primary { background: var(--lime); color: var(--navy); }
.btn-primary:hover { background: #a4f52a; transform: translateY(-1px); }
.btn-ghost-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost-light:hover { border-color: var(--lime); color: var(--lime); }
.btn-ghost-dark { border-color: var(--navy); color: var(--navy); }
.btn-ghost-dark:hover { background: var(--navy); color: var(--lime); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }

/* ---------- hero ---------- */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 90% at 85% 10%, rgba(142,230,0,.14), transparent 60%),
              radial-gradient(40% 60% at 10% 90%, rgba(142,230,0,.07), transparent 60%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; padding: 5.5rem 0 5rem; }
.eyebrow {
  color: var(--lime); text-transform: uppercase; letter-spacing: .3em;
  font-size: .78rem; font-weight: 600; font-family: var(--font-display); margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); color: #fff; margin-bottom: 1.3rem; }
.hero h1 .accent { color: var(--lime); font-family: var(--font-serif); font-style: italic; }
.hero p.lead { color: #B9C4D4; font-size: 1.13rem; max-width: 34rem; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.hero-chip {
  position: absolute; bottom: -1.2rem; left: -1rem;
  background: #fff; color: var(--navy); border-radius: 14px; padding: .8rem 1.2rem;
  box-shadow: var(--shadow-lg); font-size: .85rem; font-weight: 600; font-family: var(--font-display);
  display: flex; align-items: center; gap: .6rem;
}
.hero-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }

/* ---------- marquee strip ---------- */
.marquee { background: var(--lime); color: var(--navy); overflow: hidden; padding: .8rem 0; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: slide 26s linear infinite; font-family: var(--font-display); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- feature cards ---------- */
.section { padding: 5rem 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin: .6rem 0 1rem; }
.section-head p { color: var(--gray); font-size: 1.05rem; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.5rem; transition: .2s ease;
}
.feature-card:hover { border-color: var(--lime); box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card .num { font-family: var(--font-serif); font-style: italic; color: var(--lime-dark); font-size: 1.1rem; margin-bottom: .8rem; display:block; }
.feature-card h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.feature-card p { color: var(--gray); font-size: .93rem; }

/* ---------- product cards ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: .2s ease; display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #d9e2c8; }
.product-media { position: relative; background: var(--bg-soft); aspect-ratio: 1; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: .8rem; left: .8rem; background: var(--navy); color: var(--lime);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  padding: .35rem .7rem; border-radius: 6px; font-family: var(--font-display);
}
.product-body { padding: 1.2rem 1.2rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: .99rem; line-height: 1.4; margin-bottom: .7rem; }
.product-price { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; margin-bottom: .4rem; }
.product-price del { color: var(--gray); font-weight: 400; font-size: .9rem; margin-right: .5rem; }
.product-cats { color: var(--gray); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.add-cart-btn {
  margin-top: auto; width: 100%; background: var(--navy); color: #fff; border: none;
  padding: .78rem; border-radius: 10px; font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase; transition: .18s; font-family: var(--font-display);
}
.add-cart-btn:hover { background: var(--lime); color: var(--navy); }

/* ---------- stats band ---------- */
.stats-band { background: var(--navy); color: #fff; padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--lime); }
.stat .lbl { color: #B9C4D4; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- bundles ---------- */
.bundles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.bundle-card {
  border-radius: 18px; padding: 2.4rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 320px;
  color: #fff; box-shadow: var(--shadow-lg);
}
.bundle-1 { background: linear-gradient(135deg, #0E2340, #071427 60%), url('/media/x'); }
.bundle-2 { background: linear-gradient(135deg, #123055, #071427); }
.bundle-card .kicker { color: var(--lime); text-transform: uppercase; letter-spacing: .25em; font-size: .72rem; font-family: var(--font-display); margin-bottom: .7rem; }
.bundle-card h3 { font-size: 1.7rem; margin-bottom: .7rem; }
.bundle-card p { color: #B9C4D4; font-size: .95rem; max-width: 30rem; margin-bottom: 1rem; }
.bundle-includes { color: var(--lime); font-size: .82rem; letter-spacing: .08em; margin-bottom: 1.4rem; font-family: var(--font-display); }

/* ---------- purity / split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split .img-side img { border-radius: 18px; box-shadow: var(--shadow-lg); }
.pill {
  display: inline-flex; align-items: center; gap: .5rem; background: #EEF7DC; color: #4c7a00;
  padding: .45rem 1rem; border-radius: 999px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; font-family: var(--font-display); margin-bottom: 1.2rem;
}

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.testi-stars { color: var(--lime-dark); letter-spacing: .15em; margin-bottom: 1rem; }
.testi-card blockquote { font-size: .98rem; color: var(--ink); font-style: italic; margin-bottom: 1.2rem; }
.testi-who { font-weight: 700; font-size: .9rem; }
.testi-role { color: var(--gray); font-size: .82rem; }

/* ---------- details grid (Easy to...) ---------- */
.details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.detail-card { border-top: 2px solid var(--lime); padding-top: 1.4rem; }
.detail-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.detail-card p { color: var(--gray); font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; display: flex;
  justify-content: space-between; align-items: center; padding: 1.3rem 0; gap: 1rem;
  font-size: 1.02rem; font-weight: 600; font-family: var(--font-display);
}
.faq-q .chev { color: var(--lime-dark); transition: .2s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--gray); }
.faq-a p { padding-bottom: 1.3rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); border-radius: 22px; padding: 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, rgba(142,230,0,.16), transparent 70%); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1rem; position: relative; }
.cta-band p { color: #B9C4D4; margin-bottom: 2rem; position: relative; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #B9C4D4; padding: 4.5rem 0 2rem; margin-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 24rem; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center; font-size: .85rem; transition: .18s;
}
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }
.footer-col h3 { color: #fff; font-size: .85rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col a { display: block; padding: .3rem 0; font-size: .92rem; transition: .15s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.6rem; display: flex; justify-content: space-between; font-size: .82rem; flex-wrap: wrap; gap: 1rem; }

/* ---------- shop page ---------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-chips { display: flex; gap: .6rem; flex-wrap: wrap; }
.cat-chip {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line);
  font-size: .85rem; font-weight: 600; transition: .15s; background: #fff;
}
.cat-chip:hover { border-color: var(--navy); }
.cat-chip.active { background: var(--navy); color: var(--lime); border-color: var(--navy); }

.page-hero { background: var(--navy); color: #fff; padding: 4rem 0; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .crumbs { color: #8fa0b8; font-size: .85rem; margin-bottom: 1rem; letter-spacing: .06em; }
.page-hero .crumbs a:hover { color: var(--lime); }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; padding: 4rem 0; }
.pdp-gallery-main { background: var(--bg-soft); border-radius: 18px; overflow: hidden; aspect-ratio: 1; }
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: flex; gap: .8rem; margin-top: 1rem; }
.pdp-thumbs img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; border: 2px solid transparent; cursor: pointer; }
.pdp-thumbs img:hover { border-color: var(--lime); }
.pdp-info .eyebrow { color: var(--lime-dark); }
.pdp-info h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.pdp-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin: 1.2rem 0; }
.pdp-price del { color: var(--gray); font-size: 1.2rem; font-weight: 400; margin-right: .7rem; }
.pdp-desc { color: var(--gray); margin-bottom: 1.6rem; }
.qty-row { display: flex; gap: 1rem; align-items: stretch; margin-bottom: 1rem; flex-wrap: wrap; }
.qty-box { display: flex; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.qty-box button { width: 44px; background: none; border: none; font-size: 1.2rem; color: var(--gray); }
.qty-box input { width: 56px; text-align: center; border: none; outline: none; font-weight: 700; font-size: 1.05rem; }
.pdp-buy { flex: 1; min-width: 220px; }
.pdp-meta { border-top: 1px solid var(--line); margin-top: 1.8rem; padding-top: 1.4rem; display: grid; gap: .6rem; font-size: .9rem; color: var(--gray); }
.pdp-meta b { color: var(--ink); }

/* ---------- content page ---------- */
.prose { max-width: 52rem; margin: 4rem auto; }
.prose h1 { font-size: 2.2rem; margin-bottom: 1.4rem; }
.prose h2 { font-size: 1.55rem; margin: 2.2rem 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .8rem; }
.prose p { margin-bottom: 1.1rem; color: #3a4354; }
.prose ul { margin: 0 0 1.2rem 1.2rem; list-style: disc; }
.prose li { margin-bottom: .5rem; color: #3a4354; }

/* ---------- cart / checkout ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); padding: .8rem .6rem; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 1rem .6rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-prod { display: flex; align-items: center; gap: 1rem; }
.cart-prod img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }
.summary-card { background: var(--bg-soft); border-radius: var(--radius); padding: 1.8rem; position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .95rem; }
.summary-total { border-top: 2px solid var(--navy); margin-top: .8rem; padding-top: 1rem; font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; padding: 4rem 0; }
.form-grid { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; letter-spacing: .03em; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: 10px;
  transition: .15s; background: #fff;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lime-dark); }
.notice-ok { background: #EEF7DC; color: #3d6300; padding: 1rem 1.3rem; border-radius: 10px; margin-bottom: 1.4rem; font-weight: 600; }


/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }

/* ---------- WhatsApp CTA buttons ---------- */
.btn-wa {
  background: #25D366; color: #fff; border: none;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .92rem; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .04em; transition: .18s ease;
}
.btn-wa:hover { background: #1ebe59; transform: translateY(-1px); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 1.6rem; left: 50%; transform: translate(-50%, 20px);
  background: var(--navy); color: var(--lime); padding: .9rem 1.6rem; border-radius: 12px;
  font-weight: 600; font-family: var(--font-display); opacity: 0; pointer-events: none;
  transition: .25s ease; z-index: 200; box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- admin ---------- */
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; background: var(--bg-soft); }
.admin-side { background: var(--navy); color: #B9C4D4; padding: 1.5rem 1rem; }
.admin-side .logo { margin: 0 0.5rem 2rem; font-size: 1.05rem; }
.admin-side nav a { display: block; padding: .65rem .9rem; border-radius: 9px; font-size: .9rem; margin-bottom: .2rem; }
.admin-side nav a:hover, .admin-side nav a.active { background: rgba(142,230,0,.12); color: var(--lime); }
.admin-main { padding: 2.2rem 2.6rem; }
.admin-main h1 { font-size: 1.6rem; margin-bottom: 1.6rem; }
.stat-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2.2rem; }
.stat-card { background: #fff; border-radius: 12px; padding: 1.3rem; box-shadow: 0 2px 8px rgba(7,20,39,.05); }
.stat-card .v { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.stat-card .k { color: var(--gray); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.admin-table { width: 100%; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(7,20,39,.05); border-collapse: collapse; }
.admin-table th { background: var(--bg-soft); text-align: left; padding: .8rem 1rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); }
.admin-table td { padding: .8rem 1rem; border-top: 1px solid var(--line); font-size: .92rem; vertical-align: middle; }
.badge-status { padding: .25rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 700; }
.badge-pending { background: #FFF3D6; color: #9a6b00; }
.badge-processing { background: #E3EEFF; color: #1a56c4; }
.badge-shipped { background: #E7F6E7; color: #1e7a1e; }
.badge-delivered { background: #E6F9E0; color: #14620f; }
.badge-cancelled { background: #FDE3E3; color: #b91c1c; }
.admin-form { background: #fff; border-radius: 14px; padding: 2rem; box-shadow: 0 2px 8px rgba(7,20,39,.05); max-width: 860px; }
.admin-form textarea { min-height: 320px; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--navy); }
.login-card { background: #fff; padding: 2.6rem; border-radius: 18px; width: min(400px, 92vw); box-shadow: var(--shadow-lg); }

/* ---------- 404 ---------- */
.nf { text-align: center; padding: 7rem 0; }
.nf h1 { font-size: 5rem; color: var(--lime-dark); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .features-grid, .products-grid, .details-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero-inner, .split, .pdp, .checkout-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .testi-grid, .bundles-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { display: flex; align-items: center; gap: 1rem; overflow-x: auto; }
  .admin-side nav { display: flex; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .features-grid, .products-grid, .details-grid, .stats-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 2.6rem 1.4rem; }
}
