/* =======================================================================
   Adire Bloom — stylesheet
   Bold, dark, editorial 2026 refresh. Indigo nods to traditional adire
   dye; lime + ember are the vibrant accent pair on top of a near-black
   ground. Archivo Black carries big statement type, Space Grotesk runs
   the UI/nav layer, Inter carries body copy.
   ======================================================================= */

:root {
  --bg: #0a0a0d;
  --surface: #141317;
  --surface-2: #1b1a20;
  --surface-hover: #212028;
  --border: rgba(255, 255, 255, .09);
  --border-strong: rgba(255, 255, 255, .2);
  --fg: #f5f4f1;
  --fg-dim: #a09eac;
  --fg-faint: #706e7a;
  --accent: #6a4dff;
  --accent-bright: #9c8bff;
  --accent-soft: rgba(106, 77, 255, .16);
  --lime: #d7ff3f;
  --ember: #ff5a36;
  --gold: #c99b3b;
  --white: #ffffff;
  --on-accent: #ffffff;
  --shadow: 0 24px 64px rgba(0, 0, 0, .5);
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, .35);
  --radius: 2px;
  --radius-pill: 999px;
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; margin: 0 0 .5em; color: var(--fg); letter-spacing: -.01em; }
h1 { font-family: var(--font-display); font-size: 3.4rem; line-height: 1.02; text-transform: uppercase; letter-spacing: -.01em; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--fg-dim); }
::selection { background: var(--accent); color: var(--on-accent); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.eyebrow { letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; color: var(--lime); font-weight: 700; margin-bottom: .7em; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--lime); display: inline-block; }
.section { padding: 88px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header .eyebrow { justify-content: center; }
.text-center { text-align: center; }

/* Scroll reveal ----------------------------------------------------------
   Content is fully visible by default (works with no JS / no CSS at all).
   Only once main.js confirms it's running (adds .js to <html>) do sections
   start hidden and fade up into view — and main.js also force-reveals
   everything after a short timeout as a safety net, so nothing can be left
   permanently invisible if IntersectionObserver never fires. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(28px); }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px; border-radius: var(--radius); font-family: var(--font-heading);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .8rem;
  border: 1.5px solid transparent; cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--lime); color: #10130a; border-color: var(--lime); }
.btn-gold:hover { background: transparent; color: var(--lime); }
.btn-purple { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-purple:hover { background: transparent; color: var(--accent-bright); border-color: var(--accent-bright); }
.btn-outline { border: 1.5px solid var(--border-strong); background: transparent; color: var(--fg); padding: 12px 22px; border-radius: var(--radius); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-heading); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn-block { display: flex; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: .72rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* Alerts / forms -------------------------------------------------------- */
.alert { padding: 15px 18px; border-radius: var(--radius); margin: 16px 0; font-size: .92rem; border: 1px solid; }
.alert-success { background: rgba(215, 255, 63, .08); color: var(--lime); border-color: rgba(215, 255, 63, .3); }
.alert-error { background: rgba(255, 90, 54, .1); color: #ff8a6c; border-color: rgba(255, 90, 54, .35); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--fg-dim); font-family: var(--font-heading); }
.form-group .hint { font-size: .78rem; color: var(--fg-faint); margin-top: 6px; }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="search"], input[type="number"], textarea, select {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; background: var(--surface); color: var(--fg);
}
textarea { resize: vertical; min-height: 110px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* Announcement + header -------------------------------------------------- */
.announcement-bar { background: var(--accent); color: var(--on-accent); text-align: center; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: 9px 12px; font-family: var(--font-heading); font-weight: 700; }
.site-header { background: rgba(10, 10, 13, .82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; transition: border-color .3s ease, background .3s ease; }
.site-header.scrolled { border-color: var(--border-strong); background: rgba(10, 10, 13, .96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 20px; }
.logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-link { font-size: .8rem; font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: .04em; color: var(--fg-dim); }
.header-link:hover { color: var(--fg); }
.header-search { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.header-search input { border: none; padding: 9px 12px; width: 190px; background: transparent; }
.header-search button { border: none; background: transparent; color: var(--fg-dim); padding: 0 14px; cursor: pointer; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--border-strong); border-radius: var(--radius); width: 40px; height: 40px; align-items: center; justify-content: center; cursor: pointer; color: var(--fg); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: var(--fg); position: relative; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.main-nav { background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-links { display: flex; }
.nav-links > li > a { display: block; padding: 15px 18px; color: var(--fg-dim); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-heading); border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; }
.nav-links > li > a.active, .nav-links > li > a:hover { color: var(--fg); border-color: var(--lime); }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; left: 0; top: 100%; background: var(--surface-2); min-width: 220px; box-shadow: var(--shadow); border: 1px solid var(--border); z-index: 60; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 11px 18px; color: var(--fg-dim); font-size: .82rem; text-transform: none; font-weight: 500; }
.dropdown li a:hover { background: var(--surface-hover); color: var(--fg); }
.cart-pill { display: flex; flex-direction: column; align-items: flex-end; color: var(--fg); padding: 10px 20px; font-size: .78rem; border-left: 1px solid var(--border); }
.cart-total { font-weight: 700; font-family: var(--font-heading); color: var(--lime); }
.cart-icon { color: var(--fg-dim); }

/* Mobile nav drawer ------------------------------------------------------ */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 210; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 84vw); background: var(--surface-2); z-index: 220; transform: translateX(100%); transition: transform .35s var(--ease); padding: 24px; overflow-y: auto; border-left: 1px solid var(--border); }
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel .close-drawer { background: none; border: 1.5px solid var(--border-strong); color: var(--fg); width: 36px; height: 36px; border-radius: var(--radius); cursor: pointer; margin-bottom: 20px; font-size: 1.1rem; }
.mobile-nav-panel a { display: block; padding: 13px 4px; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; color: var(--fg-dim); border-bottom: 1px solid var(--border); }
.mobile-nav-panel a:hover, .mobile-nav-panel a.active { color: var(--lime); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav .nav-links, .main-nav .cart-pill { display: none; }
  .header-search { display: none; }
}

/* Marquee ---------------------------------------------------------------- */
.marquee-bar { background: var(--lime); color: #10130a; overflow: hidden; white-space: nowrap; padding: 11px 0; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-heading); font-weight: 700; }
.marquee-bar .track { display: inline-block; padding-left: 100%; animation: marquee 28s linear infinite; }

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--bg); color: var(--fg); overflow: hidden; }
.hero-slide { display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; min-height: 620px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px 64px; position: relative; z-index: 2; }
.hero-copy .eyebrow { color: var(--lime); }
.hero-copy h1 { color: var(--fg); font-weight: 400; margin-bottom: .3em; font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
.hero-copy p { color: var(--fg-dim); font-size: 1.05rem; max-width: 420px; margin-bottom: 1.6em; }
.hero-image { background-size: cover; background-position: center; position: relative; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, var(--bg) 0%, rgba(10,10,13,.35) 30%, rgba(10,10,13,0) 60%); }
@media (max-width: 800px) { .hero-slide { grid-template-columns: 1fr; min-height: auto; } .hero-image { height: 320px; } .hero-image::after { background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,13,.1) 60%); } .hero-copy { padding: 40px 24px; } }

