/* ═══════════════════════════════════════════════════
   KAY STITCHES — COMPLETE STYLESHEET v3.0
   Jumia-style ecommerce structure + luxury branding
═══════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────── */
:root {
  --ink:       #1C1612;
  --ink-2:     #2D2520;
  --page:      #FFFFFF;
  --surface:   #F9F7F4;
  --oat:       #F0EBE3;
  --rule:      #E5DDD2;
  --muted:     #8A7E74;
  --dim:       #BEB3A8;
  --accent:    #8B4A1E;
  --accent-h:  #A35A26;
  --accent-l:  #C07040;
  --accent-bg: rgba(139,74,30,.07);
  --sale:      #B94040;
  --go:        #1E7A45;
  --go-bg:     rgba(30,122,69,.08);
  --wa:        #25D366;
  --border:    rgba(28,22,18,.1);
  --ff-d:      'Cormorant Garamond', Georgia, serif;
  --ff-b:      'Outfit', system-ui, sans-serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.32,.01,.15,1);
  --shadow-sm: 0 1px 4px rgba(28,22,18,.06);
  --shadow:    0 4px 20px rgba(28,22,18,.1);
  --shadow-lg: 0 12px 40px rgba(28,22,18,.14);
  --r:         4px;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-b);
  background: var(--page);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a, button { cursor: pointer; }
button { font-family: inherit; background: none; border: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Cursor ─────────────────────────────────────── */
.cursor,
.cursor-dot {
  display: none !important;
}
html, body, * {
  cursor: auto !important;
}

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--oat); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 2px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { line-height: 1.15; }

/* ── Buttons ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--r);
  font-family: var(--ff-b); font-size: .8rem;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s var(--ease), transform .15s;
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--accent-h); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { background: var(--dim); cursor: not-allowed; }
.btn-primary.just-added { background: var(--go); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  background: none; color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--r);
  font-family: var(--ff-b); font-size: .78rem;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  background: none; color: var(--muted);
  border: none;
  font-family: var(--ff-b); font-size: .78rem; letter-spacing: .08em;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--ink); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--wa); color: #fff;
  border: none; border-radius: var(--r);
  font-family: var(--ff-b); font-size: .8rem;
  font-weight: 500; letter-spacing: .06em;
  text-decoration: none; transition: filter .2s;
}
.btn-wa:hover { filter: brightness(1.07); }

.btn-wa--outline {
  background: none; border: 1px solid var(--wa); color: var(--wa);
}
.btn-wa--outline:hover { background: var(--wa); color: #fff; }

.btn-full { width: 100%; }
.btn-sm-outline {
  padding: 5px 12px; font-size: .72rem; letter-spacing: .06em;
  border: 1px solid var(--rule); border-radius: var(--r);
  transition: border-color .2s, color .2s; color: var(--ink);
}
.btn-sm-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes popIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal.is-visible { opacity: 1; transform: none; }

/* ── Views ──────────────────────────────────────── */
.view { display: none; }
.view.active { display: block; animation: fadeIn .25s var(--ease); }

