/* ═══════════════════════════════════════════════════
   EURO POLO · style.css
   European Minimal Luxury — Men's Lifestyle Brand
═══════════════════════════════════════════════════ */

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

:root {
  /* ── DAWN: free, clean, sufficient ── */
  --white:      #FAFAF7;        /* pure dawn white — airy, breathable       */
  --cream:      #F2EDE4;        /* warm linen — soft morning light           */
  --stone:      #E8E2D6;        /* light stone — grounded but clean          */
  --border:     #DDD8CE;        /* hairline — just enough structure          */
  --mid:        #5A5550;        /* warm mid-tone body text                   */
  --muted:      #9A958E;        /* quiet, supporting text                    */

  /* ── PRESTIGE: premium, luxury feel ── */
  --prestige:     #0C1C0F;      /* deep forest green — heritage & gravitas   */
  --prestige-mid: #163320;      /* forest mid — richness, depth              */
  --prestige-alt: #1F4229;      /* lighter forest — layering                 */
  --charcoal:     #1A1A18;      /* near-black, warm — authority              */
  --dark:         #0E0E0C;      /* deepest dark                              */

  /* ── GOLD: the bridge between both worlds ── */
  --gold:       #C09A42;        /* warm European gold — not flashy, earned   */
  --gold-light: #D9B96A;        /* champagne — highlights, hover states      */
  --gold-pale:  #F0E8D0;        /* pale gold — tags, soft fills              */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w:      1200px;
  --nav-h:      72px;
  --gap:        clamp(1.5rem, 3vw, 2.5rem);
  --section-py: clamp(5rem, 8vw, 8rem);

  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header .section-desc { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.7rem;
  background: var(--prestige);
  color: var(--white);
  border-color: var(--prestige);
}
.btn--sm:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ════════════════════════════════════
   NAVIGATION
════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(12, 28, 15, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(192,154,66,0.25);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
}
.nav__logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 1px;
  padding-left: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--gold-light); }
.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(10, 24, 12, 0.99);
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav__mobile a {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.25s;
}
.nav__mobile a:hover { color: var(--gold-light); }
.nav__mobile.open { display: flex; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #060e07 0%, #0c1c0f 45%, #163320 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.1) 60%,
    transparent 100%
  );
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(
      45deg,
      #fff 0px, #fff 1px,
      transparent 1px, transparent 60px
    ),
    repeating-linear-gradient(
      -45deg,
      #fff 0px, #fff 1px,
      transparent 1px, transparent 60px
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  padding-top: var(--nav-h);
  max-width: 820px;
}
.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 2rem;
  animation: fadeUp 1s var(--ease-out) 0.35s both;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__desc {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.65s both;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.br-desktop { display: block; }

/* ════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════ */
.marquee-strip {
  background: var(--prestige);
  padding: 0.9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(192,154,66,0.3);
  border-bottom: 1px solid rgba(192,154,66,0.3);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════
   PILLARS
════════════════════════════════════ */
.pillars {
  padding: var(--section-py) 0;
  background: var(--stone);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pillar {
  padding: 3rem 2rem;
  background: var(--white);
  text-align: center;
  transition: background 0.3s;
}
.pillar:hover { background: var(--prestige); }
.pillar:hover h3, .pillar:hover p { color: var(--white); }
.pillar:hover .pillar__icon { color: var(--gold-light); }
.pillar__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  transition: color 0.3s;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.pillar p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  transition: color 0.3s;
}

/* ════════════════════════════════════
   COLLECTIONS
════════════════════════════════════ */
.collections {
  padding: var(--section-py) 0;
  background: var(--white);
}
.collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--gap);
}
.collection-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.collection-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.collection-card--wide {
  grid-column: 1 / -1;
}
.collection-card--wide .collection-card__img {
  height: 380px;
}
.collection-card__img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.collection-card__img--bags {
  background: linear-gradient(135deg, #0c1c0f 0%, #163320 100%);
}
.collection-card__img--wallets {
  background: linear-gradient(135deg, #1a1208 0%, #2e2010 100%);
}
.collection-card__img--luggage {
  background: linear-gradient(135deg, #0a0e0a 0%, #0c1c0f 50%, #1f4229 100%);
}

/* Product placeholders with text patterns */
.collection-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.8) 0px, rgba(255,255,255,0.8) 1px,
      transparent 1px, transparent 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.8) 0px, rgba(255,255,255,0.8) 1px,
      transparent 1px, transparent 40px
    );
}

