/* ================================================================
   SHAHJED — GLOBAL STYLES
   Shahjed Typography System v1.0 — "Quiet Craft"
   Display/editorial:  Fraunces (soft-serif, warm ink-traps)
   Body/UI:            Instrument Sans (humanist grotesque)
   Numerals/eyebrows:  IBM Plex Mono (tabular figures, spec-sheet precision)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Instrument+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg:        #ffffff;
  --bg-2:      #f5f5f7;
  --bg-3:      #fbfbfd;
  --card:      #f5f5f7;
  --card-hover:#ececef;
  --gold:      #0071e3;
  --gold-light:#2997ff;
  --gold-dim:  rgba(0,113,227,0.08);
  --indigo:    #5e5ce6;
  --indigo-dim:rgba(94,92,230,0.08);
  --text:      #1d1d1f;
  --text-2:    rgba(29,29,31,0.68);
  --text-3:    rgba(29,29,31,0.46);
  --border:    rgba(0,0,0,0.08);
  --border-2:  rgba(0,0,0,0.14);
  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --shadow:    0 20px 50px rgba(0,0,0,0.08);
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.06);
  --gold-glow: 0 0 40px rgba(0,113,227,0.15);

  /* Type families */
  --font:       'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:  'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --font-serif: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Fluid type scale — clamp(min, fluid, max), tuned for a 320–1440px viewport range */
  --fs-hero:    clamp(2.6rem, 2rem + 3.2vw, 4.6rem);
  --fs-display: clamp(2.1rem, 1.7rem + 2.2vw, 3.4rem);
  --fs-h1:      clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem);
  --fs-h2:      clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --fs-h3:      clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-h4:      clamp(1.1rem, 1.05rem + 0.25vw, 1.2rem);
  --fs-body-xl: clamp(1.1rem, 1.05rem + 0.25vw, 1.25rem);
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-caption: 0.75rem;

  /* Rhythm */
  --lh-display: 1.05;
  --lh-heading: 1.15;
  --lh-body:    1.65;
  --ls-display: -0.01em;
  --ls-heading: -0.02em;
  --ls-eyebrow: 0.08em;
}

/* ── Loading Spinner ── */
@keyframes spin { to { transform: rotate(360deg); } }
.loading-ring {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 0.8s linear infinite;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: var(--lh-body);
  font-variant-numeric: lining-nums;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  color: var(--text);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 3px; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 52px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 24px; height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}
.nav-links a {
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  background: transparent;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-self: end;
}

/* ── Account dropdown (signed-in nav state) ── */
.nav-account { position: relative; }
.nav-account-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font: inherit;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.nav-account-btn:hover,
.nav-account.open .nav-account-btn { background: var(--card-hover); border-color: var(--border-2); }
.nav-account-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #0058b0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-account-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-account-chevron { color: var(--text-3); transition: transform 0.2s; flex-shrink: 0; }
.nav-account.open .nav-account-chevron { transform: rotate(180deg); }
.nav-account-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 950;
}
.nav-account.open .nav-account-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-account-panel a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background 0.2s, color 0.2s;
}
.nav-account-panel a:hover { background: var(--card-hover); color: var(--text); }
.nav-account-panel a.nav-signout { color: #d70015; }
.nav-account-panel a.nav-signout:hover { background: rgba(215,0,21,0.08); }
.nav-account-divider { height: 1px; background: var(--border); margin: 6px 4px; }

/* ── Mega menu ── */
.has-mega { position: static; }
.has-mega > a { display: block; }
.mega-panel {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 900;
}
.has-mega.open .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-panel-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 32px 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 10px;
  border-radius: var(--radius);
  color: var(--text-2);
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.mega-item:hover { background: rgba(0,0,0,0.04); color: var(--text); }
.mega-item .mega-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.mega-item .mega-label { font-size: 0.85rem; font-weight: 500; }
.mega-footer-link {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.mega-footer-link a { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
.mega-footer-link a:hover { color: var(--gold-light); }
@media (max-width: 860px) {
  .mega-panel { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border-bottom: none; background: transparent; backdrop-filter: none; }
  .has-mega.open .mega-panel { display: block; }
  .mega-panel-inner { grid-template-columns: repeat(3, 1fr); padding: 8px 8px 16px; }
  .mega-item .mega-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  .mega-item .mega-label { font-size: 0.78rem; }
}
.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-2);
  font-weight: 400;
  font-size: 0.78rem;
  transition: color 0.2s;
  border: none;
}
.btn-shop:hover { color: var(--text); background: rgba(0,0,0,0.045); }
.btn-login {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--text-2);
  font-weight: 400;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.btn-login:hover { color: var(--text); background: rgba(0,0,0,0.045); }
/* Mobile nav keeps buttons pill-shaped and prominent since it's a touch menu, not the compact desktop bar */
.nav-mobile .btn-shop,
.nav-mobile .btn-login {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 0.95rem;
}
.nav-mobile .btn-shop:hover, .nav-mobile .btn-login:hover { background: var(--card-hover); }
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-2);
  transition: all 0.2s;
  cursor: pointer;
}
.nav-cart-btn:hover { color: var(--text); border-color: var(--border-2); }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.cart-count.show { display: flex; }