/* ══════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════ */
.announce-bar {
  background: var(--ink); color: #fff;
  padding: 9px 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: .75rem; letter-spacing: .04em;
  position: relative;
}
.ab-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.ab-inner a { color: var(--accent-l); text-decoration: none; }
.ab-inner a:hover { text-decoration: underline; }
.ab-sep { color: var(--muted); }
.ab-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--dim); font-size: 1.1rem; line-height: 1;
  background: none; border: none; padding: 2px 6px;
  transition: color .2s;
}
.ab-close:hover { color: #fff; }

/* ══════════════════════════════════════════════════
   SITE HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--page);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 2px 20px rgba(28,22,18,.1); }

/* Main row */
.sh-main {
  display: flex; align-items: center; gap: 16px;
  padding: 0 2rem; height: 68px; max-width: 1440px;
  margin: 0 auto;
}

/* Hamburger */
.sh-ham {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sh-ham span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all .3s var(--ease);
}

/* Logo */
.sh-logo {
  font-family: var(--ff-d); font-size: 1.35rem; font-weight: 500;
  letter-spacing: .25em; color: var(--ink); text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: color .2s;
}
.sh-logo em { color: var(--accent); font-style: normal; }
.sh-logo:hover { color: var(--accent); }

/* Search */
.sh-search {
  flex: 1; max-width: 540px; margin: 0 auto;
  display: flex; align-items: center;
  border: 1.5px solid var(--rule); border-radius: var(--r);
  background: var(--surface); overflow: hidden;
  transition: border-color .2s;
}
.sh-search:focus-within { border-color: var(--accent); background: #fff; }
.sh-search svg { margin-left: 12px; color: var(--muted); flex-shrink: 0; }
.sh-search input {
  flex: 1; padding: 9px 10px;
  background: none; border: none; outline: none;
  font-size: .875rem; color: var(--ink);
}
.sh-search input::placeholder { color: var(--dim); }
.sh-search-btn {
  padding: 9px 18px; background: var(--accent); color: #fff;
  border: none; font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; transition: background .2s;
  white-space: nowrap; flex-shrink: 0;
}
.sh-search-btn:hover { background: var(--accent-h); }

/* Actions */
.sh-actions {
  display: flex; align-items: center; gap: 4px; flex-shrink: 0;
}
.sh-action-btn, .sh-cart-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: var(--r);
  font-size: .78rem; font-weight: 400; letter-spacing: .04em;
  color: var(--ink); transition: background .2s, color .2s;
  position: relative;
}
.sh-action-btn:hover { background: var(--surface); color: var(--accent); }
.sh-cart-btn {
  background: var(--accent); color: #fff; font-weight: 500;
}
.sh-cart-btn:hover { background: var(--accent-h); }
.sh-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 4px; border-radius: 9px;
  font-size: .62rem; font-weight: 600; line-height: 1;
  opacity: 0; transform: scale(0); transition: all .2s var(--ease);
}
.sh-action-btn .sh-badge { background: var(--accent); color: #fff; }
.sh-cart-btn .sh-badge { background: #fff; color: var(--accent); }
.sh-badge.has-items { opacity: 1; transform: scale(1); }

/* Category nav */
.sh-catnav {
  border-top: 1px solid var(--rule);
  overflow-x: auto; scrollbar-width: none;
}
.sh-catnav::-webkit-scrollbar { display: none; }
.sh-catnav-inner {
  display: flex; align-items: center;
  padding: 0 2rem; gap: 0;
  max-width: 1440px; margin: 0 auto;
}
.sh-cat {
  display: block; padding: 11px 16px;
  font-size: .76rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: color .2s, border-color .2s;
}
.sh-cat:hover { color: var(--ink); }
.sh-cat.is-active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 500; }

/* ══════════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: var(--page);
  display: flex; flex-direction: column;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform .35s var(--spring);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: none; }
.mm-close {
  align-self: flex-end; margin-bottom: 2rem;
  color: var(--muted); transition: color .2s;
}
.mm-close:hover { color: var(--ink); }
.mm-logo {
  font-family: var(--ff-d); font-size: 1.6rem; letter-spacing: .25em;
  font-weight: 500; margin-bottom: 2.5rem;
}
.mm-logo em { color: var(--accent); font-style: normal; }
.mm-nav { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
.mm-nav a {
  font-family: var(--ff-d); font-size: 2rem; font-weight: 300;
  color: var(--ink); text-decoration: none;
  padding: .5rem 0; border-bottom: 1px solid var(--rule);
  transition: color .2s;
}
.mm-nav a:hover { color: var(--accent); }
.mm-cats > span {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: .8rem;
}
.mm-cat-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mm-cat-row a {
  padding: 7px 14px; border: 1px solid var(--rule); border-radius: var(--r);
  font-size: .78rem; color: var(--ink); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.mm-cat-row a:hover { border-color: var(--accent); color: var(--accent); }
.mm-foot {
  margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 12px;
}
.mm-foot a {
  font-size: .8rem; color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 4px;
}
.mm-foot a:hover { color: var(--accent); }
.mm-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; width: 17px; height: 17px;
  border-radius: 50%; font-size: .58rem; font-weight: 600;
}
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════
   SIDE PANELS (Wishlist + Cart — shared styles)
══════════════════════════════════════════════════ */
.panel-scrim {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(28,22,18,.5);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.panel-scrim.is-open { opacity: 1; pointer-events: all; }

.side-panel {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 300;
  width: min(440px, 100vw);
  background: var(--page);
  border-left: 1px solid var(--rule);
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .4s var(--spring);
  overflow: hidden;
}
.side-panel.is-open { transform: none; }

.sp-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.sp-title {
  font-family: var(--ff-d); font-size: 1.4rem;
  font-weight: 400; letter-spacing: .02em;
}
.sp-sub { font-size: .78rem; color: var(--muted); margin-left: 6px; }
.sp-close {
  color: var(--muted); padding: 4px; transition: color .2s; line-height: 0;
}
.sp-close:hover { color: var(--ink); }
.sp-body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }

/* Side panel items */
.sp-item {
  display: flex; gap: 12px; padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  animation: fadeUp .3s both;
}
.sp-item-img {
  width: 76px; height: 92px; object-fit: cover;
  background: var(--oat); flex-shrink: 0; border-radius: var(--r);
}
.sp-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sp-item-cat { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.sp-item-name { font-family: var(--ff-d); font-size: 1rem; font-weight: 400; line-height: 1.3; }
.sp-item-meta { font-size: .72rem; color: var(--muted); }
.sp-item-price { font-size: .88rem; color: var(--accent); margin-top: 2px; font-weight: 500; }
.sp-item-qty {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.qty-btn {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule); border-radius: var(--r);
  font-size: .9rem; color: var(--ink); transition: all .2s;
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.sp-item-qty span { font-size: .85rem; min-width: 22px; text-align: center; font-weight: 500; }
.sp-item-rm {
  color: var(--dim); font-size: .85rem;
  padding: 4px; transition: color .2s; align-self: flex-start;
}
.sp-item-rm:hover { color: var(--sale); }
.wl-item-btns { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; justify-content: flex-start; }

/* Empty state */
.sp-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 12px;
  text-align: center; color: var(--muted); padding: 2rem;
}
.sp-empty-icon { font-size: 2.5rem; opacity: .3; margin-bottom: 4px; }
.sp-empty p { font-size: .88rem; margin-bottom: 8px; }

/* Cart panel foot */
.sp-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--rule); background: var(--surface); flex-shrink: 0; }
.cart-foot { display: flex; flex-direction: column; gap: 10px; }
.cart-totals { display: flex; flex-direction: column; gap: 5px; }
.ct-row { display: flex; justify-content: space-between; font-size: .83rem; align-items: center; }
.ct-row--muted { color: var(--muted); font-size: .78rem; }
.ct-row--total {
  border-top: 1px solid var(--rule); padding-top: 8px; margin-top: 4px;
  font-weight: 500;
}
.ct-row--total span:last-child { font-family: var(--ff-d); font-size: 1.35rem; color: var(--accent); }

