/* ================================================================
   BOENO GRILLZ â€” STREET-LUX DESIGN SYSTEM
   Font: Bebas Neue (headlines) + Inter (body) + Space Grotesk (UI)
   Palette: Deep black Â· Brushed metal greys Â· Luxury gold Â· Platinum
   ================================================================ */

/* ----------------------------------------------------------------
   0. CUSTOM PROPERTIES / DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Colors */
  --black:       #0D0D0D;
  --black-soft:  #141414;
  --black-mid:   #1A1A1A;
  --black-light: #222222;
  --grey-900:    #2A2A2A;
  --grey-800:    #3A3A3A;
  --grey-600:    #666666;
  --grey-400:    #999999;
  --grey-200:    #CCCCCC;
  --white:       #F5F5F0;

  /* Gold palette */
  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dim:    #A88A2A;
  --gold-pale:   #F0DC8A;
  --platinum:    #E5E4E2;

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, #D4AF37 0%, #F0DC8A 50%, #A88A2A 100%);
  --grad-dark:   linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  --grad-glow:   radial-gradient(ellipse at center, rgba(212,175,55,0.15) 0%, transparent 70%);
  --grad-metal:  linear-gradient(135deg, #2A2A2A 0%, #3A3A3A 30%, #2A2A2A 60%, #444 100%);

  /* Typography */
  --font-headline:  'Bebas Neue', 'Arial Black', sans-serif;
  --font-ui:        'Space Grotesk', 'Inter', sans-serif;
  --font-body:      'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* Border radius */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-gold:   0 0 40px rgba(212,175,55,0.25), 0 0 80px rgba(212,175,55,0.10);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.6);
  --shadow-nav:    0 2px 40px rgba(0,0,0,0.8);

  /* Transitions */
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:      180ms;
  --dur-mid:       360ms;
  --dur-slow:      600ms;

  /* Layout */
  --nav-h:       72px;
  --max-w:       1280px;
  --max-w-text:  720px;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ----------------------------------------------------------------
   2. UTILITY CLASSES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-7); }
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------------
   3. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--dur-fast) var(--ease-smooth),
              box-shadow var(--dur-mid) var(--ease-smooth),
              background var(--dur-mid) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::after { opacity: 1; }
.btn:hover        { transform: translateY(-2px); }
.btn:active       { transform: translateY(0); }

/* Gold filled */
.btn--gold {
  background: var(--grad-gold);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(212,175,55,0.35);
}
.btn--gold:hover {
  box-shadow: 0 8px 40px rgba(212,175,55,0.55);
}
.btn--gold svg { width: 18px; height: 18px; }

/* Ghost outlined */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* WhatsApp */
.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
}
.btn--whatsapp svg { width: 20px; height: 20px; }
.btn--whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ----------------------------------------------------------------
   4. NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--dur-mid) var(--ease-smooth),
              box-shadow var(--dur-mid) var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-nav);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--grad-gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 10px;
  box-shadow: var(--shadow-gold);
}

.nav__logo-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Links */
.nav__links {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-200);
  position: relative;
  transition: color var(--dur-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-smooth);
}

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

.nav__link--cta {
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-pill);
  color: var(--gold);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.nav__icon-btn svg { width: 22px; height: 22px; }
.nav__icon-btn:hover { color: var(--gold); background: rgba(255,255,255,0.06); }

.nav__cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 18px; height: 18px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  display: none;
}

.nav__cart-badge.visible { display: flex; }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease-smooth),
              opacity var(--dur-fast),
              background var(--dur-fast);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

@media (min-width: 900px) {
  .nav__hamburger { display: none; }
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  animation: slideDown var(--dur-mid) var(--ease-out-expo);
}

.nav__mobile[hidden] { display: none; }

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.nav__mobile-link {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--dur-fast);
}

.nav__mobile-link:hover { color: var(--gold); }

/* ----------------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Three.js canvas fills the hero */
#grillz-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  padding-top: var(--nav-h);
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content { padding-inline: var(--sp-7); }
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-headline);
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-5);
  user-select: none;
}

.hero__title-line {
  display: block;
  animation: heroLineIn var(--dur-slow) var(--ease-out-expo) both;
}

.hero__title-line:nth-child(2) { animation-delay: 100ms; }
.hero__title-line:nth-child(3) { animation-delay: 200ms; }

.hero__title-line--gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Chrome glitch fix for large gradient text */
  -webkit-text-stroke: 0;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--grey-400);
  max-width: 420px;
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 1s 0.8s var(--ease-out-expo) both;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--grey-600);
  writing-mode: vertical-lr;
}

/* Floating badge */
.hero__badge {
  position: absolute;
  right: 8%;
  bottom: 15%;
  width: 90px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  animation: rotateSlow 12s linear infinite;
}

.hero__badge svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.hero__badge-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.2;
  z-index: 1;
}

.hero__badge-text small {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  display: block;
  color: var(--grey-400);
}

