/* Nzuri Couture — black & champagne gold (matches the crown/monogram logo) */
:root {
  --bg: #0c0b0a;          /* near-black — matches the logo background */
  --bg-card: #16140f;     /* dark elevated card surface */
  --ink: #f2ece0;         /* warm cream — primary text on dark */
  --ink-soft: #cabfa8;    /* muted cream */
  --ink-faint: #8d8472;   /* faint taupe */
  --gold: #c8a96a;        /* antique champagne gold — sampled from the logo emblem */
  --gold-deep: #9a7c3c;   /* deeper bronze — logo shadow tone */
  --gold-light: #e7d4a2;  /* light champagne — logo highlight */
  --line: #29251d;        /* dark warm divider */
  --surface: #1b1813;     /* elevated dark surface (hover) */
  --choco: #141210;       /* near-black warm (nav/hero base) */
  --choco-deep: #0a0908;  /* deepest near-black (dark text on gold) */
  --shadow: 0 1px 2px rgba(0,0,0,0.35), 0 8px 28px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 70px rgba(0,0,0,0.6);
  --radius: 14px;
  --radius-sm: 8px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg); }
body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
/* Themed scrollbar — gold thumb on the page background (adapts to dark site + light admin via vars) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1200px, 92%); margin: 0 auto; }

/* ===== FADE-IN-UP ANIMATIONS =====
   Subtle reveal motion. .fade-up sits at translateY(20px) + opacity 0 until
   the element either (a) is observed in view by main.js or (b) auto-fires
   on page load for elements above the fold (hero stagger). Disabled
   entirely when the user prefers reduced motion. */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.75s cubic-bezier(0.22,0.61,0.36,1), transform 0.75s cubic-bezier(0.22,0.61,0.36,1); }
  .fade-up.in-view { opacity: 1; transform: translateY(0); }
  /* Hero stagger — auto-fires on load, no JS needed */
  .hero-eyebrow { animation: fadeUp 0.7s 0.05s cubic-bezier(0.22,0.61,0.36,1) both; }
  .hero-title   { animation: fadeUp 0.8s 0.20s cubic-bezier(0.22,0.61,0.36,1) both; }
  .hero-sub     { animation: fadeUp 0.7s 0.38s cubic-bezier(0.22,0.61,0.36,1) both; }
  .hero-cta     { animation: fadeUp 0.7s 0.52s cubic-bezier(0.22,0.61,0.36,1) both; }
  /* Card stagger — paused until each card scrolls into view, so cards below
     the fold on initial load animate when the user scrolls to them, not
     before. On filter/page change, the IO fires immediately because the
     gallery is already on-screen. */
  .gallery .card {
    animation: fadeUp 0.65s cubic-bezier(0.22,0.61,0.36,1) both;
    animation-play-state: paused;
  }
  .gallery .card.in-view { animation-play-state: running; }
  .gallery .card:nth-child(2)  { animation-delay: 0.06s; }
  .gallery .card:nth-child(3)  { animation-delay: 0.12s; }
  .gallery .card:nth-child(4)  { animation-delay: 0.18s; }
  .gallery .card:nth-child(5)  { animation-delay: 0.24s; }
  .gallery .card:nth-child(6)  { animation-delay: 0.30s; }
  .gallery .card:nth-child(7)  { animation-delay: 0.36s; }
  .gallery .card:nth-child(8)  { animation-delay: 0.42s; }
  .gallery .card:nth-child(9)  { animation-delay: 0.48s; }
  .gallery .card:nth-child(n+10) { animation-delay: 0.54s; }
}

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0;
  background: rgba(42,28,15,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,149,106,0.22);
  z-index: 200;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1200px, 92%); margin: 0 auto; padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-logo { height: 78px; width: auto; max-width: 320px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: #f0e9d8; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--choco-deep) !important; padding: 10px 18px; border-radius: 999px; font-weight: 600; }
.nav-cta:hover { background: var(--gold-light); color: var(--choco-deep) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 36px; height: 36px; flex-direction: column; justify-content: center; gap: 5px; z-index: 220; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--gold-light); transition: 0.3s; }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--choco-deep); flex-direction: column; justify-content: center; align-items: center; gap: 32px;
    transform: translateY(-100vh); transition: transform 0.32s ease; z-index: 210; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { font-size: 22px; font-weight: 500; }
  /* Hamburger → X transform when menu open */
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #2a1c0f 0%, #3d2817 50%, #2a1c0f 100%);
  color: #fff; text-align: center; padding: 100px 20px 110px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(184,149,106,0.18), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(184,149,106,0.10), transparent 50%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.hero-title { font-family: var(--serif); font-size: clamp(52px, 9vw, 96px); font-weight: 500; line-height: 1; letter-spacing: -0.01em; margin-bottom: 24px; }
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 18px; color: #e0d3bb; max-width: 560px; margin: 0 auto 38px; }
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; transition: all 0.2s; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--gold); color: var(--choco-deep); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--gold-light); border: 1px solid rgba(184,149,106,0.5); }
.btn-ghost:hover { background: rgba(184,149,106,0.12); border-color: var(--gold); }

