/* ═══════════════════════════════════════════════════════
   base.css — Shared styles for all Traal pages
   ═══════════════════════════════════════════════════════ */

/* ─── GLACIAL INDIFFERENCE (self-hosted) ─────────────── */
/* Drop GlacialIndifference-Regular.otf and
   GlacialIndifference-Bold.otf into a /fonts/ folder     */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Glacial Indifference';
  src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fallback: still load Syne for display headings if Glacial not available */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────── */
:root {
  /* --- colours --- */
  --ink:        #0D0D0D;
  --paper:      #F7F4EF;
  --cream:      #FDFBF8;
  --accent:     #6A12BE;
  --accent2:    #2A6049;
  --gold:       #9B59F5;
  --muted:      #8A8178;
  --border:     rgba(13,13,13,0.10);

  /* --- chrome (nav / announce / footer) — FIXED, never flips --- */
  --chrome-bg:      #0D0D0D;
  --chrome-text:    #F0EDE8;
  --chrome-muted:   rgba(240,237,232,0.45);
  --chrome-border:  rgba(240,237,232,0.10);
  --chrome-accent:  #9B59F5;

  /* --- surfaces (everything else) --- */
  --surface-1:  #F7F4EF;   /* page bg        */
  --surface-2:  #FDFBF8;   /* card / section */
  --surface-3:  #FFFFFF;   /* raised card    */

  /* --- text on surfaces --- */
  --text-1:     #0D0D0D;   /* primary        */
  --text-2:     #8A8178;   /* secondary      */

  /* --- misc --- */
  --shadow:     0 4px 32px rgba(13,13,13,0.10);
  --shadow-lg:  0 12px 48px rgba(13,13,13,0.16);
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       28px;
  --font-d:     'Glacial Indifference', 'Syne', sans-serif;
  --font-b:     'Glacial Indifference', 'DM Sans', sans-serif;
  --ease:       cubic-bezier(0.4,0,0.2,1);
  --t:          0.28s cubic-bezier(0.4,0,0.2,1);
  --icon-filter: brightness(0);
}

/* ─── DARK MODE — only surfaces flip, chrome stays fixed ─ */
[data-theme="dark"] {
  --ink:        #F0EDE8;
  --paper:      #111111;
  --cream:      #181818;
  --accent:     #9B59F5;
  --accent2:    #3D8B6E;
  --gold:       #B88EF8;
  --muted:      #7A756E;
  --border:     rgba(240,237,232,0.10);

  --surface-1:  #111111;
  --surface-2:  #181818;
  --surface-3:  #222222;

  --text-1:     #F0EDE8;
  --text-2:     #7A756E;

  --icon-filter: brightness(0) invert(1);
}

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

body {
  font-family: var(--font-b);
  background: var(--surface-1);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* Noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── ANNOUNCEMENT BAR — fixed dark, never flips ────── */
.announce-bar {
  background: var(--chrome-bg);
  color: var(--chrome-accent);
  text-align: center;
  font-family: var(--font-d);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  position: relative;
  z-index: 100;
}

/* ─── LOGO IMAGE SUPPORT ─────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* Nav is always dark, so logo always needs to be white */
  filter: brightness(0) invert(1);
  transition: opacity var(--t);
}
.nav-logo-img.hide   { display: none; }
.nav-logo-text       { display: none; }
.nav-logo-text.show  { display: block; }

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

