/* ============================================================
   CARTEL — Brand Stylesheet
   ============================================================ */

:root {
  --black: #000000;
  --gold: #C4A24A;
  --gold-light: #D8C870;
  --gold-warm: #A87838;
  --gold-gradient: linear-gradient(160deg, #D4C86A 0%, #C4A24A 45%, #A87838 100%);
  --off-white: #F5F0E8;
  --gray-400: #888070;
  --gray-600: #444030;
  --gray-800: #1a1a16;
  --gray-900: #0d0d0a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  --letter-heading: 0.15em;
  --letter-body: 0.05em;
  --letter-eyebrow: 0.25em;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: var(--letter-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
button { cursor: none; background: none; border: none; font-family: var(--font-body); }
img { display: block; width: 100%; }

/* ─── Custom Cursor ──────────────────────────────────────── */

.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}

/* ─── Intro ──────────────────────────────────────────────── */

.intro-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .8s ease;
}
.intro-screen.hidden { opacity: 0; pointer-events: none; }

.intro-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width .9s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro-line.active { width: 100%; }

.intro-logo {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 9rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.6em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease .6s, transform .8s ease .6s;
}
.intro-logo.visible { opacity: 1; transform: translateY(0); }

/* ─── Navigation ─────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 72px;
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.nav.scrolled {
  background: rgba(0,0,0,0.94);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .75; }

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* fallback text if image not loaded */
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-center { display: flex; align-items: center; gap: 1.5rem; }

.nav-link {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gray-400);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 100%; }

.nav-divider { color: var(--gray-600); font-size: .6rem; }
.nav-cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--gray-400);
  transition: color .3s;
}
.nav-cart-btn:hover { color: var(--gold); }

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

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 400;
  letter-spacing: .25em;
  color: var(--off-white);
  line-height: .9;
  margin-bottom: 2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
  position: relative;
}
.hero-rule::before, .hero-rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.hero-rule::before { left: -8px; }
.hero-rule::after { right: -8px; }

.hero-drop-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3rem;
}

.drop-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(212,175,55,.5); }
  50% { opacity: .8; box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}

.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-gradient);
  background-size: 200% 200%;
  position: relative;
  overflow: hidden;
  transition: background-position .6s var(--ease), filter .3s;
}
.hero-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  background-size: 200% 100%;
  background-position: -100% center;
  transition: background-position .5s;
}
.hero-cta:hover { filter: brightness(1.1); }
.hero-cta:hover::after { background-position: 100% center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gray-600);
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray-600), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  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; }
}

/* ─── Reveal ─────────────────────────────────────────────── */

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-up:nth-child(1) { transition-delay: .1s; }
.reveal-up:nth-child(2) { transition-delay: .2s; }
.reveal-up:nth-child(3) { transition-delay: .3s; }
.reveal-up:nth-child(4) { transition-delay: .4s; }
.reveal-up:nth-child(5) { transition-delay: .5s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Sections ───────────────────────────────────────────── */

.section {
  padding: 8rem clamp(1.5rem, 5vw, 6rem);
  position: relative;
}
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 5vw, 6rem);
  right: clamp(1.5rem, 5vw, 6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: var(--letter-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: var(--letter-heading);
  color: var(--off-white);
  margin-bottom: .8rem;
}
.section-subtitle {
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--gray-400);
}

/* ─── Featured (Current Drop) ────────────────────────────── */

.featured-card {
  display: grid;
  grid-template-columns: 36% 1fr;
  align-items: stretch;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 700px;
}

@media (max-width: 900px) {
  .featured-card { grid-template-columns: 1fr; }
}

.featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.featured-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1.2s var(--ease);
}
.featured-card:hover .featured-img { transform: scale(1.03); }

.featured-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  padding: 6px 14px;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  z-index: 2;
}

.featured-right {
  background: var(--gray-900);
  border: 1px solid rgba(212,175,55,.08);
  border-left: none;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.featured-right-header { flex-shrink: 0; }

.featured-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.featured-name {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: var(--letter-heading);
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1;
}

.featured-desc {
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 0;
}

/* Product grid inside featured panel — 3 portrait cards */
.featured-right .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin: 0;
  padding: 0;
  flex: 1;
  align-items: stretch;
}

.featured-right .product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,175,55,.1);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: border-color .3s;
  padding: 0;
}
.featured-right .product-card:hover { border-color: rgba(212,175,55,.35); }

.featured-right .product-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  flex: 1;
}

.featured-right .product-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.featured-right .product-card:hover .product-img { transform: scale(1.05); }