/* ===== FILTERS ===== */
.filters { background: var(--bg); padding: 60px 0 24px; }
.filters-bar { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill { background: transparent; border: 1px solid var(--line); padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; cursor: pointer; transition: 0.2s; color: var(--ink-soft); font-family: inherit; }
.pill:hover { border-color: var(--gold); color: var(--ink); }
.pill.active { background: var(--ink); border-color: var(--ink); color: var(--gold-light); }
.filter-pills--cats { flex-wrap: wrap; }
.filter-pills--sizes { flex-wrap: wrap; }
.pill--size { padding: 5px 12px !important; font-size: 13px !important; }
.filter-meta { color: var(--ink-faint); font-size: 14px; margin-top: 8px; }

/* Search + sort row */
.search-sort-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.search-wrap { flex: 1 1 280px; position: relative; }
.search-wrap input {
  width: 100%; padding: 11px 38px 11px 40px;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: inherit; font-size: 14px; background: #fff; color: var(--ink);
  transition: border-color 0.15s;
}
.search-wrap input:focus { outline: none; border-color: var(--gold); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--ink-faint); pointer-events: none; }
.search-clear {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; border: none;
  background: var(--line); color: var(--ink-soft); cursor: pointer; font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.search-clear:hover { background: var(--ink); color: var(--gold-light); }
.search-wrap input:placeholder-shown + .search-clear { display: none; }
.sort-select {
  padding: 10px 36px 10px 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff; color: var(--ink); font-family: inherit; font-size: 14px;
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a3528' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
}
.sort-select:focus { outline: none; border-color: var(--gold); }

/* NEW / Stock urgency / Heart badges */
.badge-new {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--choco-deep);
  font-size: 10px; letter-spacing: 0.2em; padding: 4px 9px; border-radius: 4px;
  font-weight: 800; text-transform: uppercase;
}
.badge-low {
  position: absolute; bottom: 14px; left: 14px;
  background: #fff; color: #b00020;
  font-size: 10px; letter-spacing: 0.08em; padding: 4px 9px; border-radius: 4px;
  font-weight: 700; box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  border: 1px solid #ffd6d6;
}
/* Heart pill — heart icon + fake-social-proof counter (deterministic base
   per item id, +1 when visitor wishlists). Sits bottom-right of card image. */