/* Category tiles ----------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 4px; }
.category-tile { position: relative; overflow: hidden; height: 320px; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s ease; filter: saturate(.85) brightness(.85); }
.category-tile:hover img { transform: scale(1.07); filter: saturate(1) brightness(.75); }
.category-tile .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,13,.9), rgba(10,10,13,0) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.category-tile h3 { color: var(--fg); margin-bottom: 6px; font-size: 1.3rem; }
.category-tile a.shop-link { color: var(--lime); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-heading); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.category-tile:hover a.shop-link { gap: 10px; }

/* Product grid / cards ------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2px; background: var(--border); }
.product-card { background: var(--bg); overflow: hidden; display: flex; flex-direction: column; position: relative; }
.product-card .thumb { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--surface); display: block; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.06); }
.badge-sale, .badge-new { position: absolute; top: 14px; left: 14px; font-size: .66rem; font-weight: 800; padding: 5px 11px; text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-heading); z-index: 3; }
.badge-sale { background: var(--ember); color: #fff; }
.badge-new { background: var(--lime); color: #10130a; }
.card-actions-overlay { position: absolute; top: 14px; right: 14px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(8px); transition: opacity .25s ease, transform .25s ease; z-index: 3; }
.product-card:hover .card-actions-overlay { opacity: 1; transform: translateX(0); }
.icon-btn { width: 38px; height: 38px; border-radius: var(--radius-pill); background: rgba(10,10,13,.75); backdrop-filter: blur(6px); border: 1px solid var(--border-strong); color: var(--fg); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .95rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.icon-btn:hover { background: var(--lime); color: #10130a; transform: scale(1.06); }
.product-card .body { padding: 18px 4px 26px; text-align: left; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; text-transform: none; letter-spacing: 0; }
.product-card h3 a { color: var(--fg); }
.price { margin: 4px 0 16px; font-family: var(--font-heading); }
.price .was { text-decoration: line-through; color: var(--fg-faint); margin-right: 8px; font-size: .88rem; }
.price .now { font-weight: 700; color: var(--fg); }
.product-card .actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.wishlist-link { font-size: .76rem; color: var(--fg-faint); font-weight: 600; text-align: center; }
.wishlist-link:hover { color: var(--lime); }

/* Quick view modal -------------------------------------------------------- */
.qv-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.qv-overlay.open { opacity: 1; pointer-events: auto; }
.qv-modal { background: var(--surface-2); border: 1px solid var(--border-strong); max-width: 860px; width: 100%; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow); transform: translateY(16px); transition: transform .25s ease; position: relative; }
.qv-overlay.open .qv-modal { transform: translateY(0); }
.qv-modal .qv-image { aspect-ratio: 1/1; overflow: hidden; background: var(--surface); }
.qv-modal .qv-image img { width: 100%; height: 100%; object-fit: cover; }
.qv-modal .qv-body { padding: 40px; }
.qv-close { position: absolute; top: 16px; right: 16px; z-index: 5; }
.qv-loading { padding: 80px; text-align: center; color: var(--fg-faint); grid-column: 1 / -1; }
@media (max-width: 700px) { .qv-modal { grid-template-columns: 1fr; } .qv-modal .qv-image { aspect-ratio: 4/3; } .qv-modal .qv-body { padding: 26px; } }