.featured-right .product-info {
  padding: .75rem;
  flex-shrink: 0;
}

.featured-right .product-name {
  font-size: .72rem;
  margin-bottom: .2rem;
}

.featured-right .product-price {
  font-size: .62rem;
  margin-bottom: .5rem;
}

.featured-right .product-size-select {
  padding: .35rem .5rem;
  font-size: .58rem;
  margin-bottom: .5rem;
}

.featured-right .product-atc-btn {
  font-size: .58rem;
  letter-spacing: .14em;
  padding: .55rem .5rem;
  width: 100%;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .85rem 1.5rem;
  cursor: none;
  transition: border-color .3s, background .3s;
  flex-shrink: 0;
  align-self: flex-start;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.06);
}

.featured-actions { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold-gradient);
  background-size: 200% 200%;
  position: relative;
  overflow: hidden;
  transition: filter .3s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  background-size: 200% 100%;
  background-position: -100% center;
  transition: background-position .5s;
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-primary:hover::after { background-position: 100% center; }

/* ─── Archive Grid ───────────────────────────────────────── */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 700px) { .archive-grid { grid-template-columns: 1fr; } }

.archive-card {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.archive-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-900);
}

.archive-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(25%) brightness(0.8);
  transition: filter .7s var(--ease), transform 1s var(--ease);
}

.archive-card:hover .archive-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

/* Dark gradient for text legibility */
.archive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.2) 50%,
    rgba(0,0,0,0) 100%
  );
  transition: background .4s var(--ease);
}
.archive-card:hover .archive-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Text sits at bottom-left */
.archive-info {
  position: absolute;
  bottom: 0; left: 0;
  padding: 1.75rem 2rem;
  z-index: 2;
}

.archive-drop-num {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.archive-name {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--off-white);
}

/* SOLD OUT tag */
.archive-sold-tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(245,240,232,.4);
  padding: 6px 14px;
  z-index: 2;
}

/* View button on hover */
.archive-view-btn {
  position: absolute;
  bottom: 1.75rem; right: 2rem;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(212,175,55,.5);
  padding: .6rem 1.25rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .3s, color .3s;
  z-index: 3;
  background: transparent;
}
.archive-card:hover .archive-view-btn {
  opacity: 1;
  transform: translateY(0);
}
.archive-view-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Unboxing ───────────────────────────────────────────── */

.unboxing-section {
  background: var(--gray-900);
  overflow: hidden;
}

.unboxing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .unboxing-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.unboxing-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.unboxing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.unboxing-img-wrap:hover .unboxing-img { transform: scale(1.03); }

.unboxing-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* gold corner frame */
.unboxing-img-wrap::before,
.unboxing-img-wrap::after {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  z-index: 2;
  pointer-events: none;
}
.unboxing-img-wrap::before {
  top: 16px; left: 16px;
  border-top: 1px solid rgba(212,175,55,0.6);
  border-left: 1px solid rgba(212,175,55,0.6);
}
.unboxing-img-wrap::after {
  bottom: 16px; right: 16px;
  border-bottom: 1px solid rgba(212,175,55,0.6);
  border-right: 1px solid rgba(212,175,55,0.6);
}

.unboxing-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--off-white);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.unboxing-title em { font-style: italic; color: var(--gold); }

.unboxing-body {
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--gray-400);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.unboxing-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212,175,55,.12);
}

.unboxing-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--gray-400);
}

.detail-icon {
  font-size: .4rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Feature Image ──────────────────────────────────────── */

.feature-img-section {
  width: 100%;
  line-height: 0;
}

.feature-img-full {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Footer ─────────────────────────────────────────────── */

.footer {
  padding: 5rem clamp(1.5rem, 5vw, 6rem) 3rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 5vw, 6rem);
  right: clamp(1.5rem, 5vw, 6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.2), transparent);
}
.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .4em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .6;
}
.footer-tagline {
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--gray-600);
}
.footer-rule { height: 1px; background: rgba(212,175,55,.08); margin-bottom: 2rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-links { display: flex; gap: 2.5rem; }
.footer-links a {
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .12em;
  color: var(--gray-600);
}

/* ─── Gallery Overlay ────────────────────────────────────── */

.gallery-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.gallery-overlay.active { transform: translateY(0); }

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(212,175,55,.15);
  flex-shrink: 0;
}
.gallery-title-wrap {}
.gallery-drop-label {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: var(--letter-heading);
  color: var(--off-white);
}
.gallery-close {
  font-size: 1.1rem;
  color: var(--gray-400);
  padding: 8px;
  transition: color .3s;
}
.gallery-close:hover { color: var(--off-white); }

