/* ============================================================
   VINTAGE TIME — DARK LUXURY / DARK ACADEMIA DESIGN SYSTEM
   Wong Kar-wai · Cinematic · Gold-on-Obsidian
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Outfit:wght@200;300;400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --black:        #05050A;
  --obsidian:     #0A0A12;
  --deep:         #0F0F18;
  --surface:      #141420;
  --surface-2:    #1A1A28;
  --border:       rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.45);

  --gold:         #D4AF37;
  --gold-light:   #E8CC6A;
  --gold-muted:   #9A7D2A;
  --gold-glow:    rgba(212, 175, 55, 0.12);
  --gold-glow-2:  rgba(212, 175, 55, 0.25);

  --cream:        #F5F0E8;
  --off-white:    #EDE8DF;
  --text-primary: #EDE8DF;
  --text-secondary: rgba(237, 232, 223, 0.65);
  --text-muted:   rgba(237, 232, 223, 0.38);

  --serif:        'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans:         'Outfit', system-ui, sans-serif;

  --header-h:     72px;
  --r-sm:         4px;
  --r-md:         8px;
  --r-lg:         16px;

  --t-fast:       0.18s;
  --t-med:        0.38s;
  --t-slow:       0.65s;
  --ease-luxury:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--black);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
input, textarea, select { font-family: var(--sans); }

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

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 2px; }

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────────── */
.serif          { font-family: var(--serif); }
.gold           { color: var(--gold); }
.text-muted     { color: var(--text-secondary); }
.text-center    { text-align: center; }
.text-sm        { font-size: 0.8125rem; letter-spacing: 0.08em; }
.text-xs        { font-size: 0.6875rem; letter-spacing: 0.12em; }
.uppercase      { text-transform: uppercase; }

/* ── SECTION LABEL ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all var(--t-med) var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,0.35); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-luxury);
  z-index: -1;
}
.btn-outline:hover { color: var(--black); border-color: var(--gold); }
.btn-outline:hover::before { transform: scaleX(1); }

.btn-outline-sm {
  padding: 11px 28px;
  font-size: 0.625rem;
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(5,5,10,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-slow);
}
.site-header.scrolled { background: rgba(5,5,10,0.97); }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  margin-left: auto !important;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  margin-left: auto !important;
  position: relative;
}

.header-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white);
  transition: color var(--t-fast);
  position: relative;
}
.header-icon-btn:hover { color: var(--gold); }
.header-icon-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }

.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  z-index: 10;
}
.logo-emblem {
  width: 45px !important;
  height: 45px !important;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
  transition: border-color var(--t-fast);
}
.logo-emblem img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.05);
}
.logo-text {
  font-family: var(--serif);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}

/* ── HAMBURGER MENU ────────────────────────────────────────── */
.hamburger { width: 40px; height: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span {
  display: block;
  height: 1px;
  background: var(--off-white);
  transition: all var(--t-med) var(--ease-luxury);
}
.hamburger span:nth-child(1) { width: 20px; }
.hamburger span:nth-child(2) { width: 28px; }
.hamburger span:nth-child(3) { width: 16px; }
.hamburger:hover span { background: var(--gold); }
.hamburger:hover span:nth-child(1) { width: 28px; }
.hamburger:hover span:nth-child(3) { width: 28px; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 24px; }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,5,10,0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 40px) 32px 40px;
  transform: translateX(-100%);
  transition: transform var(--t-slow) var(--ease-luxury);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t-fast), padding-left var(--t-med) var(--ease-luxury);
}
.mobile-menu nav a:hover { color: var(--gold); padding-left: 16px; }
.mobile-menu-footer { margin-top: auto; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.15em; }