/* ══════════════════════════════════════════════════
   PRODUCT PANEL (slide-up detail)
══════════════════════════════════════════════════ */
.pp-scrim {
  position: fixed; inset: 0; z-index: 399;
  background: rgba(28,22,18,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.pp-scrim.is-open { opacity: 1; pointer-events: all; }

.pp {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 400;
  width: min(620px, 100vw);
  background: var(--page);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--rule);
  transform: translateX(110%);
  transition: transform .42s var(--spring);
  overflow: hidden;
}
.pp.is-open { transform: none; }

.pp-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--surface); flex-shrink: 0;
}
.pp-crumb { font-size: .7rem; color: var(--muted); letter-spacing: .05em; }
.pp-close-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.pp-close-btn:hover { color: var(--ink); }

.pp-scroll { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
@media (min-width: 540px) { .pp-scroll { flex-direction: row; } }

.pp-img-wrap {
  position: relative; flex-shrink: 0;
  width: 100%; aspect-ratio: 4/3;
  background: var(--oat); overflow: hidden;
}
@media (min-width: 540px) {
  .pp-img-wrap { width: 260px; aspect-ratio: unset; }
}
.pp-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pp-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff;
  font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.pp-badge.is-show { opacity: 1; }
.pp-badge.is-dark { background: var(--ink); }

.pp-info {
  flex: 1; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto;
}
.pp-info-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.pp-cat-label { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.pp-name { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 400; line-height: 1.2; margin-top: 4px; }
.pp-price { font-family: var(--ff-d); font-size: 1.5rem; font-weight: 500; color: var(--accent); white-space: nowrap; }
.pp-stock-status { font-size: .75rem; }
.stock-in  { color: var(--go); }
.stock-out { color: var(--sale); }
.pp-desc { font-size: .875rem; color: var(--muted); line-height: 1.7; }

.pp-sizes-wrap { }
.pp-size-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.pp-size-row { display: flex; flex-wrap: wrap; gap: 7px; }
.sz-btn {
  padding: 7px 14px; border: 1px solid var(--rule); border-radius: var(--r);
  font-size: .78rem; font-weight: 400; color: var(--ink);
  transition: all .18s;
}
.sz-btn:hover { border-color: var(--accent); color: var(--accent); }
.sz-btn.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.pp-actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.pp-cart-btn { font-size: .82rem; }
.pp-action-row { display: flex; gap: 8px; }
.btn-wish {
  width: 46px; flex-shrink: 0;
  border: 1px solid var(--rule); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .2s;
}
.btn-wish:hover, .btn-wish.is-saved { border-color: #e05b7a; color: #e05b7a; }
.btn-wish.is-saved svg path { fill: #e05b7a; }

.pp-note { font-size: .72rem; color: var(--muted); text-align: center; }

/* ══════════════════════════════════════════════════
   CHECKOUT OVERLAY
══════════════════════════════════════════════════ */
.co-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(28,22,18,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.co-overlay.is-open { opacity: 1; pointer-events: all; }

.co-modal {
  background: var(--page); width: 100%; max-width: 880px;
  max-height: 94vh; overflow-y: auto;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98);
  transition: transform .35s var(--spring);
}
.co-overlay.is-open .co-modal { transform: none; }

.co-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
  position: sticky; top: 0; z-index: 5;
}
.co-brand { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 500; letter-spacing: .2em; }
.co-brand em { color: var(--accent); font-style: normal; }

.co-steps-mini { display: flex; align-items: center; gap: 8px; font-size: .72rem; font-family: var(--ff-b); }
.csm { color: var(--dim); letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.csm.is-active { color: var(--accent); font-weight: 500; }
.csm.is-done { color: var(--go); }
.co-steps-mini svg { color: var(--rule); }

.co-close-btn { color: var(--muted); transition: color .2s; padding: 4px; }
.co-close-btn:hover { color: var(--ink); }

.co-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
@media (max-width: 680px) { .co-body { grid-template-columns: 1fr; } }

.co-form { padding: 2rem; border-right: 1px solid var(--rule); }
@media (max-width: 680px) { .co-form { border-right: none; border-bottom: 1px solid var(--rule); } }

/* Form panels */
.co-panel { display: none; animation: fadeUp .3s both; }
.co-panel.is-active { display: block; }
.co-panel-title {
  font-family: var(--ff-d); font-size: 1.3rem; font-weight: 400;
  margin-bottom: 1.5rem; letter-spacing: .01em;
}

/* Form fields */
.ks-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.ks-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: .9rem; }
.ks-field label { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.ks-field input, .ks-field select {
  padding: 10px 13px; background: var(--surface);
  border: 1.5px solid var(--rule); border-radius: var(--r);
  color: var(--ink); font-size: .9rem; outline: none;
  transition: border-color .2s, background .2s; width: 100%;
  -webkit-appearance: none;
}
.ks-field input:focus, .ks-field select:focus {
  border-color: var(--accent); background: #fff;
}
.ks-field input.is-err, .ks-field select.is-err { border-color: var(--sale); }
.ks-field input::placeholder { color: var(--dim); }
.ks-err { font-size: .68rem; color: var(--sale); min-height: .9rem; }

.co-nav-btns { display: flex; gap: 10px; margin-top: 1.2rem; }
.co-nav-btns .btn-primary { flex: 1; }

/* Card logos */
.co-card-logos { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.co-card-logos span {
  padding: 4px 12px; border: 1.5px solid var(--rule); border-radius: var(--r);
  font-size: .65rem; font-weight: 600; letter-spacing: .06em; color: var(--muted);
}

.co-gateway-tip {
  background: var(--accent-bg); border: 1px solid rgba(139,74,30,.15);
  border-radius: var(--r); padding: .75rem 1rem;
  font-size: .76rem; color: var(--accent); line-height: 1.55;
  margin: 1rem 0;
}
.co-secure-line {
  display: flex; align-items: center; gap: 6px;
  font-size: .68rem; color: var(--muted);
  justify-content: center; margin-top: 1rem;
}

/* Order summary panel */
.co-summary { padding: 2rem; background: var(--surface); }
.co-sum-title {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.2rem;
}
.co-sum-items { display: flex; flex-direction: column; gap: 10px; }
.co-sum-item { display: flex; gap: 10px; align-items: center; }
.co-sum-img-wrap { position: relative; flex-shrink: 0; }
.co-sum-img-wrap img { width: 60px; height: 72px; object-fit: cover; border-radius: var(--r); background: var(--oat); }
.co-sum-qty {
  position: absolute; top: -7px; right: -7px;
  background: var(--accent); color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: .62rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.co-sum-info { flex: 1; min-width: 0; }
.co-sum-name { font-size: .88rem; font-weight: 400; line-height: 1.35; }
.co-sum-price { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.co-sum-totals { border-top: 1px solid var(--rule); margin-top: 1rem; padding-top: 1rem; display: flex; flex-direction: column; gap: 6px; }
.co-sum-row { display: flex; justify-content: space-between; font-size: .82rem; color: var(--muted); }
.co-sum-row--total {
  border-top: 1px solid var(--rule); padding-top: .75rem; margin-top: 4px;
  color: var(--ink); font-weight: 500;
}
.co-sum-row--total span:last-child { font-family: var(--ff-d); font-size: 1.3rem; color: var(--accent); }

/* Confirmation screen */
.co-confirm {
  background: var(--page); width: 100%; max-width: 500px;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem; text-align: center;
  flex-direction: column; align-items: center; gap: 12px;
  transform: scale(.95) translateY(12px);
  transition: transform .4s var(--spring);
}
.co-overlay.is-open .co-confirm { transform: none; }
.confirm-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--go-bg); border: 1px solid rgba(30,122,69,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 8px;
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
.confirm-title { font-family: var(--ff-d); font-size: 2rem; font-weight: 400; }
.confirm-sub { font-size: .88rem; color: var(--muted); line-height: 1.7; max-width: 340px; }
.confirm-ref-box {
  background: var(--surface); border: 1px solid var(--rule); border-radius: var(--r);
  padding: .9rem 1.4rem; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.confirm-ref-box span { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.confirm-ref-box strong { font-family: var(--ff-d); font-size: 1.15rem; color: var(--accent); font-weight: 400; }

/* ══════════════════════════════════════════════════
   HOME — HERO BANNER
══════════════════════════════════════════════════ */
.home-hero {
  position: relative; overflow: hidden;
  height: clamp(440px, 75vh, 700px);
  background: var(--ink);
}
.hero-slide { position: relative; width: 100%; height: 100%; }
.hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .7; transition: opacity .8s var(--ease); transform: scale(1.04);
  transition: transform 6s ease, opacity .8s;
}
.hero-slide img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,22,18,.75) 0%, rgba(28,22,18,.2) 60%, transparent 100%);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 3rem 0 clamp(2rem, 8vw, 6rem);
  max-width: 640px;
}
.hero-tag {
  font-family: var(--ff-b); font-size: .7rem; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent-l);
  margin-bottom: .75rem;
}
.hero-headline {
  font-family: var(--ff-d); font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; color: #fff; line-height: 1.05;
  margin-bottom: .75rem;
  animation: fadeUp .8s .1s both;
}
.hero-headline em { color: var(--accent-l); font-style: italic; }
.hero-sub {
  font-size: .92rem; color: rgba(255,255,255,.75);
  letter-spacing: .04em; margin-bottom: 2rem;
  animation: fadeUp .8s .2s both;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp .8s .3s both; }
.hero-btn-primary { font-size: .78rem; }
.btn-hero-ghost {
  display: inline-flex; align-items: center;
  padding: 13px 22px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.35); border-radius: var(--r);
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; backdrop-filter: blur(4px);
  transition: background .2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.22); }

/* ── Features strip ──────────────────────────── */
.features-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 768px) { .features-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-strip { grid-template-columns: 1fr; } }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid var(--rule);
}
.feature-item:last-child { border-right: none; }
.fi-icon { font-size: 1.4rem; flex-shrink: 0; }
.fi-text { display: flex; flex-direction: column; gap: 2px; }
.fi-text strong { font-size: .8rem; font-weight: 500; }
.fi-text span { font-size: .73rem; color: var(--muted); }

