/* Vape Escape Storage — Travel Gear Design System */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);background:var(--color-bg);color:var(--color-text-secondary);line-height:1.6;min-height:100vh;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
ul,ol{list-style:none}
button{cursor:pointer;border:0;background:none}
:focus-visible{outline:2px solid var(--color-accent);outline-offset:2px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}

:root{
  --color-bg:#f4f1ea;
  --color-surface:#ffffff;
  --color-surface-alt:#e8e2d6;
  --color-border:#d7d0c3;
  --color-text-primary:#14212b;
  --color-text-secondary:#3b4a55;
  --color-text-muted:#6d7a84;
  --color-accent:#0f6b5c;
  --color-accent-hover:#0b5448;
  --color-accent-fg:#ffffff;
  --color-accent-soft:#d8efe9;
  --color-ink:#0d1b24;
  --color-sand:#cbb89a;
  --color-success:#1f7a45;
  --color-warning:#b7791f;
  --color-error:#b42318;
  --color-sale:#9b2c2c;
  --font-heading:"Fraunces",Georgia,"Times New Roman",serif;
  --font-body:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --font-mono:"IBM Plex Mono",ui-monospace,SFMono-Regular,Menlo,monospace;
  --radius-sm:6px;--radius-md:12px;--radius-lg:20px;--radius-full:9999px;
  --shadow-sm:0 1px 2px rgba(13,27,36,.06);
  --shadow-md:0 10px 30px rgba(13,27,36,.08);
  --shadow-lg:0 24px 60px rgba(13,27,36,.14);
  --space-xs:4px;--space-sm:8px;--space-md:16px;--space-lg:24px;
  --space-xl:40px;--space-2xl:64px;--space-3xl:96px;
  --transition-fast:150ms ease;--transition-base:250ms ease;
  --container:1200px;--header-h:72px;
}