/* ── SEARCH OVERLAY ────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(5,5,10,0.96);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-inner { width: 100%; max-width: 640px; }
.search-input-wrap {
  position: relative;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 12px;
}
.search-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--cream);
  padding-right: 48px;
}
.search-input::placeholder { color: var(--text-muted); }
.search-close {
  position: absolute;
  right: 0; top: 50%; transform: translateY(-50%);
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.search-close:hover { color: var(--gold); }

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroScale 8s var(--ease-luxury) forwards;
}

@keyframes heroScale {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(5,5,10,0.95) 0%, rgba(5,5,10,0.6) 40%, rgba(5,5,10,0.2) 70%, transparent 100%),
    linear-gradient(to right, rgba(5,5,10,0.5) 0%, transparent 60%);
}

/* Warm tungsten light blob effect */
.hero-glow {
  position: absolute;
  z-index: 2;
  width: 60vw;
  height: 60vw;
  max-width: 500px;
  max-height: 500px;
  top: 20%;
  right: 5%;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(180,120,20,0.04) 50%, transparent 75%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 24px 64px;
  width: 100%;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-luxury) 0.4s forwards;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-luxury) 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-luxury) 0.8s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-luxury) 1s forwards;
  display: inline-block;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-luxury) 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── SECTION SPACING ───────────────────────────────────────── */
.section {
  padding: 80px 24px;
}
.section-sm {
  padding: 60px 24px;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* ── PRODUCT SECTION ───────────────────────────────────────── */
.product-section {
  background: var(--obsidian);
  padding: 80px 0 80px;
}
.product-section-header {
  padding: 0 24px;
  margin-bottom: 48px;
}

/* Alternating Grid */
.products-grid { padding: 0 16px; }

.grid-row {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}
.grid-row-2 { grid-template-columns: 1fr 1fr; }
.grid-row-1 { grid-template-columns: 1fr; }

/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color var(--t-med) var(--ease-luxury), box-shadow var(--t-med) var(--ease-luxury);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover,
.product-card:focus-within {
  border-color: var(--border-hover);
  box-shadow: 0 0 0 1px rgba(212,175,55,0.2), 0 24px 64px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.06);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card.feature .product-card-img {
  aspect-ratio: 16/9;
}
@media (min-width: 600px) {
  .product-card.feature .product-card-img { aspect-ratio: 21/9; }
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover .product-card-img img,
.product-card:active .product-card-img img {
  transform: scale(1.04);
}

/* Gold corner accent */
.product-card::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px;
  width: 15px; height: 15px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 10px; right: 10px;
  width: 15px; height: 15px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.product-card:hover::before,
.product-card:active::before,
.product-card:focus-within::before,
.product-card:hover::after,
.product-card:active::after,
.product-card:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

/* Gold shimmer overlay on hover */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: 1;
}
.product-card:hover .product-card-overlay { opacity: 1; }

.product-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: rgba(5,5,10,0.85);
  border: 1px solid var(--border);
  padding: 4px 10px;
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.product-card-info {
  padding: 18px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card.feature .product-card-info {
  padding: 24px 24px 28px;
}

.product-brand {
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
}
.product-card.feature .product-name {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.product-year {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}
.product-year::before { content: '© '; }
.product-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-top: auto;
}
.product-card.feature .product-price {
  font-size: 1.4rem;
}

.product-cta-wrap {
  margin-top: 12px;
}
.product-card.feature .product-cta-wrap { display: flex; }

.wishlist-btn {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color var(--t-fast), transform var(--t-fast) var(--ease-spring);
  z-index: 2;
}
.wishlist-btn:hover { color: var(--gold); transform: scale(1.2); }
.wishlist-btn.active { color: var(--gold); }
.wishlist-btn svg { width: 18px; height: 18px; }

/* Section End Buttons */
.section-end {
  display: flex;
  justify-content: center;
  padding: 48px 24px 0;
}

/* ── STRAP SECTION ─────────────────────────────────────────── */
.strap-section {
  background: var(--deep);
  padding: 80px 24px;
}
.strap-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 600px) { .strap-grid { grid-template-columns: repeat(3, 1fr); } }

.strap-card {
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med);
  cursor: pointer;
}
.strap-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.06);
}
.strap-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.strap-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-luxury);
}
.strap-card:hover .strap-card-img img { transform: scale(1.05); }
.strap-card-body { padding: 20px; }
.strap-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 4px;
}
.strap-material {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.strap-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.color-swatches {
  display: flex;
  gap: 8px;
  align-items: center;
}
.swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  border: 2px solid transparent;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,175,55,0.3); }

