/* ============================================
   SENTINEL STANDARD — Premium Performance Retail
   Clean white storefront, restrained gold metal,
   athletic typography. Performance + lifestyle
   with tactical DNA — not tactical aesthetics.
   ============================================ */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--matte-black, #0a0b0c);
  color: #fff;
  font-family: var(--font-ui, Oswald, sans-serif);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  left: var(--space-3, 0.75rem);
  top: var(--space-3, 0.75rem);
  outline: 2px solid var(--gold, #b8924a);
  outline-offset: 2px;
}

#main-content:focus {
  outline: none;
}

/* --- Design Tokens --- */
:root {
  /* Brand Colors — tactical gold metal */
  --gold: #b8924a;
  --gold-light: #c9a96a;
  --gold-dark: #8a6b3e;
  --volt: #b8924a;
  --volt-light: #c9a96a;
  --volt-dark: #8a6b3e;
  --signal: #c73e2a;
  --signal-dark: #a33222;
  --bronze: #8a6b3e;
  --matte-black: #0a0b0c;
  --charcoal: #111418;
  --steel: #1a1f26;
  --steel-light: #4a5560;
  --cream: #f4f2ee;
  --olive: #3a4238;
  --olive-light: #4d5649;
  --white: #ffffff;
  --mist: #6b7580;

  /* Semantic Colors — bright clean retail with depth */
  --bg: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eceff3;
  --surface-offset: #dde2e8;
  --border: rgba(10, 11, 12, 0.1);
  --border-strong: rgba(10, 11, 12, 0.18);
  --text: #0a0b0c;
  --text-muted: #3d4650;
  --text-faint: #6e7884;
  --primary: #b8924a;
  --primary-hover: #c9a96a;
  --primary-light: #dfc08a;
  --error: #c73e2a;
  --success: #4f8a3a;

  /* Aliases used by checkout / drawer blocks */
  --bg-surface: var(--surface);
  --bg-input: var(--surface-2);
  --text-primary: var(--text);
  --text-secondary: var(--text-muted);
  --accent: var(--gold);

  /* Typography — athletic display + condensed UI + clean body */
  --font-display: 'Unbounded', 'Arial Narrow', sans-serif;
  --font-ui: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: clamp(1.85rem, 3.6vw, 2.6rem);
  --text-hero: clamp(2.8rem, 8vw, 5.6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;

  /* Radius — athletic soft-square */
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;

  /* Shadows — retail depth */
  --shadow-sm: 0 1px 2px rgba(10, 11, 12, 0.08);
  --shadow: 0 8px 24px rgba(10, 11, 12, 0.1);
  --shadow-lg: 0 18px 48px rgba(10, 11, 12, 0.16);

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.55s cubic-bezier(0.22, 1, 0.36, 1);

  /* Product mockup display — 4:5 stone-slate plates */
  --product-img-aspect: 4 / 5;
  --product-img-padding: 0%;
  --product-img-scale: 1;
  --product-img-scale-hover: 1.025;
  --product-img-plate: #7c8084;
}

/* --- Light storefront --- */
:root {
  color-scheme: light;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 90% 50% at 100% -10%, rgba(184, 146, 74, 0.1), transparent 52%),
    radial-gradient(ellipse 70% 40% at 0% 20%, rgba(199, 62, 42, 0.04), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 280px);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
}

body.ss-storefront::before {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }
h2 { font-size: var(--text-3xl); text-transform: uppercase; letter-spacing: -0.02em; }
h3 { font-size: var(--text-xl); text-transform: uppercase; letter-spacing: -0.01em; }
h4 { font-size: var(--text-lg); text-transform: none; letter-spacing: 0; font-weight: 600; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}

/* --- Layout --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-12) 0;
}

/* --- Utility bar + sticky chrome --- */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 100;
}

.utility-bar {
  background: var(--matte-black);
  border-bottom: 1px solid rgba(184, 146, 74, 0.35);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.utility-trust {
  color: rgba(245, 246, 247, 0.72);
}

.utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 7px var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  color: rgba(245, 246, 247, 0.78);
}
.utility-inner a { color: rgba(245, 246, 247, 0.62); font-size: 11px; }
.utility-inner a:hover { color: var(--volt-light); }
.utility-links { display: flex; gap: var(--space-5); align-items: center; }

/* --- Header (white + high-vis) --- */
.header {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid var(--border-strong);
  box-shadow:
    inset 0 -3px 0 var(--volt),
    0 10px 28px rgba(10, 11, 12, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-5);
  padding: 0 var(--space-6);
  max-width: 1400px;
  margin: 0 auto;
  min-height: 64px;
}

.header .mobile-menu-btn {
  color: var(--matte-black);
}

/* Logo lockup — mark | bronze rule | wordmark */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  min-width: 0;
  padding: 2px 0;
  outline-offset: 4px;
  animation: logoReveal 0.65s var(--transition-slow) both;
}

.logo-link:hover .logo-mark {
  filter: brightness(1.08);
}

.logo-link:hover .logo-text .main {
  color: var(--matte-black);
}

.logo-link:hover .logo-text .sub,
.logo-link:focus-visible .logo-text .sub {
  color: var(--signal);
}

.logo-link:hover .logo-rule,
.logo-link:focus-visible .logo-rule {
  opacity: 1;
}

.logo-mark {
  width: 15px;
  height: auto;
  max-height: 40px;
  aspect-ratio: 115 / 340;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter var(--transition);
}

.logo-rule {
  display: block;
  width: 1px;
  height: 30px;
  margin: 0 11px;
  flex-shrink: 0;
  border-radius: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(184, 146, 74, 0.35) 18%,
    var(--volt) 50%,
    rgba(184, 146, 74, 0.35) 82%,
    transparent 100%
  );
  opacity: 0.9;
  transition: opacity var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 5px;
  min-width: 0;
}

.logo-text .main {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--matte-black);
  transition: color var(--transition);
}

.logo-text .sub {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  padding-right: 0.28em;
  transition: color var(--transition);
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-link {
    animation: none;
  }
}

/* Primary nav tabs in the header row */
.header-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.header-nav::-webkit-scrollbar { display: none; }

.header-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 22px 14px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--matte-black);
  border-bottom-color: var(--volt);
}