.container{width:min(100% - 2rem,var(--container));margin-inline:auto}
.section{padding:var(--space-2xl) 0}
.section-alt{background:var(--color-surface-alt)}
.section-ink{background:var(--color-ink);color:#e8eef2}
.section-title{font-family:var(--font-heading);font-size:clamp(1.75rem,3vw,2.5rem);color:var(--color-text-primary);letter-spacing:-.02em;line-height:1.15;margin-bottom:.5rem}
.section-ink .section-title{color:#fff}
.section-subtitle{color:var(--color-text-muted);max-width:42rem;font-size:1.05rem}
.section-ink .section-subtitle{color:#b7c4cd}
.section-header{display:flex;flex-wrap:wrap;align-items:end;justify-content:space-between;gap:1rem;margin-bottom:var(--space-lg)}
.grid-2{display:grid;gap:1.25rem;grid-template-columns:1fr}
.grid-3{display:grid;gap:1.25rem;grid-template-columns:1fr}
.grid-4{display:grid;gap:1.25rem;grid-template-columns:1fr}
.grid-auto{display:grid;gap:1.25rem;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
@media(min-width:640px){.grid-2{grid-template-columns:repeat(2,1fr)}.grid-3{grid-template-columns:repeat(2,1fr)}.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid-3{grid-template-columns:repeat(3,1fr)}.grid-4{grid-template-columns:repeat(4,1fr)}}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;padding:.85rem 1.25rem;border-radius:var(--radius-full);font-weight:700;letter-spacing:.01em;transition:background var(--transition-fast),color var(--transition-fast),border-color var(--transition-fast),transform var(--transition-fast),box-shadow var(--transition-fast);border:1.5px solid transparent;line-height:1.1;text-align:center;white-space:nowrap}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--color-accent);color:var(--color-accent-fg);box-shadow:0 8px 20px rgba(15,107,92,.22)}
.btn-primary:hover{background:var(--color-accent-hover)}
.btn-secondary{background:var(--color-ink);color:#fff}
.btn-secondary:hover{background:#1a2d3a}
.btn-ghost{background:transparent;border-color:var(--color-border);color:var(--color-text-primary)}
.btn-ghost:hover{border-color:var(--color-text-primary);background:rgba(20,33,43,.03)}
.btn-outline-light{border-color:rgba(255,255,255,.45);color:#fff}
.btn-outline-light:hover{background:rgba(255,255,255,.1)}
.btn-sm{padding:.55rem .9rem;font-size:.875rem}
.btn-lg{padding:1rem 1.5rem;font-size:1.05rem}
.btn:disabled,.btn[disabled]{opacity:.5;cursor:not-allowed;transform:none}
.btn-block{width:100%}

/* Badges */
.badge{display:inline-flex;align-items:center;gap:.3rem;padding:.28rem .6rem;border-radius:var(--radius-full);font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;background:var(--color-surface-alt);color:var(--color-text-primary)}
.badge-sale{background:#fde8e8;color:var(--color-sale)}
.badge-new{background:var(--color-accent-soft);color:var(--color-accent)}
.badge-out{background:#eee;color:var(--color-text-muted)}

/* Announcement */
.announcement-bar{background:var(--color-ink);color:#e7eef3;font-size:.875rem;text-align:center;padding:.65rem 1rem}
.announcement-bar strong{color:#9fe0d1;font-weight:700}

/* Nav */
.nav{position:sticky;top:0;z-index:50;background:rgba(244,241,234,.92);backdrop-filter:blur(14px);border-bottom:1px solid rgba(215,208,195,.7)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:var(--header-h)}
.nav-logo{display:flex;align-items:center;gap:.7rem;font-family:var(--font-heading);font-weight:700;color:var(--color-text-primary);font-size:1.2rem;letter-spacing:-.02em}
.nav-logo-mark{width:38px;height:38px;border-radius:12px;background:linear-gradient(145deg,var(--color-accent),#184a5a);display:grid;place-items:center;color:#fff;font-size:.85rem;font-family:var(--font-mono);box-shadow:var(--shadow-sm)}
.nav-links{display:none;align-items:center;gap:.15rem}
.nav-links a{padding:.55rem .8rem;border-radius:999px;color:var(--color-text-secondary);font-weight:600;font-size:.95rem}
.nav-links a:hover,.nav-links a.active{background:rgba(15,107,92,.08);color:var(--color-accent)}
.nav-actions{display:flex;align-items:center;gap:.35rem}
.icon-btn{width:42px;height:42px;border-radius:999px;display:grid;place-items:center;color:var(--color-text-primary);position:relative}
.icon-btn:hover{background:rgba(20,33,43,.05)}
.cart-count{position:absolute;top:2px;right:2px;min-width:18px;height:18px;padding:0 5px;border-radius:999px;background:var(--color-accent);color:#fff;font-size:.68rem;font-weight:800;display:grid;place-items:center}
.hamburger{display:grid;gap:5px;width:42px;height:42px;place-content:center}
.hamburger span{display:block;width:18px;height:2px;background:var(--color-text-primary);border-radius:2px;transition:var(--transition-fast)}
.mobile-menu{display:none;position:fixed;inset:var(--header-h) 0 0 0;background:var(--color-bg);z-index:40;padding:1.25rem;overflow:auto}
.mobile-menu.open{display:block}
.mobile-menu a{display:block;padding:1rem 0;border-bottom:1px solid var(--color-border);font-weight:700;color:var(--color-text-primary);font-size:1.1rem}
.mobile-search{margin:1rem 0 1.5rem}
@media(min-width:1024px){
  .nav-links{display:flex}
  .hamburger{display:none}
  .mobile-menu{display:none!important}
}

/* Search */
.search-panel{display:none;position:absolute;left:0;right:0;top:100%;background:var(--color-surface);border-bottom:1px solid var(--color-border);box-shadow:var(--shadow-md);padding:1rem 0}
.search-panel.open{display:block}
.search-bar{display:flex;align-items:center;gap:.75rem;background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-full);padding:.7rem 1rem}
.search-bar input{flex:1;border:0;background:transparent;outline:none;min-width:0}
.search-results{margin-top:.75rem;display:grid;gap:.5rem}
.search-item{display:flex;gap:.85rem;align-items:center;padding:.65rem;border-radius:var(--radius-md);background:var(--color-bg)}
.search-item:hover{background:var(--color-accent-soft)}
.search-item img{width:56px;height:56px;object-fit:cover;border-radius:8px;background:#ddd}
.search-item strong{display:block;color:var(--color-text-primary);font-size:.95rem}
.search-item span{color:var(--color-text-muted);font-size:.85rem;font-family:var(--font-mono)}

/* Hero */
.hero{position:relative;min-height:min(82vh,760px);display:grid;align-items:end;overflow:hidden;background:var(--color-ink)}
.hero-media{position:absolute;inset:0}
.hero-media img{width:100%;height:100%;object-fit:cover;opacity:.72}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,18,24,.25) 0%,rgba(8,18,24,.72) 58%,rgba(8,18,24,.92) 100%)}
.hero-content{position:relative;z-index:2;padding:var(--space-3xl) 0 var(--space-2xl);color:#fff;max-width:760px}
.hero-eyebrow{display:inline-flex;align-items:center;gap:.5rem;padding:.4rem .75rem;border-radius:999px;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.18);font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-bottom:1rem;color:#d7f3ec}
.hero-title{font-family:var(--font-heading);font-size:clamp(2.4rem,7vw,4.5rem);line-height:1.02;letter-spacing:-.03em;margin-bottom:1rem}
.hero-subtitle{font-size:clamp(1rem,2.2vw,1.2rem);color:#d5dee5;max-width:36rem;margin-bottom:1.5rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:.75rem}

/* Cards */
.product-card,.collection-card,.blog-card,.feature-card,.review-card,.trust-item,.faq-item{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform var(--transition-base),box-shadow var(--transition-base)}
.product-card{display:flex;flex-direction:column;height:100%;min-height:100%}
.product-card:hover,.collection-card:hover,.blog-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.product-card-media,.collection-card-media{position:relative;aspect-ratio:1/1;background:linear-gradient(180deg,#ece7dc,#ddd5c5);overflow:hidden;flex-shrink:0;display:block}
.product-card-media img,.collection-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.product-card:hover .product-card-media img,.collection-card:hover .collection-card-media img{transform:scale(1.04)}
.product-card-badges{position:absolute;top:.75rem;left:.75rem;display:flex;gap:.35rem;flex-wrap:wrap;z-index:2}
.product-card-body{padding:1rem 1rem 1.15rem;display:flex;flex-direction:column;align-items:center;text-align:center;gap:.7rem;flex:1 1 auto;width:100%;min-height:0}
.collection-card-body{padding:1rem 1rem 1.15rem}
.product-card-vendor,.product-vendor{font-size:.75rem;text-transform:uppercase;letter-spacing:.08em;color:var(--color-text-muted);font-weight:700;margin-bottom:.25rem}
.product-card-vendor{display:none}
.product-card-title{font-family:var(--font-body);color:var(--color-text-primary);font-size:clamp(1rem,1.2vw,1.125rem);font-weight:600;line-height:1.35;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;min-height:calc(1.35em * 2);max-height:calc(1.35em * 2);width:100%;word-break:break-word}
.product-card-title a{color:inherit;text-decoration:none}
.product-card-title a:hover{color:var(--color-accent)}
.collection-card-title{font-family:var(--font-heading);color:var(--color-text-primary);font-size:1.05rem;line-height:1.25;margin-bottom:.55rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.5em}
.product-card-meta,.product-card-meta.price-row{display:flex;align-items:center;justify-content:center;gap:.5rem;flex-wrap:wrap;width:100%;margin:0}
.price,.product-price{font-family:var(--font-mono);font-weight:700;color:var(--color-text-primary)}
.product-card .price,.product-card .product-price{font-size:clamp(1.125rem,1.4vw,1.25rem);font-weight:700;line-height:1.2}
.product-compare-price,.compare-price{font-family:var(--font-mono);color:var(--color-text-muted);text-decoration:line-through;font-size:.9rem;margin-left:0}
.product-card .compare-price,.product-card .product-compare-price{font-size:.95rem;font-weight:500;order:-1}
.product-card-atc{margin-top:auto;width:100%;flex-shrink:0}
.collection-card-body p{color:var(--color-text-muted);font-size:.92rem}
.collection-count{display:inline-block;margin-top:.65rem;font-size:.8rem;font-weight:700;color:var(--color-accent)}
.grid-4 > .product-card,.grid-3 > .product-card,.grid-2 > .product-card,.grid-auto > .product-card{height:100%}
.grid-4,.grid-3,.grid-2,.grid-auto{align-items:stretch}

/* Trust / features */
.trust-badges{display:grid;gap:1rem;grid-template-columns:1fr}
@media(min-width:768px){.trust-badges{grid-template-columns:repeat(4,1fr)}}
.trust-item{padding:1.15rem;display:flex;gap:.85rem;align-items:flex-start}
.trust-icon{width:42px;height:42px;border-radius:12px;background:var(--color-accent-soft);color:var(--color-accent);display:grid;place-items:center;flex-shrink:0}
.trust-item h3,.feature-card h3{font-family:var(--font-heading);color:var(--color-text-primary);font-size:1.05rem;margin-bottom:.25rem}
.trust-item p,.feature-card p{color:var(--color-text-muted);font-size:.92rem}
.feature-card{padding:1.35rem}
.feature-num{font-family:var(--font-mono);color:var(--color-accent);font-size:.8rem;font-weight:700;margin-bottom:.5rem}

/* Story band */
.story-grid{display:grid;gap:2rem;align-items:center}
@media(min-width:900px){.story-grid{grid-template-columns:1.05fr .95fr}}
.story-panel{background:var(--color-surface);border-radius:var(--radius-lg);padding:clamp(1.25rem,3vw,2rem);border:1px solid var(--color-border);box-shadow:var(--shadow-md)}
.story-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem;margin-top:1.25rem}
.stat{background:var(--color-bg);border-radius:var(--radius-md);padding:.9rem;text-align:center}
.stat strong{display:block;font-family:var(--font-heading);font-size:1.4rem;color:var(--color-text-primary)}
.stat span{font-size:.78rem;color:var(--color-text-muted)}

/* Breadcrumb */
.breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;font-size:.88rem;color:var(--color-text-muted);padding:1rem 0}
.breadcrumb a:hover{color:var(--color-accent)}
.breadcrumb-sep{opacity:.5}

/* Collection page */
.collection-hero{position:relative;border-radius:var(--radius-lg);overflow:hidden;min-height:220px;display:grid;align-items:end;background:var(--color-ink);margin-bottom:1.5rem}
.collection-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.55}
.collection-hero-content{position:relative;z-index:1;padding:1.5rem;color:#fff}
.collection-hero h1{font-family:var(--font-heading);font-size:clamp(1.8rem,4vw,2.8rem);margin-bottom:.4rem}
.toolbar{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center;justify-content:space-between;margin-bottom:1.25rem}
.toolbar select,.form-control,input[type=text],input[type=email],input[type=tel],input[type=number],input[type=search],select,textarea{width:100%;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:.8rem .95rem;outline:none;transition:border-color var(--transition-fast),box-shadow var(--transition-fast)}
.toolbar select{width:auto;min-width:180px}
.form-control:focus,input:focus,select:focus,textarea:focus{border-color:var(--color-accent);box-shadow:0 0 0 3px rgba(15,107,92,.12)}
.pagination{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:center;margin-top:2rem}
.pagination-btn{min-width:42px;height:42px;padding:0 .8rem;border-radius:999px;border:1px solid var(--color-border);background:var(--color-surface);font-weight:700;color:var(--color-text-primary)}
.pagination-btn.active,.pagination-btn:hover{background:var(--color-accent);border-color:var(--color-accent);color:#fff}

/* Product page */
.product-layout{display:grid;gap:1.75rem}
@media(min-width:900px){.product-layout{grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:start}}
.product-gallery{position:sticky;top:calc(var(--header-h) + 1rem)}
.gallery-main-wrap{background:linear-gradient(180deg,#ece7dc,#ddd5c5);border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:1;border:1px solid var(--color-border);cursor:zoom-in}
.gallery-main-wrap img{width:100%;height:100%;object-fit:cover}
.gallery-thumbs{display:grid;grid-template-columns:repeat(auto-fill,minmax(72px,1fr));gap:.55rem;margin-top:.75rem}
.gallery-thumb{border:1.5px solid var(--color-border);border-radius:10px;overflow:hidden;aspect-ratio:1;background:#ddd}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--color-accent)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-info h1.product-title{font-family:var(--font-heading);font-size:clamp(1.7rem,3vw,2.4rem);color:var(--color-text-primary);line-height:1.15;margin:.35rem 0 .75rem}
.product-price-wrap{display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem}
.product-price{font-size:1.45rem}
.rating-inline{display:flex;align-items:center;gap:.45rem;color:var(--color-text-muted);font-size:.92rem;margin-bottom:1rem}
.rating-stars{color:#d4a017;letter-spacing:1px}
.option-group{margin-bottom:1rem}
.option-label{display:block;font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--color-text-muted);margin-bottom:.45rem}
.option-btns{display:flex;flex-wrap:wrap;gap:.45rem}
.option-btn{padding:.6rem .9rem;border-radius:999px;border:1.5px solid var(--color-border);background:var(--color-surface);font-weight:650;color:var(--color-text-primary)}
.option-btn.active{border-color:var(--color-accent);background:var(--color-accent-soft);color:var(--color-accent)}
.option-btn.unavailable{opacity:.4;text-decoration:line-through}
.qty-control{display:inline-flex;align-items:center;border:1.5px solid var(--color-border);border-radius:999px;overflow:hidden;background:var(--color-surface)}
.qty-btn{width:42px;height:42px;font-size:1.1rem;font-weight:700}
.qty-input{width:48px;text-align:center;border:0;background:transparent;font-family:var(--font-mono);font-weight:700}
.product-actions{display:grid;gap:.7rem;margin:1.1rem 0}
@media(min-width:480px){.product-actions{grid-template-columns:1.2fr 1fr}}
.availability-msg{font-size:.9rem;font-weight:650;margin-bottom:1rem}
.availability-msg.in{color:var(--color-success)}
.availability-msg.out{color:var(--color-error)}
.product-short-desc{color:var(--color-text-secondary);margin-bottom:1.1rem}
.product-accordions{border-top:1px solid var(--color-border)}
.accordion{border-bottom:1px solid var(--color-border)}
.accordion-trigger{width:100%;text-align:left;padding:1rem 0;display:flex;justify-content:space-between;align-items:center;font-weight:750;color:var(--color-text-primary)}
.accordion-body{display:none;padding:0 0 1rem;color:var(--color-text-secondary)}
.accordion.open .accordion-body{display:block}
.accordion-body ul{list-style:disc;padding-left:1.2rem;display:grid;gap:.35rem}
.product-desc-html h3{font-family:var(--font-heading);color:var(--color-text-primary);margin:1rem 0 .4rem}
.product-desc-html p,.product-desc-html li{margin-bottom:.55rem}
.product-desc-html ul{list-style:disc;padding-left:1.2rem;margin-bottom:.75rem}

.sticky-atc{position:fixed;left:0;right:0;bottom:0;z-index:45;background:rgba(255,255,255,.96);backdrop-filter:blur(12px);border-top:1px solid var(--color-border);transform:translateY(110%);transition:transform var(--transition-base);padding:.75rem 0;box-shadow:0 -10px 30px rgba(0,0,0,.06)}
.sticky-atc.visible{transform:translateY(0)}
.sticky-atc-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.sticky-atc-product{display:flex;align-items:center;gap:.75rem;min-width:0}
.sticky-atc-product img{width:48px;height:48px;border-radius:8px;object-fit:cover}
.sticky-atc-product strong{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:42vw;color:var(--color-text-primary)}

/* Reviews */
.reviews-section{margin-top:var(--space-2xl)}
.reviews-summary{display:grid;gap:1.25rem;margin-bottom:1.5rem}
@media(min-width:768px){.reviews-summary{grid-template-columns:.8fr 1.2fr;align-items:center}}
.reviews-avg{text-align:center;background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:1.5rem}
.reviews-score{font-family:var(--font-heading);font-size:3rem;color:var(--color-text-primary);line-height:1}
.reviews-bars{display:grid;gap:.45rem}
.rating-bar{display:grid;grid-template-columns:48px 1fr 36px;gap:.55rem;align-items:center;font-size:.85rem;color:var(--color-text-muted)}
.rating-bar-track{height:8px;background:#e7e1d5;border-radius:999px;overflow:hidden}
.rating-bar-fill{height:100%;background:var(--color-accent)}
.review-card{padding:1.15rem}
.review-header{display:flex;justify-content:space-between;gap:1rem;margin-bottom:.5rem}
.review-author{font-weight:750;color:var(--color-text-primary)}
.review-title{font-weight:750;color:var(--color-text-primary);margin:.25rem 0}
.review-body{color:var(--color-text-secondary);font-size:.95rem}
.review-verified{display:inline-flex;align-items:center;gap:.3rem;font-size:.75rem;font-weight:700;color:var(--color-success);text-transform:uppercase;letter-spacing:.04em;margin-top:.65rem}

/* Cart drawer */
.cart-overlay{position:fixed;inset:0;background:rgba(8,16,22,.45);opacity:0;pointer-events:none;transition:opacity var(--transition-base);z-index:60}
.cart-overlay.open{opacity:1;pointer-events:auto}
.cart-drawer{position:fixed;top:0;right:0;width:min(420px,100%);height:100%;background:var(--color-surface);z-index:70;transform:translateX(105%);transition:transform var(--transition-base);display:flex;flex-direction:column;box-shadow:var(--shadow-lg)}
.cart-drawer.open{transform:translateX(0)}
.cart-drawer-header{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.15rem;border-bottom:1px solid var(--color-border)}
.cart-drawer-header h2{font-family:var(--font-heading);font-size:1.3rem;color:var(--color-text-primary)}
.cart-lines{flex:1;overflow:auto;padding:1rem}
.cart-item{display:grid;grid-template-columns:72px 1fr auto;gap:.75rem;padding:.85rem 0;border-bottom:1px solid var(--color-border)}
.cart-item img{width:72px;height:72px;object-fit:cover;border-radius:10px;background:#ddd}
.cart-item h3{font-size:.95rem;color:var(--color-text-primary);line-height:1.3;margin-bottom:.2rem}
.cart-item .variant{font-size:.8rem;color:var(--color-text-muted);margin-bottom:.45rem}
.cart-item-actions{display:flex;align-items:center;gap:.5rem}
.cart-item-price{font-family:var(--font-mono);font-weight:700;color:var(--color-text-primary);font-size:.9rem}
.cart-remove{color:var(--color-text-muted);font-size:.8rem;text-decoration:underline}
.cart-footer{padding:1.1rem;border-top:1px solid var(--color-border);display:grid;gap:.75rem}
.cart-subtotal{display:flex;justify-content:space-between;align-items:center;font-size:1.05rem;color:var(--color-text-primary)}
.cart-tax-note{font-size:.82rem;color:var(--color-text-muted)}
.cart-empty{text-align:center;padding:2.5rem 1rem;color:var(--color-text-muted)}

/* Toast */
.toast{position:fixed;left:50%;bottom:1.25rem;transform:translate(-50%,20px);background:var(--color-ink);color:#fff;padding:.85rem 1.1rem;border-radius:999px;z-index:100;opacity:0;transition:opacity var(--transition-base),transform var(--transition-base);font-weight:650;box-shadow:var(--shadow-lg);max-width:min(92vw,420px);text-align:center}
.toast.show{opacity:1;transform:translate(-50%,0)}
.toast-success{background:#0f3d34}
.toast-error{background:#7f1d1d}

/* Cart page / checkout */
.cart-page-layout,.checkout-layout{display:grid;gap:1.5rem}
@media(min-width:900px){
  .cart-page-layout{grid-template-columns:1.4fr .8fr;align-items:start}
  .checkout-layout{grid-template-columns:1.2fr .8fr;align-items:start}
}
.panel{background:var(--color-surface);border:1px solid var(--color-border);border-radius:var(--radius-lg);padding:1.25rem;box-shadow:var(--shadow-sm)}
.panel h2,.panel h1{font-family:var(--font-heading);color:var(--color-text-primary);margin-bottom:1rem}
.summary-row{display:flex;justify-content:space-between;gap:1rem;padding:.45rem 0;color:var(--color-text-secondary)}
.summary-row.total{border-top:1px solid var(--color-border);margin-top:.5rem;padding-top:.85rem;font-size:1.15rem;font-weight:800;color:var(--color-text-primary)}
.form-grid{display:grid;gap:1rem}
@media(min-width:640px){.form-grid.two{grid-template-columns:1fr 1fr}}
.form-field label{display:block;font-size:.82rem;font-weight:700;color:var(--color-text-muted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.4rem}
.secure-badge{display:flex;align-items:center;gap:.5rem;font-size:.88rem;color:var(--color-success);font-weight:700;margin:.5rem 0 1rem}
.card-form{background:linear-gradient(180deg,#f8f6f1,#efe9dd);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1rem}
.card-brands{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:.75rem}
.card-brand-pill{font-size:.72rem;font-weight:800;letter-spacing:.04em;padding:.25rem .5rem;border-radius:6px;background:#fff;border:1px solid var(--color-border);color:var(--color-text-muted)}
.checkout-steps{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1.25rem}
.checkout-step{padding:.4rem .7rem;border-radius:999px;background:var(--color-surface-alt);font-size:.8rem;font-weight:700;color:var(--color-text-muted)}
.checkout-step.active{background:var(--color-accent-soft);color:var(--color-accent)}
.thankyou-hero{text-align:center;padding:var(--space-2xl) 0}
.thankyou-hero .check{width:72px;height:72px;border-radius:999px;background:var(--color-accent-soft);color:var(--color-accent);display:grid;place-items:center;margin:0 auto 1rem;font-size:2rem}
.order-box{max-width:720px;margin:0 auto}

/* Footer */
.footer{background:var(--color-ink);color:#c9d4dc;padding:var(--space-2xl) 0 1.25rem;margin-top:var(--space-2xl)}
.footer-grid{display:grid;gap:1.75rem;grid-template-columns:1fr}
@media(min-width:768px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr}}
.footer-logo{font-family:var(--font-heading);color:#fff;font-size:1.35rem;margin-bottom:.6rem}
.footer p{font-size:.92rem;line-height:1.6}
.footer h4{color:#fff;font-size:.85rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.85rem}
.footer a{display:inline-block;margin:.28rem 0;color:#c9d4dc}
.footer a:hover{color:#9fe0d1}
.social-links{display:flex;gap:.5rem;margin-top:1rem}
.social-links a{width:38px;height:38px;border-radius:999px;border:1px solid rgba(255,255,255,.15);display:grid;place-items:center;margin:0}
.footer-bottom{margin-top:2rem;padding-top:1rem;border-top:1px solid rgba(255,255,255,.1);display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;font-size:.85rem}

/* FAQ */
.faq-list{display:grid;gap:.75rem}
.faq-item{padding:0}
.faq-item details{padding:1rem 1.1rem}
.faq-item summary{cursor:pointer;font-weight:750;color:var(--color-text-primary);list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{margin-top:.55rem;color:var(--color-text-secondary)}

/* Pages */
.page-hero{padding:var(--space-xl) 0 1rem}
.page-hero h1{font-family:var(--font-heading);font-size:clamp(2rem,4vw,3rem);color:var(--color-text-primary);margin-bottom:.5rem}
.prose{max-width:760px;color:var(--color-text-secondary)}
.prose h2,.prose h3{font-family:var(--font-heading);color:var(--color-text-primary);margin:1.4rem 0 .55rem}
.prose p,.prose li{margin-bottom:.7rem}
.prose ul{list-style:disc;padding-left:1.2rem}
.policy-layout{display:grid;gap:1.5rem}
@media(min-width:900px){.policy-layout{grid-template-columns:.7fr 1.5fr}}
.policy-nav a{display:block;padding:.75rem .9rem;border-radius:10px;margin-bottom:.35rem;background:var(--color-surface);border:1px solid var(--color-border);font-weight:650}
.policy-nav a.active,.policy-nav a:hover{border-color:var(--color-accent);background:var(--color-accent-soft);color:var(--color-accent)}

/* 404 */
.error-page{min-height:60vh;display:grid;place-items:center;text-align:center;padding:3rem 1rem}
.error-page h1{font-family:var(--font-heading);font-size:clamp(4rem,12vw,7rem);color:var(--color-text-primary);line-height:1}

/* Skeleton */
.skeleton{background:linear-gradient(90deg,#e8e2d6 25%,#f3efe6 37%,#e8e2d6 63%);background-size:400% 100%;animation:shimmer 1.4s ease infinite;border-radius:8px}
@keyframes shimmer{0%{background-position:100% 0}100%{background-position:0 0}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes slideUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
@keyframes spin{to{transform:rotate(360deg)}}
.fade-in{animation:fadeIn .5s ease both}
.slide-up{animation:slideUp .55s ease both}

/* Zoom modal */
.zoom-modal{position:fixed;inset:0;background:rgba(0,0,0,.88);z-index:120;display:none;place-items:center;padding:1rem}
.zoom-modal.open{display:grid}
.zoom-modal img{max-width:min(960px,96vw);max-height:90vh;object-fit:contain;border-radius:12px}
.zoom-close{position:absolute;top:1rem;right:1rem;color:#fff;font-size:1.5rem;width:44px;height:44px}

/* Misc */
.divider{height:1px;background:var(--color-border);margin:1.25rem 0}
.muted{color:var(--color-text-muted)}
.center{text-align:center}
.mt-0{margin-top:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.chip-row{display:flex;flex-wrap:wrap;gap:.45rem}
.chip{padding:.4rem .7rem;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);font-size:.8rem}
.note{font-size:.88rem;color:var(--color-text-muted)}
.inline-form{display:flex;gap:.5rem;flex-wrap:wrap}
.inline-form input{flex:1;min-width:200px}
.empty-state{text-align:center;padding:3rem 1rem;color:var(--color-text-muted)}
.table-like{width:100%}
.filter-chips{display:flex;flex-wrap:wrap;gap:.4rem}
.filter-chip{padding:.45rem .75rem;border-radius:999px;border:1px solid var(--color-border);background:var(--color-surface);font-size:.85rem;font-weight:650}
.filter-chip.active{background:var(--color-accent);border-color:var(--color-accent);color:#fff}
.contact-grid{display:grid;gap:1.25rem}
@media(min-width:900px){.contact-grid{grid-template-columns:1fr 1.1fr}}
.map-card{min-height:240px;background:linear-gradient(145deg,#1a3340,#0f6b5c);border-radius:var(--radius-lg);color:#fff;padding:1.5rem;display:flex;flex-direction:column;justify-content:end}
.logo-word{font-family:var(--font-heading)}
.price-row{display:flex;align-items:center;gap:.35rem;flex-wrap:wrap}
