/** Shopify CDN: Minification failed

Line 586:14 Expected identifier but found whitespace
Line 586:15 Unexpected "0"

**/
/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* ── Palette ── */
  --cream:       #F5F0E8;
  --ink:         #1C1C1A;
  --rose:        #C9847A;
  --blue:        #6A8FA3;
  --gold:        #C9A96E;
  --ink-muted:   #4A4A47;
  --cream-muted: #E8E1D4;

  /* ── Semantic surfaces ── */
  --bg:          #F4F3F1;
  --bg-secondary:#ECECEA;
  --bg-soft:     color-mix(in srgb, var(--ink) 6%, var(--bg));
  --card-bg:     #f8f8f8;
  --header-bg:   var(--cream);
  --dropdown-bg: var(--cream);

  /* ── Text ── */
  --text:        var(--ink);
  --text-muted:  var(--ink-muted);
  --text-faint:  rgba(28,28,26,0.35);
  --text-on-dark:var(--cream);

  /* ── Borders ── */
  --border:      rgba(28,28,26,0.12);
  --border-mid:  rgba(28,28,26,0.22);
  --border-dark: rgba(28,28,26,0.45);

  /* ── Typography ── */
  --font-logo:    'Schibsted Grotesk', sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Elms Sans', 'DM Sans', Inter, system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-garnish: 'DM Mono', monospace;

  /* Legacy alias — keeps all existing var(--font-main) references working */
  --font-main:   var(--font-heading);

  /* ── Layout ── */
  --header-h:    64px;
  --announce-h:  36px;
  --radius:      0px;
  --transition:  0.22s ease;
}

[data-theme="dark"] {
  --bg:          var(--ink);
  --bg-secondary:#2A2A28;
  --bg-soft:     color-mix(in srgb, var(--cream) 8%, var(--bg));
  --card-bg:     #2A2A28;
  --header-bg:   #1C1C1A;
  --dropdown-bg: #242422;

  --text:        var(--cream);
  --text-muted:  #A0A09A;
  --text-faint:  rgba(245,240,232,0.3);
  --text-on-dark:var(--ink);

  --border:      rgba(245,240,232,0.1);
  --border-mid:  rgba(245,240,232,0.18);
  --border-dark: rgba(245,240,232,0.4);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }
html { scroll-behavior: smooth; }

/* ── Border-radius exceptions ── */
.icon-btn, .sidebar-close, .p-add-v2, .theme-toggle,
.cart-badge, .stone-dot, .gold-swatch,
.swatch, .cupcake-btn,
.p-wish, .secret-icon-v2 { border-radius: 50% !important; }
input[type="range"]::-webkit-slider-thumb { border-radius: 50% !important; }
input[type="range"] { border-radius: 100px !important; }
.profile-dropdown, .search-box { border-radius: 2px !important; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announce {
  height: var(--announce-h);
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .announce {
  background: var(--cream-muted);
  color: var(--ink);
}
.announce-track {
  display: flex;
  align-items: center;
  gap: 0;
  position: absolute;
}
.announce-item {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 0 3rem;
  opacity: 0;
  position: absolute;
  transition: opacity 0.6s ease;
  width: 100%;
  text-align: center;
}
.announce-item.active { opacity: 1; }

/* ── HEADER ──────────────────────────────────────────────── */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  /* Use transform for the 36px offset to avoid the top gap on scroll */
  transform: translateY(var(--announce-h));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition);
}
.header-wrap.scrolled {
  transform: translateY(0);
}
/* No background change on scroll — keep it stable */
.header-wrap.scrolled { /* intentionally empty — no shadow/bg change */ }
.header-wrap.transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.header-wrap.transparent .logo { color: var(--cream); }
.header-wrap.transparent .icon-btn { color: var(--cream); }
.header-wrap.transparent .icon-btn:hover { background: rgba(245,240,232,0.12); }
.header-wrap.transparent .menu-btn { color: var(--cream); }
.header-wrap.transparent .menu-btn:hover { background: rgba(245,240,232,0.12); }

