/* ==========================================================================
   COOLSTUFFZ INDIA — STYLESHEET
   Organized sections:
   1. Tokens / Variables
   2. Reset & Base
   3. Layout Utilities
   4. Header, Ticker, Search, Drawer
   5. Hero
   6. Categories
   7. Products / Product Cards
   8. Why Us / Promo Banner / Trust
   9. Footer
   10. Bottom Nav (mobile)
   11. Modals (product, order, confirm, admin)
   12. Toast
   13. Animations
   14. Responsive (tablet / desktop)
   ========================================================================== */

/* ---------- 1. TOKENS ---------- */
:root{
  /* Colors — "Floodlit Pitch" palette */
  --pitch-900:#07211a;
  --pitch-800:#0b3d2e;
  --pitch-700:#0f4a38;
  --pitch-600:#146349;
  --gold-500:#c9a24b;
  --gold-400:#e0bd6c;
  --gold-100:#f7ecd2;
  --ink-900:#141613;
  --ink-700:#3a3f3a;
  --ink-400:#767c76;
  --paper-0:#ffffff;
  --paper-50:#f7f6f2;
  --paper-100:#eeece4;
  --line:#e3e1d7;
  --red-600:#c8402c;
  --shadow-sm:0 2px 8px rgba(7,33,26,.08);
  --shadow-md:0 10px 30px rgba(7,33,26,.12);
  --shadow-lg:0 20px 50px rgba(7,33,26,.22);

  /* Type */
  --font-display:'Anton', 'Oswald', sans-serif;
  --font-heading:'Oswald', sans-serif;
  --font-body:'Work Sans', sans-serif;

  /* Layout */
  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --header-h:56px;
  --ticker-h:34px;
  --bottom-nav-h:64px;
  --container:1180px;
}

/* ---------- 2. RESET & BASE ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--paper-50);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--bottom-nav-h);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:none;cursor:pointer}
ul{list-style:none}
input,textarea,select{font:inherit;color:inherit}
h1,h2,h3,h4{font-family:var(--font-heading);font-weight:600;letter-spacing:.2px}
:focus-visible{outline:2px solid var(--gold-500);outline-offset:2px}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition-duration:.001ms !important;scroll-behavior:auto !important}
}

/* ---------- 3. LAYOUT UTILITIES ---------- */
.section-head{max-width:var(--container);margin:0 auto;padding:0 18px 20px;}
.section-head--row{display:flex;justify-content:space-between;align-items:flex-end;gap:12px;flex-wrap:wrap}
.section-eyebrow{
  font-family:var(--font-heading);
  font-size:.72rem;font-weight:600;letter-spacing:2.5px;text-transform:uppercase;
  color:var(--gold-500);margin-bottom:6px;
}
.section-head h2{font-size:1.55rem;color:var(--pitch-900)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 26px;border-radius:100px;font-weight:600;font-size:.95rem;
  cursor:pointer;transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(.97)}
