/* ═══════════════════════════════════════════
   THE VAULT — Design System
   Sports World Collectibles
   ═══════════════════════════════════════════ */

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

/* ─── Variables ──────────────────────────── */
:root {
  --void: #050505;
  --obsidian: #0a0a0a;
  --charcoal: #141416;
  --slate: #1c1c20;
  --smoke: #2a2a2e;
  --ash: #3a3a3e;

  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-deep: #8a6d2b;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --gold-shimmer: rgba(201, 168, 76, 0.08);

  --cream: #f5f0e8;
  --cream-muted: #c4bfb5;
  --cream-dim: #8a8580;

  --red: #c0392b;
  --green: #27ae60;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) var(--obsidian);
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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)'/%3E%3C/svg%3E");
  background-size: 200px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ─── Reveal Animation ───────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
@keyframes pulse-glow {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Navigation ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(24px, 4vw, 64px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__search-form {
  display: flex;
  align-items: center;
}

.nav__search-input {
  width: 0;
  padding: 6px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: width 0.4s var(--ease-out-expo), border-color 0.3s, padding 0.4s;
}

.nav__search-form.open .nav__search-input {
  width: 180px;
  padding: 6px 8px;
  border-bottom-color: var(--gold);
}

.nav__search-btn {
  font-size: 1rem;
  color: var(--cream-muted);
  padding: 6px;
  transition: color 0.3s;
}
.nav__search-btn:hover { color: var(--gold); }

.nav__cart-link {
  position: relative;
  font-size: 1.1rem;
  color: var(--cream-muted);
  transition: color 0.3s;
  padding: 6px;
}
.nav__cart-link:hover { color: var(--gold); }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--void);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}

.nav__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void) !important;
  background: var(--gold);
  padding: 9px 20px;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px var(--gold-glow);
}
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── Sections ───────────────────────────── */
section { padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px); }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  max-width: 600px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn--primary { background: var(--gold); color: var(--void); }
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 40px rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.btn--ghost { border: 1px solid var(--ash); color: var(--cream-muted); background: transparent; }
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: inset 0 0 30px var(--gold-shimmer);
}

.btn--small { padding: 10px 24px; font-size: 0.72rem; }
.btn--full { width: 100%; }

/* ─── Product Cards ──────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  display: block;
}

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--gold-shimmer);
}

/* Holographic shimmer */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(201,168,76,0.06) 45%, rgba(232,212,139,0.1) 50%, rgba(201,168,76,0.06) 55%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
  animation: shimmer-slide 3s ease-in-out infinite;
}
.product-card:hover::before { opacity: 1; }

.product-card__image {
  position: relative;
  aspect-ratio: 1;
  background: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__image-placeholder {
  font-size: 4rem;
  opacity: 0.2;
  transition: transform 0.6s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-card:hover .product-card__image-placeholder { transform: scale(1.1); }

.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--void);
  padding: 5px 12px;
  border-radius: 1px;
  z-index: 3;
}

.product-card__tag--preorder { background: #2980b9; color: #fff; }
.product-card__tag--rare { background: var(--red); color: #fff; }

.product-card__oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  z-index: 3;
}

.product-card--oos { opacity: 0.6; }

.product-card__body { padding: 24px; }

.product-card__sport {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
}

.product-card__cart {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-muted);
  font-size: 1rem;
  transition: all 0.3s;
}
.product-card__cart:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-shimmer);
}

/* ─── Category Cards ─────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  display: block;
}

.cat-card__bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.08;
  transition: opacity 0.6s, transform 0.8s var(--ease-out-expo);
}
.cat-card:hover .cat-card__bg { opacity: 0.15; transform: scale(1.15) rotate(-5deg); }

.cat-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 60%);
  transition: background 0.4s;
}
.cat-card:hover .cat-card__content {
  background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(201,168,76,0.03) 100%);
}

.cat-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.cat-card:hover .cat-card__name { color: var(--gold-light); }

.cat-card__count {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.cat-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: all 0.5s var(--ease-out-expo);
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translate(0, 0); }

/* ─── Hero ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px clamp(24px, 6vw, 80px) 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-down 1s 0.3s var(--ease-out-expo) forwards;
}
.hero__badge::before, .hero__badge::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__badge::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 900px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fade-up 1.2s 0.5s var(--ease-out-expo) forwards;
}
.hero__title em { font-style: italic; color: var(--gold); font-weight: 400; }

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 1.2s 0.7s var(--ease-out-expo) forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 0.9s var(--ease-out-expo) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-up 1s 1.3s var(--ease-out-expo) forwards;
}
.hero__scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); }
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* ─── Heritage Stats ─────────────────────── */
.heritage { background: var(--obsidian); position: relative; overflow: hidden; }
.heritage::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); }

.heritage__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.heritage__text .section-title { margin-bottom: 24px; }
.heritage__text p { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.8; margin-bottom: 20px; }
.heritage__text p strong { color: var(--cream); font-weight: 500; }

.heritage__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.stat-card { background: var(--charcoal); padding: 40px 32px; text-align: center; position: relative; overflow: hidden; }
.stat-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 2px; background: var(--gold); opacity: 0; transition: all 0.4s var(--ease-out-expo); }
.stat-card:hover::after { opacity: 1; width: 60px; }

.stat-card__number { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-card__label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-dim); }