/* ── Header search ── */
.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-2);
  transition: all 0.2s;
  cursor: pointer;
}
.nav-search-btn:hover { color: var(--text); border-color: var(--border-2); }
.nav-search-btn.active { color: #fff; background: var(--text); border-color: var(--text); }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay-backdrop {
  position: absolute;
  top: 52px; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,17,0.4);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.search-overlay-panel {
  position: absolute;
  top: 52px; left: 0; right: 0;
  max-height: calc(100vh - 52px);
  overflow-y: auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(30px) saturate(1.6);
  -webkit-backdrop-filter: blur(30px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(0,0,0,0.16);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 0.32s cubic-bezier(0.16,1,0.3,1), transform 0.32s cubic-bezier(0.16,1,0.3,1);
}
.search-overlay.open .search-overlay-panel { opacity: 1; transform: translateY(0); }
.search-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 0 20px;
  border-bottom: 1px solid var(--border);
}
.search-input-row svg { color: var(--text-3); flex-shrink: 0; }
.search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}
.search-input-row input::placeholder { color: var(--text-3); font-weight: 400; }
.search-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}
.search-close:hover { background: var(--card-hover); color: var(--text); }
.search-results { padding: 22px 0 40px; min-height: 60px; }
.search-hint, .search-empty {
  color: var(--text-3);
  font-size: 0.92rem;
  padding: 18px 0;
}
.search-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 18px;
}
.search-result-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  padding: 10px;
  margin: -10px;
  transition: background 0.18s;
}
.search-result-item:hover { background: var(--card); }
.search-result-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-3);
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-name {
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.3;
}
.search-result-price { font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.search-view-all {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.search-view-all a { color: var(--gold); font-weight: 600; font-size: 0.92rem; }
.search-view-all a:hover { color: var(--gold-light); }
@media (max-width: 640px) {
  .search-input-row input { font-size: 1.1rem; }
  .search-result-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

/* Search bar embedded in the shop page itself */
.shop-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  padding: 12px 18px;
  border-radius: 980px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-search-bar:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim); }
.shop-search-bar svg { color: var(--text-3); flex-shrink: 0; }
.shop-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
.shop-search-clear {
  border: none;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}
.shop-search-clear:hover { color: var(--text); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 16px; height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 52px; left: 0; right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn-shop,
.nav-mobile .btn-login {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  height: 48px;
  font-size: 0.95rem;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 980px;
  background: var(--gold);
  color: #fff;
  font-weight: 500;
  font-size: 0.98rem;
  border: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary:hover { background: #0068d1; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,113,227,0.25); }
.btn-primary:disabled,
.btn-primary:disabled:hover {
  background: rgba(29,29,31,0.12);
  color: var(--text-3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 980px;
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
  border: 1px solid var(--border-2);
  transition: all 0.22s ease;
  cursor: pointer;
}
.btn-secondary:hover { border-color: rgba(0,0,0,0.3); background: var(--card-hover); }
.btn-sm {
  height: 40px;
  padding: 0 18px;
  font-size: 0.85rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.95rem;
  transition: gap 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}
.btn-ghost:hover { gap: 10px; color: var(--gold-light); }

/* ================================================================
   KICKER / LABEL
   ================================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--gold-dim);
  border: 1px solid rgba(0,113,227,0.2);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ================================================================
   SECTION HEADS
   ================================================================ */
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 16px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.section-head p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-head.center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }

/* ================================================================
   CARDS
   ================================================================ */
.card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}

/* ================================================================
   PRODUCT HERO STACK (Apple-style full-bleed sections)
   ================================================================ */
.phero {
  padding: 100px 0 0;
  text-align: center;
  overflow: hidden;
}
.phero.tint-gray  { background: #f5f5f7; }
.phero.tint-blue  { background: linear-gradient(180deg,#eaf3ff 0%,#d9e9fc 100%); }
.phero.tint-pink  { background: linear-gradient(180deg,#fdedf1 0%,#fbdde6 100%); }
.phero.tint-white { background: #ffffff; }
.phero-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.phero h1, .phero h2 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.phero-sub {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--text-2);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.5;
}
.phero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.phero-media {
  margin-top: 28px;
  width: 100%;
  line-height: 0;
}
.phero-media img {
  width: 100%;
  max-width: 1800px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 28px;
  border-radius: 980px;
  background: transparent;
  color: var(--gold);
  font-weight: 400;
  font-size: 1rem;
  border: 1px solid var(--gold);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold-dim); }

/* ================================================================
   HERO SLIDER (Home — Apple-style product carousel)
   ================================================================ */
.hero-slider {
  position: relative;
  margin-top: 52px;
  overflow: hidden;
  background: var(--bg-2);
}
.hero-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45,0,0.2,1);
}
.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  text-align: center;
  padding-top: 64px;
}
.hero-slide.tint-gray  { background: #f5f5f7; }
.hero-slide.tint-pink  { background: linear-gradient(180deg,#fdedf1 0%,#fbdde6 100%); }
.hero-slide.tint-blue  { background: linear-gradient(180deg,#eaf3ff 0%,#d9e9fc 100%); }
.hero-slide.tint-white { background: #ffffff; }
.hero-slide-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.hero-slide h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: var(--ls-display);
  margin-bottom: 8px;
}
.hero-slide-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.hero-slide-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.hero-slide-media {
  margin-top: 22px;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.hero-slide-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-width YouTube video slide */
.hero-video-slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.hero-video-slide iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.hero-video-empty {
  min-width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--text-3);
  text-align: center;
  padding: 40px;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .hero-video-slide, .hero-video-empty { aspect-ratio: 9 / 12; }
}

/* Full-bleed video/image product hero slide */
.hero-slide-v {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  height: 640px;
  overflow: hidden;
  background: #111;
}
.hero-slide-video, .hero-slide-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide-video.is-hidden { display: none; }
.hero-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0) 68%);
}
.hero-slide-details {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px 60px;
  color: #fff;
  max-width: 640px;
}
.hero-slide-brand {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: #7cc4ff;
}
.hero-slide-details h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-slide-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 14px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-slide-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.hero-slide-meta .stars { color: #ffd60a; letter-spacing: 2px; }
.hero-slide-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-weight: 500;
  font-size: 0.98rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 640px) {
  .hero-slide-v { height: 520px; }
  .hero-slide-details { padding: 28px 22px; }
  .hero-slide-actions .btn-primary, .hero-slide-actions .btn-outline-light { height: 46px; padding: 0 22px; font-size: 0.9rem; }
}

.slider-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }
@media (max-width: 640px) {
  .hero-slide-media { height: 260px; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* ================================================================
   FLAGSHIP HERO SLIDER (Home — one flagship product per brand)
   Each slide carries its own --accent, set inline per brand, so the
   whole slide re-skins (kicker rule, CTA, dots, floating-card glow)
   to that brand's identity — the group's "five brands, one shelf"
   structure made visible in the hero itself.
   ================================================================ */
.flagship-slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  height: clamp(560px, 88vh, 840px);
  overflow: hidden;
  background: #0c0c0e;
}
.flagship-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 8s cubic-bezier(0.16,1,0.3,1);
}
.flagship-slide.is-active .flagship-bg { transform: scale(1.05); }
.flagship-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.82) 0%, rgba(6,6,8,0.38) 42%, rgba(6,6,8,0.05) 62%, rgba(6,6,8,0) 78%),
    linear-gradient(to top, rgba(6,6,8,0.6) 0%, rgba(6,6,8,0) 40%);
}
.flagship-text {
  position: absolute;
  left: 0; bottom: 0; top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 64px 60px;
  max-width: 620px;
  color: #fff;
  z-index: 2;
}
.flagship-brand {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #7cc4ff);
  margin-bottom: 14px;
}
.flagship-text h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.7rem);
  color: #fff;
  letter-spacing: var(--ls-display);
  margin-bottom: 16px;
  line-height: 1.02;
}
.flagship-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}
.flagship-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.flagship-actions .btn-primary { background: var(--accent, #0071e3); }
.flagship-actions .btn-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 28px color-mix(in srgb, var(--accent, #0071e3) 40%, transparent); }

/* Floating spec card — glassmorphic, holds the "little video player" */
.flagship-card {
  position: absolute;
  right: 56px;
  bottom: 56px;
  width: 264px;
  z-index: 3;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px color-mix(in srgb, var(--accent, #0071e3) 12%, transparent);
}
.flagship-card-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
  background: #111;
}
.flagship-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease-in-out;
}
.flagship-live-tag {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.flagship-live-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #ff453a; }
.flagship-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,0.22);
  transition: background 0.2s;
}
.flagship-play span {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-left: 3px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.flagship-play:hover { background: rgba(0,0,0,0.34); }
.flagship-play:hover span { transform: scale(1.08); }

/* Hero video popup — clicking the play button opens a centered preview window;
   clicking anywhere outside it (or Escape) closes it. */
.flagship-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,4,6,0);
  pointer-events: none;
  transition: background 0.35s ease;
}
.flagship-video-overlay.open {
  background: rgba(4,4,6,0.72);
  pointer-events: auto;
}
.flagship-video-window {
  position: relative;
  width: min(680px, 86%);
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #0c0c0e;
  box-shadow: 0 40px 90px rgba(0,0,0,0.5), 0 0 0 1px color-mix(in srgb, var(--accent, #0071e3) 30%, transparent);
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.flagship-video-overlay.open .flagship-video-window {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.flagship-video-window img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.flagship-video-overlay.open .flagship-video-window img {
  animation: flagshipKenburns 6s ease-in-out infinite alternate;
}
.flagship-video-window video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.flagship-video-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.flagship-video-close:hover { background: rgba(0,0,0,0.75); }
.flagship-video-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
  color: #fff;
}
.flagship-video-brand {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #7cc4ff);
}
.flagship-video-name { font-size: 0.92rem; font-weight: 500; }
.flagship-card-brand {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent, var(--gold));
  margin-bottom: 4px;
}
.flagship-card h4 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.flagship-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.flagship-card-meta .stars { color: #ff9f0a; letter-spacing: 1px; }
.flagship-card-price { font-weight: 700; color: var(--text); }
@keyframes flagshipKenburns {
  from { transform: scale(1.0) translate(0,0); }
  to   { transform: scale(1.14) translate(-2.5%,-2%); }
}
@media (max-width: 860px) {
  .flagship-text { max-width: 100%; padding: 90px 24px 260px; justify-content: flex-start; }
  .flagship-card { right: 24px; left: 24px; width: auto; bottom: 24px; }
  .flagship-card-media { aspect-ratio: 16/9; }
}
@media (max-width: 640px) {
  .flagship-slide { height: clamp(720px, 100vh, 960px); }
  .flagship-desc { display: none; }
  .flagship-text { padding: 88px 20px 340px; justify-content: flex-start; }
  .flagship-card { padding: 14px 14px 16px; }
  .flagship-video-window { width: 92%; }
  .flagship-video-caption { padding: 12px 14px; }
  .flagship-video-name { font-size: 0.82rem; }
}

/* ================================================================
   SHARED EDITORIAL PRIMITIVES (Home)
   ================================================================ */
.section-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.section-kicker.on-dark { color: rgba(255,255,255,0.5); }
.editorial-heading {
  font-family: var(--font-serif);
  font-weight: 480;
  font-size: clamp(2.1rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}
.editorial-sub {
  margin-top: 18px;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 360px;
}
.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 3px;
}
.text-link-arrow span { transition: transform 0.2s ease; }
.text-link-arrow:hover { border-color: var(--text); }
.text-link-arrow:hover span { transform: translateX(3px); }

/* ================================================================
   AD BANNER — admin-managed placement, hidden entirely when empty
   ================================================================ */
.ad-banner {
  width: 100%;
  height: 400px;
  margin-top: 8px;
  overflow: hidden;
  background: var(--bg-2);
}
.ad-banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .ad-banner { height: 220px; }
}

/* ================================================================
   SPOTLIGHT (Home — Apple-style full-bleed image tiles)
   Full-cover background photo with a dark scrim + kicker/headline/
   subhead/CTAs centered directly on top of the image. First 3 tiles
   render full-wide/tall (.spotlight-hero); remaining 4 sit in a 2x2
   grid at a smaller size.
   ================================================================ */
.spotlight { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; background: var(--bg); }
.spotlight-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 320px;
  text-align: center;
  color: #fff;
}
.spotlight-hero { min-height: 640px; }

.spotlight-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.spotlight-tile:hover .spotlight-bg { transform: scale(1.04); }

/* Darkens the full tile evenly (not just top/bottom) so the white kicker/
   heading/CTAs stay legible over any photo — including light, text-heavy
   brand banners where a plain top/bottom gradient wouldn't give enough
   contrast in the middle. */
.spotlight-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.16) 40%, rgba(0,0,0,0.38) 100%);
}