/* Search expand panel */
.header-search-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.header-search-panel.is-open { display: block; }
.header-search-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px var(--space-6) 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
}
.header-search-inner svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header-search-inner input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  color: var(--text);
  font-size: var(--text-sm);
  padding: 10px 0;
}
.header-search-inner input::placeholder { color: var(--text-faint); }
.header-search-inner input:focus {
  outline: none;
  border-bottom-color: var(--volt);
}
.header-search-close {
  color: var(--text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.search-bar { display: none; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 0;
  justify-self: end;
}

.header-actions .icon-btn {
  color: var(--matte-black);
  padding: 10px !important;
  border-radius: var(--radius);
  background: transparent;
  border: 0;
}

.header-actions .icon-btn:hover {
  color: var(--signal);
}

.header-actions .cart-btn,
#cart-btn {
  color: var(--matte-black) !important;
  background: var(--volt) !important;
  border: 1px solid var(--volt-dark) !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
}

.header-actions .cart-btn:hover,
#cart-btn:hover {
  color: var(--matte-black) !important;
  background: var(--volt-light) !important;
  border-color: var(--volt-dark) !important;
}

#cart-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.icon-btn {
  position: relative;
  padding: 8px !important;
}

.icon-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--signal);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--matte-black);
  z-index: 1;
  line-height: 1;
}

.header-account-wrap { position: relative; }

.account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: 0 16px 40px rgba(10, 11, 12, 0.12);
  z-index: 120;
  padding: 12px 0;
}
.account-name {
  padding: 4px 16px 0;
  font-weight: 700;
  color: var(--text);
  font-size: var(--text-sm);
}
.account-email {
  padding: 2px 16px 8px;
  color: var(--text-muted);
  font-size: var(--text-xs);
}
.account-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.account-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.account-menu-item:hover {
  background: var(--surface-2);
  color: var(--signal);
}

/* Legacy second nav row removed */
.nav-bar { display: none; }
.nav-inner { display: none; }

@media (max-width: 1100px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex !important; color: var(--matte-black); }
  .header-inner {
    display: flex;
    gap: var(--space-3);
  }
  .header-actions { margin-left: auto; }
}

/* --- Hero --- */
.hero {
  position: relative;
  background: linear-gradient(105deg, #0e1012 0%, #161a1e 32%, #252b31 62%, #3a424a 100%);
  overflow: hidden;
  min-height: min(78vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(3rem, 7vh, 5rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,11,12,0.48) 0%, rgba(17,20,24,0.28) 32%, rgba(120,130,140,0.08) 58%, rgba(180,190,200,0.32) 100%),
    linear-gradient(to top, rgba(10,11,12,0.42) 0%, transparent 45%),
    radial-gradient(ellipse 90% 95% at 88% 38%, rgba(200, 208, 216, 0.42), transparent 58%),
    radial-gradient(ellipse 60% 55% at 70% 82%, rgba(140, 150, 160, 0.22), transparent 55%),
    url('assets/hero-atmosphere.jpg?v=105') center right / cover no-repeat;
  z-index: 0;
  transform: scale(1.02);
  animation: heroDrift 22s ease-in-out infinite alternate;
  filter: grayscale(0.55) saturate(0.45) brightness(1.12) contrast(1.08);
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0,0,0); }
  to { transform: scale(1.05) translate3d(-0.8%, 0.5%, 0); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,11,12,0.2) 0%, transparent 42%, rgba(180,190,200,0.18) 100%),
    radial-gradient(ellipse 75% 90% at 100% 45%, rgba(210,218,226,0.28), transparent 65%);
  pointer-events: none;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-brand-mark {
  width: 32px;
  height: auto;
  margin-bottom: var(--space-5);
  filter: drop-shadow(0 6px 16px rgba(10,11,12,0.35));
  animation: heroFadeUp 0.8s var(--transition-slow) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.92;
  color: #f5f6f7;
  margin: 0 0 var(--space-5);
  max-width: 11ch;
  text-shadow: 0 2px 24px rgba(10,11,12,0.35);
  animation: heroFadeUp 0.85s var(--transition-slow) 0.06s both;
}

.hero-tag {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--volt);
  margin: 0 0 var(--space-3);
  animation: heroFadeUp 0.85s var(--transition-slow) 0.12s both;
}

.hero-lede {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(245, 246, 247, 0.82);
  max-width: 28rem;
  margin: 0 0 var(--space-6);
  line-height: 1.5;
  animation: heroFadeUp 0.85s var(--transition-slow) 0.18s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  animation: heroFadeUp 0.85s var(--transition-slow) 0.24s both;
}

.btn-hero-dark {
  background: var(--gold);
  color: var(--matte-black);
  border: 2px solid var(--gold);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 8px 20px rgba(10,11,12,0.28);
}

.btn-hero-dark:hover {
  background: var(--gold-light);
  color: var(--matte-black);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.32), 0 12px 26px rgba(10,11,12,0.32);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--matte-black);
  border: 2px solid var(--matte-black);
}

.btn-hero-outline:hover {
  background: var(--volt);
  color: var(--matte-black);
  transform: translateY(-1px);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--volt);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #f5f6f7;
  margin-bottom: var(--space-8);
  max-width: 700px;
  line-height: 0.95;
}

.hero p.hero-lede {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  color: rgba(245, 246, 247, 0.82);
  max-width: 28rem;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.hero p.hero-tag {
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--volt);
  margin: 0 0 var(--space-3);
  max-width: none;
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--volt);
  color: var(--matte-black);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 20px rgba(10,11,12,0.14);
}

.btn-primary:hover {
  background: var(--volt-light);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 12px 26px rgba(10,11,12,0.16);
}

.btn-secondary {
  background: var(--white);
  color: var(--matte-black);
  border: 2px solid var(--matte-black);
  backdrop-filter: none;
}

.btn-secondary:hover {
  border-color: var(--matte-black);
  color: var(--matte-black);
  background: var(--volt);
}

.btn-secondary:disabled,
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 0.78rem;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--signal);
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6) var(--space-4);
}