/* ── Ticker ──────────────────────────────────── */
.ticker {
  background: var(--ink); color: #fff; overflow: hidden;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  user-select: none;
}
.ticker-inner {
  display: flex; gap: 20px; align-items: center; white-space: nowrap;
  animation: ticker 36s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-inner span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.ticker-inner b { color: var(--accent-l); font-weight: 400; }

/* ── Sections ────────────────────────────────── */
.home-section {
  padding: 3rem 2rem;
  max-width: 1440px; margin: 0 auto;
}
.home-section + .home-section { border-top: 1px solid var(--rule); }
.home-section--dark {
  background: var(--ink);
  max-width: 100%; padding: 3rem;
}
.hs-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 1.75rem;
}
.hs-tag {
  display: block; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 6px;
}
.hs-title {
  font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400; line-height: 1.1; color: var(--ink);
}
.hs-title em { color: var(--accent); font-style: italic; }
.hs-title--light { color: #fff; }
.hs-tag--light { color: var(--accent-l); }
.hs-see-all {
  font-size: .75rem; letter-spacing: .08em;
  color: var(--accent); white-space: nowrap;
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer;
}
.hs-see-all:hover { color: var(--accent-h); }
.hs-see-all--light { color: var(--accent-l); }

/* ── Category grid ───────────────────────────── */
.cat-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  border-radius: var(--r); overflow: hidden;
  cursor: pointer; border: 1px solid var(--rule);
  transition: box-shadow .2s, transform .2s;
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card-img { aspect-ratio: 3/4; overflow: hidden; background: var(--oat); }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-body {
  display: flex; flex-direction: column; padding: .7rem .8rem;
  background: var(--page); border-top: 1px solid var(--rule);
}
.cat-card-name { font-family: var(--ff-d); font-size: .95rem; font-weight: 500; }
.cat-card-count { font-size: .68rem; color: var(--muted); margin-top: 2px; }

/* ── PRODUCT CARDS ───────────────────────────── */
.pcard {
  background: var(--page); border: 1px solid var(--rule);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.pcard-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--oat);
}
.pcard-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s var(--ease);
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.06); }