.heart-btn {
  position: absolute; bottom: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px 6px 9px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.heart-btn:hover { color: #e63946; transform: translateY(-1px); }
.heart-btn .heart-count { font-variant-numeric: tabular-nums; }
.heart-btn.saved { color: #fff; background: rgba(230,57,70,0.92); }
.heart-btn.saved:hover { background: rgba(200,40,55,0.95); color: #fff; }
.heart-btn.saved svg { fill: #fff; }

/* Size guide link on cards */
.size-guide-link {
  font-size: 11.5px; color: var(--ink-faint); text-decoration: underline; cursor: pointer;
  letter-spacing: 0.02em;
}
.size-guide-link:hover { color: var(--gold-deep); }

/* Nav wishlist button */
.nav-wl {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--gold-light); padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(184,149,106,0.3); position: relative;
}
.nav-wl:hover { background: rgba(184,149,106,0.1); border-color: var(--gold); }
.nav-wl.has-items { color: #ffb8c0; border-color: rgba(255,184,192,0.4); }
.nav-wl .wl-count { font-size: 12px; font-weight: 700; min-width: 16px; text-align: center; }
.nav-wl .wl-count:empty { display: none; }

/* Modal head + close */
.modal-card { position: relative; }
.modal-card--wide { max-width: 640px; }
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--ink-faint);
  width: 32px; height: 32px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; transition: 0.15s;
}
.modal-close:hover { background: var(--surface); color: var(--ink); }

/* Wishlist rows */
.wl-body { max-height: 60vh; overflow-y: auto; }
.wl-row {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.wl-row:last-child { border-bottom: none; }
.wl-row img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.wl-row-body { flex: 1; min-width: 0; }
.wl-row-name { font-family: var(--serif); font-size: 16px; font-weight: 600; }
.wl-row-meta { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.wl-remove {
  background: none; border: none; color: var(--ink-faint); font-size: 22px;
  cursor: pointer; padding: 4px 8px; line-height: 1; border-radius: 50%;
}
.wl-remove:hover { background: var(--surface); color: #b00020; }
.wl-footer { margin-top: 14px; display: flex; justify-content: flex-end; }
.wl-footer .btn-card { padding: 12px 22px; min-width: 200px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* Size guide content */
.size-guide-intro { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.6; }
.size-guide-section { margin-bottom: 16px; }
.size-guide-section h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.sg-table-wrap { overflow-x: auto; }
.sg-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.sg-table th, .sg-table td { padding: 7px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.sg-table th { background: var(--surface); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.size-guide-tip { font-size: 12px; color: var(--ink-faint); font-style: italic; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }

/* Item picker (used by WhatsApp Marketing broadcast — search + tap to add) */
.set-selected-items { display: flex; flex-wrap: wrap; gap: 6px; min-height: 24px; }
.set-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 99px;
  padding: 4px 4px 4px 6px; font-size: 13px;
}
.set-chip img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.set-chip button {
  background: var(--line); color: var(--ink-soft); border: none;
  width: 20px; height: 20px; border-radius: 50%; cursor: pointer;
  font-size: 14px; line-height: 1;
}
.set-chip button:hover { background: #b00020; color: #fff; }
.set-item-picker {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px; margin-top: 8px;
  max-height: 320px; overflow-y: auto;
  padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}
.set-item-picker::-webkit-scrollbar { width: 8px; }
.set-item-picker::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.set-item-picker::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.set-item-picker::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
.set-pick {
  display: flex; gap: 8px; align-items: center; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  cursor: pointer; text-align: left; font-family: inherit; transition: 0.15s;
}
.set-pick:hover { background: var(--surface); border-color: var(--gold); }
.set-pick img { width: 36px; height: 36px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.set-pick-body { min-width: 0; flex: 1; }
.set-pick-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.set-pick-meta { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
@media (max-width: 600px) {
  .set-item-picker { max-height: 280px; grid-template-columns: 1fr; }
}

/* Broadcast recipients */
.broadcast-recipients { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; max-height: 280px; overflow-y: auto; padding: 4px; background: #fff; border: 1px solid var(--line); border-radius: 8px; }
.broadcast-recipient {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  grid-template-rows: auto auto;
  gap: 2px 8px;
  padding: 8px 10px; border: 1px solid var(--line); border-radius: 6px;
  cursor: pointer; font-family: inherit; transition: 0.15s; background: #fff;
}
.broadcast-recipient.on { background: var(--surface); border-color: var(--gold); }
.broadcast-recipient input { grid-row: 1 / 3; width: 16px; height: 16px; cursor: pointer; accent-color: var(--gold-deep); }
.broadcast-recipient-name { grid-column: 2; font-size: 13px; font-weight: 600; color: var(--ink); }
.broadcast-recipient-phone { grid-column: 3; font-size: 11px; color: var(--ink-faint); font-family: monospace; align-self: start; }
.broadcast-recipient-meta { grid-column: 2 / -1; font-size: 11px; color: var(--ink-faint); }
@media (max-width: 600px) { .broadcast-recipients { grid-template-columns: 1fr; } }

/* Search-gap pills (Insights → searches with no results) */
.search-gap-pill {
  display: inline-block;
  background: #fff4e0;
  border: 1px solid #f0c060;
  color: #a06000;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.search-gap-pill strong { color: #6e4000; }

/* Modal open state */
.modal { display: none; }
.modal.open { display: flex; }

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; padding: 16px 0 80px; }
.card { background: var(--bg-card); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; cursor: zoom-in; background: var(--surface); display: flex; align-items: center; justify-content: center; }
.card-carousel { display: flex; width: 100%; height: 100%; transition: transform 0.32s ease; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; flex: 0 0 100%; }
.card:hover .card-carousel .card-img:not(:hover) { transform: none; }
.card-img-wrap:not(.has-carousel) .card:hover .card-img { transform: scale(1.04); }
.card.sold .card-img { filter: grayscale(0.3) brightness(0.9); }
.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 3; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); cursor: pointer; transition: 0.15s; }
.carousel-dot.active { background: #fff; width: 16px; border-radius: 99px; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.85); color: var(--ink); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.18s, background 0.15s;
}
.carousel-arrow.prev { left: 8px; }
.carousel-arrow.next { right: 8px; }
.card-img-wrap.has-carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: #fff; }
@media (max-width: 760px) {
  .carousel-arrow { opacity: 0.85; width: 28px; height: 28px; font-size: 18px; }
}

/* Lightbox arrows */
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 510;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(184,149,106,0.4);
  background: rgba(255,255,255,0.06); color: var(--gold-light); font-size: 32px; line-height: 1;
  cursor: pointer; transition: 0.15s;
  display: none; align-items: center; justify-content: center;
}
.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }
.lightbox.open .lightbox-arrow { display: flex; }
.lightbox-arrow:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 760px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 26px; }
  .lightbox-arrow.prev { left: 8px; }
  .lightbox-arrow.next { right: 8px; }
}

/* Admin: additional-images preview */
.extra-imgs-preview { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.extra-img-thumb { position: relative; }
.extra-img-thumb img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.extra-img-remove {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%; border: none; cursor: pointer;
  background: #b00020; color: #fff; font-size: 14px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.extra-img-remove:hover { background: #800018; }

.badge-sold { position: absolute; top: 14px; left: 14px; background: var(--choco-deep); color: var(--gold); font-size: 11px; letter-spacing: 0.2em; padding: 6px 12px; border-radius: 4px; font-weight: 700; text-transform: uppercase; border: 1px solid var(--gold); }
.badge-cat { position: absolute; top: 14px; right: 14px; background: rgba(42,28,15,0.78); color: #fff; font-size: 10px; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 4px; font-weight: 600; text-transform: uppercase; }

.size-chips { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.size-chip {
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 9px;
  color: var(--ink); letter-spacing: 0.04em;
  font-family: inherit; cursor: default;
}
.size-chip.low { border-color: #e8a010; color: #a06000; background: #fff8e8; }
.size-chips.pickable .size-chip { cursor: pointer; transition: 0.15s; padding: 4px 11px; }
.size-chips.pickable .size-chip:hover { border-color: var(--gold); background: var(--gold-light); color: var(--ink); }
.size-chips.pickable .size-chip.selected { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.size-hint {
  font-size: 11px; color: #b00020; letter-spacing: 0.02em;
  font-weight: 600; font-style: italic; margin-left: 6px;
  display: none;  /* hidden until user tries to enquire without a size */
}
.size-chips.prompted .size-hint { display: inline; }
.size-chips.pickable:has(.size-chip.selected) .size-hint { display: none; }
.size-chips.shake { animation: chipShake 0.45s ease; }
@keyframes chipShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

/* Public-site toast */
.public-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: var(--choco-deep); color: var(--gold-light);
  padding: 12px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  z-index: 2000; transition: transform 0.28s ease;
  max-width: calc(100vw - 32px); text-align: center;
}
.public-toast.show { transform: translateX(-50%) translateY(0); }

.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.card-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.card-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.card-price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.card-price small { font-size: 12px; color: var(--ink-faint); font-weight: 400; font-family: var(--sans); }
.card-actions { display: flex; gap: 8px; margin-top: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.btn-card { flex: 1; text-align: center; padding: 11px 12px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--line); background: transparent; color: var(--ink); font-family: inherit; transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-card:hover:not(:disabled) { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card.primary { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card.primary:hover:not(:disabled) { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-card.soldout { background: var(--surface); color: var(--ink-faint); border-color: var(--line); }
.btn-card.soldout:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-card .wa-icon, .btn-card .ig-icon { flex-shrink: 0; }
.btn-card.ig {
  flex: 0 0 auto;
  padding: 11px 14px;
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
}
.btn-card.ig:hover { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); }
.card-actions { gap: 6px; flex-wrap: wrap; }
.card-actions .btn-card.primary { flex: 1 1 auto; min-width: 110px; }
@media (max-width: 760px) {
  .card-actions .btn-card.primary { min-width: 0; }
  .card-actions .btn-card.ig { padding: 9px 8px; }
}

/* ===== PAGINATION ===== */
.pager-wrap { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px; padding: 36px 16px 20px; }
.pager-btn { min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.15s; display: inline-flex; align-items: center; justify-content: center; }
.pager-btn:hover:not(.disabled):not(.active):not(.ellipsis) { background: var(--gold-light); border-color: var(--gold); color: var(--ink); }
.pager-btn.active { background: var(--ink); color: var(--gold-light); border-color: var(--ink); cursor: default; }
.pager-btn.disabled { opacity: 0.4; cursor: not-allowed; }
.pager-btn.ellipsis { border: none; background: transparent; cursor: default; }

/* ===== INFO ===== */
.info { background: #ffffff; padding: 80px 0; border-top: 1px solid var(--line); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.info h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; margin-bottom: 18px; }
.info p { color: var(--ink-soft); margin-bottom: 14px; }
.shop-card { margin-top: 16px; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(201,169,97,0.06); border-radius: 6px; line-height: 1.6; font-size: 15px; }
.shop-card a { color: var(--gold-deep); font-weight: 600; }
.shop-map { margin-top: 18px; box-shadow: var(--shadow); border-radius: 10px; overflow: hidden; }
.shop-map iframe { display: block; }
.steps { list-style: none; counter-reset: step; }
.steps li { counter-increment: step; padding: 14px 0 14px 50px; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 14px; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; }
.steps li:last-child { border-bottom: none; }
.steps strong { color: var(--ink); }
@media (max-width: 760px) { .info-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ===== FOOTER (four-column standard: Brand · Visit · Shop · Connect) ===== */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--choco) 0%, #080605 100%);
  color: rgba(216,210,196,0.75);
  padding: 62px 0 26px;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.5;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.footer h4 {
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans);
}

/* Brand column */
.footer-brandhead { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-logo { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); background: #000; flex-shrink: 0; }
.footer-brandname { display: flex; flex-direction: column; }
.footer-name { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--ink); line-height: 1.05; }
.footer-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.footer-blurb { font-size: 13.5px; line-height: 1.65; max-width: 330px; margin-bottom: 18px; }
.footer-pay { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer-pay-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.pay-chip { font-size: 11.5px; padding: 4px 11px; border-radius: 999px; background: rgba(200,169,106,0.12); border: 1px solid rgba(200,169,106,0.35); color: var(--gold-light); }

/* Visit column */
.footer-address { font-style: normal; font-size: 14px; line-height: 1.7; color: rgba(216,210,196,0.82); margin-bottom: 14px; }
.footer-directions { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 13.5px; font-weight: 600; transition: color 0.2s; }
.footer-directions svg { width: 15px; height: 15px; }
.footer-directions:hover { color: var(--gold-light); }

/* Shop column */
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-nav a { position: relative; padding-left: 14px; font-size: 14px; color: rgba(216,210,196,0.82); transition: color 0.2s; }
.footer-nav a::before { content: "\203A"; position: absolute; left: 0; color: var(--gold); opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-nav a:hover::before { opacity: 1; transform: translateX(0); }

/* Connect column */
.footer-socials { display: flex; flex-direction: column; }
.social-card { display: flex; align-items: center; gap: 12px; padding: 12px 0; }
.social-card + .social-card { border-top: 1px solid rgba(200,169,106,0.18); }
.social-ic { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(200,169,106,0.14); color: var(--gold); transition: 0.2s; }
.social-ic svg { width: 18px; height: 18px; }
.social-card:hover .social-ic { background: var(--gold); color: var(--choco-deep); }
.social-txt { display: flex; flex-direction: column; line-height: 1.3; }
.social-txt strong { font-size: 14px; color: var(--ink); font-weight: 600; }
.social-txt span { font-size: 12.5px; color: rgba(216,210,196,0.7); }

/* Bottom strip */
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(200,169,106,0.2); display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 12px; color: rgba(216,210,196,0.6); }
.footer-credit { color: var(--gold); transition: color 0.2s; }
.footer-credit:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(42,28,15,0.97); display: none; align-items: center; justify-content: center; z-index: 500; padding: 24px; flex-direction: column; gap: 16px; }
.lightbox.open { display: flex; animation: fadeIn 0.2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-img { max-width: min(900px, 100%); max-height: 78vh; border-radius: 12px; box-shadow: 0 20px 80px rgba(0,0,0,0.6); }
.lightbox-caption { color: var(--gold-light); font-family: var(--serif); font-size: 18px; text-align: center; max-width: 600px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.06); border: 1px solid rgba(184,149,106,0.45); color: var(--gold-light); width: 44px; height: 44px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: 0.2s; line-height: 1; }
.lightbox-close:hover { background: var(--gold); color: var(--ink); }

/* ===== ADMIN ===== */
.admin-wrap { max-width: 1140px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.admin-header h1 { font-family: var(--serif); font-size: 36px; font-weight: 500; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-admin { padding: 10px 18px; border-radius: 8px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; font-weight: 500; font-size: 14px; transition: 0.2s; }
.btn-admin:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-admin.primary { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.btn-admin.primary:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-admin.danger { color: #b00020; border-color: #f3c5cc; }
.btn-admin.danger:hover { background: #b00020; color: #fff; border-color: #b00020; }
.btn-admin.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; }
.btn-admin.gold:hover { background: var(--gold-deep); color: #fff; border-color: var(--gold-deep); }

/* Sticky admin sub-nav */
.admin-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  margin: 0 -24px 24px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  scrollbar-width: thin;
}
.admin-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.15s;
  white-space: nowrap;
}
.admin-nav a:hover {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}
.admin-nav a.admin-nav-cta {
  background: var(--gold);
  color: var(--choco-deep);
  border-color: var(--gold);
  font-weight: 700;
}
.admin-nav a.admin-nav-cta:hover {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
}
.admin-nav-count {
  display: inline-block;
  background: var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 99px;
  margin-left: 2px;
}
.admin-nav a:hover .admin-nav-count { background: rgba(255,255,255,0.15); color: var(--gold-light); }

/* Smooth scroll + offset so sticky nav doesn't hide section headers */
html { scroll-behavior: smooth; }
#addForm, #salesDash, #invDash, #allItems { scroll-margin-top: 80px; }

@media (max-width: 600px) {
  .admin-nav {
    margin: 0 -16px 20px;
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .admin-nav a { padding: 6px 12px; font-size: 12.5px; flex-shrink: 0; }
  .admin-nav .admin-nav-cta { width: 100%; text-align: center; padding: 9px 12px; font-size: 13.5px; }
  /* Inventory table — compact on mobile + capped height with internal scroll if needed */
  .inv-table { font-size: 12px; min-width: 640px; }
  .inv-table th, .inv-table td { padding: 7px 8px; }
  .inv-table .item-img { width: 32px; height: 32px; }
  .inv-table-wrap { max-height: 520px; overflow-y: auto; border: 1px solid var(--line); border-radius: 8px; }
  .inv-filter-bar { margin: 6px 0 10px; }
  #invDash .dash-title, #invDash .section-divider { font-size: 20px; }
  #invDash .section-divider span { font-size: 11px; }
}

/* Sales dashboard */
.dash { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.dash-title { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 18px; color: var(--ink); }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.kpi-card { background: linear-gradient(135deg, var(--choco-deep), var(--choco)); color: var(--gold-light); border-radius: 12px; padding: 18px 20px; }
.kpi-card:nth-child(2) { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--choco-deep); }
.kpi-card:nth-child(3) { background: linear-gradient(135deg, var(--choco), var(--choco-deep)); }
.kpi-card:nth-child(4) { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.kpi-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; margin-bottom: 8px; }
.kpi-count { font-family: var(--serif); font-size: 36px; font-weight: 600; line-height: 1.1; }
.kpi-unit { font-size: 14px; opacity: 0.7; font-family: inherit; font-weight: 400; }
.kpi-revenue { font-size: 13px; margin-top: 6px; opacity: 0.85; font-weight: 500; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dash-card { border: 1px solid var(--line); border-radius: 10px; padding: 18px; }
.dash-card h3 { font-family: var(--serif); font-size: 18px; margin: 0 0 14px; color: var(--ink); font-weight: 600; }
.cat-bars { display: flex; flex-direction: column; gap: 10px; }
.cat-bar-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; }
.cat-bar-name { font-weight: 600; color: var(--ink); }
.cat-bar-meta { color: var(--ink-soft); font-size: 12px; }
.cat-bar-track { background: var(--line); border-radius: 99px; height: 6px; overflow: hidden; }
.cat-bar-fill { background: var(--gold); height: 100%; transition: width 0.4s; }
.recent-list { display: flex; flex-direction: column; gap: 10px; }
.recent-row { display: flex; gap: 10px; align-items: center; }
.recent-row img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.recent-name { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.recent-meta { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 700px) { .dash-grid { grid-template-columns: 1fr; } }

/* Inventory dashboard */
.inv-kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-bottom: 20px; }
.inv-kpi { border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: #fff; }
.inv-kpi.warn { border-color: #f0a030; background: #fffbf0; }
.inv-kpi.danger { border-color: #e05050; background: #fff5f5; }
.inv-kpi.success { border-color: #50a070; background: #f0fff6; }
.inv-kpi-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
.inv-kpi-val { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; }
.inv-kpi-sub { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

.inv-filter-bar { display: flex; gap: 8px; margin: 8px 0 14px; flex-wrap: wrap; }
.inv-filter-bar .pill { font-weight: 600; }
.inv-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.inv-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 720px; }
.inv-table th { text-align: left; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); padding: 8px 12px; border-bottom: 2px solid var(--line); background: var(--surface); }
.inv-table td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.inv-table tr:last-child td { border-bottom: none; }
.inv-table tr:hover td { background: var(--surface); }
.inv-table .item-img { width: 38px; height: 38px; border-radius: 6px; object-fit: cover; }
.inv-table .stock-pill { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.stock-pill.ok { background: #e8f8ef; color: #1a7a40; }
.stock-pill.low { background: #fff4e0; color: #a06000; }
.stock-pill.zero { background: #ffeaea; color: #b00020; }
.stock-cells { display: flex; flex-wrap: wrap; gap: 4px; }
.stock-cell { padding: 2px 7px; border-radius: 4px; font-size: 11px; font-weight: 600; border: 1px solid var(--line); }
.stock-cell.ok { border-color: #b0d8c0; color: #1a7a40; background: #f0faf4; }
.stock-cell.low { border-color: #f0c060; color: #a06000; background: #fffbf0; }
.stock-cell.zero { border-color: #f0b0b0; color: #b00020; background: #fff5f5; }
.restock-btn { padding: 4px 10px; font-size: 11px; border: 1px solid var(--line); border-radius: 6px; cursor: pointer; background: #fff; font-family: inherit; transition: 0.15s; }
.restock-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* IG quick-add panel — the fastest path; make it visually lead the form */
.ig-quick-add {
  background: linear-gradient(135deg, #fff5e0 0%, #f5e2bb 100%);
  border: 2px solid var(--gold);
  border-left: 6px solid var(--gold-deep);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(184,149,106,0.18);
  position: relative;
}
.ig-quick-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 6px; }
.ig-quick-badge {
  display: inline-block;
  background: var(--choco-deep); color: var(--gold);
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em;
  padding: 4px 10px; border-radius: 999px;
}
.ig-quick-title {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--ink); margin: 0;
}
.ig-quick-desc {
  font-size: 13.5px; color: var(--ink-soft); margin: 0 0 12px;
  line-height: 1.5;
}
.ig-quick-row { display: flex; gap: 8px; }
.ig-quick-row input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--gold-deep); border-radius: 8px;
  font-family: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.ig-quick-row input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,106,0.18); }
.ig-quick-row .btn-admin { flex-shrink: 0; padding: 12px 20px; font-weight: 700; }
.ig-quick-status { font-size: 12.5px; margin: 10px 0 0; min-height: 18px; }
.ig-quick-status.ok { color: #1a7a40; font-weight: 600; }
.ig-quick-status.err { color: #b00020; }

/* "OR enter manually below" divider */
.manual-entry-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0 18px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 600;
}
.manual-entry-divider::before, .manual-entry-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

@media (max-width: 600px) {
  .ig-quick-add { padding: 16px; }
  .ig-quick-title { font-size: 19px; }
  .ig-quick-row { flex-direction: column; }
  .ig-quick-row .btn-admin { padding: 11px 16px; }
}

/* Admin item form */
.admin-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin-bottom: 24px; }
.admin-form h2 { font-family: var(--serif); font-size: 24px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input[type="text"], .field input[type="number"], .field input[type="url"], .field input[type="tel"], .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; font-family: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field-checkbox { display: flex; align-items: center; gap: 10px; }
.field-checkbox input { width: auto; }

/* Stock entry grid */
.stock-entry-group { margin-bottom: 10px; }
.stock-entry-group label.group-label { font-size: 11px; color: #999; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.stock-entry-row { display: flex; flex-wrap: wrap; gap: 8px; }
.stock-entry-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stock-entry-item .size-lbl { font-size: 11px; font-weight: 700; color: var(--ink-soft); }
.stock-entry-item input[type="number"] { width: 56px; text-align: center; padding: 7px 6px; font-size: 13px; }

/* Custom-size rows */
.custom-size-rows { display: flex; flex-direction: column; gap: 6px; }
.custom-size-row {
  display: grid;
  grid-template-columns: 1fr 90px 36px;
  gap: 6px;
  align-items: center;
}
.custom-size-row input {
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-family: inherit; font-size: 14px; background: #fff;
}
.custom-size-row .custom-size-qty { text-align: center; padding-left: 4px; padding-right: 4px; }
.custom-size-row .custom-size-remove {
  width: 36px; height: 36px; padding: 0; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}

/* Bulk action bar */
.bulk-bar {
  position: sticky; top: 64px; z-index: 40;
  display: flex; align-items: center; gap: 10px;
  background: var(--choco-deep); color: var(--gold-light);
  padding: 10px 14px; border-radius: 10px; margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.bulk-bar strong { font-size: 18px; font-family: var(--serif); color: var(--gold); margin-right: 4px; }
.bulk-bar .btn-admin { padding: 6px 12px; font-size: 12.5px; }

/* Admin list — scrollable container so 200+ items don't extend the page forever.
   Tight max-height so the section doesn't dominate the page; owners search to find items. */
.admin-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  max-height: 520px;
  overflow-y: auto;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}
.admin-list::-webkit-scrollbar { width: 10px; }
.admin-list::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.admin-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.admin-list::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
@media (max-width: 600px) {
  .admin-list {
    max-height: 400px;
    padding: 6px;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  /* Compact list-row layout: 78x78 thumbnail (FIXED, not stretched), tight body */
  .admin-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;       /* image centred — doesn't stretch with content */
    overflow: hidden;
  }
  .admin-card img {
    width: 78px;
    height: 78px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    align-self: stretch;
  }
  .admin-card-body { padding: 6px 8px; min-width: 0; }
  .admin-card-name {
    font-size: 13px; line-height: 1.2; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  /* Hide the category badge row on mobile — saves vertical space, category is in the name anyway */
  .admin-card-body > div[style*="margin:3px 0"] { display: none; }
  .admin-card-price { font-size: 12px; margin-top: 2px; color: var(--ink); font-weight: 600; }
  .admin-card-price .admin-card-mobile-stock {
    display: inline; font-weight: 400; font-size: 11px; color: var(--ink-faint);
  }
  /* Hide the verbose stock-summary line on mobile — already inlined into price line above */
  .admin-card-stock { display: none; }
  /* All four action buttons must fit in ONE row */
  .admin-card-actions {
    gap: 3px; margin-top: 5px; flex-wrap: nowrap;
  }
  .admin-card-actions button {
    padding: 4px 4px; font-size: 10.5px;
    flex: 1 1 0; min-width: 0;
    line-height: 1.1;
  }
  .bulk-check { top: 3px; left: 3px; padding: 2px; }
  .bulk-check input { width: 14px; height: 14px; }
}

/* Admin item search bar — sits above the grid */
.admin-list-search {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; margin-bottom: 10px;
  transition: border-color 0.15s;
}
.admin-list-search:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,149,106,0.15); }
.admin-list-search svg { color: var(--ink-faint); flex-shrink: 0; }
.admin-list-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 14px; color: var(--ink);
}
.admin-list-search input::placeholder { color: var(--ink-faint); }
.admin-list-search span {
  font-size: 12px; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.02em;
  white-space: nowrap;
}
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; position: relative; transition: 0.2s; }
.admin-card.bulk-selected { box-shadow: 0 0 0 3px var(--gold); border-color: var(--gold); }
.bulk-check {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(255,255,255,0.92); border-radius: 4px; padding: 4px;
  cursor: pointer; display: flex;
}
.bulk-check input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--gold-deep); }
.admin-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.admin-card-body { padding: 12px 14px; }
.admin-card-name { font-family: var(--serif); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.admin-card-price { color: var(--gold-deep); font-weight: 600; font-size: 14px; }
.admin-card-stock { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.admin-card-mobile-stock { display: none; }  /* hidden on desktop — full stock line below covers it */
.admin-card-actions { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.admin-card-actions button { flex: 1; padding: 7px 8px; font-size: 12px; border-radius: 6px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: inherit; transition: 0.15s; }
.admin-card-actions button:hover { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
.admin-card-actions .danger:hover { background: #b00020; color: #fff; border-color: #b00020; }

/* Modal */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.modal-card { background: #fff; border-radius: 14px; padding: 28px; max-width: 500px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,0.3); max-height: 90vh; overflow-y: auto; }
.modal-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; margin: 0 0 4px; }
.modal-card p.sub { color: #666; font-size: 14px; margin-bottom: 18px; }

/* Login */
.login-wrap { max-width: 440px; margin: 100px auto; padding: 44px 40px 40px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.login-wrap h1 { font-family: var(--serif); font-size: 34px; margin-bottom: 8px; text-align: center; }
.login-wrap p { color: var(--ink-faint); font-size: 14px; text-align: center; margin-bottom: 24px; }
.login-wrap .field input { padding: 16px 18px; font-size: 16px; letter-spacing: 0.06em; }
.login-wrap .field label { font-size: 13px; }
.login-wrap .btn-admin { padding: 14px 18px; font-size: 15px; }

/* Toast */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: var(--gold-light); padding: 12px 20px; border-radius: 8px; box-shadow: var(--shadow-lg); transform: translateY(120%); transition: 0.3s; z-index: 2000; font-size: 14px; }
.toast.show { transform: translateY(0); }

/* Section divider */
.section-divider { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 32px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.section-divider span { font-family: var(--sans); font-size: 12px; color: var(--ink-faint); font-weight: 400; }

/* ===== MOBILE ===== */
@media (max-width: 760px) {
  .nav-inner { padding: 8px 0; }
  .brand-logo { height: 64px; max-width: 300px; }
  .hero { padding: 48px 16px 56px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 16px; }
  .hero-title { font-size: clamp(42px, 11vw, 60px); margin-bottom: 16px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 26px; line-height: 1.5; }
  .hero-cta { gap: 10px; }
  .btn { padding: 13px 22px; font-size: 13px; }
  .filters { padding: 40px 0 16px; }
  .section-title { font-size: clamp(32px, 9vw, 44px); }
  /* Filter pills wrap to multiple rows on mobile (no horizontal scroll) */
  .filter-pills--cats, .filter-pills--sizes {
    flex-wrap: wrap;
    gap: 6px;
  }
  .filters-bar { width: 100%; }
  .filters-bar .filter-pills { width: auto; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 14px; padding: 12px 0 50px; }
  .card-body { padding: 11px 12px 12px; gap: 6px; }
  .card-title { font-size: 16px; line-height: 1.2; }
  .card-desc { font-size: 12px; line-height: 1.45; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .card-price { font-size: 17px; }
  .card-price small { font-size: 11px; }
  .card-actions { gap: 5px; padding-top: 8px; margin-top: 8px; }
  .btn-card { padding: 9px 6px; font-size: 11.5px; gap: 4px; }
  .btn-card .wa-icon, .btn-card .ig-icon { width: 13px; height: 13px; }
  .size-chip { font-size: 10.5px; padding: 2px 7px; }
  .badge-cat { font-size: 9px; padding: 3px 8px; }
  .badge-sold { font-size: 10px; padding: 5px 10px; }
  .info { padding: 56px 0; }
  .info h2 { font-size: 28px; margin-bottom: 14px; }
  .steps li { padding: 12px 0 12px 46px; font-size: 14px; }
  .footer { padding: 44px 0 24px; }
  .footer-grid { text-align: left; }
  .lightbox { padding: 16px; }
  .lightbox-img { max-height: 70vh; border-radius: 8px; }
  .lightbox-caption { font-size: 15px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 22px; }
  .admin-wrap { padding: 24px 16px 60px; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .brand-text { font-size: 17px; }
}

/* ====================================================================
   IG SYNC BANNER — top of admin, conspicuous. Reskinned to Ryker's
   chocolate/champagne palette (no lime green — would clash). The dark
   banner anchors the page; the champagne CTA reads as the primary action.
   ==================================================================== */
.ig-sync-banner {
  background: linear-gradient(135deg, var(--choco-deep) 0%, var(--choco) 100%);
  color: #f5efe5;
  border-radius: 16px;
  padding: 22px 26px 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(184,149,106,0.4);
  box-shadow: 0 12px 32px rgba(42,28,15,0.18), 0 1px 0 rgba(255,255,255,0.04) inset;
  position: relative;
  overflow: hidden;
}
.ig-sync-banner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light) 50%, var(--gold-deep));
}
.ig-sync-banner-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.ig-sync-banner-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--choco-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(184,149,106,0.4);
}
.ig-sync-banner-text h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 4px;
  color: #f5efe5;
}
.ig-sync-banner-text p {
  font-size: 13.5px;
  color: #e6dcc8;
  margin: 0;
  line-height: 1.5;
  max-width: 640px;
}
.ig-sync-banner-text strong { color: var(--gold-light); font-weight: 600; }
.ig-sync-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  color: var(--choco-deep);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 6px 18px rgba(138,111,68,0.4);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  white-space: nowrap;
}
.ig-sync-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.ig-sync-cta:active { transform: translateY(1px); }
.ig-sync-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ig-sync-cta svg { transition: transform 0.2s ease; }
.ig-sync-cta:hover:not(:disabled) svg { transform: rotate(60deg); }
.ig-sync-banner-status {
  margin-top: 16px;
  font-size: 13px;
  color: #e6dcc8;
  min-height: 18px;
}
.ig-sync-banner-status:empty { display: none; }
@media (max-width: 720px) {
  .ig-sync-banner { padding: 18px 18px 20px; }
  .ig-sync-banner-head { grid-template-columns: auto 1fr; gap: 14px; }
  .ig-sync-banner-icon { width: 44px; height: 44px; }
  .ig-sync-banner-text h2 { font-size: 20px; }
  .ig-sync-banner-text p { font-size: 12.5px; }
  .ig-sync-cta {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* IG sync list — review rows with editable name + category + parsed sizes */
.ig-sync-list {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 640px; overflow-y: auto; padding: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--surface);
}
.ig-sync-list::-webkit-scrollbar { width: 8px; }
.ig-sync-list::-webkit-scrollbar-track { background: var(--surface); border-radius: 4px; }
.ig-sync-list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.ig-sync-list::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
.ig-sync-list:empty { display: none; }
.ig-sync-row {
  display: grid;
  grid-template-columns: 30px 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.ig-sync-check { display: flex; align-items: center; justify-content: center; }
.ig-sync-check input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--gold-deep);
  cursor: pointer;
}
.ig-sync-row img {
  width: 92px; height: 92px; object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}
.ig-sync-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ig-sync-row-1 { display: flex; gap: 8px; flex-wrap: wrap; }
.ig-sync-name {
  flex: 1 1 180px; min-width: 0;
  padding: 8px 10px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  font-family: inherit; color: var(--ink);
}
.ig-sync-name:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(184,149,106,0.18); }
.ig-sync-cat {
  padding: 8px 10px; font-size: 13px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  font-family: inherit; color: var(--ink);
}
.ig-sync-row-2 { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 12.5px; }
.ig-sync-size {
  color: var(--gold-deep); font-weight: 600;
  background: rgba(184,149,106,0.12); padding: 2px 10px; border-radius: 99px;
  font-size: 12px; letter-spacing: 0.02em;
}
.ig-sync-postlink { color: var(--ink-faint); font-size: 11.5px; }
.ig-sync-postlink:hover { color: var(--gold-deep); }
.ig-sync-caption {
  font-size: 12px; color: var(--ink-faint); font-style: italic;
  line-height: 1.4;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
@media (max-width: 640px) {
  .ig-sync-row { grid-template-columns: 24px 72px 1fr; padding: 8px; gap: 8px; }
  .ig-sync-row img { width: 72px; height: 72px; }
  .ig-sync-name { font-size: 13px; padding: 6px 8px; }
}

/* =====================================================================
   NZURI COUTURE — BLACK & CHAMPAGNE GOLD THEME
   The :root above is the public (dark) palette. Admin was authored against
   a light palette and sets its own body background, so re-pin the light
   neutrals scoped to the admin body — keeps admin text/buttons readable.
   ===================================================================== */
body[style*="f8f6f2"] {
  --bg: #f5efe5;
  --bg-card: #ffffff;
  --ink: #2a1c0f;
  --ink-soft: #4a3528;
  --ink-faint: #8a7460;
  --line: #e7ddcb;
  --surface: #efe6d4;
  --choco: #3d2817;
  --choco-deep: #2a1c0f;
}

/* ---- Public site dark-theme component overrides ---- */
.nav { background: rgba(10,9,8,0.92); border-bottom-color: rgba(200,169,106,0.22); }
.hero { background: linear-gradient(135deg, #0a0908 0%, #161210 50%, #0a0908 100%); }
.hero::before {
  background:
    radial-gradient(circle at 25% 35%, rgba(200,169,106,0.16), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(200,169,106,0.09), transparent 50%);
}
.btn-ghost { border-color: rgba(200,169,106,0.5); color: var(--gold-light); }
.btn-ghost:hover { background: rgba(200,169,106,0.12); border-color: var(--gold); }

/* Inputs + surfaces that hardcoded white in the light template */
.search-wrap input, #searchInput { background: var(--surface); color: var(--ink); border-color: var(--line); }
.sort-select { background: var(--surface); color: var(--ink); border-color: var(--line); }
.info { background: #100e0b; border-top-color: var(--line); }
.pager-btn { background: var(--surface); color: var(--ink); border-color: var(--line); }

/* Primary / active fills → champagne gold with near-black text (logo language) */
.pill.active { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); }
.btn-card { border-color: rgba(200,169,106,0.32); }
.btn-card:hover:not(:disabled) { background: rgba(200,169,106,0.12); color: var(--gold-light); border-color: var(--gold); }
.btn-card.primary { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); }
.btn-card.primary:hover:not(:disabled) { background: var(--gold-light); color: var(--choco-deep); border-color: var(--gold-light); }
.btn-card.soldout { background: var(--surface); color: var(--ink-soft); border-color: var(--line); }
.btn-card.soldout:hover { background: rgba(200,169,106,0.1); color: var(--gold-light); border-color: var(--gold); }
.pager-btn.active { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); cursor: default; }
.pager-btn:hover:not(.disabled):not(.active):not(.ellipsis) { background: rgba(200,169,106,0.14); border-color: var(--gold); color: var(--gold-light); }
.size-chips.pickable .size-chip.selected, .size-chip.selected { background: var(--gold); color: var(--choco-deep); border-color: var(--gold); }
.search-clear:hover { background: var(--gold); color: var(--choco-deep); }
.steps li::before { background: var(--gold); color: var(--choco-deep); }

/* Category badge: move to bottom-left so it never overlaps the top-right
   wishlist/like heart (the overlap bug flagged in CATALOG-STANDARDS). */
.badge-cat {
  top: auto; right: auto; bottom: 14px; left: 14px;
  background: rgba(10,9,8,0.82); color: var(--gold-light);
  max-width: calc(100% - 28px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== SALE / MARKDOWN ===== */
/* On-Sale filter pill — red accent so it stands out from the gold filter row. */
.pill-sale { border-color: rgba(192,57,43,0.55); color: #e8796d; }
.pill-sale:hover { border-color: #c0392b; color: #ff8d7e; background: rgba(192,57,43,0.12); }
.pill-sale.active { background: #c0392b; border-color: #c0392b; color: #fff; }
/* SALE ribbon — red, top-left. A card is never both sold-out and on-sale, and NEW
   is suppressed while on sale, so the top-left corner never double-stacks. */
.badge-sale {
  position: absolute; top: 14px; left: 14px;
  background: #c0392b; color: #fff;
  font-size: 11px; letter-spacing: 0.2em; padding: 6px 12px; border-radius: 4px;
  font-weight: 700; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(192,57,43,0.5); z-index: 2;
}
/* Card sale pricing: original struck-through, sale price in red, a -X% pill. */
.card-price-was {
  font-family: var(--serif); font-size: 17px; font-weight: 500;
  color: var(--ink-faint); text-decoration: line-through;
  text-decoration-color: rgba(141,132,114,0.7); margin-right: 8px;
}
.card-price-sale { color: #ff6b5b; }
.price-off {
  font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  color: #fff; background: #c0392b; border-radius: 999px; padding: 3px 8px;
  align-self: center; margin-left: 8px;
}
/* "Only N left" badge -> bottom-RIGHT so it never overlaps the bottom-left category badge. */
.badge-low { left: auto; right: 14px; }
/* Admin bulk-sale modal: discount-mode toggle active state (admin is light-pinned). */
.sale-mode-btn.active { background: var(--ink); color: var(--gold-light); border-color: var(--ink); }