.product-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--transition-slow);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--product-img-aspect);
  width: 100%;
  background: var(--product-img-plate);
  border-radius: var(--radius);
  box-shadow:
    inset 0 0 0 1px rgba(10,11,12,0.08);
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border-radius: 0;
  padding: var(--product-img-padding);
  box-sizing: border-box;
  transform: scale(var(--product-img-scale));
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.08) contrast(1.03);
}

.product-card:hover img {
  transform: scale(var(--product-img-scale-hover));
}

.product-info {
  padding: var(--space-3) 0 0;
  text-align: left;
}

.product-card .category {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: var(--space-1);
}

.product-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.product-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-2);
}

.product-card-colors {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-weight: 500;
}

.product-card-swatches {
  display: flex;
  gap: 6px;
  margin: 0 0 var(--space-2);
}

.product-card-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(10,11,12,0.18);
  flex-shrink: 0;
}

.product-card .price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--matte-black);
}

.product-card .price .bulk {
  font-size: var(--text-xs);
  color: var(--text-faint);
  font-weight: 400;
  margin-left: var(--space-1);
}

/* --- Categories --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--signal);
  background: var(--surface-2);
}

.category-card h4 {
  font-size: var(--text-sm);
  color: var(--text);
  margin-bottom: var(--space-1);
}

.category-card .count {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* --- Section Header --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
}

.section-header h2 {
  color: var(--text);
}

.section-header .view-all {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--signal);
}

.section-header .view-all:hover {
  color: var(--signal);
}

/* --- Product Detail --- */
.product-detail {
  padding: var(--space-8) 0;
}

.product-detail .gallery img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-detail .info h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.product-detail .info .price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--matte-black);
  margin-bottom: var(--space-4);
}

.product-detail .info .description {
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

/* --- Cart --- */

/* --- Product Detail (new) --- */
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-10);
  align-items: start;
}

.product-detail-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--product-img-plate);
  min-width: 0;
  aspect-ratio: var(--product-img-aspect);
  max-width: 560px;
  box-shadow:
    inset 0 0 0 1px rgba(10,11,12,0.08);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-img-padding);
  box-sizing: border-box;
  background: transparent;
  transform: scale(var(--product-img-scale));
  transform-origin: center center;
}

.product-detail-image .product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.product-detail-short {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--space-3);
}

.product-collection {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: var(--space-3);
}

.product-detail-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--matte-black);
  margin-bottom: var(--space-4);
}

.product-detail-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: 34rem;
}

.product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-highlights li {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--matte-black);
  border: 1px solid var(--border-strong);
  padding: 0.4rem 0.7rem;
}

.product-options {
  margin-bottom: var(--space-5);
}

.option-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.option-choices {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.option-chip {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.option-chip:hover {
  border-color: var(--signal);
  color: var(--text);
}

.option-chip.selected {
  border-color: var(--signal);
  background: rgba(197, 165, 114, 0.1);
  color: var(--signal);
}

/* Color Swatches */
.color-swatches {
  gap: 10px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  position: relative;
  outline: none;
}

.color-swatch:hover {
  border-color: var(--signal);
  transform: scale(1.08);
}

.color-swatch.selected {
  border-color: var(--signal);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--gold);
}

.color-swatch.selected::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.product-detail-meta {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: var(--space-6) 0;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-item .label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.meta-item .value {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; }
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #d5d8dc;
}

.cart-item-image img,
.cart-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-thumb-padding);
  box-sizing: border-box;
  border-radius: var(--radius);
  background: #d5d8dc;
}

.product-thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-thumb-padding);
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  background: #d5d8dc;
  flex-shrink: 0;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: var(--text-sm);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--signal);
  background: var(--white);
}

/* --- Auth --- */
.auth-card {
  max-width: 400px;
  margin: var(--space-12) auto;
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.auth-card h1 {
  font-size: var(--text-xl);
  text-align: center;
  margin-bottom: var(--space-6);
}

/* --- Seller Dashboard --- */
.dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
}

.dashboard .sidebar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
}

.dashboard .sidebar a {
  display: block;
  padding: 10px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.dashboard .sidebar a:hover,
.dashboard .sidebar a.active {
  background: var(--surface-2);
  color: var(--signal);
}

/* --- Toast --- */
.toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  font-size: var(--text-sm);
  color: var(--text);
}

/* --- Footer --- */
.footer {
  background: var(--charcoal);
  border-top: 3px solid var(--volt);
  padding: var(--space-10) 0 var(--space-6);
  color: rgba(245, 246, 247, 0.72);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-brand .logo-mark {
  width: 16px;
  height: auto;
  max-height: 42px;
  filter: invert(1) brightness(1.05);
}

.footer-brand .logo-rule {
  height: 34px;
  margin: 0 12px;
}

.footer-brand .logo-link {
  animation: none;
}

.footer-brand .logo-text .main {
  color: #f5f6f7;
}

.footer-brand .logo-link:hover .logo-text .main {
  color: #ffffff;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(245, 246, 247, 0.62);
  max-width: 300px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--signal);
  margin-bottom: var(--space-4);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(245, 246, 247, 0.62);
  padding: var(--space-1) 0;
}

.footer-col a:hover {
  color: var(--volt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  color: rgba(245, 246, 247, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 36rem;
}

.footer-contact-line {
  text-transform: none;
  letter-spacing: 0.02em;
}

.footer-contact-line a {
  color: rgba(245, 246, 247, 0.62);
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: var(--volt);
}

.contact-identity {
  margin: 0 0 var(--space-5);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-identity p {
  margin-bottom: var(--space-1);
}

/* --- Trust bar --- */
.trust-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.trust-bar span {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-bar svg {
  width: 14px;
  height: 14px;
  color: var(--signal);
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: calc(100% - 32px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  padding: var(--space-6);
  box-shadow: 0 24px 64px rgba(10, 11, 12, 0.28);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: var(--space-8) 0; }
  .hero h1 { font-size: var(--text-2xl); }
  .hero p { font-size: var(--text-sm); }
  .hero-actions .btn { padding: 10px 20px; font-size: var(--text-xs); }
  .product-detail { grid-template-columns: 1fr; }
  .dashboard { grid-template-columns: 1fr; }
  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-2);
    padding: 0 var(--space-4);
    min-height: 56px;
  }
  .header-nav { display: none; }
  .header-actions { gap: 0; margin-left: auto; }
  .logo-text .main { font-size: 0.98rem; }
  .logo-text .sub { font-size: 0.5rem; letter-spacing: 0.28em; padding-right: 0.28em; }
  .logo-mark { width: 13px; height: auto; max-height: 34px; }
  .logo-rule { height: 26px; margin: 0 9px; }
  .utility-links { display: none; }
  .utility-inner { justify-content: center; }
  .trust-bar-inner { flex-wrap: wrap; gap: var(--space-3); }
  .trust-bar span { font-size: 9px; }
  .section { padding: var(--space-8) 0; }
  .section-header h2 { font-size: var(--text-xl); }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4) var(--space-3); }
  .hero-actions { flex-direction: column; }
}