/* ----------------------------------------------------------------
   6. MARQUEE BAND
   ---------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: var(--gold);
  padding-block: 12px;
  position: relative;
  z-index: 2;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--black);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   7. SECTION HEADERS
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.section-header__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}

.section-header__title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   8. FEATURES SECTION
   ---------------------------------------------------------------- */
.features {
  padding-block: var(--sp-10);
  background: var(--black-soft);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.feature-card {
  background: var(--black-mid);
  border: 1px solid var(--grey-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--dur-mid), transform var(--dur-mid) var(--ease-smooth),
              box-shadow var(--dur-mid);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur-mid);
}

.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 48px; height: 48px;
  margin-bottom: var(--sp-4);
}

.feature-card__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
  letter-spacing: 0.02em;
}

.feature-card__body {
  font-size: 0.875rem;
  color: var(--grey-400);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   9. COLLECTION GRID
   ---------------------------------------------------------------- */
.collection {
  padding-block: var(--sp-10);
  background: var(--black);
}

.collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: var(--sp-3);
}

@media (max-width: 768px) {
  .collection__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
}

.coll-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.coll-card--wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .coll-card--wide { grid-column: span 1; }
}

.coll-card__visual {
  position: absolute;
  inset: 0;
  transition: transform var(--dur-slow) var(--ease-smooth);
  background-size: cover;
  background-position: center;
}

.coll-card__visual--full   { background: var(--grad-metal); }
.coll-card__visual--top    { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%); }
.coll-card__visual--bottom { background: linear-gradient(135deg, #202020 0%, #303030 50%, #202020 100%); }
.coll-card__visual--custom { background: linear-gradient(135deg, #0D0D0D 0%, #252525 40%, #D4AF37 100%); }

/* Subtle golden shimmer */
.coll-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(212,175,55,0.12) 0%, transparent 60%);
}

.coll-card:hover .coll-card__visual {
  transform: scale(1.05);
}

.coll-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  transition: background var(--dur-mid);
}

.coll-card:hover .coll-card__overlay {
  background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.4) 70%, transparent 100%);
}

.coll-card__label {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.coll-card__sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.coll-card__arrow {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transform: translate(-8px, 8px);
  transition: opacity var(--dur-mid), transform var(--dur-mid) var(--ease-smooth);
}

.coll-card:hover .coll-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ----------------------------------------------------------------
   10. APPOINTMENT CTA
   ---------------------------------------------------------------- */
.appt-cta {
  background: var(--black-soft);
  border-top: 1px solid var(--grey-900);
  border-bottom: 1px solid var(--grey-900);
  padding-block: var(--sp-9);
  position: relative;
  overflow: hidden;
}

.appt-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.appt-cta__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .appt-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.appt-cta__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}

.appt-cta__title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.appt-cta__body {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.8;
}

.appt-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   11. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--grey-900);
  padding-top: var(--sp-9);
}

.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-8);
}

@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}

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

.footer__logo {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: var(--sp-2);
}

.footer__logo-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--grey-600);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.05em;
}

.footer__address {
  font-size: 0.8rem;
  color: var(--grey-400);
  line-height: 1.8;
  font-style: normal;
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer__list a {
  font-size: 0.875rem;
  color: var(--grey-400);
  transition: color var(--dur-fast);
}

.footer__list a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--grey-900);
  padding-block: var(--sp-4);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer__bottom p {
  font-size: 0.775rem;
  color: var(--grey-600);
}

/* ----------------------------------------------------------------
   12. KEYFRAME ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
   13. GLITCH MICRO-ANIMATION (hero title optional)
   ---------------------------------------------------------------- */
@keyframes glitch {
  0%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0); }
  5%  { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  10% { clip-path: inset(50% 0 30% 0); transform: translate(3px, -1px); }
  15% { clip-path: inset(0 0 100% 0); transform: translate(0); }
}

.glitch-wrap { position: relative; }
.glitch-wrap::before,
.glitch-wrap::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--gold);
  mix-blend-mode: screen;
}

.glitch-wrap::before {
  animation: glitch 6s 2s infinite step-start;
  left: 2px;
  color: rgba(212,175,55,0.6);
}

.glitch-wrap::after {
  animation: glitch 6s 2.5s infinite step-start reverse;
  left: -2px;
  color: rgba(212,175,55,0.4);
}

/* ----------------------------------------------------------------
   14. SCROLLBAR STYLING
   ---------------------------------------------------------------- */
::-webkit-scrollbar              { width: 6px; }
::-webkit-scrollbar-track        { background: var(--black); }
::-webkit-scrollbar-thumb        { background: var(--grey-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold-dim); }

/* ----------------------------------------------------------------
   15. FOCUS STYLES (accessibility)
   ---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   16. SELECTION
   ---------------------------------------------------------------- */
::selection {
  background: var(--gold);
  color: var(--black);
}

/* ================================================================
   PHASE 2 — ADDITIONAL STYLES
   Products, Cart, Checkout, Appointment, Admin
   ================================================================ */