/* ─── NAV — fixed dark, never flips ─────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--chrome-bg);
  border-bottom: 1px solid var(--chrome-border);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--chrome-text);
  flex-shrink: 0;
}
.nav-logo span { color: var(--chrome-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--chrome-muted);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--chrome-accent);
  transition: width var(--t);
}
.nav-links a:hover             { color: var(--chrome-text); }
.nav-links a:hover::after,
.nav-links a.active::after     { width: 100%; }
.nav-links a.active            { color: var(--chrome-text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,237,232,0.08);
  border: 1px solid var(--chrome-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--chrome-muted);
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-b);
}
.nav-search:hover {
  background: rgba(240,237,232,0.14);
  border-color: rgba(240,237,232,0.3);
  color: var(--chrome-text);
}
.nav-search svg { stroke: var(--chrome-muted); }

.cart-btn {
  position: relative;
  background: rgba(240,237,232,0.12);
  color: var(--chrome-text);
  border: 1px solid var(--chrome-border);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--t), transform var(--t);
}
.cart-btn:hover { background: var(--accent); transform: scale(1.08); border-color: var(--accent); }

#cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  display: none;
  align-items: center; justify-content: center;
  font-family: var(--font-d);
}
#cart-count.visible { display: flex; }

/* Theme toggle */
.theme-toggle {
  position: relative;
  background: rgba(240,237,232,0.12);
  color: var(--chrome-text);
  border: 1px solid var(--chrome-border);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t);
}
.theme-toggle:hover { background: var(--accent); transform: scale(1.08); border-color: var(--accent); }

/* Theme icon — nav is dark so icon always shows white */
.theme-icon-img {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
  display: block;
}

/* Cart icon */
.cart-icon-img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
  display: block;
  flex-shrink: 0;
}

/* ─── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 72px;
  font-size: 13px;
  color: var(--text-2);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.breadcrumb a      { color: var(--text-2); transition: color var(--t); }
.breadcrumb a:hover{ color: var(--text-1); }
.breadcrumb span   { color: var(--text-1); font-weight: 500; }
.breadcrumb-sep    { opacity: 0.4; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text-1);
  color: var(--surface-1);
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--text-1);
  cursor: pointer;
  transition: all var(--t);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,18,190,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-1);
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 2px solid var(--text-1);
  cursor: pointer;
  transition: all var(--t);
}
.btn-outline:hover {
  background: var(--text-1);
  color: var(--surface-1);
  transform: translateY(-2px);
}

/* ─── SECTION UTILITIES ──────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text-1);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-link {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  border-bottom: 1.5px solid var(--text-2);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
}
.section-link:hover { color: var(--accent); border-color: var(--accent); }

/* ─── TRUST BAR ──────────────────────────────────────── */
.trust-bar {
  padding: 36px 72px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 200px;
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--chrome-bg);   /* always dark — never flips */
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-icon img {
  width: 22px; height: 22px;
  filter: brightness(0) invert(1); /* always white on dark bg */
}
.trust-label {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2px;
}
.trust-sub { font-size: 12px; color: var(--text-2); }

/* ─── FOOTER — fixed dark, never flips ──────────────── */
footer {
  background: var(--chrome-bg);
  color: var(--chrome-text);
  padding: 64px 72px 36px;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.footer-logo span { color: var(--chrome-accent); }
.footer-brand p {
  font-size: 14px;
  color: var(--chrome-muted);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 260px;
}
.footer-socials { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--chrome-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--t);
  color: var(--chrome-muted);
}
.social-link:hover {
  border-color: var(--chrome-accent);
  color: var(--chrome-accent);
  background: rgba(155,89,245,0.1);
}
.social-link img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.35);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--chrome-muted);
  transition: color var(--t);
}
.footer-col a:hover { color: var(--chrome-text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--chrome-border);
}
.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: rgba(240,237,232,0.3);
  transition: color var(--t);
}
.footer-bottom a:hover { color: var(--chrome-text); }
.powered-by {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--chrome-accent);
  text-transform: uppercase;
}