.pcard-overlay {
  position: absolute; inset: 0;
  background: rgba(28,22,18,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.pcard:hover .pcard-overlay { opacity: 1; }

.pcard-qv-btn {
  padding: 9px 20px; background: #fff; color: var(--ink);
  border: none; border-radius: var(--r);
  font-size: .75rem; font-weight: 500; letter-spacing: .08em;
  transition: background .2s;
}
.pcard-qv-btn:hover { background: var(--accent); color: #fff; }

.pcard-sold-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--ink); color: #fff;
  font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px;
}

.pcard-wish-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .2s;
}
.pcard-wish-btn:hover, .pcard-wish-btn.is-saved { color: #e05b7a; background: #fff; }

.pcard-body { padding: .9rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.pcard-cat { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.pcard-name {
  font-family: var(--ff-d); font-size: 1.05rem; font-weight: 400;
  line-height: 1.25; margin: 4px 0 8px; flex: 1;
}
.pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pcard-price { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 500; color: var(--accent); }
.pcard-cart-btn {
  width: 34px; height: 34px; border-radius: var(--r);
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pcard-cart-btn:hover { background: var(--accent-h); }
.pcard-sold-tag { font-size: .68rem; color: var(--sale); letter-spacing: .06em; }

/* Grids */
.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 1000px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .featured-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.home-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1100px) { .home-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .home-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ── Promo banner ────────────────────────────── */
.promo-banner {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--ink); overflow: hidden;
  min-height: 340px;
}
@media (max-width: 640px) { .promo-banner { grid-template-columns: 1fr; } }
.pb-content {
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  padding: 3rem clamp(2rem, 6vw, 5rem);
}
.pb-tag { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--accent-l); }
.pb-title {
  font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: #fff; line-height: 1.1;
}
.pb-title em { color: var(--accent-l); font-style: italic; }
.pb-text { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 380px; }
.pb-img { position: relative; overflow: hidden; min-height: 280px; }
.pb-img img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }

/* ── Brand quote ─────────────────────────────── */
.brand-quote {
  text-align: center; padding: 4rem 2rem;
  max-width: 720px; margin: 0 auto;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.brand-quote p {
  font-family: var(--ff-d); font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; color: var(--ink); margin-bottom: 1.2rem;
}
.brand-quote cite { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ── Process ─────────────────────────────────── */
.process-section {
  padding: 3.5rem 2rem; background: var(--surface);
  border-top: 1px solid var(--rule);
}
.ps-header { text-align: center; margin-bottom: 2.5rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--rule); max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--surface); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: 10px;
}
.ps-num { font-family: var(--ff-d); font-size: 2.5rem; font-weight: 300; color: var(--accent-l); line-height: 1; }
.ps-title { font-family: var(--ff-d); font-size: 1.15rem; font-weight: 400; }
.ps-text { font-size: .82rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════════ */
.shop-wrap {
  display: grid; grid-template-columns: 240px 1fr;
  max-width: 1440px; margin: 0 auto;
  min-height: 60vh;
}
@media (max-width: 860px) { .shop-wrap { grid-template-columns: 1fr; } }

/* Sidebar */
.shop-sidebar {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--rule);
  position: sticky; top: 0;
  height: fit-content; max-height: calc(100vh - 120px);
  overflow-y: auto;
}
@media (max-width: 860px) {
  .shop-sidebar {
    display: none; position: fixed; top: 0; left: 0; bottom: 0; z-index: 250;
    width: 280px; background: var(--page);
    max-height: 100vh; border-right: 1px solid var(--rule);
    box-shadow: var(--shadow-lg);
    transition: transform .35s var(--spring);
    transform: translateX(-110%);
  }
  .shop-sidebar.is-open { display: block; transform: none; }
}
.sidebar-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.sidebar-section:last-of-type { border-bottom: none; }
.sidebar-title { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; font-weight: 500; }
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cat-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: var(--r);
  font-size: .85rem; color: var(--ink); text-align: left;
  transition: background .15s, color .15s;
}
.sidebar-cat-btn span { font-size: .72rem; color: var(--muted); }
.sidebar-cat-btn:hover { background: var(--oat); color: var(--accent); }
.sidebar-cat-btn.is-active { background: var(--accent-bg); color: var(--accent); font-weight: 500; }
.sidebar-cat-btn.is-active span { color: var(--accent); }

.sidebar-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--ink); cursor: pointer;
}
.sidebar-check input { accent-color: var(--accent); width: 15px; height: 15px; }

.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pi-group { display: flex; flex-direction: column; gap: 4px; }
.pi-group label { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.pi-group input {
  padding: 7px 9px; border: 1.5px solid var(--rule); border-radius: var(--r);
  font-size: .8rem; color: var(--ink); width: 100%; outline: none;
  transition: border-color .2s;
}
.pi-group input:focus { border-color: var(--accent); }

.sidebar-reset {
  width: 100%; padding: 8px; margin-top: .5rem;
  border: 1px solid var(--rule); border-radius: var(--r);
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); transition: all .2s;
}
.sidebar-reset:hover { border-color: var(--sale); color: var(--sale); }