.btn--primary{background:var(--gold-500);color:var(--pitch-900);box-shadow:var(--shadow-sm)}
.btn--primary:hover{background:var(--gold-400);box-shadow:var(--shadow-md)}
.btn--ghost{background:transparent;border:1.5px solid rgba(255,255,255,.5);color:#fff}
.btn--ghost:hover{background:rgba(255,255,255,.12)}
.btn--block{width:100%}
.btn--small{padding:8px 16px;font-size:.8rem;border-radius:100px;background:var(--paper-100);color:var(--ink-900)}
.btn--danger{background:#fbe4e0;color:var(--red-600)}

.icon-btn{
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;position:relative;transition:background .15s ease;
}
.icon-btn:hover{background:rgba(0,0,0,.05)}
.badge{
  position:absolute;top:2px;right:2px;background:var(--red-600);color:#fff;
  font-size:.62rem;font-weight:700;min-width:16px;height:16px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;padding:0 3px;
}

/* ---------- 4. HEADER / TICKER / SEARCH / DRAWER ---------- */
.ticker{
  height:var(--ticker-h);background:var(--pitch-900);color:var(--gold-100);
  overflow:hidden;display:flex;align-items:center;font-size:.72rem;letter-spacing:.5px;
}
.ticker__track{display:flex;gap:40px;white-space:nowrap;padding-left:20px;animation:scrollTicker 22s linear infinite}
.ticker__track span{display:inline-flex;align-items:center;gap:6px;font-weight:600}
@keyframes scrollTicker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.site-header{
  position:sticky;top:0;z-index:40;background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header__inner{
  height:var(--header-h);max-width:var(--container);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;padding:0 12px;
}
.logo{display:flex;align-items:center;gap:8px}
.logo__mark{
  font-family:var(--font-display);background:var(--pitch-900);color:var(--gold-400);
  font-size:.85rem;padding:6px 8px;border-radius:6px;letter-spacing:1px;line-height:1;
}
.logo__text{font-family:var(--font-heading);font-weight:600;font-size:1rem;color:var(--pitch-900)}
.logo__text em{color:var(--gold-500);font-style:normal}
.header-actions{display:flex;align-items:center;gap:2px}
.menu-toggle{flex-direction:column;gap:4px}
.menu-toggle .bar{width:20px;height:2px;background:var(--pitch-900);border-radius:2px;transition:transform .2s ease, opacity .2s ease}

.search-bar{
  max-height:0;overflow:hidden;transition:max-height .25s ease;
  border-top:1px solid transparent;display:flex;align-items:center;gap:8px;
  max-width:var(--container);margin:0 auto;
}
.search-bar.is-open{max-height:64px;border-top-color:var(--line);padding:10px 14px}
.search-bar input{
  flex:1;border:1px solid var(--line);border-radius:100px;padding:10px 16px;
  background:var(--paper-50);font-size:.9rem;
}
.search-bar input:focus{border-color:var(--gold-500)}

.drawer-overlay,.modal-overlay{
  position:fixed;inset:0;background:rgba(7,15,12,.55);opacity:0;pointer-events:none;
  transition:opacity .25s ease;z-index:50;
}
.drawer-overlay.is-open,.modal-overlay.is-open{opacity:1;pointer-events:auto}

.drawer{
  position:fixed;top:0;left:0;bottom:0;width:78%;max-width:320px;background:var(--pitch-900);
  color:#fff;z-index:60;transform:translateX(-105%);transition:transform .3s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;padding:18px;
}
.drawer.is-open{transform:translateX(0)}
.drawer__head{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}
.drawer__links{display:flex;flex-direction:column;gap:2px;margin-top:10px}
.drawer__links a{
  padding:14px 10px;font-family:var(--font-heading);font-size:1.05rem;font-weight:500;
  border-bottom:1px solid rgba(255,255,255,.08);transition:color .15s ease, padding-left .15s ease;
}
.drawer__links a:hover{color:var(--gold-400);padding-left:16px}
.drawer__footer{margin-top:auto;padding-top:16px;border-top:1px solid rgba(255,255,255,.1);font-size:.85rem;color:var(--gold-100);display:flex;flex-direction:column;gap:6px}

/* ---------- 5. HERO ---------- */
.hero{
  position:relative;background:radial-gradient(120% 100% at 15% 0%, var(--pitch-700), var(--pitch-900) 60%);
  color:#fff;padding:44px 18px 40px;overflow:hidden;
}
.hero__glow{
  position:absolute;top:-60px;right:-80px;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle, rgba(201,162,75,.35), transparent 70%);filter:blur(10px);
}
.hero__content{position:relative;max-width:var(--container);margin:0 auto}
.hero__eyebrow{
  font-family:var(--font-heading);font-size:.72rem;letter-spacing:3px;font-weight:600;
  color:var(--gold-400);text-transform:uppercase;margin-bottom:14px;
  animation:fadeUp .6s ease both;
}
.hero__title{
  font-family:var(--font-display);font-weight:400;font-size:2.6rem;line-height:1.05;
  text-transform:uppercase;letter-spacing:.5px;animation:fadeUp .7s ease .05s both;
}
.hero__title span{color:var(--gold-400)}
.hero__sub{
  margin-top:16px;max-width:480px;color:rgba(255,255,255,.78);font-size:.98rem;
  animation:fadeUp .7s ease .1s both;
}
.hero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;animation:fadeUp .7s ease .15s both}
.hero__stats{
  display:flex;gap:28px;margin-top:34px;padding-top:22px;border-top:1px solid rgba(255,255,255,.15);
  animation:fadeUp .7s ease .2s both;
}
.hero__stats div{display:flex;flex-direction:column}
.hero__stats strong{font-family:var(--font-display);font-size:1.3rem;color:var(--gold-400);font-weight:400}
.hero__stats span{font-size:.72rem;color:rgba(255,255,255,.65);margin-top:2px}

.hero__visual{position:relative;height:170px;margin-top:34px}
.hero-jersey{
  position:absolute;width:120px;height:140px;border-radius:16px 16px 30px 30px;
  clip-path:polygon(30% 0%, 70% 0%, 100% 18%, 85% 30%, 78% 26%, 78% 100%, 22% 100%, 22% 26%, 15% 30%, 0% 18%);
  box-shadow:var(--shadow-lg);animation:floatY 4.5s ease-in-out infinite;
}
.hero-jersey--1{background:linear-gradient(160deg,#1d5c42,#0f4a38);left:14%;top:10px;animation-delay:0s}
.hero-jersey--2{background:linear-gradient(160deg,var(--gold-400),#b7893a);right:12%;top:36px;animation-delay:.8s;width:104px;height:122px}
.floodlight{
  position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:200%;height:60px;
  background:radial-gradient(closest-side, rgba(224,189,108,.28), transparent 75%);
}

/* ---------- 6. CATEGORIES ---------- */
.categories{padding:38px 0 8px}
.category-scroll{
  display:flex;gap:14px;overflow-x:auto;padding:4px 18px 14px;scroll-snap-type:x mandatory;
  -ms-overflow-style:none;scrollbar-width:none;
}
.category-scroll::-webkit-scrollbar{display:none}
.category-card{
  flex:0 0 auto;scroll-snap-align:start;width:130px;height:150px;border-radius:var(--radius-lg);
  position:relative;overflow:hidden;display:flex;align-items:flex-end;padding:14px;
  cursor:pointer;box-shadow:var(--shadow-sm);transition:transform .2s ease, box-shadow .2s ease;
  color:#fff;
}
.category-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.category-card::before{
  content:"";position:absolute;inset:0;background:linear-gradient(180deg, transparent 30%, rgba(7,33,26,.85));
}
.category-card__emoji{position:absolute;top:14px;right:14px;font-size:1.5rem;z-index:1}
.category-card span{position:relative;font-family:var(--font-heading);font-weight:600;font-size:.92rem;z-index:1}
.category-card small{position:relative;z-index:1;display:block;font-size:.68rem;color:var(--gold-100);opacity:.85;margin-top:2px}

/* ---------- 7. PRODUCTS ---------- */
.products{padding:34px 0 10px;max-width:var(--container);margin:0 auto}
.filter-pills{display:flex;gap:8px;overflow-x:auto;padding-bottom:4px;-ms-overflow-style:none;scrollbar-width:none}
.filter-pills::-webkit-scrollbar{display:none}
.pill{
  flex:0 0 auto;padding:8px 16px;border-radius:100px;background:var(--paper-100);
  font-size:.8rem;font-weight:600;color:var(--ink-700);transition:background .15s ease, color .15s ease;
}
.pill.is-active{background:var(--pitch-900);color:var(--gold-400)}

.no-results{text-align:center;padding:40px 18px;color:var(--ink-400)}

.product-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px;padding:14px 18px 10px;
}
.product-card{
  background:var(--paper-0);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-sm);
  display:flex;flex-direction:column;cursor:pointer;transition:transform .2s ease, box-shadow .2s ease;
  animation:fadeUp .5s ease both;
}
.product-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}

.product-card__media{
  position:relative;aspect-ratio:1/1;display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.product-card__badge{
  position:absolute;top:8px;left:8px;background:var(--red-600);color:#fff;font-size:.62rem;
  font-weight:700;padding:4px 8px;border-radius:100px;z-index:2;letter-spacing:.3px;
}
.product-card__discount{
  position:absolute;top:8px;right:8px;background:var(--gold-500);color:var(--pitch-900);
  font-size:.65rem;font-weight:700;padding:4px 7px;border-radius:6px;z-index:2;
}

/* Jersey graphic — pure CSS, no external images needed */
.jersey{
  position:relative;width:64%;aspect-ratio:.86/1;
  clip-path:polygon(32% 0%, 68% 0%, 100% 16%, 84% 32%, 76% 26%, 76% 100%, 24% 100%, 24% 26%, 16% 32%, 0% 16%);
  box-shadow:0 10px 22px rgba(0,0,0,.18);transition:transform .25s ease;
}
.product-card:hover .jersey{transform:scale(1.06) rotate(-1deg)}
.jersey__stripe{position:absolute;top:0;bottom:0;width:16%;left:42%;opacity:.85}
.jersey__number{
  position:absolute;top:32%;left:50%;transform:translateX(-50%);font-family:var(--font-display);
  color:rgba(255,255,255,.92);text-shadow:0 2px 6px rgba(0,0,0,.25);font-size:1.6rem;
}
.jersey__crest{position:absolute;top:14%;left:22%;width:14%;aspect-ratio:1;border-radius:50%;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.3)}

.product-card__body{padding:12px 12px 14px;display:flex;flex-direction:column;gap:4px;flex:1}
.product-card__team{font-size:.66rem;text-transform:uppercase;letter-spacing:1px;color:var(--ink-400);font-weight:600}
.product-card__name{font-family:var(--font-heading);font-size:.92rem;font-weight:600;color:var(--pitch-900);line-height:1.25}
.product-card__prices{display:flex;align-items:baseline;gap:7px;margin-top:2px}
.product-card__price{font-weight:700;font-size:1.02rem;color:var(--pitch-900)}
.product-card__original{font-size:.78rem;color:var(--ink-400);text-decoration:line-through}
.product-card__cta{
  margin-top:8px;padding:9px;border-radius:100px;background:var(--paper-100);
  font-size:.78rem;font-weight:700;text-align:center;color:var(--pitch-900);
  transition:background .15s ease,color .15s ease;
}
.product-card:hover .product-card__cta{background:var(--pitch-900);color:var(--gold-400)}

/* ---------- 8. WHY US / PROMO / TRUST ---------- */
.why-us{padding:46px 0;background:var(--paper-0)}
.why-grid{
  max-width:var(--container);margin:0 auto;padding:0 18px;
  display:grid;grid-template-columns:1fr;gap:14px;
}
.why-card{
  background:var(--paper-50);border:1px solid var(--line);border-radius:var(--radius-md);
  padding:20px;transition:transform .2s ease, box-shadow .2s ease;
}
.why-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm)}
.why-card__icon{font-size:1.6rem}
.why-card h3{font-size:1rem;margin:10px 0 6px;color:var(--pitch-900)}
.why-card p{font-size:.86rem;color:var(--ink-700)}