/* ── VIDEO SECTION ─────────────────────────────────────────── */
.video-section {
  background: var(--obsidian);
  padding: 80px 24px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 48px;
}
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--t-med);
}
.video-thumb:hover { border-color: var(--border-hover); }
.video-thumb-img {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.video-thumb-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-luxury);
  filter: brightness(0.65) saturate(0.7);
}
.video-thumb:hover .video-thumb-img img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(0.8);
}

/* Gold overlay on videos */
.video-thumb-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  border: 1.5px solid rgba(212,175,55,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-med) var(--ease-luxury);
  background: rgba(5,5,10,0.5);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.play-btn svg { width: 14px; height: 14px; fill: var(--gold); margin-left: 2px; }
.video-thumb:hover .play-btn {
  width: 52px; height: 52px;
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.video-info { padding: 14px 14px; }
.video-title {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 4px;
}
.video-meta { font-size: 0.625rem; letter-spacing: 0.12em; color: var(--text-muted); }

/* ── EDITORIAL SECTION ─────────────────────────────────────── */
.editorial-section {
  background: var(--surface);
  padding: 80px 0;
}
.editorial-header { padding: 0 24px; margin-bottom: 48px; }

.editorial-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.editorial-carousel::-webkit-scrollbar { display: none; }

.editorial-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t-med), transform var(--t-med);
  background: var(--obsidian);
}
.editorial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.editorial-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.editorial-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.6) sepia(0.3);
  transition: filter var(--t-med), transform var(--t-slow);
}
.editorial-card:hover .editorial-card-img img {
  filter: brightness(0.85) saturate(0.75) sepia(0.2);
  transform: scale(1.04);
}
.editorial-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,10,0.9) 0%, rgba(5,5,10,0.3) 50%, transparent 100%);
}
.editorial-cat {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.editorial-card-body { padding: 20px; }
.editorial-read { font-size: 0.5625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 8px; }
.editorial-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 8px;
}
.editorial-excerpt { font-size: 0.775rem; color: var(--text-secondary); line-height: 1.5; }

/* ── NEWSLETTER SECTION ────────────────────────────────────── */
.newsletter-section {
  background: var(--black);
  padding: 0 24px 80px;
}
.newsletter-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .newsletter-wrap { grid-template-columns: 1fr 1fr; }
}

.newsletter-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) { .newsletter-img { height: auto; } }
.newsletter-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.5) sepia(0.4);
}
.newsletter-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(5,5,10,0.5));
}