/* Shop main */
.shop-main { padding: 1.5rem 2rem; min-width: 0; }

.shop-topbar {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 1.5rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid var(--rule);
}
.shop-topbar-l { display: flex; flex-direction: column; gap: 3px; }
.shop-page-title { font-family: var(--ff-d); font-size: 1.7rem; font-weight: 400; }
.shop-page-title em { color: var(--accent); font-style: italic; }
.shop-tally { font-size: .8rem; color: var(--muted); }
.shop-topbar-r { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.shop-search-wrap {
  display: flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--rule); border-radius: var(--r);
  padding: 0 10px; background: var(--surface);
  transition: border-color .2s;
}
.shop-search-wrap:focus-within { border-color: var(--accent); }
.shop-search-wrap svg { color: var(--muted); flex-shrink: 0; }
.shop-search-input {
  padding: 8px 4px; background: none; border: none; outline: none;
  font-size: .82rem; width: 150px; color: var(--ink);
}
.shop-search-input::placeholder { color: var(--dim); }

.sort-select {
  padding: 8px 32px 8px 12px; border: 1.5px solid var(--rule); border-radius: var(--r);
  background: var(--surface); font-size: .8rem; color: var(--ink);
  outline: none; cursor: pointer; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A7E74' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--accent); }

.filter-toggle-btn {
  display: none; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1.5px solid var(--rule); border-radius: var(--r);
  font-size: .78rem; letter-spacing: .06em; color: var(--ink);
  background: var(--surface); transition: all .2s;
}
@media (max-width: 860px) { .filter-toggle-btn { display: flex; } }
.filter-toggle-btn:hover { border-color: var(--accent); color: var(--accent); }

.shop-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 1100px) { .shop-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .shop-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.shop-empty {
  grid-column: 1/-1; text-align: center;
  padding: 4rem 2rem; color: var(--muted); font-size: .9rem;
}

/* ══════════════════════════════════════════════════
   LOOKBOOK
══════════════════════════════════════════════════ */
.lb-hero {
  position: relative; height: clamp(320px, 55vh, 560px);
  overflow: hidden; background: var(--ink);
}
.lb-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.lb-hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.lb-tag { font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; color: var(--accent-l); margin-bottom: .75rem; }
.lb-title { font-family: var(--ff-d); font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; color: #fff; line-height: 1.05; }
.lb-sub { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .75rem; max-width: 380px; }

.lb-grid {
  display: grid; gap: 3px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  max-width: 1440px; margin: 3px auto;
  padding: 0 3px;
}
.lb-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; background: var(--oat);
}
.lb-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.lb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.lb-item:hover img { transform: scale(1.04); }
.lb-item-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(28,22,18,.7) 0%, transparent 100%);
  color: #fff; opacity: 0; transition: opacity .3s;
  display: flex; flex-direction: column; gap: 4px;
}
.lb-item:hover .lb-item-info { opacity: 1; }
.lb-look-n { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-l); }
.lb-look-name { font-family: var(--ff-d); font-size: 1.1rem; }
.lb-shop-link { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-l); }