/* Solid state overrides for transparent header */
.header-wrap.transparent.scrolled,
.header-wrap.transparent.header--solid {
  background: var(--header-bg);
  border-bottom-color: var(--border);
}
.header-wrap.transparent.scrolled .logo,
.header-wrap.transparent.header--solid .logo { color: var(--text); }
.header-wrap.transparent.scrolled .icon-btn,
.header-wrap.transparent.header--solid .icon-btn { color: var(--text); }
.header-wrap.transparent.scrolled .menu-btn,
.header-wrap.transparent.header--solid .menu-btn { color: var(--text); }

.header-wrap.header-hide { transform: translateY(-100%); }

header {
  height: var(--header-h);
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Standard page container for legal/help pages */
.page-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}
@media (max-width: 1024px) {
  .page-wrap {
    padding: 3rem 1.5rem 6rem;
  }
}
@media (max-width: 768px) {
  .page-wrap {
    padding: 2rem 1.25rem 4rem;
  }
}
.container-skinny {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.logo {
  font-family: var(--font-logo); font-weight: 800;
  font-size: 26px; letter-spacing: -0.04em;
  color: var(--text); transition: color var(--transition); line-height: 1;
}
.logo:hover { color: var(--rose); }

/* ── DESKTOP DROPDOWN ── */
.dropdown-overlay { display: none; position: fixed; inset: 0; z-index: 800; }
.dropdown-overlay.open { display: block; }
.dropdown {
  position: absolute;
  top: calc(var(--header-h) + 1px);
  right: 0; left: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 850;
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.dropdown.open { display: flex; opacity: 1; transform: translateY(0); }
.dropdown-inner {
  max-width: 1280px; margin: 0 auto;
  width: 100%; display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 320px;
}
.dropdown-cats {
  padding: 2rem 0 2rem 2rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
}
.dropdown-view-all {
  font-family: var(--font-main); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 0 0 1rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: color var(--transition);
  display: block;
}
.dropdown-view-all:hover { color: var(--rose); }
.dropdown-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem 0.6rem 0;
  font-family: var(--font-main); font-weight: 700;
  font-size: 15px; letter-spacing: -0.01em;
  color: var(--text-muted); text-align: left; width: 100%;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
}
.dropdown-cat-btn:hover, .dropdown-cat-btn.active { color: var(--text); }
.dropdown-cat-btn.active { font-weight: 800; }
.dropdown-cat-btn .cat-arrow {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0; transition: opacity 0.15s ease;
}
.dropdown-cat-btn.active .cat-arrow { opacity: 1; }
.dropdown-cat-coming {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 1rem 0.6rem 0;
  font-family: var(--font-main); font-weight: 600;
  font-size: 15px; letter-spacing: -0.01em;
  color: var(--text-muted); opacity: 0.35; font-style: italic;
}
.dropdown-soon-tag {
  font-family: var(--font-garnish); font-size: 10px;
  color: var(--rose); font-style: normal;
  border: 1px solid rgba(201,132,122,0.35);
  border-radius: 100px; padding: 2px 8px;
}
.dropdown-subcats { padding: 2rem 2rem 2rem 3rem; position: relative; }
.dropdown-subpanel { display: none; flex-direction: column; gap: 0; }
.dropdown-subpanel.active { display: flex; animation: slideInCols 0.28s cubic-bezier(0.16,1,0.3,1); }
@keyframes slideInCols { from { opacity: 0; transform: translateX(-18px); } to { opacity: 1; transform: translateX(0); } }
.dropdown-subpanel ul li { opacity: 0; transform: translateX(-12px); animation: slideInItem 0.22s cubic-bezier(0.16,1,0.3,1) forwards; }
.dropdown-subpanel.active ul li:nth-child(1) { animation-delay: 0.04s; }
.dropdown-subpanel.active ul li:nth-child(2) { animation-delay: 0.08s; }
.dropdown-subpanel.active ul li:nth-child(3) { animation-delay: 0.12s; }
.dropdown-subpanel.active ul li:nth-child(4) { animation-delay: 0.16s; }
.dropdown-subpanel.active ul li:nth-child(5) { animation-delay: 0.20s; }
.dropdown-subpanel.active ul li:nth-child(6) { animation-delay: 0.24s; }
@keyframes slideInItem { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.dropdown-subpanel-header {
  font-family: var(--font-main); font-weight: 700;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.dropdown-subpanel ul { display: flex; flex-direction: column; gap: 0; }
.dropdown-subpanel ul li a {
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  padding: 0.5rem 0; display: block; transition: color var(--transition);
}
.dropdown-subpanel ul li a:hover { color: var(--rose); }

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,26,0.7);
  z-index: 1400;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%; max-width: 560px;
  background: var(--bg); border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--border);
}
.search-box svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; stroke-linecap: round; flex-shrink: 0; }
.search-box input { flex: 1; border: none; background: none; font-family: var(--font-body); font-size: 16px; color: var(--text); outline: none; }
.search-box input::placeholder { color: var(--text-muted); }
.search-close { font-family: var(--font-main); font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.search-close:hover { color: var(--text); }

/* ── MOBILE SIDEBAR ── */
.sidebar-overlay { 
  display: none; position: fixed; inset: 0; z-index: 1200; 
  background: rgba(28,28,26,0.45); opacity: 0; transition: opacity 0.3s ease; 
  backdrop-filter: blur(2px);
}
.sidebar-overlay.open { display: block; opacity: 1; }

.sidebar {
  position: fixed; top: 0; right: 0;
  width: min(360px, 92vw); height: 100dvh;
  background: var(--bg); z-index: 1300;
  overflow-y: auto; overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
  scrollbar-width: none;
}
.sidebar::-webkit-scrollbar { display: none; }
.sidebar.open { transform: translateX(0); }

/* Header */
.sidebar-header { 
  display: flex; align-items: center; justify-content: space-between; 
  padding: 1.25rem 1.5rem; 
  border-bottom: 1px solid var(--border); 
  flex-shrink: 0;
  position: sticky; top: 0; background: var(--bg); z-index: 2;
}
.sidebar-logo {
  font-family: var(--font-logo); font-weight: 800; font-size: 17px;
  letter-spacing: -0.04em; color: var(--text);
}
.sidebar-close { 
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; 
  border-radius: 50%; color: var(--text); transition: background var(--transition); 
  background: none; border: none; cursor: pointer;
}
.sidebar-close:hover { background: var(--bg-secondary); }
.sidebar-close svg { width: 18px; height: 18px; display: block; }

/* Body */
.sidebar-body { flex: 1; padding: 0.5rem 0 3rem; }

/* Section labels */
.sidebar-section-label {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
  padding: 1.25rem 1.5rem 0.5rem;
}

/* Sub-group headings (top-level items that have children) */
.sidebar-sub-heading {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: 0.02em; text-transform: none; color: var(--text-muted);
  padding: 1rem 1.5rem 0.25rem;
  opacity: 0.6;
}

/* Indented child links */
.sidebar-link--indented { padding-left: 2rem; font-size: 14px; }
.sidebar-link--indented:hover { padding-left: 2.25rem; }

/* Divider */
.sidebar-divider { height: 1px; background: var(--border); margin: 1rem 1.5rem; }

/* Standard links */
.sidebar-link {
  display: block; padding: 0.85rem 1.5rem;
  font-family: var(--font-body); font-weight: 400; font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.sidebar-link:hover { color: var(--rose); padding-left: 1.75rem; }

/* Accordion: button (heading) */
.sidebar-accordion { }
.sidebar-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body); font-weight: 400; font-size: 15px;
  color: var(--text); text-align: left; background: none; border: none; cursor: pointer;
  transition: color var(--transition);
}
.sidebar-acc-btn:hover { color: var(--rose); }
.sidebar-acc-btn[aria-expanded="true"] { color: var(--rose); }
.acc-chevron { 
  width: 16px; height: 16px; flex-shrink: 0; 
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); 
  stroke: currentColor;
}
.sidebar-acc-btn[aria-expanded="true"] .acc-chevron { transform: rotate(180deg); }