.spotlight-head {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  padding: 24px;
}
.spotlight-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 10px;
}
.spotlight-head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  letter-spacing: var(--ls-display);
  line-height: 1.08;
}
.spotlight-head p {
  font-size: 1.02rem;
  opacity: 0.72;
  margin-top: 10px;
}
.spotlight-tile .spotlight-kicker,
.spotlight-tile .spotlight-head p { opacity: 0.7; }
.spotlight-tile .spotlight-head h2 { color: #fff; opacity: 0.88; }
.spotlight-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 980px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s, background 0.2s;
}
.spotlight-cta.solid { background: var(--gold); color: #fff; }
.spotlight-cta.solid:hover { opacity: 0.88; }
.spotlight-cta.outline { border: 1px solid currentColor; color: inherit; }
.spotlight-cta.outline:hover { background: rgba(128,128,128,0.12); }

.spotlight-tile .spotlight-cta.solid { background: #fff !important; color: #1d1d1f !important; }
.spotlight-tile .spotlight-cta.outline { border-color: rgba(255,255,255,0.7) !important; color: #fff !important; }
.spotlight-tile .spotlight-cta.outline:hover { background: rgba(255,255,255,0.16) !important; }

/* 2x2 grid of smaller spotlight tiles */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--bg);
}
.spotlight-grid .spotlight-tile { min-height: 380px; }
.spotlight-grid .spotlight-head h2 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
.spotlight-grid .spotlight-head p { font-size: 0.88rem; }
.spotlight-grid .spotlight-ctas { margin-top: 16px; }

@media (max-width: 860px) {
  .spotlight-hero { min-height: 460px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-grid .spotlight-tile { min-height: 320px; }
}
@media (max-width: 640px) {
  .spotlight-ctas { flex-direction: column; gap: 10px; }
  .spotlight-cta { width: 100%; justify-content: center; }
  .spotlight-hero { min-height: 400px; }
}

/* ================================================================
   SHOP THE COLLECTION (Home — live products, Apple-structured grid)
   Reuses .spotlight-head/.spotlight-kicker/.spotlight-cta for a
   consistent Apple visual language, but renders real catalog data
   via fetchProducts/renderProductGrid — scoped to #featuredGrid so
   shop.html's boxed #shopGrid card style is untouched.
   ================================================================ */
.product-spotlight { padding: 90px 0 110px; background: var(--bg); }
.product-spotlight-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }

#featuredGrid.shop-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 44px 24px; }
#featuredGrid .product-card {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: none;
}
#featuredGrid .product-card:hover { transform: none; box-shadow: none; border-color: transparent; }
#featuredGrid .product-img-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: var(--bg-2);
}
#featuredGrid .product-brand-dot { top: 16px; left: 16px; }
#featuredGrid .product-desc { display: none; }
#featuredGrid .product-info { padding: 18px 2px 0; text-align: center; }
#featuredGrid .product-name { font-size: 1rem; margin-bottom: 4px; }
#featuredGrid .product-footer { flex-direction: column; align-items: center; gap: 12px; margin-top: 6px; }
#featuredGrid .product-price { font-size: 0.92rem; color: var(--text); font-weight: 600; }
#featuredGrid .btn-add-cart {
  height: auto;
  padding: 9px 20px;
  border-radius: 980px;
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
#featuredGrid .btn-add-cart:hover { opacity: 0.88; background: var(--gold); color: #fff; }
#featuredGrid .btn-add-cart.added { background: var(--gold); color: #fff; opacity: 1; }