/* --- Mobile Nav Drawer --- */
.mobile-menu-btn { display: none !important; width: 40px; height: 40px; align-items: center; justify-content: center; }
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav-drawer.open { transform: translateX(0); }
.mobile-nav-body { flex: 1; padding: var(--space-4); }
.mobile-nav-body a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.mobile-nav-body a:hover, .mobile-nav-body a.active { background: var(--surface-2); color: var(--primary); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: var(--space-3) 0; }
.header-wishlist-btn { position: relative; }
.header-wishlist-btn .cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--error); color: #fff; font-size: 9px;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

/* --- Breadcrumbs --- */
.breadcrumbs { padding: var(--space-3) 0; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.breadcrumbs .container { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumb-link { color: var(--text-muted); font-size: var(--text-sm); text-decoration: none; transition: color 0.15s; }
.breadcrumb-link:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-faint); font-size: var(--text-sm); }
.breadcrumb-current { color: var(--text); font-size: var(--text-sm); font-weight: 500; }

/* --- Product Card Wishlist Toggle --- */
.product-card-image-wrap { position: relative; }
.wishlist-toggle {
  position: absolute; top: 8px; right: 8px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
  z-index: 1;
  color: var(--text-muted);
}
.wishlist-toggle:hover { background: var(--white); color: var(--primary); border-color: var(--primary); }
.wishlist-toggle.wished { color: var(--error); border-color: var(--error); }
.wishlist-toggle svg { width: 18px; height: 18px; }

/* --- Image Zoom Overlay --- */
.image-zoom-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: var(--space-4);
  box-sizing: border-box;
}
.zoomed-image {
  width: auto;
  height: auto;
  max-width: min(95vw, 1400px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background: #d5d8dc;
  box-shadow: 0 24px 64px rgba(10, 11, 12, 0.35);
  cursor: zoom-out;
}
.zoom-hint {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.94); color: var(--text-muted);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 12px; font-size: var(--text-xs); cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.zoom-hint svg { width: 14px; height: 14px; }

/* --- Size Guide Modal --- */
.size-guide-modal { max-width: 500px; }
.size-guide-table { width: 100%; border-collapse: collapse; margin: var(--space-4) 0; }
.size-guide-table th { padding: var(--space-3); text-align: left; color: var(--primary); border-bottom: 2px solid var(--primary); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: var(--text-sm); }
.size-guide-table td { padding: var(--space-3); border-bottom: 1px solid var(--border); text-align: center; }
.size-guide-table tr:hover td { background: var(--surface-2); }
.size-guide-note { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--space-4); }
.size-guide-link {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: var(--text-sm); display: flex; align-items: center; gap: 4px; transition: color 0.15s;
}
.size-guide-link:hover { color: var(--primary); }
.size-guide-link svg { width: 14px; height: 14px; }
.option-label-row { display: flex; justify-content: space-between; align-items: center; }

/* --- Product Detail Extras --- */
.product-trust-badges {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin: var(--space-5) 0 var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}
.trust-badge svg { width: 15px; height: 15px; color: var(--gold-dark); }

/* --- Quantity selector (product detail + cart) --- */
.qty-selector {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.qty-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: var(--space-1);
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.qty-btn:hover {
  border-color: var(--matte-black);
  background: var(--surface-2);
}

.qty-btn svg {
  width: 16px;
  height: 16px;
  display: block;
  pointer-events: none;
}

.qty-display {
  min-width: 2rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
}

.product-actions-row { display: flex; gap: var(--space-3); align-items: center; }
.btn-icon-only {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; color: var(--text-muted);
}
.btn-icon-only:hover { border-color: var(--primary); color: var(--primary); }
.btn-icon-only.wished { color: var(--error); border-color: var(--error); }
.btn-icon-only svg { width: 20px; height: 20px; }
.product-card-rating { display: flex; align-items: center; gap: 4px; margin-top: 4px; }
.product-card-rating svg { width: 14px; height: 14px; color: var(--primary); }
.product-card-rating span { color: var(--text-muted); font-size: var(--text-sm); }
.meta-note { display: block; font-size: var(--text-xs); color: var(--text-faint); margin-top: 2px; }

/* --- Reviews Section --- */
.product-reviews { padding: var(--space-8) 0; border-top: 1px solid var(--border); }
.review-summary { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); }
.review-summary .review-stars { display: flex; gap: 2px; }
.review-summary .review-stars svg { width: 16px; height: 16px; color: var(--primary); }
.review-count { color: var(--text-muted); font-size: var(--text-sm); }
.review-overall { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.big-rating { font-size: var(--text-2xl); font-weight: 700; color: var(--primary); font-family: var(--font-display); }
.review-stars.big svg { width: 20px; height: 20px; color: var(--primary); }
.review-stars.big { display: flex; gap: 2px; }
.reviews-list { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-3); }
.review-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4); }
.review-header { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); flex-wrap: wrap; }
.review-header .review-stars svg { width: 14px; height: 14px; color: var(--primary); }
.review-author { font-weight: 600; color: var(--text); }
.review-date { color: var(--text-faint); font-size: var(--text-sm); margin-left: auto; }
.review-title { font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.review-body { color: var(--text-muted); line-height: 1.6; }
.rating-input { display: flex; gap: 4px; }
.rating-star { background: none; border: none; cursor: pointer; padding: 4px; }
.rating-star svg { width: 28px; height: 28px; color: var(--text-faint); transition: color 0.15s; }
.rating-star:hover svg, .rating-star.active svg { color: var(--primary); }

/* --- Related & Recently Viewed --- */
.related-products, .recently-viewed-section { padding: var(--space-8) 0; border-top: 1px solid var(--border); }
.related-title {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: var(--space-5); color: var(--text);
}

/* --- Checkout Extras --- */
.checkout-payment-notice {
  display: flex; gap: var(--space-3); align-items: flex-start;
  background: rgba(197,57,47,0.1); border: 1px solid rgba(197,57,47,0.3);
  border-radius: var(--radius); padding: var(--space-3);
  margin: var(--space-3) 0; color: var(--text-muted); font-size: var(--text-sm);
}
.checkout-payment-notice svg { width: 20px; height: 20px; color: var(--error); flex-shrink: 0; margin-top: 2px; }
.promo-code-section { display: flex; gap: 8px; margin: var(--space-4) 0; }
.promo-input { flex: 1; }
.promo-applied {
  display: flex; align-items: center; gap: 8px;
  background: rgba(90,138,58,0.1); border: 1px solid rgba(90,138,58,0.3);
  border-radius: var(--radius); padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm); color: var(--text);
}
.promo-applied svg { width: 16px; height: 16px; color: var(--success); }
.tax-estimate-display { margin: var(--space-2) 0; }
.tax-notice { display: flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: var(--text-sm); }
.tax-notice svg { width: 14px; height: 14px; color: var(--primary); }
.form-hint { color: var(--text-faint); font-size: var(--text-xs); margin-top: 4px; }