/* Accordion: body (sub-items) */
.sidebar-acc-body { 
  max-height: 0; overflow: hidden; 
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1); 
  background: var(--bg-secondary);
}
.sidebar-acc-body.open { max-height: 400px; }
.sidebar-acc-link {
  display: block; padding: 0.65rem 1.5rem 0.65rem 2rem;
  font-family: var(--font-body); font-weight: 400; font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
  border-left: 2px solid transparent;
}
.sidebar-acc-link:hover { color: var(--text); padding-left: 2.25rem; border-left-color: var(--rose); }
.sidebar-acc-link--all {
  font-weight: 700; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding-top: 0.9rem;
}
.sidebar-acc-link--all:hover { border-left-color: transparent; color: var(--rose); }

/* Active page indicator */
.sidebar-link--active { color: var(--rose) !important; }

/* Legacy selector kept for backward compat */
.sidebar-sub-link, .sidebar-cat-btn, .sidebar-back, .sidebar-all-link, .soon-tag { display: none; }

/* ── NEW SIDEBAR STRUCTURE ───────────────── */

/* New In — gold accent */
.sidebar-new-in {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: -0.01em; color: var(--gold);
  text-decoration: none; transition: opacity var(--transition);
}
.sidebar-new-in:hover { opacity: 0.7; }
.sidebar-new-in.sidebar-link--active { color: var(--gold) !important; opacity: 0.7; }
.sidebar-new-in-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* THE MENU header row */
.sidebar-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1.5rem 0.6rem;
}
.sidebar-menu-label {
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
}
.sidebar-menu-all {
  font-family: var(--font-body); font-size: 11px;
  color: var(--text-muted); text-decoration: none;
  transition: color var(--transition);
}
.sidebar-menu-all:hover { color: var(--text); }