.promo-banner{
  background:var(--pitch-900);color:#fff;padding:26px 18px;display:flex;flex-direction:column;gap:18px;
}
.promo-banner__item{display:flex;align-items:center;gap:14px}
.promo-banner__item span{font-size:1.6rem}
.promo-banner__item strong{font-family:var(--font-heading);font-size:.95rem;color:var(--gold-400);display:block}
.promo-banner__item p{font-size:.78rem;color:rgba(255,255,255,.7);margin-top:2px}

.trust{padding:46px 0;max-width:var(--container);margin:0 auto}
.trust-grid{display:grid;grid-template-columns:1fr;gap:14px;padding:0 18px}
.trust-card{
  background:var(--paper-0);border:1px solid var(--line);border-radius:var(--radius-md);padding:20px;
}
.trust-card__stars{color:var(--gold-500);letter-spacing:2px;margin-bottom:10px}
.trust-card p{font-size:.9rem;color:var(--ink-700);line-height:1.55}
.trust-card__author{margin-top:14px;font-weight:700;font-size:.85rem;color:var(--pitch-900)}
.trust-card__author span{display:block;font-weight:400;font-size:.75rem;color:var(--ink-400);margin-top:2px}

/* ---------- 9. FOOTER ---------- */
.site-footer{background:var(--pitch-900);color:rgba(255,255,255,.85);padding:44px 18px 100px}
.footer-grid{
  max-width:var(--container);margin:0 auto;display:grid;grid-template-columns:1fr;gap:30px;
}
.footer-brand p{margin-top:10px;font-size:.85rem;color:rgba(255,255,255,.6);max-width:320px}
.footer-col h4{color:var(--gold-400);font-size:.85rem;letter-spacing:1px;text-transform:uppercase;margin-bottom:12px}
.footer-col a,.footer-col p{display:block;font-size:.86rem;color:rgba(255,255,255,.7);margin-bottom:9px}
.footer-col a:hover{color:var(--gold-400)}
.footer-bottom{
  max-width:var(--container);margin:30px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);
  font-size:.76rem;color:rgba(255,255,255,.5);
}
#footerTapTarget{cursor:pointer;user-select:none;-webkit-user-select:none}