/* --- Order Confirmation --- */
.confirmation-icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-4);
  background: var(--success); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.confirmation-icon svg { width: 32px; height: 32px; color: #fff; }

/* --- Order Tracking --- */
.tracking-result { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); }
.tracking-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-5); }
.tracking-timeline { display: flex; justify-content: space-between; margin: var(--space-6) 0; position: relative; }
.tracking-timeline::before { content: ''; position: absolute; top: 16px; left: 10%; right: 10%; height: 2px; background: var(--border); }
.tracking-step { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); z-index: 1; flex: 1; }
.tracking-dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); transition: all 0.3s;
}
.tracking-dot.done { background: var(--success); border-color: var(--success); color: #fff; }
.tracking-dot svg { width: 16px; height: 16px; }
.tracking-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.tracking-step.done .tracking-label { color: var(--text); }
.tracking-number { text-align: center; padding: var(--space-3); background: var(--surface-2); border-radius: var(--radius); margin: var(--space-4) 0; color: var(--text-muted); }
.tracking-number strong { color: var(--primary); }
.tracking-items { margin: var(--space-4) 0; }
.tracking-summary { border-top: 1px solid var(--border); padding-top: var(--space-3); }

/* --- Static Content Pages --- */
.static-page { padding: var(--space-8) 0; }
.static-page h1 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; }
.static-page h2 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: var(--text-lg); margin-top: var(--space-6); margin-bottom: var(--space-3); color: var(--primary); }
.static-page p { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--space-3); }
.static-intro { color: var(--primary) !important; font-family: var(--font-display) !important; font-size: var(--text-lg) !important; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.static-page ul, .static-page ol { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--space-3); padding-left: var(--space-5); }
.static-page li { margin-bottom: var(--space-2); }
.inline-link { color: var(--primary); text-decoration: none; }
.inline-link:hover { text-decoration: underline; }
.info-table { width: 100%; border-collapse: collapse; margin: var(--space-3) 0 var(--space-5); }
.info-table th { padding: var(--space-2) var(--space-3); text-align: left; color: var(--primary); border-bottom: 2px solid var(--border); }
.info-table td { padding: var(--space-2) var(--space-3); border-bottom: 1px solid var(--border); color: var(--text-muted); }
.info-list { list-style: disc; padding-left: var(--space-5); }
.static-page .info-list { list-style: disc; }

/* --- FAQ --- */
.faq-list { margin-top: var(--space-4); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 500;
  text-align: left; padding: var(--space-4) 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-toggle { font-size: var(--text-xl); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding-bottom: var(--space-4); }
.faq-answer p { margin: 0; }

/* --- Values Grid --- */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; margin: var(--space-6) 0; border-top: 1px solid var(--border); }
.value-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: var(--space-5);
}
.value-card h3 { font-family: var(--font-display); color: var(--signal); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-2); font-size: 1.1rem; }
.value-card p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.6; margin: 0; }

.about-title {
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  margin-bottom: var(--space-4) !important;
  line-height: 0.9;
}

/* --- Account Settings --- */
.account-sections { display: flex; flex-direction: column; gap: var(--space-5); }
.status-badge.status-pending { color: var(--primary); }
.status-badge.status-shipped { color: #4a90d9; }
.status-badge.status-delivered { color: var(--success); }

/* --- Footer Newsletter --- */
.footer-newsletter { max-width: 300px; }
.footer-tagline { color: rgba(245, 246, 247, 0.62); font-size: var(--text-sm); margin: var(--space-3) 0; }
.footer-newsletter p { color: rgba(245, 246, 247, 0.55); font-size: var(--text-sm); }
.newsletter-form { display: flex; gap: 8px; margin-top: var(--space-2); }
.newsletter-input { flex: 1; min-width: 0; }
.footer .newsletter-input,
.footer .form-input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f5f6f7;
}
.footer .newsletter-input::placeholder,
.footer .form-input::placeholder {
  color: rgba(245, 246, 247, 0.4);
}