/* Category links — large, the main body of the nav */
.sidebar-cat-link {
  display: block; padding: 0.55rem 1.5rem;
  font-family: var(--font-body); font-weight: 500; font-size: 19px;
  letter-spacing: -0.025em; color: var(--text); text-decoration: none;
  transition: color var(--transition), padding-left var(--transition);
}
.sidebar-cat-link:hover { color: var(--gold); padding-left: 1.85rem; }

/* Buyback — inline gold dot */
.sidebar-link--buyback { display: flex; align-items: center; gap: 0.6rem; }
.sidebar-buyback-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Learn — demoted weight */
.sidebar-link--secondary { color: var(--text-muted); font-size: 14px; }
.sidebar-link--secondary:hover { color: var(--text); }

/* Seasonal slot — empty, reserved for festive / limited collections */
.sidebar-seasonal-slot { min-height: 4rem; }

/* Header icons & Profile Dropdown */
.header-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text);
  transition: background var(--transition), color var(--transition), transform 0.2s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.icon-btn:hover { 
  background: var(--bg-soft); 
  color: var(--rose);
  transform: translateY(-1px);
}
.icon-btn svg { width: 21px; height: 21px; }

.profile-wrap {
  position: relative;
}
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 0.75rem 0;
  display: none;
  flex-direction: column;
  z-index: 1000;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.profile-dropdown.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.profile-dropdown a {
  padding: 0.65rem 1.5rem;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.profile-dropdown a:hover {
  background: var(--bg-soft);
  color: var(--text);
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-main);
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--header-bg);
}
  line-height: 0;
  padding-top: 1px;
}