.gallery-grid {
  flex: 1;
  overflow-y: auto;
  padding: .75rem 1.25rem;
  columns: 4;
  column-gap: .5rem;
}

@media (max-width: 900px) { .gallery-grid { columns: 3; } }
@media (max-width: 600px) { .gallery-grid { columns: 2; padding: .5rem; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: .5rem;
  position: relative;
  cursor: none;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--ease), opacity .3s;
}
.gallery-item:hover img { transform: scale(1.03); opacity: .9; }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color .3s;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(212,175,55,.4); }

/* ─── Lightbox ───────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  max-width: min(90vw, 900px);
  max-height: 90vh;
  display: flex;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.2rem;
  color: var(--gray-400);
  padding: 8px;
  transition: color .3s;
  z-index: 1;
}
.lightbox-close:hover { color: var(--off-white); }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2.5rem;
  color: rgba(212,175,55,.5);
  padding: 1rem;
  transition: color .3s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--gray-600);
}

/* ─── Product Grid ───────────────────────────────────────── */

.product-grid {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.products-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  padding: 3rem 0;
}

.loading-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.loading-dot:nth-child(2) { animation-delay: .2s; }
.loading-dot:nth-child(3) { animation-delay: .4s; }

@keyframes dotPulse {
  0%, 80%, 100% { opacity: .2; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 0;
  color: var(--gray-400);
  font-size: .75rem;
  letter-spacing: .2em;
}

.product-card {
  background: var(--gray-900);
  border: 1px solid rgba(212,175,55,.1);
  transition: border-color .3s var(--ease);
}

.product-card:hover {
  border-color: rgba(212,175,55,.35);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-sold-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(0,0,0,.75);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  font-size: .55rem;
  letter-spacing: .2em;
  padding: .35rem .7rem;
  font-weight: 500;
}

.product-info {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: .35rem;
}

.product-price {
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.product-size-select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.2);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .12em;
  padding: .6rem .75rem;
  margin-bottom: .75rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C4A24A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  cursor: none;
  transition: border-color .3s;
}
.product-size-select:hover { border-color: rgba(212,175,55,.5); }
.product-size-select:focus { outline: none; border-color: var(--gold); }
.product-size-select option { background: var(--gray-800); color: var(--off-white); }

.product-atc-btn {
  width: 100%;
  font-size: .65rem;
  letter-spacing: .18em;
  padding: .85rem 1rem;
}
.product-atc-btn:disabled {
  background: rgba(255,255,255,.05);
  color: var(--gray-400);
  cursor: not-allowed;
}

/* ─── Cart Drawer ────────────────────────────────────────── */

.cart-overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.cart-overlay-bg.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--gray-900);
  border-left: 1px solid rgba(212,175,55,.15);
  z-index: 950;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(212,175,55,.12);
}

.cart-drawer-title {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  color: var(--gold);
}

.cart-drawer-close {
  font-size: 1rem;
  color: var(--gray-400);
  transition: color .2s;
  padding: .25rem;
}
.cart-drawer-close:hover { color: var(--off-white); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-msg {
  font-size: .7rem;
  letter-spacing: .15em;
  color: var(--gray-400);
  text-align: center;
  margin-top: 3rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  align-items: start;
}

.cart-item-img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(212,175,55,.1);
}

.cart-item-name {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: .2rem;
}

.cart-item-variant {
  font-size: .6rem;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: .4rem;
}

.cart-item-price {
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--gold);
  font-weight: 500;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
}

.cart-item-qty-btn {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(212,175,55,.2);
  color: var(--gold);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  cursor: none;
}
.cart-item-qty-btn:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }

.cart-item-qty-num {
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--off-white);
  min-width: 1rem;
  text-align: center;
}

.cart-item-remove {
  color: var(--gray-400);
  font-size: .75rem;
  transition: color .2s;
  cursor: none;
  padding: .25rem;
  margin-top: -.1rem;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-footer {
  padding: 1.5rem 1.75rem;
  border-top: 1px solid rgba(212,175,55,.12);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cart-total-label {
  font-size: .6rem;
  letter-spacing: .25em;
  color: var(--gray-400);
  font-weight: 500;
}

.cart-total-amount {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
}

.cart-checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  font-size: .65rem;
  letter-spacing: .2em;
  padding: 1rem;
}

/* ─── Scrollbar ──────────────────────────────────────────── */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(212,175,55,.2); }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,.4); }

::selection { background: rgba(212,175,55,.2); color: var(--off-white); }