/* ---------- 10. BOTTOM NAV (mobile) ---------- */
.bottom-nav{
  position:fixed;bottom:0;left:0;right:0;height:var(--bottom-nav-h);background:var(--paper-0);
  border-top:1px solid var(--line);display:flex;z-index:45;
  box-shadow:0 -4px 14px rgba(0,0,0,.06);
  padding-bottom:env(safe-area-inset-bottom);
}
.bottom-nav__item{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3px;
  color:var(--ink-400);font-size:.65rem;font-weight:600;transition:color .15s ease;
}
.bottom-nav__item.is-active,.bottom-nav__item:hover{color:var(--pitch-800)}
.bottom-nav__item svg{transition:transform .15s ease}
.bottom-nav__item.is-active svg{transform:translateY(-2px)}

/* ---------- 11. MODALS ---------- */
.modal{
  position:fixed;left:50%;bottom:0;transform:translate(-50%,100%);width:100%;max-width:520px;
  max-height:88vh;overflow-y:auto;background:var(--paper-0);z-index:70;
  border-radius:22px 22px 0 0;box-shadow:0 -10px 40px rgba(0,0,0,.25);
  transition:transform .32s cubic-bezier(.32,.72,0,1);
  padding-bottom:env(safe-area-inset-bottom);
}
.modal.is-open{transform:translate(-50%,0)}
.modal::before{
  content:"";position:sticky;top:0;display:block;width:40px;height:4px;background:var(--line);
  border-radius:4px;margin:10px auto 0;
}
.modal-close{
  position:absolute;top:14px;right:14px;width:34px;height:34px;border-radius:50%;
  background:var(--paper-100);display:flex;align-items:center;justify-content:center;z-index:2;
}