/* Menu button */
.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.75rem;
  height: 40px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  transition: background var(--transition);
}
.menu-btn:hover { background: var(--bg-secondary); }
.menu-btn .chevron {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.menu-btn.open .chevron { transform: rotate(180deg); }

/* ── DROPDOWN ────────────────────────────────────────────── */
.dropdown-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
}
.dropdown-overlay.open { display: block; }

.dropdown {
  position: absolute;
  top: calc(var(--header-h) + 1px);
  right: 0;
  left: 0;
  background: var(--dropdown-bg);
  border-bottom: 1px solid var(--border);
  z-index: 850;
  padding: 2rem;
  display: none;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown.open {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-col h3 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.dropdown-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.dropdown-col ul li a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dropdown-col ul li a:hover { color: var(--rose); }
.dropdown-col ul li a .tag-new {
  font-family: var(--font-garnish);
  font-size: 11px;
  color: var(--rose);
}

/* ── SEARCH OVERLAY ──────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,28,26,0.7);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%;
  max-width: 560px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
}
.search-box svg { width: 18px; height: 18px; stroke: var(--text-muted); fill: none; stroke-width: 1.6; stroke-linecap: round; flex-shrink: 0; }
.search-box input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  outline: none;
}
.search-box input::placeholder { color: var(--text-muted); }
.search-close {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.search-close:hover { color: var(--text); }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.p-card {
  width: 260px;
  height: 368.78px;
  flex: 0 0 260px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.p-card-inner {
  display: flex;
  flex-direction: column;
  height: 349.78px;
  width: 258px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
}
.p-img-wrap {
  position: relative;
  width: 258px;
  height: 258px;
  background: var(--card-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.p-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-info-v2 {
  width: 258px;
  height: 91.78px;
  padding: 0.75rem 17.595px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--card-bg);
  overflow: hidden;
}

.p-name-v2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  margin-bottom: 0.15rem;
  color: var(--text);
  text-transform: capitalize;
  max-width: 222.81px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-meta-v2 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  max-width: 222.81px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.8;
}
.p-price-v2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-top: 0;
  max-width: 222.81px;
}

/* Image placeholder inside card */
.p-placeholder-kitchen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  color: var(--border);
}

.p-add-v2 {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 5;
  padding: 0;
}
.p-add-v2:hover { 
  transform: scale(1.1); 
  background: #fff; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.p-add-v2.active { background: var(--text); color: var(--bg); }

/* Ensure visibility on all devices and adjust for touch */
@media (max-width: 768px) {
  .p-add-v2 {
    width: 36px;
    height: 36px;
    bottom: 0.5rem;
    right: 0.5rem;
    display: flex !important; /* Force visibility */
    background: rgba(255,255,255,0.95);
  }
}

.p-card:hover { border-color: var(--ink); }

/* ── BUTTON SYSTEM ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary — ink fill */
.btn--primary, .add-btn, .btn-customer-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--primary:hover, .add-btn:hover, .btn-customer-primary:hover {
  opacity: 0.88;
}
[data-theme="dark"] .btn--primary,
[data-theme="dark"] .add-btn,
[data-theme="dark"] .btn-customer-primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Ghost — outlined, transparent fill */
.btn--ghost, .btn-customer-secondary, .btn-update-v2 {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}
.btn--ghost:hover, .btn-customer-secondary:hover, .btn-update-v2:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Ghost on dark backgrounds */
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* Rose accent */
.btn--rose {
  background: var(--rose);
  color: var(--cream);
  border-color: var(--rose);
}
.btn--rose:hover { opacity: 0.9; }

/* Wishlist — ghost with heart */
.btn--wishlist {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
  padding: 0.7rem 1.25rem;
}
.btn--wishlist:hover { color: var(--rose); border-color: var(--rose); }

/* Full-width modifier */
.btn--full { width: 100%; display: flex; }

/* Large modifier */
.btn--lg { padding: 1.25rem 2.5rem; font-size: 13px; }

/* Map cart checkout button to primary style */
.btn-checkout-v2 {
  display: block; width: 100%;
  padding: 1.25rem; background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition), transform 0.15s ease;
}
.btn-checkout-v2:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-back-to-menu {
  display: inline-block; padding: 1.1rem 3rem;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--font-body); font-weight: 700;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: opacity var(--transition), transform 0.15s ease;
}
.btn-back-to-menu:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── CUSTOMER PAGES ───────────────────────────────────────── */
.btn-customer-primary {
  width: 100%;
  padding: 1.1rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-customer-primary:hover { opacity: 0.9; transform: scale(1.01); }

[data-theme="dark"] .btn-customer-primary {
  background: var(--cream);
  color: var(--ink);
}

.btn-customer-secondary {
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  background: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}
.btn-customer-secondary:hover { color: var(--text); border-color: var(--text); }
.p-img {
  background: var(--bg-secondary);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.p-img svg {
  width: 60px;
  height: 60px;
  opacity: 0.28;
  color: var(--border);
  stroke-width: 1;
}
.p-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}
.badge-new { background: var(--ink); color: var(--cream); }
[data-theme="dark"] .badge-new { background: var(--cream); color: var(--ink); }
.badge-bs { background: var(--gold); color: var(--ink); }

/* v2 badge variants — used on all cards */
.p-badge-v2 {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  z-index: 2;
}
.badge-new-v2 { background: var(--ink); color: var(--cream); }
[data-theme="dark"] .badge-new-v2 { background: var(--cream); color: var(--ink); }
.badge-bs-v2 { background: var(--gold); color: var(--ink); }
.badge-soon-v2 { background: var(--blue); color: var(--cream); }
.badge-personalised-v2 { left: auto; right: 0.75rem; background: var(--cream); color: var(--ink); border: 1px solid var(--border); }

/* Coming-soon card state — muted, no hover lift */
.p-card--coming-soon { opacity: 0.75; pointer-events: none; }
.p-card--coming-soon a { pointer-events: auto; }
.p-price--soon { color: var(--text-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.p-wish {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-garnish);
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  transition: all var(--transition);
  z-index: 2;
}
.p-wish:hover, .p-wish.on { border-color: var(--rose); color: var(--rose); }

.p-info { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.p-name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.p-material {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.p-price {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  margin-top: auto;
}

/* ── MAIN CONTENT PLACEHOLDER ────────────────────────────── */
main {
  min-height: calc(100vh - var(--header-h) - var(--announce-h));
  /* push content below the fixed header */
  padding-top: var(--header-h);
}
/* Index/home page is full-bleed — override */
main.home-main { padding-top: 0; }
.placeholder-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  gap: 1rem;
}
.placeholder-hero h1 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.placeholder-hero p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.7;
}
.placeholder-note {
  font-family: var(--font-garnish);
  font-size: 18px;
  color: var(--rose);
  margin-top: 0.5rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem 0;
}
[data-theme="dark"] footer { background: #111110; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  flex-wrap: wrap;
}
.footer-newsletter-copy h2 {
  font-family: var(--font-main); font-weight: 700; font-size: 22px;
  letter-spacing: -0.02em; color: var(--cream); margin-bottom: 0.3rem;
}
.footer-newsletter-copy p {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(245,240,232,0.5);
}
.footer-signup-form {
  display: flex;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: var(--radius); overflow: hidden; flex-shrink: 0;
}
.footer-signup-form input {
  background: transparent; border: none;
  padding: 0.7rem 1rem;
  font-family: var(--font-body); font-size: 13px;
  color: var(--cream); outline: none; width: 240px;
}
.footer-signup-form input::placeholder { color: rgba(245,240,232,0.35); }
.footer-signup-form button {
  background: var(--cream); color: var(--ink);
  font-family: var(--font-main); font-weight: 700; font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  transition: background var(--transition); white-space: nowrap;
}
.footer-signup-form button:hover { background: #E8E1D4; }

.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; padding: 3rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}
.footer-col h3 {
  font-family: var(--font-main); font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,232,0.35); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a {
  font-family: var(--font-body); font-size: 13px;
  color: rgba(245,240,232,0.65);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-privacy {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  flex-wrap: wrap;
}
.footer-privacy a {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(245,240,232,0.35);
  transition: color var(--transition);
}
.footer-privacy a:hover { color: rgba(245,240,232,0.65); }

.back-to-top {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-main); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  transition: color var(--transition);
}
.back-to-top:hover { color: rgba(245,240,232,0.65); }
.back-to-top svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0 1.75rem;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: var(--font-main); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; color: rgba(245,240,232,0.25); }
.footer-social { display: flex; align-items: center; gap: 0.5rem; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.12);
  color: rgba(245,240,232,0.4);
  transition: all var(--transition);
}
.social-icon:hover { border-color: rgba(245,240,232,0.35); color: rgba(245,240,232,0.8); }
.social-icon svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.floaters {
  position: fixed;
  bottom: 1.5rem;
  z-index: 700;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floaters-right { right: 1.5rem; align-items: flex-end; }
.floaters-left  { left: 1.5rem;  align-items: flex-start; }

/* Theme toggle */
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
}
.theme-toggle:hover { transform: scale(1.08); }
.theme-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