/* --- Responsive: Mobile Nav --- */
@media (max-width: 768px) {
  .mobile-menu-btn { display: flex !important; color: var(--matte-black); }
  .header-nav { display: none; }
  .nav-bar { display: none; }
  .search-bar { display: none; }
  .header-wishlist-btn { display: flex; }
  .product-detail-grid { grid-template-columns: 1fr !important; }
  .checkout-grid { grid-template-columns: 1fr !important; }
  .tracking-timeline { flex-direction: column; gap: var(--space-4); }
  .tracking-timeline::before { display: none; }
  .tracking-step { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .product-actions-row { flex-wrap: wrap; }
  .product-trust-badges { flex-direction: column; gap: var(--space-2); }
}

/* --- Utilities --- */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-6 { margin-top: var(--space-6); }

/* --- Checkout --- */
.checkout-page { padding-top: var(--space-6); }
.checkout-title { font-size: var(--text-xl); font-weight: 700; margin-bottom: 4px; }
.checkout-subtitle { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-6); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

.checkout-card {
  background: var(--bg-surface, #ffffff);
  border: 1px solid var(--border, #e4e7eb);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 20px;
}

.checkout-card-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #5a636e);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border, #e4e7eb);
}

/* Form fields */
.form-field { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary, #5a636e);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input, #eef0f2);
  border: 1px solid var(--border, #d8dce1);
  border-radius: 6px;
  color: var(--text-primary, #0a0b0c);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary, #b8924a);
}
.form-input::placeholder { color: var(--text-faint, #8a929c); }

/* City / State / ZIP grid */
.checkout-field-grid {
  display: grid;
  grid-template-columns: 1fr 100px 140px;
  gap: 12px;
}

/* Tax estimate */
.tax-estimate-display { margin-top: 4px; }
.shipping-estimate-display { margin-top: 6px; }
.shipping-eta-notice { display: inline-block; line-height: 1.35; }
.summary-row-note {
  font-size: 0.85em;
  color: var(--muted, #6b6b6b);
  font-weight: 400;
  padding-top: 0;
}
.summary-row-note span { font-weight: 400; }
.tax-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted, #888);
  font-size: var(--text-sm);
}
.tax-notice svg { width: 14px; height: 14px; color: var(--primary, #c5a572); }

/* Error message */
.checkout-error {
  background: rgba(223, 27, 65, 0.1);
  border: 1px solid rgba(223, 27, 65, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  color: #ff6b8a;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Pending payment notice */
.checkout-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(197, 165, 114, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.2);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 20px;
  color: var(--text-secondary, #5a636e);
  font-size: 14px;
  line-height: 1.5;
}
.checkout-notice svg {
  width: 18px;
  height: 18px;
  color: var(--primary, #b8924a);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Summary card */
.checkout-summary-card {
  position: sticky;
  top: 20px;
}

.summary-items { margin-bottom: 20px; }
.summary-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border, #e4e7eb);
  align-items: center;
}
.summary-item:last-child { border-bottom: none; }
.summary-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-thumb-padding);
  box-sizing: border-box;
  border-radius: 4px;
  flex-shrink: 0;
  background: #d5d8dc;
}
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary, #0a0b0c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-item-meta {
  font-size: 12px;
  color: var(--text-muted, #5a636e);
  margin-top: 2px;
}
.summary-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary, #b8924a);
  white-space: nowrap;
}

/* Promo code */
.promo-code-section { display: flex; gap: 8px; margin-bottom: 16px; }
.promo-input { flex: 1; }

/* Totals */
.summary-totals { padding-top: 16px; border-top: 1px solid var(--border, #e4e7eb); }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary, #5a636e);
}
.summary-row.discount { color: var(--primary, #b8924a); }
.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary, #0a0b0c);
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--border, #e4e7eb);
}

/* Responsive */
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; }
}
@media (max-width: 480px) {
  .checkout-card { padding: 20px; }
  .checkout-field-grid { grid-template-columns: 1fr; gap: 0; }
  .checkout-field-grid .form-field { margin-bottom: 18px; }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 100%;
  background: var(--bg-surface, #ffffff);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(10, 11, 12, 0.12);
  border-left: 1px solid var(--border, #e4e7eb);
}

.cart-drawer {
  font-family: var(--font-body, 'Inter', sans-serif);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border, #e4e7eb);
  flex-shrink: 0;
}

.drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #0a0b0c);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border, #e4e7eb);
  flex-shrink: 0;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary, #0a0b0c);
}

/* Cart items inside drawer */
.drawer-body .cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border, #e4e7eb);
  align-items: center;
}

.drawer-body .cart-item-image {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 4px;
  background: #d5d8dc;
}

.drawer-body .cart-item-image img,
.drawer-body .cart-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-thumb-padding);
  box-sizing: border-box;
  border-radius: 4px;
  flex-shrink: 0;
  background: #d5d8dc;
}

.drawer-body .cart-item-info {
  flex: 1;
  min-width: 0;
}

.drawer-body .cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary, #0a0b0c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-body .cart-item-meta {
  font-size: 12px;
  color: var(--text-muted, #888);
  margin-top: 2px;
}

.drawer-body .cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent, #c5a572);
  white-space: nowrap;
}

.drawer-body .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.drawer-body .cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.drawer-body .cart-remove {
  background: none;
  border: none;
  color: var(--text-muted, #888);
  cursor: pointer;
  font-size: 12px;
  padding: 4px 8px;
  margin-left: 4px;
  text-decoration: underline;
}

.drawer-body .cart-remove:hover {
  color: #df1b41;
}

.drawer-body .qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border, #d8dce1);
  background: transparent;
  color: var(--text-primary, #0a0b0c);
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0;
}

.drawer-body .qty-btn svg {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}

.drawer-body .qty-btn:hover {
  border-color: var(--accent, #b8924a);
}

.drawer-body .qty-display {
  font-size: 14px;
  font-weight: 500;
  min-width: 24px;
  text-align: center;
  color: var(--text-primary, #0a0b0c);
}

.drawer-body .remove-btn {
  background: none;
  border: none;
  color: var(--text-muted, #888);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  margin-left: 4px;
}

.drawer-body .remove-btn:hover {
  color: #df1b41;
}

/* Empty cart state in drawer */
.drawer-body .empty-cart {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted, #888);
}

.drawer-body .empty-cart svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

/* Mobile: full-width drawer */
@media (max-width: 480px) {
  .drawer {
    width: 100%;
  }
}

/* ===== Premium storefront: kit, mission, trust, motion ===== */
.section--collection {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border);
}

.section-header--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.section-header--row .eyebrow { margin-bottom: var(--space-2); }
.section-header--row h2 { margin: 0; }
.section-header--row .view-all,
.view-all {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.section-header--row .view-all:hover,
.view-all:hover {
  color: var(--signal);
  border-bottom-color: var(--volt);
}

.mission-section {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.mission-copy h2 { margin-bottom: var(--space-5); }
.mission-copy p {
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: var(--space-6);
  font-size: 1.05rem;
  line-height: 1.65;
}

.mission-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--product-img-aspect);
  max-width: 460px;
  margin-inline: auto;
  background: var(--product-img-plate);
  border-radius: var(--radius);
}

.mission-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: var(--product-img-padding);
  box-sizing: border-box;
  transform: scale(var(--product-img-scale));
  transform-origin: center center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.mission-section:hover .mission-visual img {
  transform: scale(var(--product-img-scale-hover));
}

.mission-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(10,11,12,0.08);
  pointer-events: none;
}

.trust-strip {
  padding: var(--space-10) 0;
  background: var(--matte-black);
  border-top: 3px solid var(--volt);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  padding: var(--space-6) var(--space-5);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.trust-item:last-child { border-right: none; }

.trust-kicker {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--volt);
  margin-bottom: var(--space-3);
}

.trust-item h3 {
  font-size: 1.35rem;
  color: #f5f6f7;
  margin-bottom: var(--space-3);
}

.trust-item p {
  color: rgba(245, 246, 247, 0.62);
  font-size: var(--text-sm);
  margin: 0;
  max-width: 22rem;
  line-height: 1.55;
}

.home-newsletter {
  padding: var(--space-10) 0 var(--space-12);
  background: var(--surface);
}

.home-newsletter-inner {
  border: 2px solid var(--matte-black);
  border-top: 4px solid var(--volt);
  background:
    linear-gradient(135deg, rgba(184,146,74,0.12), transparent 48%),
    var(--surface);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
  box-shadow: 6px 6px 0 rgba(10, 11, 12, 0.12);
}

.home-newsletter h2 {
  margin-bottom: var(--space-2);
  color: var(--matte-black);
}
.home-newsletter p { color: var(--text-muted); margin: 0; }
.home-newsletter .eyebrow { color: var(--signal); }
.home-newsletter .newsletter-input,
.home-newsletter .form-input {
  background: var(--surface);
  border: 2px solid var(--border-strong);
  color: var(--text);
}
.home-newsletter .newsletter-input::placeholder,
.home-newsletter .form-input::placeholder {
  color: var(--text-faint);
}
.home-newsletter .newsletter-input:focus,
.home-newsletter .form-input:focus {
  background: var(--surface);
  border-color: var(--volt-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lifestyle-story-item,
.product-card,
.trust-item {
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible .lifestyle-story-item:nth-child(2),
.reveal.is-visible .product-card:nth-child(2),
.reveal.is-visible .trust-item:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal.is-visible .lifestyle-story-item:nth-child(3),
.reveal.is-visible .product-card:nth-child(3),
.reveal.is-visible .trust-item:nth-child(3) {
  transition-delay: 0.14s;
}

.reveal.is-visible .product-card:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-shop-wrap { position: relative; }
.nav-mega {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: var(--space-3);
  z-index: 120;
  box-shadow: var(--shadow-lg);
}
.nav-shop-wrap:hover .nav-mega,
.nav-shop-wrap:focus-within .nav-mega { display: grid; gap: 2px; }
.nav-mega a {
  display: block;
  padding: 10px 12px !important;
  border-bottom: none !important;
  color: var(--text-muted);
}
.nav-mega a:hover { color: var(--signal); background: rgba(184,146,74,0.12); }

.checkout-page { padding-bottom: var(--space-12); }
.checkout-express {
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  border: 1px solid var(--border);
  background: var(--surface);
}
.checkout-express.is-pending {
  opacity: 0;
  pointer-events: none;
  max-height: 140px;
  overflow: hidden;
  margin-bottom: 0;
  /* Stay in layout so Stripe can measure the wallet iframe */
}
.checkout-express.is-unavailable {
  display: none !important;
}
.checkout-express.is-ready {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 20;
  isolation: isolate;
}
#express-checkout-element {
  min-height: 52px;
  position: relative;
  z-index: 20;
  pointer-events: auto;
  touch-action: manipulation;
}
#express-checkout-element iframe {
  pointer-events: auto !important;
  touch-action: manipulation;
}
/* Prevent any sibling overlays from swallowing wallet taps */
.checkout-express-title {
  pointer-events: none;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: var(--text-sm);
  color: var(--signal);
  margin-bottom: var(--space-3);
}
.checkout-summary-card { position: sticky; top: 110px; }
.checkout-secure-row {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: var(--text-xs);
  margin-top: var(--space-3);
}
.checkout-secure-row svg { width: 14px; height: 14px; color: var(--signal); }
.checkout-legal-assent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: var(--space-4) 0 var(--space-3);
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--text-muted);
  cursor: pointer;
}
.checkout-legal-assent-label input {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--signal);
}
.checkout-legal-assent-label a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-legal-assent-label a:hover { color: var(--text); }
.checkout-legal-assent {
  margin: var(--space-3) 0 0;
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--text-muted);
}
.checkout-legal-assent a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-legal-assent a:hover { color: var(--text); }
.payment-methods-note {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: var(--space-3);
}
.payment-pill {
  border: 1px solid var(--border);
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: var(--space-6);
  max-width: 640px;
}

.product-card-image-wrap {
  overflow: hidden;
  background: linear-gradient(145deg, #dfe4ea 0%, #c8ced6 100%);
}

.footer {
  background: var(--charcoal);
  border-top: 3px solid var(--volt);
}

@media (max-width: 900px) {
  .mission-grid,
  .home-newsletter-inner { grid-template-columns: 1fr; display: grid; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .trust-item:last-child { border-bottom: none; }
  .utility-bar { display: none; }
  .hero { align-items: flex-end; min-height: 78vh; }
  .hero-inner {
    padding: 0 var(--space-4);
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 600px) {
  .hero { min-height: 72vh; padding-bottom: var(--space-8); }
  .hero-brand-mark { width: 26px; }
  .hero-brand { max-width: none; }
  .section-header--row { align-items: flex-start; flex-direction: column; }
}

/* --- Phone / tablet polish (375–430 / 768–1024) --- */
@media (max-width: 1024px) {
  .container { padding-left: var(--space-4); padding-right: var(--space-4); }
  .checkout-summary-card { top: 96px; }
}

@media (max-width: 900px) {
  .checkout-field-grid {
    grid-template-columns: 1fr 90px 120px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-hero: clamp(2.25rem, 10vw, 3.4rem);
  }
  .mobile-menu-btn,
  .icon-btn,
  .header-wishlist-btn,
  .wishlist-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  .mobile-nav-body a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: var(--text-base);
  }
  .hero {
    min-height: min(78vh, 720px);
    padding: var(--space-8) 0 var(--space-8);
  }
  .hero-inner { padding: 0 var(--space-4); }
  .hero-content { padding: 0; }
  .hero-brand {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
  .hero-actions .btn {
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4) var(--space-3);
  }
  .product-card-image-wrap {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .checkout-page { padding-top: var(--space-4); }
  .checkout-card { padding: 20px; }
  .checkout-field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-input {
    font-size: 16px; /* prevent iOS zoom */
    min-height: 44px;
  }
  .drawer {
    width: 100%;
  }
  .section { padding-left: 0; padding-right: 0; }
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 430px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3) var(--space-2);
  }
  .product-card h4 { font-size: 0.8rem; }
  .product-card .price { font-size: 1rem; }
  .header-inner { padding: 9px var(--space-3); gap: var(--space-2); min-height: 52px; }
  .logo-text .main { font-size: 0.9rem; }
  .logo-text .sub { letter-spacing: 0.24em; padding-right: 0.24em; }
  .logo-mark { width: 12px; max-height: 30px; }
  .logo-rule { height: 24px; margin: 0 8px; }
  .hero { min-height: 68vh; }
  .utility-bar { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; width: 100%; }
}

/* --- Bright tactical: category pills + product badges --- */
.category-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pill {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 2px solid var(--border-strong);
  background: var(--white);
  color: var(--text-muted);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.pill:hover {
  border-color: var(--matte-black);
  color: var(--matte-black);
  transform: translateY(-1px);
}

.pill.active {
  background: var(--volt);
  border-color: var(--volt-dark);
  color: var(--matte-black);
}

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--matte-black);
  color: #fff;
  border: none;
  box-shadow: none;
}

.product-badge--warn {
  background: var(--gold-dark);
  color: #fff;
}

.product-badge--sold {
  background: var(--signal);
  color: #fff;
}

.product-card-shop {
  position: absolute;
  left: 50%;
  bottom: var(--space-4);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--matte-black);
  color: #fff;
  padding: 10px 16px;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 2;
}

.product-card:hover .product-card-shop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- Home: category quick links + tagline + featured --- */
.home-categories {
  background: var(--surface);
  border-bottom: 1px solid var(--border-strong);
  padding: var(--space-5) 0;
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.home-category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
  padding: var(--space-4) var(--space-5);
  background: var(--surface);
  border: 2px solid var(--border-strong);
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.home-category-card:hover {
  border-color: var(--matte-black);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: none;
}

.home-category-kicker {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.home-category-card:hover .home-category-kicker {
  color: var(--matte-black);
}

.home-category-card h3 {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--matte-black);
  margin: 0;
}

.home-tagline-strip {
  background: var(--matte-black);
  border-top: 1px solid rgba(184, 146, 74, 0.28);
  border-bottom: 1px solid rgba(184, 146, 74, 0.28);
  padding: var(--space-4) 0;
  text-align: center;
}

.home-tagline-strip p {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(245, 246, 247, 0.78);
  margin: 0;
  line-height: 1.5;
}

.home-tagline-accent {
  color: var(--volt-light);
}

.section--featured {
  padding: var(--space-10) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.section--featured .section-header--row h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

/* --- Premium home elevators --- */
.brand-statement {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}

.brand-statement-kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 var(--space-4);
}

.brand-statement-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--matte-black);
  margin: 0 auto var(--space-4);
  max-width: 16ch;
}

.brand-statement-body {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto;
}

.lifestyle-story {
  background: var(--matte-black);
  color: #f5f6f7;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.lifestyle-story-intro {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 28rem;
}

.lifestyle-story-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  text-transform: none;
}

.eyebrow--on-dark {
  color: var(--gold-light);
}

.lifestyle-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.lifestyle-story-item {
  border-top: 1px solid rgba(184, 146, 74, 0.35);
  padding-top: var(--space-5);
}

.lifestyle-story-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  margin-bottom: var(--space-3);
}