/* ─── Autographs / Trust Section ─────────── */
.autographs { background: var(--void); }
.autographs__inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.autographs__seal {
  width: 80px; height: 80px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; position: relative;
}
.autographs__seal::before { content: ''; position: absolute; inset: -8px; border: 1px solid var(--gold-deep); border-radius: 50%; }
.autographs__seal-text { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--gold); }

.trust-badges { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 14px; font-size: 0.85rem; color: var(--cream-muted); }
.trust-badge__icon {
  width: 44px; height: 44px; border: 1px solid var(--ash); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0;
}

/* ─── Newsletter ─────────────────────────── */
.newsletter { background: var(--charcoal); position: relative; overflow: hidden; }
.newsletter::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-shimmer) 0%, transparent 70%);
  right: -200px; top: -200px; pointer-events: none;
}
.newsletter__inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.newsletter__form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.newsletter__input {
  flex: 1; padding: 16px 24px; background: var(--slate); border: 1px solid var(--ash);
  border-radius: 2px; color: var(--cream); font-family: var(--font-body); font-size: 0.9rem; outline: none; transition: border-color 0.3s;
}
.newsletter__input::placeholder { color: var(--cream-dim); }
.newsletter__input:focus { border-color: var(--gold); }
.newsletter__btn {
  padding: 16px 32px; background: var(--gold); color: var(--void); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; border-radius: 2px; white-space: nowrap; transition: all 0.3s; border: none; cursor: pointer; font-family: var(--font-body);
}
.newsletter__btn:hover { background: var(--gold-light); box-shadow: 0 0 30px var(--gold-glow); }

/* ─── Locations ──────────────────────────── */
.locations { background: var(--obsidian); padding: clamp(40px, 6vw, 80px) clamp(24px, 6vw, 80px); }
.locations__inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.location-card {
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.03); border-radius: 4px;
  padding: 36px; display: flex; gap: 20px; align-items: flex-start; transition: border-color 0.3s;
}
.location-card:hover { border-color: rgba(201, 168, 76, 0.12); }
.location-card__icon {
  width: 48px; height: 48px; border: 1px solid var(--gold-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--gold);
}
.location-card__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.location-card__address { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.6; }
.location-card__hours { font-size: 0.78rem; color: var(--gold); margin-top: 8px; }

/* ─── Footer ─────────────────────────────── */
.footer {
  background: var(--void);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px) 40px;
}

.footer__grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 16px; color: var(--cream); }
.footer__brand-desc { font-size: 0.85rem; color: var(--cream-dim); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px; border: 1px solid var(--ash); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--cream-dim); font-size: 0.85rem; transition: all 0.3s;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }

.footer__col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); margin-bottom: 24px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__links a { font-size: 0.85rem; color: var(--cream-dim); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold-light); }

.footer__bottom { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer__copy { font-size: 0.75rem; color: var(--cream-dim); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.75rem; color: var(--cream-dim); transition: color 0.3s; }
.footer__legal a:hover { color: var(--gold-light); }

/* ─── Cart Notification ──────────────────── */
.cart-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  border: 1px solid var(--gold-deep);
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--cream);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.cart-notification.visible { opacity: 1; transform: translateY(0); }
.cart-notification span { color: var(--gold); font-weight: 600; margin-right: 6px; }

/* ─── Page Header (for inner pages) ──────── */
.page-header {
  padding: 120px clamp(24px, 6vw, 80px) 48px;
  background: var(--obsidian);
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.page-header__inner { max-width: 1400px; margin: 0 auto; }
.page-header__breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.page-header__breadcrumb a { color: var(--cream-dim); transition: color 0.3s; }
.page-header__breadcrumb a:hover { color: var(--gold); }
.page-header__breadcrumb .sep { color: var(--ash); }

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
}

/* ─── Filters / Toolbar ──────────────────── */
.toolbar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  max-width: 1400px; margin: 0 auto 40px;
}
.toolbar__count { font-size: 0.85rem; color: var(--cream-dim); }
.toolbar__filters { display: flex; gap: 12px; align-items: center; }

.filter-select {
  background: var(--charcoal); border: 1px solid var(--ash); border-radius: 2px;
  color: var(--cream); font-family: var(--font-body); font-size: 0.82rem;
  padding: 8px 32px 8px 14px; outline: none; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238a8580' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.3s;
}
.filter-select:hover { border-color: var(--gold-deep); }
.filter-select:focus { border-color: var(--gold); }

/* ─── Loading Spinner ────────────────────── */
.loading {
  display: flex; align-items: center; justify-content: center; padding: 80px;
}
.loading__spinner {
  width: 32px; height: 32px; border: 2px solid var(--ash); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}

/* ─── Empty State ────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 24px;
}
.empty-state__icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state__text { font-size: 1.1rem; color: var(--cream-dim); margin-bottom: 24px; }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  .heritage__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__links--open {
    display: flex !important;
    position: fixed; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: center; gap: 24px; padding: 32px;
    background: rgba(5,5,5,0.97); border-bottom: 1px solid rgba(201,168,76,0.1);
    backdrop-filter: blur(24px);
  }
  .nav__toggle { display: flex; }

  .cat-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .locations__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-badges { flex-direction: column; align-items: center; }
  .newsletter__form { flex-direction: column; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .heritage__stats { grid-template-columns: 1fr; }
}