/* Cupcake button — warm floating glow, no solid background */
.cupcake-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--rose);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,132,122,0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.cupcake-btn:hover {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(201,132,122,0.5);
}
.cupcake-btn svg { width: 28px; height: 28px; }
.cupcake-tooltip {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-garnish);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
[data-theme="dark"] .cupcake-tooltip { background: var(--cream); color: var(--ink); }
.cupcake-btn:hover .cupcake-tooltip { opacity: 1; }

/* Signup popup */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,26,0.65);
  z-index: 1500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  margin: 1rem;
  transform: translateY(12px);
  transition: transform 0.25s ease;
  position: relative;
}
.popup-overlay.open .popup { transform: translateY(0); }
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  transition: background var(--transition);
}
.popup-close:hover { background: var(--bg-secondary); color: var(--text); }
.popup h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.popup-note {
  font-family: var(--font-garnish);
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 1rem;
}
.popup p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.popup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.popup-form input:focus { border-color: var(--rose); }
.popup-form input::placeholder { color: var(--text-muted); }
.popup-form button {
  width: 100%;
  padding: 0.85rem;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform 0.15s ease;
}
[data-theme="dark"] .popup-form button { background: var(--cream); color: var(--ink); }
.popup-form button:hover { transform: translateY(-1px); }
.popup-fine {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* ── MOBILE ──────────────────────────────────────────────── */
.mobile-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 950;
  flex-direction: column;
  padding: 1.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.mobile-menu-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  color: var(--text);
}
.mobile-menu-close:hover { background: var(--bg-secondary); }
.mobile-menu-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
.mobile-section { margin-bottom: 2rem; }
.mobile-section h3 {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.mobile-section ul { display: flex; flex-direction: column; }
.mobile-section ul li a {
  display: block;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-section ul li a:hover { color: var(--rose); }

@media (max-width: 768px) {
  header { padding: 0 1.25rem; }
  .desktop-only { display: none !important; }
  .dropdown { display: none !important; }
  /* Preserve padding-top from the fixed-header offset, only override horizontal */
  main { padding-left: 0; padding-right: 0; }
  .footer-cols { grid-template-columns: 1fr; gap: 2rem; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .footer-signup-form { width: 100%; }
  .footer-signup-form input { flex: 1; width: auto; }
  .cupcake-btn { width: 52px; height: 52px; }
  .cupcake-btn svg { width: 26px; height: 26px; }
  .cupcake-tooltip { display: none; }
}
@media (min-width: 769px) {
  .mobile-only { display: none !important; }
}

/* ── hCaptcha badge (Shopify-injected) ───────────────────── */
#shop-hcaptcha-badge-container { display: none !important; }