.lifestyle-story-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
  margin: 0 0 var(--space-3);
}

.lifestyle-story-item p {
  color: rgba(245, 246, 247, 0.68);
  line-height: 1.55;
  margin: 0;
  font-size: 0.95rem;
}

.flagship-feature {
  background: var(--surface);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.flagship-media {
  background: var(--product-img-plate);
  aspect-ratio: var(--product-img-aspect);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}

.flagship-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--product-img-padding);
  transform: scale(var(--product-img-scale));
  transition: transform var(--transition-slow);
}

.flagship-media:hover img {
  transform: scale(var(--product-img-scale-hover));
}

.flagship-copy .eyebrow { margin-bottom: var(--space-3); }

.flagship-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 var(--space-4);
}

.flagship-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
  max-width: 28rem;
}

.flagship-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 var(--space-5);
}

.philosophy-section {
  background: var(--bg);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.philosophy-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 var(--space-4);
}

.philosophy-copy > p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 var(--space-4);
  max-width: 32rem;
}

.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: grid;
  gap: var(--space-2);
}

.philosophy-list li {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--matte-black);
  padding-left: var(--space-4);
  position: relative;
}

.philosophy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.philosophy-close {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--matte-black);
  margin: 0 0 var(--space-6) !important;
}

.philosophy-visual {
  background: var(--product-img-plate);
  aspect-ratio: var(--product-img-aspect);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--product-img-padding);
  transform: scale(var(--product-img-scale));
}

.home-newsletter .eyebrow { color: var(--gold-dark); }

@media (max-width: 900px) {
  .lifestyle-story-grid,
  .flagship-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  .flagship-media,
  .philosophy-visual {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .home-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home-categories-grid {
    grid-template-columns: 1fr;
  }
  .home-tagline-strip p {
    font-size: 1rem;
    padding: 0 var(--space-4);
  }
  .brand-statement-title {
    max-width: none;
  }
}