.product-spotlight-foot { text-align: center; margin-top: 56px; }
.product-spotlight-foot .spotlight-cta { display: inline-flex; }

@media (max-width: 640px) {
  .product-spotlight { padding: 60px 0 80px; }
  .product-spotlight-head { margin-bottom: 40px; }
  #featuredGrid.shop-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
}

/* ================================================================
   BRAND STATEMENT BAND (Home)
   ================================================================ */
.statement-band {
  background: var(--text);
  color: #fff;
}
.statement-inner { max-width: 1200px; padding-top: 72px; padding-bottom: 56px; }
.statement-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 22px;
}
.statement-text {
  font-family: var(--font-serif);
  font-weight: 420;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  max-width: 460px;
  flex-shrink: 0;
}
.statement-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.stat-item { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.stat-icon { width: 22px; height: 22px; color: rgba(255,255,255,0.4); }
.stat-num { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) {
  .statement-grid { flex-direction: column; align-items: flex-start; gap: 40px; }
  .statement-text { max-width: none; }
}
@media (max-width: 640px) {
  .statement-inner { padding-top: 56px; padding-bottom: 40px; }
  .statement-stats { flex-wrap: wrap; row-gap: 24px; column-gap: 32px; }
}

/* ================================================================
   VALUE STRIP (Home — compact trust strip fused to the statement
   band above it, so both read as one continuous dark unit)
   ================================================================ */
.value-strip {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
}
.value-strip-inner {
  display: flex;
}
.value-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.value-item:first-child { padding-left: 0; border-left: none; }
.trust-icon { width: 24px; height: 24px; flex-shrink: 0; color: rgba(255,255,255,0.45); }
.value-item div { display: flex; flex-direction: column; gap: 2px; }
.value-title { font-weight: 500; font-size: 0.88rem; color: #fff; }
.value-sub { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
@media (max-width: 860px) {
  .value-strip-inner { flex-wrap: wrap; row-gap: 24px; }
  .value-item { flex: 1 1 45%; border-left: none; padding-left: 0; }
}
@media (max-width: 540px) {
  .value-item { flex: 1 1 100%; }
}

/* ================================================================
   HERO SECTION (Home)
   ================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,113,227,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(94,92,230,0.05) 0%, transparent 40%),
    var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0 100px;
}
.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-copy h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,113,227,0.55);
}
.hero-copy p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 2px;
}
.hero-visual {
  position: relative;
}
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  aspect-ratio: 4/3;
  position: relative;
}
.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-card:hover img { transform: scale(1.04); }
.hero-card.tall { grid-row: 1 / 3; aspect-ratio: auto; }
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
}
.hero-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

/* ================================================================
   CORE VALUES / FEATURES GRID
   ================================================================ */
.core-section {
  padding: 120px 0;
}
.core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.core-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.core-card:hover {
  border-color: rgba(0,113,227,0.25);
  transform: translateY(-6px);
}
.core-card-num {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.core-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.core-card p {
  color: var(--text-2);
  line-height: 1.7;
  font-size: 0.95rem;
}
.core-card-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================================
   BRANDS PREVIEW (Home)
   ================================================================ */
.brands-preview {
  padding: 0 0 120px;
}
.brands-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.brand-preview-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.brand-preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
}
.brand-preview-card.shaju { background: linear-gradient(145deg, rgba(0,113,227,0.05) 0%, rgba(255,255,255,0) 60%), var(--card); }
.brand-preview-card.ziodox { background: linear-gradient(145deg, rgba(94,92,230,0.06) 0%, rgba(255,255,255,0) 60%), var(--card); }
.brand-badge-large {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.shaju .brand-badge-large { background: linear-gradient(135deg, var(--gold), #0058b0); color: #fff; }
.ziodox .brand-badge-large { background: linear-gradient(135deg, var(--indigo), #4b45c6); color: #fff; }
.brand-preview-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.brand-preview-card p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.brand-tag {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* ================================================================
   PRODUCT CARDS (Shop)
   ================================================================ */
.product-card {
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  border-color: rgba(0,113,227,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-brand-dot {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.product-discount-badge {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: #d70015;
}
.product-price-original {
  font-size: 0.82rem;
  color: var(--text-3);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 500;
}

.product-bestseller-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ff9f0a, #ff7a00);
  z-index: 2;
}

/* Coming Soon — centered stamp shown across a product's image wherever it appears */
.coming-soon-stamp {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,12,0.34);
  z-index: 3;
  pointer-events: none;
}
.coming-soon-stamp span {
  background: rgba(20,20,22,0.92);
  color: #fff;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transform: rotate(-6deg);
  white-space: nowrap;
}
.coming-soon-stamp.sm span { font-size: 0.6rem; padding: 5px 10px; }

/* Small inline tag — next to a product name in cart rows, product detail title, etc. */
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(29,29,31,0.08);
  color: var(--text-2);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Popup shown when a Coming Soon product is added to the bag */
.coming-soon-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,4,6,0);
  pointer-events: none;
  transition: background 0.3s ease;
  padding: 20px;
}
.coming-soon-popup-overlay.open {
  background: rgba(4,4,6,0.55);
  pointer-events: auto;
}
.coming-soon-popup {
  width: min(420px, 100%);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.coming-soon-popup-overlay.open .coming-soon-popup {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.coming-soon-popup-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-soon-popup h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.coming-soon-popup p {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
}
.product-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--text-2);
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-info {
  padding: 18px 20px 20px;
}
.product-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.3;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 14px;
  line-height: 1.6;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.btn-add-cart {
  height: 34px;
  padding: 0 14px;
  border-radius: 980px;
  background: var(--gold-dim);
  border: 1px solid rgba(0,113,227,0.2);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-add-cart:hover { background: var(--gold); color: #fff; }
.btn-add-cart.added { background: var(--gold); color: #fff; }
.btn-add-cart:disabled,
.btn-add-cart:disabled:hover {
  background: rgba(29,29,31,0.06);
  border-color: transparent;
  color: var(--text-3);
  cursor: not-allowed;
}

/* ================================================================
   SHOP PAGE
   ================================================================ */
.shop-hero {
  padding-top: 52px;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,113,227,0.04) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.shop-hero-inner {
  padding-top: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.shop-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.97;
}
.shop-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.filter-btn {
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--border-2); color: var(--text); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.shop-main {
  padding: 60px 0 100px;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid > a:hover { transform: translateY(-4px); }
.shop-count {
  color: var(--text-3);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero {
  padding-top: 52px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 60% 30%, rgba(94,92,230,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 70%, rgba(0,113,227,0.05) 0%, transparent 40%),
    var(--bg);
}
.about-hero-inner {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  margin-bottom: 24px;
}
.about-hero p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-timeline {
  display: grid;
  gap: 32px;
}
.about-timeline-item {
  display: flex;
  gap: 20px;
}
.timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.timeline-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), transparent);
  min-height: 32px;
}
.timeline-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.timeline-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.timeline-content p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-values {
  padding: 100px 0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover { border-color: rgba(0,113,227,0.25); transform: translateY(-4px); }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(0,113,227,0.15);
}
.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}
.about-impact {
  padding: 0 0 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.impact-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
}
.impact-num {
  font-family: var(--font);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.impact-label {
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ================================================================
   BRANDS PAGE
   ================================================================ */
.brands-hero {
  padding-top: 52px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,113,227,0.06) 0%, transparent 45%),
    var(--bg);
}
.brands-hero-inner {
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.brands-hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  max-width: 600px;
}
.brands-section {
  padding: 80px 0 120px;
}
.brand-full-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 40px;
}
.brand-full-header {
  padding: 48px 48px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.brand-full-body {
  padding: 32px 48px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.brand-full-stat { }
.brand-full-stat .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.brand-full-stat .value {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
}
.brand-products-preview {
  padding: 0 48px 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.brand-product-mini {
  border-radius: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 14px;
  transition: border-color 0.2s;
}
.brand-product-mini:hover { border-color: var(--border-2); }
.brand-product-mini img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.brand-product-mini-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
}
.brand-product-mini-price {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 3px;
}

/* ================================================================
   COMPANIES PAGE
   ================================================================ */
.companies-hero {
  padding-top: 52px;
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(94,92,230,0.05) 0%, transparent 45%),
    var(--bg);
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 80px 0 120px;
}
.company-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.company-card:hover { border-color: rgba(94,92,230,0.3); transform: translateY(-5px); }
.company-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--indigo-dim);
  border: 1px solid rgba(94,92,230,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.company-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.company-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}
.company-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero {
  padding-top: 52px;
  padding-bottom: 60px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(0,113,227,0.05) 0%, transparent 45%),
    var(--bg);
}
.contact-main {
  padding: 60px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.contact-info p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-2);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 2px;
}
.contact-detail-text span {
  color: var(--text-2);
  font-size: 0.92rem;
}
.contact-form-card {
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.03);
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(0,113,227,0.5);
  background: rgba(0,113,227,0.04);
}
.password-field { position: relative; }
.password-field input { padding-right: 46px; }
.password-toggle {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--text-3);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.password-toggle:hover { color: var(--text-2); background: rgba(0,0,0,0.04); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field select { cursor: pointer; }
.form-field select option { background: #ffffff; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.form-status.success { background: rgba(52,199,89,0.1); color: #248a3d; border: 1px solid rgba(52,199,89,0.2); }
.form-status.error { background: rgba(255,59,48,0.08); color: #d70015; border: 1px solid rgba(255,59,48,0.18); }

/* ── Reviews ── */
.review-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.review-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.review-stars { color: #ff9f0a; font-size: 0.95rem; letter-spacing: 2px; }
.review-verified {
  margin-left: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #248a3d;
  background: rgba(52,199,89,0.1);
  padding: 3px 9px;
  border-radius: 999px;
}
.review-date { font-size: 0.78rem; color: var(--text-3); }
.review-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.review-comment { color: var(--text-2); font-size: 0.9rem; line-height: 1.7; margin-bottom: 8px; }
.review-author { font-size: 0.8rem; color: var(--text-3); }
.star-input { display: flex; gap: 4px; }
.star-input button {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--border-2);
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  transition: color 0.15s;
}
.star-input button.active { color: #ff9f0a; }

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail {
  padding-top: 52px;
}
.product-detail-inner {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 92px;
}
.product-main-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-3);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.product-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--bg-3);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active { border-color: var(--gold); }
.product-info-panel h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: var(--text-2);
}
.stars { color: var(--gold); letter-spacing: 2px; }
.product-price-big {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}
.product-about {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.product-bullets {
  list-style: none;
  margin: -18px 0 28px;
  padding: 0;
}
.product-bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}
.product-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.product-quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
}
.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--card-hover); }
.qty-num {
  width: 44px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-features {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.product-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.product-feature-icon { color: var(--gold); flex-shrink: 0; font-size: 0.9rem; margin-top: 2px; }
.product-feature-text { font-size: 0.88rem; color: var(--text-2); }

/* ================================================================
   CART PAGE
   ================================================================ */
.cart-page {
  padding-top: 52px;
}
.cart-inner {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.cart-items { }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.cart-head h1 { font-size: 1.8rem; letter-spacing: -0.04em; }
.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  position: relative;
  width: 90px; height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name {
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cart-item-brand {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.cart-item-price {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  text-align: right;
  white-space: nowrap;
}
.cart-item-remove {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: right;
  margin-top: 6px;
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
}
.cart-item-remove:hover { color: #d70015; }
.cart-summary {
  position: sticky;
  top: 92px;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
}
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 24px; letter-spacing: -0.02em; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  padding: 14px 0 0;
  border-top: 1px solid var(--border-2);
  margin-top: 8px;
}
.summary-label { color: var(--text-2); }
.summary-value { color: var(--text); font-weight: 600; }
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-3);
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.cart-empty h3 { font-size: 1.3rem; color: var(--text-2); margin-bottom: 8px; }

/* ================================================================
   CHECKOUT / PAYMENT PAGES
   ================================================================ */
.checkout-page, .payment-page {
  padding-top: 52px;
}
.checkout-inner {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.checkout-form-section h2 {
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.checkout-section {
  margin-bottom: 40px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.checkout-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(0,113,227,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}
.checkout-step h3 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.checkout-order-summary {
  position: sticky;
  top: 92px;
}
.checkout-order-summary h2 {
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.checkout-order-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-order-item img {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.checkout-item-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.checkout-item-sub { font-size: 0.75rem; color: var(--text-3); }
.checkout-item-price { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-left: auto; white-space: nowrap; }

/* Payment Success */
.payment-success {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.payment-success-card {
  max-width: 540px;
  width: 100%;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(52,199,89,0.1);
  border: 2px solid rgba(52,199,89,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}
.payment-success-card h1 { font-size: 2rem; margin-bottom: 14px; }
.payment-success-card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 36px; }
.order-number {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid rgba(0,113,227,0.2);
  margin-bottom: 32px;
  display: inline-block;
}

/* ================================================================
   LOGIN / ACCOUNT PAGE
   ================================================================ */
.auth-page {
  padding-top: 52px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(0,113,227,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(94,92,230,0.04) 0%, transparent 40%),
    var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 44px 36px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.auth-card h1 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.auth-card .subtitle {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.auth-tabs {
  display: flex;
  border-radius: var(--radius-sm);
  background: var(--bg-3);
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  height: 38px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active { background: #fff; color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
  color: var(--text-3);
  font-size: 0.8rem;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Account Dashboard */
.account-page {
  padding-top: 52px;
}
.account-inner {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.account-sidebar {
  position: sticky;
  top: 92px;
  padding: 28px 20px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid var(--border);
}
.account-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.account-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #0058b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.account-user-name { font-weight: 700; font-size: 0.9rem; }
.account-user-email { font-size: 0.75rem; color: var(--text-3); }
.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.2s;
  margin-bottom: 2px;
}
.account-nav a:hover, .account-nav a.active {
  color: var(--text);
  background: var(--card-hover);
}
.account-nav a.active { color: var(--gold); }
.legal-nav-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-3);
  padding: 18px 12px 8px;
}
.legal-nav-label:first-child { padding-top: 4px; }
.legal-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  scroll-margin-top: 100px;
}
.legal-content .legal-updated {
  color: var(--text-3);
  font-size: 0.82rem;
  margin-bottom: 32px;
}
.legal-content section { margin-bottom: 36px; }
.legal-content section:last-child { margin-bottom: 0; }
.legal-content h3 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
  scroll-margin-top: 100px;
}
.legal-content p {
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px 0;
  padding-left: 20px;
  color: var(--text-2);
  font-size: 0.94rem;
  line-height: 1.85;
}
.legal-content li { margin-bottom: 6px; }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.account-content h2 {
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.order-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.order-id { font-family: var(--font); font-weight: 700; font-size: 0.9rem; }
.order-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.order-status.delivered { background: rgba(52,199,89,0.12); color: #248a3d; }
.order-status.processing { background: rgba(255,159,10,0.12); color: #b4650a; }
.order-status.shipped { background: rgba(94,92,230,0.12); color: var(--indigo); }
.order-status.cancelled { background: rgba(29,29,31,0.08); color: var(--text-3); }
.order-status.requested { background: rgba(255,159,10,0.12); color: #b4650a; }
.order-status.approved { background: rgba(52,199,89,0.12); color: #248a3d; }
.order-status.rejected { background: rgba(215,0,21,0.1); color: #d70015; }
.order-status.refunded { background: rgba(94,92,230,0.12); color: var(--indigo); }

/* ── Account: Payments ── */
.payment-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.payment-card-icon {
  width: 46px; height: 32px;
  border-radius: 6px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}
.payment-card-info { flex: 1; min-width: 0; }
.payment-card-brand { font-weight: 600; font-size: 0.9rem; }
.payment-card-sub { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; }
.payment-card-default {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 5px 11px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Account: Returns ── */
.return-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  font-size: 0.85rem;
  cursor: pointer;
}
.return-item-row:hover { background: var(--card-hover); }
.return-item-row input[type="checkbox"] { accent-color: var(--gold); flex-shrink: 0; }
.return-item-row img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.order-items-list { display: flex; gap: 8px; }
.order-item-thumb {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.order-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-cta {
  padding: 20px 0;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.footer-cta .kicker { display: none; }
.footer-cta h2 {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-2);
  max-width: none;
  margin: 0;
  letter-spacing: 0;
}
.footer-cta p { display: none; }
.footer-cta .btn-primary {
  display: inline-flex;
  height: auto;
  padding: 0;
  margin-top: 2px;
  background: none;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 400;
}
.footer-cta .btn-primary:hover { background: none; color: var(--gold-light); transform: none; box-shadow: none; text-decoration: underline; }

/* Newsletter block (Home) */
.newsletter-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--card) 100%);
  border: 1px solid var(--border);
  margin: 48px 0 40px;
  padding: 56px;
}
.newsletter-glow {
  position: absolute;
  inset: -40% -10% auto auto;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,113,227,0.14) 0%, rgba(94,92,230,0.08) 45%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.newsletter-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.newsletter-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--ls-eyebrow);
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.newsletter-copy h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.5rem + 1.6vw, 2.6rem);
  letter-spacing: var(--ls-display);
  margin-bottom: 14px;
}
.newsletter-copy p { color: var(--text-2); font-size: 0.98rem; max-width: 420px; margin-bottom: 24px; }
.newsletter-perks { display: flex; flex-direction: column; gap: 12px; }
.newsletter-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-2); }
.newsletter-perks svg { flex-shrink: 0; color: var(--gold); }

.newsletter-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.newsletter-form-v2 label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-2); letter-spacing: 0.02em; margin-bottom: 10px; }
.newsletter-input-row { display: flex; gap: 0; border-radius: var(--radius-sm); border: 1.5px solid var(--border-2); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.newsletter-input-row:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-dim); }
.newsletter-input-row input { flex: 1; border: none; background: transparent; padding: 15px 16px; font-size: 0.95rem; color: var(--text); outline: none; min-width: 0; }
.newsletter-input-row button {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; background: var(--text); color: #fff;
  padding: 0 22px; font-weight: 600; font-size: 0.9rem; white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-input-row button:hover { background: #000; }
.newsletter-input-row button:disabled { cursor: default; }
.newsletter-input-row button .btn-spinner { display: none; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; animation: spin 0.7s linear infinite; }
.newsletter-input-row button.loading .btn-label,
.newsletter-input-row button.loading .btn-arrow { visibility: hidden; }
.newsletter-input-row button.loading .btn-spinner { display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.newsletter-error { min-height: 18px; color: #d1453b; font-size: 0.8rem; margin-top: 10px; }
.newsletter-fine { font-size: 0.76rem; color: var(--text-3); margin-top: 10px; }
.newsletter-fine a { text-decoration: underline; }

.newsletter-success { display: none; text-align: center; padding: 8px 0; }
.newsletter-block.subscribed .newsletter-form-v2 { display: none; }
.newsletter-block.subscribed .newsletter-success { display: block; }
.success-check { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--gold); }
.success-check svg { width: 100%; height: 100%; }
.success-check circle { fill: none; stroke: currentColor; stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw-circle 0.5s ease forwards; }
.success-check path { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw-check 0.3s ease 0.4s forwards; }
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.newsletter-success h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 8px; }
.newsletter-success p { color: var(--text-2); font-size: 0.9rem; margin-bottom: 20px; }
.newsletter-code {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.04em;
  background: var(--gold-dim); color: var(--gold);
  border: 1.5px dashed var(--gold); border-radius: var(--radius-sm);
  padding: 10px 18px; cursor: pointer; transition: background 0.2s;
}
.newsletter-code span { font-family: var(--font); font-weight: 600; font-size: 0.78rem; opacity: 0.75; }
.newsletter-code:hover { background: rgba(0,113,227,0.14); }
.newsletter-code.copied { background: rgba(52,199,89,0.12); border-color: #34c759; color: #34c759; }

@keyframes newsletter-shake { 10%,90%{transform:translateX(-1px);} 20%,80%{transform:translateX(2px);} 30%,50%,70%{transform:translateX(-4px);} 40%,60%{transform:translateX(4px);} }
.newsletter-block.shake { animation: newsletter-shake 0.5s; }

.footer-logo.nav-logo .nav-logo-text { font-family: var(--font-serif); font-weight: 480; letter-spacing: 0.01em; }

@media (max-width: 860px) {
  .newsletter-block { padding: 36px 24px; }
  .newsletter-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-card { padding: 28px; }
}
@media (max-width: 480px) {
  .newsletter-input-row { flex-direction: column; }
  .newsletter-input-row button { padding: 14px; }
  .newsletter-input-row button.loading .btn-spinner { position: static; transform: none; }
}

.footer-main {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-text {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.6;
  margin-top: 10px;
  max-width: 240px;
}
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); text-decoration: underline; }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy { font-size: 0.75rem; color: var(--text-3); }
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.75rem;
  transition: all 0.2s;
}
.footer-socials a:hover { color: var(--gold); border-color: rgba(0,113,227,0.3); }

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(0,113,227,0.3);
}
.back-to-top svg { width: 16px; height: 16px; color: #fff; }
.back-to-top.show { opacity: 1; transform: translateY(0); }

/* ================================================================
   UTILITY CLASSES
   ================================================================ */
.pt-nav { padding-top: 52px; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-2); }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .brand-products-preview { grid-template-columns: repeat(3, 1fr); }
  .nav-links, .nav-actions .btn-shop, .nav-actions .btn-login { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions { gap: 8px; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 48px 0 60px; gap: 40px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .about-hero-inner, .contact-grid, .cart-inner, .checkout-inner, .account-inner { grid-template-columns: 1fr; }
  .about-values-grid, .core-grid { grid-template-columns: 1fr 1fr; }
  .companies-grid { grid-template-columns: 1fr 1fr; }
  .brands-preview-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-full-body { grid-template-columns: 1fr; }
  .brand-full-header, .brand-full-body, .brand-products-preview { padding-left: 24px; padding-right: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .about-impact { grid-template-columns: 1fr 1fr; }
  .contact-form-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-inner .cart-summary { position: static; }
  .account-inner { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .brands-hero-inner { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .core-grid, .about-values-grid, .companies-grid, .about-impact { grid-template-columns: 1fr; }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr auto; }
  .auth-card { padding: 32px 20px; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.animate-fade { animation: fadeIn 0.5s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Notification toast */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  z-index: 9999;
  padding: 14px 24px;
  border-radius: 980px;
  background: rgba(29,29,31,0.94);
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 0.88rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { color: #4cd164; }
.toast.gold { color: #6cb2ff; }