/* Center icons for placeholders */
.collection-card__img--bags::before,
.collection-card__img--wallets::before,
.collection-card__img--luggage::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.07);
  letter-spacing: 0.05em;
  z-index: 1;
}
.collection-card__img--bags::before { content: 'BAGS'; }
.collection-card__img--wallets::before { content: 'WALLETS & BELTS'; font-size: clamp(2rem, 5vw, 4.5rem); }
.collection-card__img--luggage::before { content: 'LUGGAGE'; }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background 0.35s;
  z-index: 2;
}
.collection-card:hover .collection-card__overlay {
  background: rgba(0,0,0,0.35);
}
.collection-card__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s var(--ease-out);
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.5);
}
.collection-card:hover .collection-card__link {
  opacity: 1;
  transform: translateY(0);
}
.collection-card__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  padding: 0.35rem 0.9rem;
  z-index: 3;
}
.collection-card__badge--gold {
  background: var(--gold);
  color: var(--white);
}
.collection-card__body {
  padding: 1.75rem 2rem 2rem;
}
.collection-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.collection-card__body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-tags li {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  background: var(--gold-pale);
  padding: 0.3rem 0.75rem;
}

/* ════════════════════════════════════
   FEATURED PRODUCTS
════════════════════════════════════ */
.featured {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.featured__header {
  text-align: center;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.35s;
  border-right: 1px solid var(--border);
}
.product-card:last-child { border-right: none; }
.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  z-index: 2;
}
.product-card__img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.product-card__img--1 { background: linear-gradient(160deg, #0c1c0f, #163320); }
.product-card__img--2 { background: linear-gradient(160deg, #1a1208, #2e2010); }
.product-card__img--3 { background: linear-gradient(160deg, #141414, #1e1e1e); }
.product-card__img--4 { background: linear-gradient(160deg, #0a0e0a, #1f4229); }

.product-card__img::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.02em;
}
.product-card__img--1::before { content: '◈'; font-family: inherit; }
.product-card__img--2::before { content: '◇'; }
.product-card__img--3::before { content: '◆'; }
.product-card__img--4::before { content: '◉'; }

.product-card__hover-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.75rem;
}
.product-card__info { padding: 1.5rem; }
.product-card__cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.product-card__info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ════════════════════════════════════
   CRAFT BANNER
════════════════════════════════════ */
.craft-banner {
  background: var(--prestige);
  position: relative;
  overflow: hidden;
}
.craft-banner::before {
  content: 'EP';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-family: var(--font-serif);
  font-size: 28vw;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}
.craft-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) clamp(1.25rem, 4vw, 3rem);
}
.craft-banner__content {
  max-width: 620px;
}
.craft-banner__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.craft-banner__content h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.craft-banner__content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.craft-banner__content p em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

/* ════════════════════════════════════
   ABOUT
════════════════════════════════════ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img-main {
  width: 80%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about__img-inner--1 {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0c1c0f 0%, #163320 60%, #C09A4222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.06);
}
.about__img-inner--1::after {
  content: 'EURO\APOLO';
  white-space: pre;
  line-height: 1.2;
  color: rgba(255,255,255,0.07);
  font-size: 4rem;
  text-align: center;
}
.about__img-accent {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 45%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--white);
}
.about__img-inner--2 {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #8B6914 100%);
}
.about__stat-card {
  position: absolute;
  top: 2rem;
  right: 0;
  background: var(--prestige);
  color: var(--white);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 0.4rem;
  line-height: 1.5;
}
.about__text .section-title { margin-top: 0.5rem; }
.about__text p {
  font-size: 0.925rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about__values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.about__value {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.about__value strong {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 130px;
}
.about__value span {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════
   STYLE CODES
════════════════════════════════════ */
.style-codes {
  padding: var(--section-py) 0;
  background: var(--cream);
}
.style-codes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.style-code {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.style-code:hover { background: var(--white); }
.style-code__tag {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.style-code:hover .style-code__tag { color: var(--gold); }
.style-code h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.style-code p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact__info .section-title { margin-top: 0.5rem; }
.contact__info > p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__detail-icon {
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 28px;
  padding-top: 2px;
}
.contact__detail strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.contact__detail span {
  font-size: 0.9rem;
  color: var(--mid);
}
.contact__social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-btn {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--border);
  padding: 0.55rem 1.1rem;
  transition: all 0.25s;
}
.social-btn:hover {
  background: var(--prestige);
  color: var(--white);
  border-color: var(--prestige);
}
.contact__form-wrap {
  background: var(--cream);
  padding: 2.5rem;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.25rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: #060e07;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(192,154,66,0.15);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-family: var(--font-serif) !important;
  font-style: italic;
  color: var(--gold) !important;
  opacity: 0.8;
  margin-top: 1rem !important;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h5 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__socials {
  display: flex;
  gap: .7rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background .22s, transform .22s, color .22s, border-color .22s;
  text-decoration: none;
  flex-shrink: 0;
}
.social-icon:hover {
  background: rgba(192,154,66,0.18);
  border-color: rgba(192,154,66,0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .product-card { border-right: none; border-bottom: 1px solid var(--border); }
  .product-card:last-child { border-bottom: none; }
  .style-codes__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .br-desktop { display: none; }

  .hero__content { padding: 0 1.5rem; padding-top: var(--nav-h); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }

  .collections__grid { grid-template-columns: 1fr; }
  .collection-card--wide { grid-column: auto; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual {
    height: 320px;
    margin-bottom: 3rem;
  }
  .about__img-main { width: 75%; height: 100%; }
  .about__img-accent { bottom: -1.5rem; width: 42%; aspect-ratio: 1; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.75rem; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .products-row { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .style-codes__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pillars__grid { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 4rem); }
}

/* ════════════════════════════════════
   SOCIAL PROOF SECTION
════════════════════════════════════ */
.social-proof {
  padding: var(--section-py) 0;
  background: var(--cream);
}

/* Platform cards row */
.social-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}
.social-platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s var(--ease-out);
  color: var(--charcoal);
}
.social-platform-card:hover {
  background: var(--prestige);
  border-color: var(--prestige);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12,28,15,0.2);
}
.social-platform-card:hover * { color: var(--white) !important; }
.social-platform-card:hover .social-platform-card__cta { color: var(--gold-light) !important; }
.social-platform-card--wa:hover { background: #1a4a20; border-color: #1a4a20; }
.social-platform-card__icon { color: var(--gold); margin-bottom: 0.25rem; }
.social-platform-card__name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.social-platform-card__handle {
  font-size: 0.85rem;
  color: var(--mid);
  font-family: var(--font-serif);
  font-style: italic;
}
.social-platform-card__cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* Social grid (Instagram-style tiles) */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 2rem;
}
.social-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.social-tile::after {
  content: '◈';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: rgba(255,255,255,0);
  background: rgba(192,154,66,0);
  transition: all 0.3s;
}
.social-tile:hover::after {
  color: rgba(255,255,255,0.9);
  background: rgba(12,28,15,0.5);
}
.social-tile--1 { background: linear-gradient(145deg, #0c1c0f, #163320); }
.social-tile--2 { background: linear-gradient(145deg, #1a1208, #2e2010); }
.social-tile--3 { background: linear-gradient(145deg, #101010, #1e1e1e); }
.social-tile--4 { background: linear-gradient(145deg, #163320, #1f4229); }
.social-tile--5 { background: linear-gradient(145deg, #0e0c08, #201a10); }
.social-tile--6 { background: linear-gradient(145deg, #060e07, #0c1c0f); }

/* Tile ghost text */
.social-tile--1::before { content: 'BAGS'; }
.social-tile--2::before { content: 'STYLE'; }
.social-tile--3::before { content: 'EP'; }
.social-tile--4::before { content: 'TRAVEL'; }
.social-tile--5::before { content: 'WALLETS'; }
.social-tile--6::before { content: 'BELTS'; }
.social-tile::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(0.6rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.07);
  text-transform: uppercase;
}

.social-hashtag {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* WhatsApp Float (shared — also in products.css for product pages) */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.65); opacity: 0; }
}
.whatsapp-float svg { position: relative; z-index: 1; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--prestige);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--prestige);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── NAV LOGO SVG sizing ── */
.nav__logo svg { display: block; }

/* ── SOCIAL section responsive ── */
@media (max-width: 1024px) {
  .social-platforms { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .social-platforms { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}
@media (max-width: 480px) {
  .social-platforms { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════
   NEWSLETTER SECTION
════════════════════════════════════ */
.newsletter {
  background: var(--prestige-mid);
  padding: clamp(4rem,7vw,6rem) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '◈';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28vw;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.newsletter__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem,4vw,3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem,5vw,5rem);
  align-items: center;
}
.newsletter__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.newsletter__text h2 em { font-style: italic; color: var(--gold-light); }
.newsletter__text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.newsletter__form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter__field {
  display: flex;
  gap: 0;
}
.newsletter__field input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--white);
  border: none;
  outline: none;
}
.newsletter__field input::placeholder { color: var(--muted); }
.newsletter__field .btn {
  border-radius: 0;
  white-space: nowrap;
}
.newsletter__note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .newsletter__inner { grid-template-columns: 1fr; }
  .newsletter__field { flex-direction: column; }
  .newsletter__field .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════
   COLOUR SWATCHES (Product Pages)
════════════════════════════════════ */
.product-card__colours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.colour-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c, #000);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  padding: 0;
}
.colour-swatch:hover { transform: scale(1.2); }
.colour-swatch--active {
  border-color: var(--gold);
  transform: scale(1.15);
}
.product-card__colour-name {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════════════════════════════════
   SIZE GUIDE PAGE
════════════════════════════════════ */
.sg-wrap {
  padding: var(--section-py) 0;
  background: var(--white);
}
.sg-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.sg-tab {
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  margin-bottom: -1px;
}
.sg-tab:hover { color: var(--charcoal); }
.sg-tab--active {
  color: var(--prestige);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.sg-panel--hidden { display: none; }
.sg-intro {
  margin-bottom: 2rem;
}
.sg-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem,3vw,2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.sg-intro p { font-size: 0.9rem; color: var(--mid); line-height: 1.75; }
.sg-table {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.sg-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.sg-table thead tr {
  background: var(--prestige);
  color: var(--white);
}
.sg-table th {
  padding: 0.875rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
}
.sg-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
  line-height: 1.5;
}
.sg-table td strong { color: var(--charcoal); }
.sg-table tbody tr:hover td { background: var(--cream); }
.sg-tip {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}
.sg-tip strong { color: var(--charcoal); }

/* ═══════════════════════════════════════════════════
   CART DRAWER & CART UI
═══════════════════════════════════════════════════ */

/* Overlay */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(14,14,12,.52);
  z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* Drawer */
.cart-drawer {
  position: fixed; top: 0; right: 0;
  height: 100dvh; width: min(420px, 100vw);
  background: var(--white);
  z-index: 1201;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.14);
}
.cart-drawer.open { transform: translateX(0); }

/* Drawer header */
.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-serif);
  font-size: 1.35rem; font-weight: 400;
  color: var(--charcoal); letter-spacing: .06em;
}
.cart-drawer__close {
  background: none; border: none; cursor: pointer;
  font-size: .9rem; color: var(--muted);
  width: 30px; height: 30px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.cart-drawer__close:hover { background: var(--stone); color: var(--charcoal); }

/* Drawer body */
.cart-drawer__body {
  flex: 1; overflow-y: auto;
  padding: .75rem 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
}

/* Empty cart */
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; flex: 1;
  text-align: center; padding: 3rem 1rem;
  color: var(--muted); font-size: .88rem;
}

/* Cart item */
.cart-item {
  display: flex; gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--stone);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: 6px; background: var(--cream);
  flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__ph { font-size: 1.4rem; color: var(--stone); }
.cart-item__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.cart-item__name {
  font-size: .83rem; font-weight: 600; color: var(--charcoal);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item__sku { font-size: .68rem; color: var(--muted); }
.cart-item__price { font-size: .82rem; font-weight: 600; color: var(--gold); }
.cart-item__row { display: flex; align-items: center; gap: .6rem; margin-top: .2rem; }
.cart-item__line { font-size: .78rem; color: var(--mid); text-align: right; margin-top: auto; }

/* Qty controls */
.cart-qty { display: flex; align-items: center; gap: .4rem; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border); background: var(--white);
  border-radius: 4px; cursor: pointer;
  font-size: .95rem; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.qty-btn:hover { background: var(--stone); }
.qty-val { font-size: .83rem; font-weight: 600; min-width: 1.4rem; text-align: center; }
.cart-del-btn {
  background: none; border: none; cursor: pointer;
  font-size: .68rem; color: var(--muted); text-decoration: underline;
}
.cart-del-btn:hover { color: var(--charcoal); }

/* Drawer footer */
.cart-drawer__foot {
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: .65rem;
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; color: var(--charcoal);
}
.cart-subtotal em { font-style: normal; }
.cart-subtotal strong { font-size: 1rem; }
.cart-ship-note { font-size: .68rem; color: var(--muted); text-align: center; }
.cart-checkout-link {
  display: block; text-align: center;
  padding: .9rem; border-radius: 5px;
  background: var(--gold); color: var(--white);
  font-family: var(--font-sans); font-size: .75rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .25s;
}
.cart-checkout-link:hover { background: var(--prestige); }
.cart-ghost-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: .75rem;
  color: var(--muted); text-decoration: underline; text-align: center;
}
.cart-ghost-btn:hover { color: var(--charcoal); }

/* Nav cart icon */
.cart-nav-btn {
  position: relative; background: none; border: none;
  cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  padding: .3rem .4rem; border-radius: 4px;
  transition: color .2s;
}
.cart-nav-btn:hover { color: var(--gold-light); }
.cart-badge {
  position: absolute; top: -7px; right: -9px;
  background: var(--gold); color: var(--prestige);
  font-size: .58rem; font-weight: 700;
  border-radius: 50%; width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
}

/* Add-to-cart button style (gold, same size as btn--sm) */
.btn--cart {
  padding: .55rem 1.1rem;
  font-size: .7rem;
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--cart:hover { background: var(--charcoal); border-color: var(--charcoal); }