/* ─── CART DRAWER ────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: flex-end;
  align-items: stretch;
}
.cart-overlay.open { display: flex; }

.cart-drawer {
  background: var(--surface-2);
  width: 100%;
  max-width: 440px;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.35s var(--ease);
  overflow: hidden;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-1);
  transition: all var(--t);
  font-family: var(--font-b);
}
.cart-close:hover { background: var(--text-1); color: var(--surface-1); border-color: var(--text-1); }

#cart-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  scrollbar-width: thin;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--surface-2);
}
.cart-item-info strong {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  display: block;
  margin-bottom: 4px;
}
.cart-item-meta {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface-3);
  color: var(--text-1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all var(--t);
  line-height: 1;
  font-family: var(--font-b);
}
.qty-btn:hover { background: var(--text-1); color: var(--surface-1); border-color: var(--text-1); }
.qty-num {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--text-1);
}
.cart-item-price {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-1);
}
.remove-item {
  display: block;
  font-size: 11px;
  color: var(--text-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 6px;
  transition: color var(--t);
  text-align: right;
  font-family: var(--font-b);
}
.remove-item:hover { color: var(--accent); }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-empty-icon { font-size: 56px; margin-bottom: 16px; }
.cart-empty h3 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-1);
}
.cart-empty p { font-size: 14px; color: var(--text-2); }

#cart-totals {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 8px;
}
.totals-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin: 12px 0 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.checkout-button {
  width: 100%;
  background: var(--text-1);
  color: var(--surface-1);
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
  margin-bottom: 10px;
}
.checkout-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,18,190,0.25);
}
.clear-cart {
  width: 100%;
  background: transparent;
  color: var(--text-2);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
}
.clear-cart:hover { background: rgba(106,18,190,0.08); color: var(--accent); border-color: var(--accent); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 60px 40px 32px; }
  .trust-bar, .breadcrumb { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .nav-search span { display: none; }
  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar { padding: 28px 20px; gap: 20px; }
  .trust-item { flex: 0 1 160px; }
  .breadcrumb { padding: 12px 20px; }
}

/* ─── MOBILE MENU DRAWER ─────────────────────────────── */
.mobile-menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--chrome-border);
  background: rgba(240,237,232,0.08);
  color: var(--chrome-text);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t);
}
.mobile-menu-btn:hover { background: var(--accent); border-color: var(--accent); }
.mobile-menu-btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); }

.mobile-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  flex-direction: column;
}
.mobile-nav-drawer.open { display: flex; }

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.6);
  backdrop-filter: blur(4px);
}

.mobile-nav-panel {
  position: relative;
  z-index: 1;
  background: var(--chrome-bg);
  width: 280px;
  height: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: slideInLeft 0.3s var(--ease);
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--chrome-border);
}

.mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--chrome-border);
  background: transparent;
  color: var(--chrome-text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all var(--t);
}
.mobile-nav-close:hover { background: rgba(240,237,232,0.1); }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 400;
  color: var(--chrome-muted);
  transition: all var(--t);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--chrome-text);
  background: rgba(240,237,232,0.08);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--chrome-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-d);
  font-size: 15px;
  color: var(--chrome-muted);
  transition: all var(--t);
}
.mobile-nav-footer a:hover { color: var(--chrome-text); background: rgba(240,237,232,0.08); }
.mobile-nav-footer img { width: 18px; height: 18px; filter: brightness(0) invert(1); opacity: 0.6; }

/* Profile nav button */
.profile-btn {
  position: relative;
  background: rgba(240,237,232,0.12);
  color: var(--chrome-text);
  border: 1px solid var(--chrome-border);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform var(--t);
  text-decoration: none;
  flex-shrink: 0;
}
.profile-btn:hover { background: var(--accent); transform: scale(1.08); border-color: var(--accent); }
.profile-btn img { width: 20px; height: 20px; filter: brightness(0) invert(1); display: block; }

/* ─── MOBILE RESPONSIVE OVERRIDES ────────────────────── */
@media (max-width: 768px) {
  .site-nav { padding: 0 16px; height: 60px; }
  .nav-links  { display: none; }
  .nav-search { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-actions { gap: 8px; }
  .cart-btn, .theme-toggle, .profile-btn { width: 38px; height: 38px; }
}