.lb-quote {
  text-align: center; padding: 4rem 2rem;
  max-width: 680px; margin: 0 auto;
}
.lb-quote blockquote {
  font-family: var(--ff-d); font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.5;
  margin-bottom: 1rem;
}
.lb-quote cite { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
@media (max-width: 700px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero-img { overflow: hidden; background: var(--oat); }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-text {
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding: 3rem clamp(2rem, 6vw, 5rem); background: var(--surface);
}
.about-headline {
  font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.1; color: var(--ink);
}
.about-headline em { color: var(--accent); font-style: italic; }

.about-story { padding: 3.5rem 2rem; max-width: 1000px; margin: 0 auto; }
.story-inner { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; }
@media (max-width: 700px) { .story-inner { grid-template-columns: 1fr; gap: 2rem; } }
.story-text { display: flex; flex-direction: column; gap: 1rem; }
.story-text p { font-size: .92rem; color: var(--muted); line-height: 1.8; }
.story-sig { margin-top: .5rem; }
.story-sig { font-family: var(--ff-d); font-size: 1.3rem; font-weight: 400; color: var(--ink); }
.story-sig span { display: block; font-family: var(--ff-b); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.story-stats { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; }
.stat-item { border-left: 2px solid var(--accent); padding-left: 1rem; }
.stat-n { display: block; font-family: var(--ff-d); font-size: 2.4rem; font-weight: 400; color: var(--ink); }
.stat-l { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.values-section { padding: 3rem 2rem; background: var(--ink); }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-inner .hs-title { color: #fff; margin-bottom: 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.08); }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 2rem 1.5rem; background: var(--ink); display: flex; flex-direction: column; gap: 10px; }
.value-n { font-family: var(--ff-d); font-size: 2rem; font-weight: 300; color: var(--accent-l); }
.value-name { font-family: var(--ff-d); font-size: 1.1rem; font-weight: 400; color: #fff; }
.value-text { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; }

.about-cta {
  text-align: center; padding: 4rem 2rem;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.about-cta-title { font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; margin-bottom: .75rem; }
.about-cta-title em { color: var(--accent); font-style: italic; }
.about-cta-sub { font-size: .9rem; color: var(--muted); line-height: 1.7; max-width: 460px; margin: 0 auto 1.5rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); }

.sf-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  padding: 3rem 2rem; max-width: 1440px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .sf-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .sf-top { grid-template-columns: 1fr; } }

.sf-logo {
  font-family: var(--ff-d); font-size: 1.4rem; letter-spacing: .25em;
  font-weight: 500; color: #fff; margin-bottom: .75rem;
  text-transform: uppercase;
}
.sf-logo em { color: var(--accent-l); font-style: normal; }
.sf-tagline { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1rem; }
.sf-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.sf-social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--r);
  font-size: .72rem; letter-spacing: .06em; color: rgba(255,255,255,.7);
  text-decoration: none; transition: border-color .2s, color .2s;
}
.sf-social-btn:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.sf-social-btn.sf-wa { border-color: rgba(37,211,102,.4); color: #25D366; }
.sf-social-btn.sf-wa:hover { background: rgba(37,211,102,.1); }

.sf-links-col h4 {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1rem; font-weight: 500;
}
.sf-links-col ul { display: flex; flex-direction: column; gap: 6px; }
.sf-links-col ul a {
  font-size: .82rem; color: rgba(255,255,255,.55); cursor: pointer;
  text-decoration: none; transition: color .2s;
}
.sf-links-col ul a:hover { color: #fff; }
.sf-contact-info { margin-top: 1rem; display: flex; flex-direction: column; gap: 4px; }
.sf-contact-info p { font-size: .78rem; color: rgba(255,255,255,.35); }

.sf-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 1rem 2rem; max-width: 1440px; margin: 0 auto;
  font-size: .72rem; color: rgba(255,255,255,.3);
}
.sf-pay-icons { display: flex; gap: 8px; }
.sf-pay-icons span {
  padding: 2px 9px; border: 1px solid rgba(255,255,255,.15); border-radius: 3px;
  font-size: .6rem; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.4);
}

/* ══════════════════════════════════════════════════
   TOAST & BTT
══════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(80px);
  z-index: 900; background: var(--ink); color: #fff;
  padding: 10px 22px; border-radius: 99px;
  font-size: .82rem; font-weight: 400; letter-spacing: .04em;
  box-shadow: var(--shadow-lg); white-space: nowrap;
  transition: transform .35s var(--spring), opacity .3s;
  opacity: 0; pointer-events: none;
}
.toast.is-show { transform: translateX(-50%) translateY(0); opacity: 1; }

.btt {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transform: translateY(10px); transition: all .3s var(--ease);
}
.btt.is-show { opacity: 1; pointer-events: all; transform: none; }
.btt:hover { background: var(--accent-h); }

/* ══════════════════════════════════════════════════
   ADMIN PORTAL STYLES
══════════════════════════════════════════════════ */
.admin-login body { background: var(--surface); }
.admin-page  body { background: var(--surface); }

/* Login */
.login-wrap {
  max-width: 400px; margin: 6rem auto;
  background: var(--page); border: 1px solid var(--rule);
  border-radius: var(--r); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.login-brand { font-family: var(--ff-d); font-size: 1.6rem; letter-spacing: .25em; font-weight: 500; margin-bottom: 4px; }
.login-brand em { color: var(--accent); font-style: normal; }
.login-sub { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1.5rem; }
.btn-sign-in { width: 100%; padding: 12px; background: var(--accent); color: #fff; border: none; border-radius: var(--r); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: background .2s; margin-top: .75rem; }
.btn-sign-in:hover { background: var(--accent-h); }
.login-back { display: block; text-align: center; margin-top: 1rem; font-size: .8rem; color: var(--muted); text-decoration: none; }
.login-back:hover { color: var(--accent); }

/* Admin nav */
.adm-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: .75rem 2rem; background: var(--page); border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 100;
}
.adm-bar-brand { font-family: var(--ff-d); font-size: 1.2rem; letter-spacing: .2em; font-weight: 500; text-decoration: none; color: var(--ink); }
.adm-bar-brand em { color: var(--accent); font-style: normal; }
.adm-bar-r { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.adm-tag { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--rule); padding: 3px 10px; border-radius: 2px; }
.adm-btn { padding: 7px 14px; border: 1px solid var(--rule); border-radius: var(--r); font-size: .75rem; font-weight: 400; letter-spacing: .06em; color: var(--ink); text-decoration: none; transition: all .2s; cursor: pointer; background: var(--page); }
.adm-btn:hover { border-color: var(--accent); color: var(--accent); }
.adm-btn.danger { border-color: var(--sale); color: var(--sale); }
.adm-btn.danger:hover { background: var(--sale); color: #fff; }
.adm-btn.sm { padding: 5px 10px; font-size: .7rem; }

/* Admin wrap */
.adm-wrap { max-width: 1300px; margin: 0 auto; padding: 2rem; }
.adm-ph { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.adm-eyebrow { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 4px; }
.adm-heading { font-family: var(--ff-d); font-size: 2rem; font-weight: 400; }
.adm-heading em { font-style: italic; color: var(--accent); }
.adm-date { font-size: .78rem; color: var(--muted); }

/* Stats */
.stat-row { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-card { background: var(--page); border: 1px solid var(--rule); border-radius: var(--r); padding: 1rem 1.25rem; min-width: 120px; flex: 1; }
.stat-card.good .sn { color: var(--go); }
.stat-card.warn .sn { color: var(--sale); }
.sn { font-family: var(--ff-d); font-size: 2rem; font-weight: 400; line-height: 1; }
.sl { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* Admin cards */
.adm-card { background: var(--page); border: 1px solid var(--rule); border-radius: var(--r); padding: 1.5rem; }
.adm-card-title { font-family: var(--ff-d); font-size: 1.2rem; font-weight: 400; margin-bottom: 1.25rem; }

/* Form elements */
.ks-label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 500; display: block; margin-bottom: 5px; }
.ks-input {
  display: block; width: 100%; padding: 9px 12px;
  background: var(--surface); border: 1.5px solid var(--rule); border-radius: var(--r);
  font-size: .88rem; color: var(--ink); outline: none;
  transition: border-color .2s, background .2s; font-family: var(--ff-b);
}
.ks-input:focus { border-color: var(--accent); background: #fff; }
.ks-input.ks-select { cursor: pointer; }
.ks-hint { font-size: .7rem; color: var(--muted); margin-top: 4px; display: block; }

/* Alert */
.alert-ks { padding: .8rem 1.2rem; border-radius: var(--r); font-size: .85rem; margin-bottom: 1rem; border-left: 3px solid transparent; }
.alert-success { background: var(--go-bg); border-color: var(--go); color: var(--go); }
.alert-error   { background: rgba(185,64,64,.08); border-color: var(--sale); color: var(--sale); }

/* Product rows */
.prow {
  display: flex; align-items: center; gap: 12px;
  padding: .85rem 0; border-bottom: 1px solid var(--rule);
}
.prow:last-child { border-bottom: none; }
.prow-img { width: 52px; height: 64px; object-fit: cover; border-radius: var(--r); background: var(--oat); flex-shrink: 0; }
.prow-name { font-size: .9rem; font-weight: 500; }
.prow-meta { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.prow-cat { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.prow-feat { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; background: var(--accent-bg); color: var(--accent); padding: 2px 7px; border-radius: 2px; }
.prow-price { font-size: .88rem; color: var(--accent); font-weight: 500; white-space: nowrap; }
.stock-pill { padding: 4px 12px; border-radius: 99px; font-size: .68rem; font-weight: 500; letter-spacing: .06em; border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; transition: all .2s; }
.stock-pill.in  { background: var(--go-bg); border-color: rgba(30,122,69,.25); color: var(--go); }
.stock-pill.out { background: rgba(185,64,64,.07); border-color: rgba(185,64,64,.25); color: var(--sale); }

/* Image preview */
.img-pre-box { aspect-ratio: 4/3; background: var(--surface); border: 1.5px dashed var(--rule); border-radius: var(--r); overflow: hidden; margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; }
.img-pre-img { width: 100%; height: 100%; object-fit: cover; }
.img-pre-ph { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: .8rem; }

/* Toggles */
.toggle-row { display: flex; gap: 1.5rem; }
.ks-toggle { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: .82rem; color: var(--ink); }
.toggle-slider { position: relative; width: 38px; height: 22px; display: inline-block; flex-shrink: 0; }
.ks-toggle input { position: absolute; opacity: 0; width: 0; }
.toggle-slider::before { content: ''; position: absolute; inset: 2px; border-radius: 99px; background: var(--rule); transition: background .2s; }
.toggle-slider::after { content: ''; position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .2s; }
.ks-toggle input:checked ~ .toggle-slider::before { background: var(--accent); }
.ks-toggle input:checked ~ .toggle-slider::after  { transform: translateX(16px); }

.btn-adm-sub { width: 100%; padding: 12px; background: var(--accent); color: #fff; border: none; border-radius: var(--r); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: background .2s; }
.btn-adm-sub:hover { background: var(--accent-h); }
.btn-adm-cancel { display: block; text-align: center; margin-top: .6rem; font-size: .78rem; color: var(--muted); text-decoration: underline; }

.list-title { font-family: var(--ff-d); font-size: 1.2rem; font-weight: 400; }
.list-title small { font-size: .78rem; color: var(--muted); margin-left: 8px; font-family: var(--ff-b); }

.adm-srch-wrap { position: relative; display: flex; align-items: center; gap: 6px; border: 1.5px solid var(--rule); border-radius: var(--r); padding: 0 10px; background: var(--surface); }
.adm-srch-wrap svg { color: var(--muted); flex-shrink: 0; }
.adm-srch { border: none !important; background: none; padding: 7px 4px; width: 180px; font-size: .82rem; }
.adm-srch:focus { outline: none; }
.adm-empty { text-align: center; padding: 3rem; color: var(--muted); }
.adm-empty-icon { font-size: 2rem; opacity: .35; margin-bottom: .5rem; }
.adm-empty-hint { font-size: .78rem; }

/* Orders table (for orders view) */
.orders-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.orders-table th { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: .6rem 1rem; border-bottom: 1.5px solid var(--rule); text-align: left; }
.orders-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--rule); }
.orders-table tr:hover td { background: var(--surface); }
.order-ref-tag { font-family: var(--ff-d); color: var(--accent); font-size: .92rem; }
.order-status { padding: 3px 10px; border-radius: 99px; font-size: .65rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.order-status.pending  { background: rgba(180,140,0,.1); color: #7a6000; }
.order-status.confirmed { background: var(--go-bg); color: var(--go); }

/* ── Responsive globals ──────────────────────── */
@media (max-width: 860px) {
  .sh-ham { display: flex; }
  .sh-search { display: none; }
  .sh-actions .sh-action-btn span { display: none; }
}
@media (max-width: 600px) {
  .sh-main { padding: 0 1rem; }
  .sh-catnav-inner { padding: 0 1rem; }
  .home-section, .about-story, .values-inner { padding: 2rem 1rem; }
  .promo-banner .pb-content { padding: 2rem 1.5rem; }
  .lb-grid { grid-template-columns: 1fr 1fr; }
  .lb-item--wide { grid-column: span 2; aspect-ratio: 16/10; }
  .sf-top { padding: 2rem 1rem; }
  .co-form { padding: 1.25rem; }
  .co-summary { padding: 1.25rem; }
}