.newsletter-content {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
  gap: 24px;
}
.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.newsletter-sub { font-size: 0.825rem; color: var(--text-secondary); }
.newsletter-form { display: flex; gap: 0; border: 1px solid var(--border); }
.newsletter-form:focus-within { border-color: var(--gold); box-shadow: 0 0 20px rgba(212,175,55,0.1); }
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 0.825rem;
  color: var(--cream);
}
.newsletter-input::placeholder { color: var(--text-muted); font-size: 0.75rem; }
.newsletter-btn {
  padding: 14px 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 64px 24px 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand {
  grid-column: 1 / -1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-brand {
    grid-column: auto;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .footer-logo-wrap {
    align-items: flex-start;
  }
}

.footer-logo-emblem {
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  .footer-logo-emblem {
    margin: 0 0 24px !important;
  }
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 15px; height: 15px; }

.footer-col-title {
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}
.footer-col ul li a:hover { color: var(--off-white); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy { font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.7rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-legal a:hover { color: var(--gold); }

/* ── BACK TO TOP BUTTON ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 800;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--t-med), transform var(--t-med) var(--ease-spring), background var(--t-fast);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── PRODUCT DETAIL PAGE ───────────────────────────────────── */
.product-detail-page {
  padding-top: var(--header-h);
  min-height: 100vh;
}

.detail-breadcrumb {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.detail-breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.detail-breadcrumb a:hover { color: var(--gold); }
.detail-breadcrumb span { color: var(--gold); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
}
@media (min-width: 900px) {
  .detail-layout { grid-template-columns: 55% 45%; }
}

/* Gallery */
.detail-gallery {
  position: relative;
  background: var(--surface);
}
.gallery-main {
  position: relative;
  overflow: hidden;
}
.gallery-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (min-width: 900px) {
  .gallery-main { position: sticky; top: var(--header-h); }
  .gallery-main-img { aspect-ratio: 4/5; height: calc(100vh - var(--header-h)); }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-thumbs, .product-thumbnails-container {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--deep);
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar, .product-thumbnails-container::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 72px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 1px solid transparent;
  transition: opacity var(--t-fast), border-color var(--t-fast);
}
.gallery-thumb.active { opacity: 1; border-color: var(--gold); }
.gallery-thumb:hover { opacity: 0.8; }

/* Detail Info */
.detail-info {
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--obsidian);
}
@media (min-width: 900px) { .detail-info { padding: 56px 48px 80px; } }

.detail-brand {
  font-size: 0.5625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.detail-name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.detail-ref {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }
.rating-count { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.08em; }

.detail-price-wrap {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.detail-price {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold-light);
}
.detail-price-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.spec-item {}
.spec-label {
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.spec-value {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--cream);
}

.detail-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-full { width: 100%; padding: 18px; font-size: 0.75rem; }
.btn-buy { background: var(--gold); color: var(--black); font-weight: 600; }
.btn-buy:hover { background: var(--gold-light); box-shadow: 0 12px 40px rgba(212,175,55,0.35); }

.detail-guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.guarantee-item svg { width: 22px; height: 22px; color: var(--gold); }
.guarantee-label { font-size: 0.6rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; line-height: 1.4; }

/* ── CHECKOUT PAGE ─────────────────────────────────────────── */
.checkout-page {
  padding-top: var(--header-h);
  min-height: 100vh;
  background: var(--obsidian);
}
.checkout-header-bar {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.step-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.step-dot.done { background: var(--gold); }
.step-label { color: var(--text-muted); }
.step-label.active { color: var(--gold); }

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .checkout-layout { grid-template-columns: 55% 45%; }
}

.checkout-form-wrap {
  padding: 40px 24px;
}
@media (min-width: 900px) { .checkout-form-wrap { padding: 56px 48px; } }

.checkout-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.checkout-sub { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 36px; }

.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-label .arabic { font-family: var(--serif); font-style: italic; color: var(--text-muted); font-size: 0.75rem; margin-left: 6px; letter-spacing: 0; text-transform: none; }
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 16px 18px;
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.12);
  background: var(--surface-2);
}
.form-input::placeholder { color: var(--text-muted); font-size: 0.8rem; }
.form-input.error { border-color: #c0392b; }

.form-input-wrap { position: relative; }
.form-input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.form-input-icon svg { width: 16px; height: 16px; }

.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 18px;
  color: var(--cream);
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--t-fast);
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23D4AF37' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--surface); }

.cod-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 28px;
}
.cod-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cod-icon svg { width: 20px; height: 20px; color: var(--gold); }
.cod-text strong { display: block; font-size: 0.8rem; color: var(--cream); letter-spacing: 0.08em; margin-bottom: 2px; }
.cod-text span { font-size: 0.7rem; color: var(--text-muted); }

.btn-submit {
  width: 100%;
  padding: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--sans);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), box-shadow var(--t-med), transform var(--t-fast);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 16px 48px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Order Summary Panel */
.order-summary {
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 40px 24px;
  min-height: 50vh;
}
@media (min-width: 900px) { .order-summary { padding: 56px 40px; min-height: 100vh; } }

.summary-title {
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.summary-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.summary-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.summary-item-details { flex: 1; }
.summary-item-brand {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.summary-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream);
  margin: 4px 0;
}
.summary-item-price { font-family: var(--serif); color: var(--gold-light); font-size: 0.95rem; }

.summary-totals { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.summary-row.total {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--cream);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.summary-row.total .summary-val { color: var(--gold-light); }

/* ── SUCCESS SCREEN ────────────────────────────────────────── */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.success-overlay.show { display: flex; animation: fadeIn 0.5s var(--ease-luxury); }
.success-icon {
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.success-icon svg { width: 36px; height: 36px; color: var(--gold); }
.success-title { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--cream); margin-bottom: 12px; }
.success-sub { color: var(--text-secondary); font-size: 0.875rem; max-width: 400px; margin: 0 auto 40px; line-height: 1.6; }
.success-order { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.success-order-num { font-family: var(--serif); font-size: 1.5rem; color: var(--cream); margin-bottom: 40px; }

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (min-width: 900px) {
  .section { padding: 100px 48px; }
  .product-section { padding: 100px 0; }
  .strap-section { padding: 100px 48px; }
  .video-section { padding: 100px 48px; }
  .editorial-section { padding: 100px 0; }
  .product-section-header { padding: 0 48px; }
  .products-grid { padding: 0 32px; }
  .section-end { padding: 64px 48px 0; }
}

@media (min-width: 1200px) {
  .grid-row-2 { grid-template-columns: 1fr 1fr; }
  .editorial-card { flex: 0 0 340px; }
}

/* ── TOAST ─────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--border-hover);
  color: var(--cream);
  padding: 14px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  z-index: 3000;
  opacity: 0;
  transition: all var(--t-med) var(--ease-luxury);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .gold { margin-right: 8px; }

/* ── PAGE TRANSITION ───────────────────────────────────────── */
.page-enter {
  animation: pageIn 0.5s var(--ease-luxury) forwards;
}
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal-inner {
  width: 100%;
  max-width: 800px;
  position: relative;
}
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.video-modal-close:hover { color: var(--gold); }
.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-placeholder span { font-family: var(--serif); font-size: 1.25rem; color: var(--text-secondary); }
.video-placeholder p { font-size: 0.75rem; color: var(--text-muted); }

/* Loading shimmer */
.shimmer {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* -- MOBILE CATEGORIES DROPDOWN ------------------------------- */
.mobile-menu-dropdown { border-bottom: none; }
.mobile-dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  background: none !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 12px 0 !important;
  font-family: var(--serif) !important;
  font-size: clamp(2rem, 8vw, 3.5rem) !important;
  font-weight: 300 !important;
  letter-spacing: normal !important;
  text-transform: uppercase !important;
  color: var(--cream) !important;
  cursor: pointer !important;
  transition: color var(--t-fast) !important;
}
.mobile-dropdown-toggle:hover { color: var(--gold) !important; }
.mobile-chevron {
  width: clamp(1.5rem, 5vw, 2.5rem);
  height: clamp(1.5rem, 5vw, 2.5rem);
  transition: transform .3s var(--ease-luxury);
  flex-shrink: 0;
  color: var(--gold);
}
.mobile-chevron.rotated { transform: rotate(180deg); }
.mobile-cat-list {
  list-style: none; padding: 0; margin: 0;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-luxury);
}
.mobile-cat-list.open { max-height: 600px; }
.mobile-cat-list li a {
  display: block;
  padding: 12px 24px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.2s, padding-left 0.2s;
  border-left: 1.5px solid rgba(212,175,55,0.2);
  margin-left: 8px;
  text-decoration: none;
}
.mobile-cat-list li a:hover {
  color: var(--gold);
  padding-left: 32px;
  border-left-color: var(--gold);
}

/* -- HOME PRODUCTS GRID REFACTORING -- */
.products-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .products-grid-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
  }
}

.cta-outline-gold {
  position: relative;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  z-index: 1;
  transition: all var(--t-med) var(--ease-luxury);
  overflow: hidden;
}
.cta-outline-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-luxury);
  z-index: -1;
}
.cta-outline-gold:hover {
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.25);
}
.cta-outline-gold:hover::before {
  transform: scaleX(1);
}
.cta-outline-gold:active {
  transform: translateY(0);
}