/* Product modal */
.product-modal__body{padding:16px 20px 26px}
.product-modal__media{
  height:220px;border-radius:var(--radius-md);display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;position:relative;overflow:hidden;
}
.product-modal__jersey{width:150px;height:180px}
.product-modal__team{font-size:.72rem;text-transform:uppercase;letter-spacing:1.2px;color:var(--ink-400);font-weight:700}
.product-modal__name{font-family:var(--font-heading);font-size:1.3rem;color:var(--pitch-900);margin:4px 0 8px}
.product-modal__pricerow{display:flex;align-items:baseline;gap:10px;margin-bottom:6px}
.product-modal__price{font-size:1.5rem;font-weight:700;color:var(--pitch-900)}
.product-modal__original{font-size:.95rem;color:var(--ink-400);text-decoration:line-through}
.product-modal__discount{font-size:.8rem;font-weight:700;color:#1a7a44}
.product-modal__desc{font-size:.9rem;color:var(--ink-700);margin:12px 0 18px;line-height:1.6}

.option-label{font-size:.8rem;font-weight:700;color:var(--pitch-900);margin-bottom:8px;display:block;text-transform:uppercase;letter-spacing:.5px}
.size-options{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:18px}
.size-chip{
  width:44px;height:40px;border-radius:10px;border:1.5px solid var(--line);display:flex;
  align-items:center;justify-content:center;font-size:.82rem;font-weight:700;transition:all .15s ease;
}
.size-chip.is-active{background:var(--pitch-900);border-color:var(--pitch-900);color:var(--gold-400)}

.qty-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.qty-stepper{display:flex;align-items:center;border:1.5px solid var(--line);border-radius:100px;overflow:hidden}
.qty-btn{width:38px;height:38px;font-size:1.1rem;font-weight:700;background:var(--paper-50)}
.qty-btn:active{background:var(--paper-100)}
.qty-stepper input{width:40px;text-align:center;border:none;background:transparent;font-weight:700}

/* Order modal */
.order-modal__body{padding:16px 20px 30px}
.order-modal__product{font-size:.85rem;color:var(--ink-400);margin:6px 0 18px}
.form-row{margin-bottom:14px;display:flex;flex-direction:column;gap:6px}
.form-row label{font-size:.78rem;font-weight:700;color:var(--pitch-900);text-transform:uppercase;letter-spacing:.4px}
.form-row input,.form-row textarea,.form-row select{
  border:1.5px solid var(--line);border-radius:10px;padding:12px 14px;background:var(--paper-50);
  font-size:.92rem;transition:border-color .15s ease;
}
.form-row input:focus,.form-row textarea:focus,.form-row select:focus{border-color:var(--gold-500);background:#fff}
.form-row textarea{resize:vertical}
.form-row--split{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:0}
.form-row--split > div{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.field-error{font-size:.72rem;color:var(--red-600);min-height:14px}
.form-row.has-error input,.form-row.has-error textarea,.form-row.has-error select,
.form-row--split > div.has-error input, .form-row--split > div.has-error select{border-color:var(--red-600)}

.order-modal__total{
  display:flex;justify-content:space-between;align-items:center;background:var(--paper-50);
  border-radius:12px;padding:14px 16px;margin:18px 0;font-weight:700;
}
.order-modal__total strong{font-size:1.2rem;color:var(--pitch-900)}
.order-modal__note{font-size:.74rem;color:var(--ink-400);text-align:center;margin-top:10px}

/* Confirm modal */
.confirm-modal__body{padding:30px 24px 34px;text-align:center}
.confirm-tick{color:#1a7a44;margin:0 auto 14px;animation:popIn .4s ease}
.confirm-modal__body h2{font-family:var(--font-heading);color:var(--pitch-900);font-size:1.3rem;margin-bottom:6px}
.confirm-modal__body > p{color:var(--ink-700);font-size:.9rem;margin-bottom:18px}
.order-id-box{
  background:var(--pitch-900);border-radius:14px;padding:16px;margin-bottom:18px;
}
.order-id-box span{display:block;font-size:.7rem;color:var(--gold-100);letter-spacing:1px;text-transform:uppercase;margin-bottom:4px}
.order-id-box strong{font-family:var(--font-display);font-size:1.3rem;color:var(--gold-400);letter-spacing:1px}
.confirm-details{text-align:left;background:var(--paper-50);border-radius:12px;padding:14px 16px;margin-bottom:16px}
.confirm-details li{display:flex;justify-content:space-between;font-size:.84rem;padding:6px 0;border-bottom:1px dashed var(--line);color:var(--ink-700)}
.confirm-details li:last-child{border-bottom:none}
.confirm-details li strong{color:var(--pitch-900)}
.confirm-modal__note{font-size:.76rem;color:var(--ink-400);margin-bottom:20px}

/* Admin modal */
.admin-modal__body{padding:16px 20px 30px}
.admin-toolbar{display:flex;justify-content:space-between;align-items:center;margin:14px 0 16px;font-size:.82rem;color:var(--ink-400)}
.admin-toolbar__actions{display:flex;gap:8px}
.admin-order-list{display:flex;flex-direction:column;gap:12px}
.admin-order{
  border:1px solid var(--line);border-radius:12px;padding:14px;background:var(--paper-50);
}
.admin-order__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:8px}
.admin-order__id{font-family:var(--font-heading);font-weight:600;color:var(--pitch-900);font-size:.88rem}
.admin-order__time{font-size:.7rem;color:var(--ink-400)}
.admin-order dl{display:grid;grid-template-columns:auto 1fr;gap:4px 10px;font-size:.8rem}
.admin-order dt{color:var(--ink-400)}
.admin-order dd{color:var(--ink-900);font-weight:600}
.admin-empty{text-align:center;color:var(--ink-400);padding:40px 0;font-size:.9rem}

/* ---------- 12. TOAST ---------- */
.toast{
  position:fixed;bottom:calc(var(--bottom-nav-h) + 14px);left:50%;transform:translateX(-50%) translateY(20px);
  background:var(--pitch-900);color:var(--gold-100);padding:12px 20px;border-radius:100px;
  font-size:.84rem;font-weight:600;box-shadow:var(--shadow-md);opacity:0;pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;z-index:90;white-space:nowrap;
}
.toast.is-visible{opacity:1;transform:translateX(-50%) translateY(0)}

/* ---------- 13. ANIMATIONS ---------- */
@keyframes fadeUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes floatY{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes popIn{from{transform:scale(.6);opacity:0}to{transform:scale(1);opacity:1}}

/* ---------- 14. RESPONSIVE ---------- */
@media (min-width:640px){
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .hero__title{font-size:3.4rem}
  .promo-banner{flex-direction:row;justify-content:space-around;padding:30px}
}

@media (min-width:900px){
  body{padding-bottom:0}
  .bottom-nav{display:none}
  .menu-toggle{display:none}
  .drawer__links a{font-size:.95rem;padding:10px}

  .site-header__inner{padding:0 24px}
  .drawer{display:none} /* desktop uses inline nav instead */

  .site-header__inner{position:relative}
  .site-header__inner::after{
    content:"Home  •  Categories  •  Shop  •  Why Us  •  Reviews  •  Contact";
    display:none; /* placeholder removed in favor of real nav below */
  }

  .product-grid{grid-template-columns:repeat(4,1fr)}
  .why-grid{grid-template-columns:repeat(3,1fr)}
  .trust-grid{grid-template-columns:repeat(3,1fr)}

  .hero{padding:70px 40px;display:flex;align-items:center;gap:40px}
  .hero__content{flex:1}
  .hero__visual{flex:1;height:340px;margin-top:0}
  .hero-jersey{width:200px;height:230px}
  .hero-jersey--2{width:170px;height:200px}
  .hero__title{font-size:4rem}

  .footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr}
  .modal{border-radius:22px;top:50%;bottom:auto;transform:translate(-50%,-46%) scale(.96);opacity:0}
  .modal.is-open{transform:translate(-50%,-50%) scale(1);opacity:1}
  .modal::before{display:none}
}

@media (min-width:900px) and (max-width:9999px){
  /* Desktop inline navigation replacing the hamburger */
  .desktop-nav{display:flex;gap:26px;align-items:center;margin-left:20px}
}

/* Desktop nav (added via JS-independent CSS; links reuse .nav-link class) */
.desktop-nav{display:none}
@media (min-width:900px){
  .desktop-nav{display:flex}
  .desktop-nav a{font-family:var(--font-heading);font-size:.9rem;font-weight:500;color:var(--ink-700);transition:color .15s ease}
  .desktop-nav a:hover{color:var(--gold-500)}
}