/* Feature strip ------------------------------------------------------ */
.feature-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.feature-strip > div { text-align: center; background: var(--surface); padding: 40px 24px; }
.feature-strip .icon { font-size: 1.6rem; margin-bottom: 14px; color: var(--lime); }
.feature-strip h3 { font-size: 1.05rem; }
.feature-strip p { font-size: .88rem; margin: 0; }

/* Heritage / split sections --------------------------------------------- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section img { box-shadow: var(--shadow); filter: saturate(.9); }
@media (max-width: 800px) { .split-section { grid-template-columns: 1fr; } }

/* Blog cards ------------------------------------------------------------ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--border); }
.blog-card { background: var(--bg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s var(--ease); filter: saturate(.85) brightness(.9); }
.blog-card:hover img { transform: scale(1.04); }
.blog-card .body { padding: 22px 22px 28px; }
.blog-card .date { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--lime); font-weight: 700; font-family: var(--font-heading); }
.blog-card h3 { margin: 10px 0; font-size: 1.2rem; }
.blog-card p { font-size: .9rem; }

/* Breadcrumb --------------------------------------------------------- */
.breadcrumb { font-size: .8rem; color: var(--fg-faint); padding: 20px 0; text-transform: uppercase; letter-spacing: .04em; font-family: var(--font-heading); }
.breadcrumb a { color: var(--fg-dim); }
.breadcrumb a:hover { color: var(--lime); }

/* Product detail ------------------------------------------------------ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 30px 0 60px; }
@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; } }
.gallery-main { overflow: hidden; aspect-ratio: 1/1; background: var(--surface); position: relative; cursor: zoom-in; border: 1px solid var(--border); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; transform-origin: center center; }
.gallery-main.zooming img { transform: scale(1.9); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs img { width: 72px; height: 72px; object-fit: cover; cursor: pointer; border: 2px solid var(--border); opacity: .6; transition: opacity .2s ease, border-color .2s ease; }
.gallery-thumbs img:hover { opacity: 1; }
.gallery-thumbs img.active { border-color: var(--lime); opacity: 1; }
.product-info .price { font-size: 1.5rem; }
.product-info .sku { font-size: .8rem; color: var(--fg-faint); margin-top: 24px; }
.product-info .cats { font-size: .82rem; color: var(--fg-faint); }
.product-info .cats a { color: var(--accent-bright); }
.qty-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.qty-input { display: flex; align-items: center; border: 1.5px solid var(--border); width: fit-content; }
.qty-input button { background: var(--surface); border: none; width: 40px; height: 44px; cursor: pointer; font-size: 1.1rem; color: var(--fg); }
.qty-input button:hover { background: var(--surface-hover); }
.qty-input input { width: 50px; border: none; text-align: center; background: transparent; }
.tabs { margin-top: 46px; }
.tabs-nav { display: flex; gap: 28px; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.tabs-nav button { background: none; border: none; padding: 10px 0; font-weight: 700; text-transform: uppercase; font-size: .8rem; letter-spacing: .05em; cursor: pointer; color: var(--fg-faint); border-bottom: 2px solid transparent; font-family: var(--font-heading); }
.tabs-nav button.active { color: var(--fg); border-color: var(--lime); }

/* Shop layout / filters --------------------------------------------------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 46px; align-items: start; }
@media (max-width: 860px) { .shop-layout { grid-template-columns: 1fr; } }
.filter-sidebar { border: 1px solid var(--border); background: var(--surface); padding: 24px; position: sticky; top: 100px; }
.filter-sidebar h4 { font-family: var(--font-heading); text-transform: uppercase; font-size: .78rem; letter-spacing: .06em; color: var(--fg-dim); margin-bottom: 14px; }
.filter-list a { display: flex; justify-content: space-between; padding: 9px 0; font-size: .88rem; color: var(--fg-dim); border-bottom: 1px solid var(--border); }
.filter-list a:last-child { border-bottom: none; }
.filter-list a:hover { color: var(--fg); }
.filter-list a.active { color: var(--lime); font-weight: 700; }
.filter-list .count { color: var(--fg-faint); font-size: .78rem; }
.mobile-filter-toggle { display: none; }
@media (max-width: 860px) {
  .mobile-filter-toggle { display: inline-flex; margin-bottom: 20px; }
  .filter-sidebar { position: fixed; top: 0; left: 0; bottom: 0; width: min(300px, 84vw); z-index: 220; transform: translateX(-100%); transition: transform .35s var(--ease); overflow-y: auto; }
  .filter-sidebar.open { transform: translateX(0); }
}

/* Cart / checkout ------------------------------------------------------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); }
.cart-table th, .cart-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
.cart-table th { background: var(--surface-2); text-transform: uppercase; font-size: .72rem; letter-spacing: .06em; font-family: var(--font-heading); color: var(--fg-dim); }
.cart-product { display: flex; align-items: center; gap: 16px; }
.cart-product img { width: 64px; height: 64px; object-fit: cover; }
.cart-remove { color: var(--ember); font-size: .78rem; font-weight: 700; }
.cart-summary { background: var(--surface); border: 1px solid var(--border); padding: 26px; max-width: 400px; margin-left: auto; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 9px 0; font-size: .9rem; color: var(--fg-dim); }
.cart-summary .row.total { font-weight: 700; font-size: 1.15rem; color: var(--fg); border-top: 1px solid var(--border); margin-top: 10px; padding-top: 16px; font-family: var(--font-heading); }
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-box { background: var(--surface); border: 1px solid var(--border); padding: 30px; }
.payment-option { border: 1.5px solid var(--border); padding: 16px 18px; margin-bottom: 12px; display: flex; gap: 12px; align-items: flex-start; cursor: pointer; transition: border-color .2s ease; }
.payment-option:hover { border-color: var(--border-strong); }
.payment-option input { margin-top: 3px; accent-color: var(--accent); }
.order-line { display: flex; justify-content: space-between; padding: 9px 0; font-size: .9rem; color: var(--fg-dim); border-bottom: 1px dashed var(--border); }

/* Auth / account -------------------------------------------------------- */
.auth-wrap { max-width: 440px; margin: 70px auto; background: var(--surface); border: 1px solid var(--border); padding: 40px; }
.auth-wrap h1 { font-size: 1.7rem; text-align: center; text-transform: none; font-family: var(--font-heading); }
.auth-switch { text-align: center; margin-top: 18px; font-size: .88rem; color: var(--fg-dim); }
.auth-switch a { color: var(--lime); font-weight: 600; }
.account-grid { display: grid; grid-template-columns: 220px 1fr; gap: 34px; }
@media (max-width: 800px) { .account-grid { grid-template-columns: 1fr; } }
.account-nav { background: var(--surface); border: 1px solid var(--border); padding: 10px; height: fit-content; }
.account-nav a { display: block; padding: 12px 16px; font-weight: 600; font-size: .88rem; color: var(--fg-dim); }
.account-nav a.active, .account-nav a:hover { background: var(--surface-hover); color: var(--fg); }
.order-card { background: var(--surface); border: 1px solid var(--border); padding: 20px 22px; margin-bottom: 16px; }
.order-card .head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .88rem; color: var(--fg-dim); }
.status-pill { display: inline-block; padding: 4px 13px; border-radius: var(--radius-pill); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; font-family: var(--font-heading); border: 1px solid transparent; }
.status-pending { background: rgba(201, 155, 59, .14); color: #e5b45c; border-color: rgba(201, 155, 59, .35); }
.status-processing { background: rgba(106, 77, 255, .14); color: var(--accent-bright); border-color: rgba(106, 77, 255, .35); }
.status-shipped { background: rgba(156, 139, 255, .14); color: #c3b6ff; border-color: rgba(156, 139, 255, .35); }
.status-delivered { background: rgba(215, 255, 63, .12); color: var(--lime); border-color: rgba(215, 255, 63, .35); }
.status-cancelled { background: rgba(255, 90, 54, .12); color: #ff8a6c; border-color: rgba(255, 90, 54, .35); }

/* Track order --------------------------------------------------------- */
.track-result { background: var(--surface); border: 1px solid var(--border); padding: 30px; margin-top: 28px; }
.track-steps { display: flex; justify-content: space-between; margin: 30px 0; }
.track-step { flex: 1; text-align: center; position: relative; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--fg-faint); font-family: var(--font-heading); }
.track-step.done { color: var(--lime); font-weight: 700; }
.track-step .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--border-strong); margin: 0 auto 10px; }
.track-step.done .dot { background: var(--lime); }

/* Static content page ---------------------------------------------------- */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h2 { margin-top: 1.4em; }
.faq-item { margin-bottom: 20px; }
.faq-q { font-weight: 700; color: var(--fg); font-family: var(--font-heading); }
.faq-a { color: var(--fg-dim); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 24px; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-member img { aspect-ratio: 1/1; object-fit: cover; margin-bottom: 14px; filter: saturate(.85); }
.team-member .role { color: var(--lime); font-weight: 700; font-size: .78rem; text-transform: uppercase; font-family: var(--font-heading); }

/* Footer --------------------------------------------------------------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); margin-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 30px; padding: 64px 24px 44px; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo { height: 38px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; }
.footer-col h4 { color: var(--fg); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px; font-family: var(--font-heading); }
.footer-col ul li { margin-bottom: 11px; font-size: .87rem; color: var(--fg-dim); }
.footer-col a:hover { color: var(--lime); }
.social-icons { display: flex; gap: 16px; margin-top: 16px; font-size: .78rem; }
.social-icons a { color: var(--fg-dim); border-bottom: 1px solid var(--border-strong); }
.social-icons a:hover { color: var(--lime); border-color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; font-size: .8rem; color: var(--fg-faint); }

/* WhatsApp float --------------------------------------------------------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; background: #25d366; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 80; transition: transform .2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }

/* Pagination ------------------------------------------------------------ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { padding: 10px 16px; border: 1.5px solid var(--border); font-size: .85rem; font-family: var(--font-heading); color: var(--fg-dim); }
.pagination a:hover { border-color: var(--fg); color: var(--fg); }
.pagination .current { background: var(--lime); color: #10130a; border-color: var(--lime); font-weight: 700; }

/* Filters bar -------------------------------------------------------------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.shop-toolbar select { width: auto; }

/* Utility ---------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.empty-state { text-align: center; padding: 90px 20px; color: var(--fg-faint); }

/* Admin (shared shell) ---------------------------------------------------- */
.admin-body { background: var(--bg); color: var(--fg); }
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--surface); border-right: 1px solid var(--border); padding: 26px 0; }
.admin-sidebar .brand { padding: 0 26px 24px; font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; border-bottom: 1px solid var(--border); margin-bottom: 10px; color: var(--fg); }
.admin-sidebar a { display: block; padding: 12px 26px; font-size: .85rem; font-weight: 600; color: var(--fg-dim); font-family: var(--font-heading); border-left: 2px solid transparent; }
.admin-sidebar a.active, .admin-sidebar a:hover { background: var(--surface-hover); color: var(--fg); border-color: var(--lime); }
.admin-main { padding: 34px 38px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.admin-topbar span { color: var(--fg-dim); font-size: .88rem; }
.admin-card { background: var(--surface); border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; font-size: .87rem; }
.admin-table th { background: var(--surface-2); text-transform: uppercase; font-size: .7rem; letter-spacing: .05em; color: var(--fg-dim); font-family: var(--font-heading); }
.admin-table a { color: var(--accent-bright); font-weight: 600; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; margin-bottom: 28px; background: var(--border); border: 1px solid var(--border); }
.stat-card { background: var(--surface); padding: 22px; }
.stat-card .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--fg); }
.stat-card .label { font-size: .76rem; text-transform: uppercase; color: var(--fg-faint); letter-spacing: .05em; font-family: var(--font-heading); margin-top: 4px; }
