/* ================================================================
   CHIC-KEE DOLLS — styles.css
   Version: 1.0 | Mobile-first | Dark Editorial
   Palette: Void Black + Chic Pink + Electric Lilac + Glam Gold
================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS — CSS CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-void-black: #0D0B12;
  --color-deep-plum: #1A1625;
  --color-dark-grape: #241E35;
  --color-chic-pink: #FF2D78;
  --color-electric-lilac: #BF5FFF;
  --color-glam-gold: #FFD700;
  --color-bubblegum: #FF6EB4;
  --color-neon-mint: #00E5CC;
  --color-fire-tangerine: #FF8C42;
  --color-pure-white: #FFFFFF;
  --color-pale-lavender: #E8E0FF;
  --color-muted-purple: #8B7FAA;

  /* Semantic */
  --bg-primary: var(--color-void-black);
  --bg-secondary: var(--color-deep-plum);
  --bg-tertiary: var(--color-dark-grape);
  --text-primary: var(--color-pure-white);
  --text-muted: var(--color-muted-purple);
  --accent: var(--color-chic-pink);
  --accent-2: var(--color-electric-lilac);
  --accent-gold: var(--color-glam-gold);

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Layout */
  --max-width: 1320px;
  --navbar-height: 72px;

  /* Borders / Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.45s ease;
  --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input,
button {
  font-family: inherit;
}

/* ----------------------------------------------------------------
   SCROLLBAR STYLING
---------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-chic-pink) 0%, var(--color-electric-lilac) 100%);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--color-electric-lilac) 0%, var(--color-glam-gold) 100%);
}

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

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

@media (min-width: 1200px) {
  .container {
    padding-inline: var(--space-2xl);
  }
}

/* ----------------------------------------------------------------
   TYPOGRAPHY UTILITIES
---------------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(90deg,
      var(--color-chic-pink) 0%,
      var(--color-electric-lilac) 40%,
      var(--color-glam-gold) 65%,
      var(--color-chic-pink) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s linear infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  white-space: nowrap;
  transition:
    transform var(--transition-spring),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    opacity var(--transition-base);
  user-select: none;
}

.btn:hover {
  transform: scale(1.04);
}

.btn:active {
  transform: scale(0.97);
}

/* Sizes */
.btn--sm {
  font-size: 0.72rem;
  padding: 8px 20px;
}

.btn--lg {
  font-size: 0.95rem;
  padding: 14px 36px;
}

.btn--full {
  width: 100%;
  padding: 14px;
  font-size: 0.9rem;
}

/* Variants */
.btn--pink {
  background: var(--color-chic-pink);
  color: var(--color-pure-white);
  border-color: var(--color-chic-pink);
  box-shadow: 0 0 24px rgba(255, 45, 120, 0.3);
}

.btn--pink:hover {
  background: #ff4d8e;
  box-shadow: 0 0 36px rgba(255, 45, 120, 0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  border-color: var(--color-electric-lilac);
  color: var(--color-electric-lilac);
  box-shadow: 0 0 20px rgba(191, 95, 255, 0.2);
}

.btn--lilac {
  background: var(--color-electric-lilac);
  color: var(--color-pure-white);
  border-color: var(--color-electric-lilac);
  box-shadow: 0 0 24px rgba(191, 95, 255, 0.3);
}

.btn--lilac:hover {
  background: #d07bff;
  box-shadow: 0 0 36px rgba(191, 95, 255, 0.5);
}

/* Disabled */
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ----------------------------------------------------------------
   BADGES
---------------------------------------------------------------- */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.badge--new {
  background: rgba(255, 45, 120, 0.15);
  color: var(--color-chic-pink);
  border-color: rgba(255, 45, 120, 0.4);
}

.badge--gold {
  background: rgba(255, 215, 0, 0.12);
  color: var(--color-glam-gold);
  border-color: rgba(255, 215, 0, 0.35);
}

.badge--lilac {
  background: rgba(191, 95, 255, 0.12);
  color: var(--color-electric-lilac);
  border-color: rgba(191, 95, 255, 0.35);
}

.badge--pink {
  background: rgba(255, 45, 120, 0.12);
  color: var(--color-chic-pink);
  border-color: rgba(255, 45, 120, 0.35);
}

/* ----------------------------------------------------------------
   INPUTS
---------------------------------------------------------------- */
.input {
  width: 100%;
  background: var(--bg-tertiary);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 22px;
  outline: none;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.input::placeholder {
  color: var(--text-muted);
}

.input:focus {
  border-color: var(--color-chic-pink);
  box-shadow: 0 0 0 3px rgba(255, 45, 120, 0.15);
}

.input--large {
  font-size: 1.05rem;
  padding: 16px 28px;
}

/* ----------------------------------------------------------------
   SECTION STYLES — SHARED
---------------------------------------------------------------- */
.section {
  padding-block: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.tag-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(191, 95, 255, 0.4),
      transparent);
}

.tag-text {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-electric-lilac);
  white-space: nowrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   PLACEHOLDERS — REUSABLE VISUAL BLOCKS
---------------------------------------------------------------- */
.placeholder {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.placeholder__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.placeholder__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.placeholder--product {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(191, 95, 255, 0.25);
  min-height: 260px;
}

.placeholder--product-sm {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(191, 95, 255, 0.25);
  min-height: 200px;
}

.placeholder--product::before,
.placeholder--product-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%,
      rgba(191, 95, 255, 0.08) 0%,
      transparent 70%);
}

.placeholder--coming {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(139, 127, 170, 0.2);
  min-height: 200px;
}

.coming-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
}

.placeholder--video {
  aspect-ratio: 16 / 7;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
  border: 1.5px dashed rgba(191, 95, 255, 0.2);
  min-height: 220px;
  margin-bottom: var(--space-xl);
  cursor: pointer;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.placeholder--video:hover {
  border-color: rgba(191, 95, 255, 0.5);
  box-shadow: 0 0 40px rgba(191, 95, 255, 0.1);
}

.video-play-icon {
  margin-bottom: var(--space-sm);
}

.placeholder--character-lg {
  aspect-ratio: 3 / 4;
  min-height: 280px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(255, 45, 120, 0.25);
}

.placeholder--character-sm {
  aspect-ratio: 3 / 4;
  min-height: 180px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(191, 95, 255, 0.2);
}

.placeholder--world {
  min-height: 420px;
  background: linear-gradient(135deg,
      var(--bg-tertiary) 0%,
      #2a1a40 50%,
      var(--bg-secondary) 100%);
  border: 1.5px dashed rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
}

.placeholder--gallery {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1.5px dashed rgba(0, 229, 204, 0.2);
  border-radius: var(--radius-md);
}

.placeholder--more {
  padding: var(--space-2xl);
  background: var(--bg-secondary);
  border: 1.5px dashed rgba(191, 95, 255, 0.2);
  border-radius: var(--radius-lg);
  margin-top: var(--space-xl);
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   HELPER CLASSES (CSP-SAFE)
---------------------------------------------------------------- */
.is-hidden { display: none !important; }
.no-scroll { overflow: hidden !important; }
.hero-product-image { position: relative; }
.fade-out { opacity: 0 !important; transition: opacity 0.3s ease; }
.fade-in { opacity: 1 !important; transition: opacity 0.3s ease; }
.fade-fast-out { opacity: 0 !important; transition: opacity 0.2s ease; }
.delay-0 { transition-delay: 0s; }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* ----------------------------------------------------------------
   SECTION 1: NAVBAR
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(13, 11, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--transition-base),
    backdrop-filter var(--transition-base),
    border-color var(--transition-base);
}

.navbar.scrolled {
  background: rgba(13, 11, 18, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom-color: rgba(191, 95, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(191, 95, 255, 0.1),
    0 8px 40px rgba(0, 0, 0, 0.5);
}

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

@media (min-width: 768px) {
  .navbar__inner {
    padding-inline: var(--space-xl);
  }
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* Logo imagen — navbar */
.navbar__logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: opacity var(--transition-base);
}

.navbar__logo:hover .navbar__logo-img {
  opacity: 0.85;
}

/* Logo texto (fallback, se mantiene para compatibilidad) */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1;
}

.logo-text em {
  font-style: normal;
  color: var(--color-chic-pink);
  margin-left: 4px;
}

/* Nav Links */
.navbar__links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
  flex: 1;
  justify-content: center;
}

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

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-chic-pink);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA */
.navbar__cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .navbar__cta {
    display: block;
  }
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    width var(--transition-base);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

/* ----------------------------------------------------------------
   MOBILE MENU
---------------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--bg-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  padding-top: calc(var(--navbar-height) + var(--space-xl));
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition-fast);
  padding: 4px;
}

.mobile-menu__close:hover {
  color: var(--text-primary);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color var(--transition-base);
  line-height: 1.1;
}

.mobile-link:hover {
  color: var(--text-primary);
}

.mobile-link--cta {
  margin-top: var(--space-lg);
  color: var(--color-chic-pink);
}

.mobile-link--secondary-cta {
  margin-top: var(--space-sm);
  font-size: 1.5rem;
  color: var(--text-muted);
}

.mobile-link--secondary-cta:hover {
  color: var(--color-electric-lilac);
}

/* Backdrop */
.mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 11, 18, 0.7);
  z-index: 1050;
  backdrop-filter: blur(4px);
}

.mobile-menu__backdrop.open {
  display: block;
}

/* ----------------------------------------------------------------
   SECTION 2: HERO
---------------------------------------------------------------- */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  padding-top: calc(var(--navbar-height) + var(--space-2xl));
  padding-bottom: var(--space-3xl);
  padding-inline: var(--space-md);
  position: relative;
  overflow: hidden;
  gap: var(--space-3xl);

  /* Centering */
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .hero {
    padding-inline: var(--space-xl);
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1200px) {
  .hero {
    grid-template-columns: 1fr 460px;
    padding-inline: var(--space-2xl);
  }
}

/* Hero background glow */
.hero__bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
      rgba(191, 95, 255, 0.22) 0%,
      rgba(255, 45, 120, 0.12) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 7s ease-in-out infinite;
}

/* Hero secondary glow — bottom left tension */
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle,
      rgba(255, 45, 120, 0.13) 0%,
      rgba(191, 95, 255, 0.07) 45%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glow-breathe 9s ease-in-out infinite reverse;
}

@keyframes glow-breathe {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.12);
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-electric-lilac);
  background: rgba(191, 95, 255, 0.1);
  border: 1px solid rgba(191, 95, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-electric-lilac);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.badge-dot--gold {
  background: var(--color-glam-gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8.5rem);
  line-height: 0.92;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 680px;
}

.hero__subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Hero Product Card */
.hero__product-card {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ----------------------------------------------------------------
   PRODUCT CARDS — SHARED
---------------------------------------------------------------- */
.product-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition-spring),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 95, 255, 0.3);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(191, 95, 255, 0.08);
}

.product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card__hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 45, 120, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-pure-white);
  opacity: 0;
  transition: opacity var(--transition-base);
  cursor: pointer;
}

.product-card:hover .product-card__hover-overlay {
  opacity: 1;
}

.product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-top: var(--space-sm);
}

.product-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block: var(--space-sm);
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.product-card__stars {
  color: var(--color-glam-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* Coming Card */
.product-card--coming {
  opacity: 0.75;
}

.coming-price {
  color: var(--text-muted);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-card__image {
  overflow: hidden;
  border-radius: 16px;
}

/* ----------------------------------------------------------------
   SECTION 3: THE DROP
---------------------------------------------------------------- */
.the-drop {
  background: var(--bg-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------------
   SECTION 4: MEET THE CREW
---------------------------------------------------------------- */
.meet-the-crew {
  background: var(--bg-secondary);
}

.meet-the-crew::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 45, 120, 0.35) 30%,
      rgba(191, 95, 255, 0.35) 70%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Crew Filters */
.crew-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.pill {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-spring);
}

.pill:hover {
  border-color: rgba(191, 95, 255, 0.4);
  color: var(--text-primary);
  transform: scale(1.04);
}

.pill--active {
  background: var(--color-electric-lilac);
  border-color: var(--color-electric-lilac);
  color: var(--color-pure-white);
  box-shadow: 0 0 20px rgba(191, 95, 255, 0.35);
}

/* Featured Character */
.character-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .character-featured {
    grid-template-columns: 1fr 1fr;
  }
}

/* Featured Character — media zone (video) */
.character-featured__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--bg-tertiary);
  /* Placeholder dark sin video */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .character-featured__media {
    min-height: 420px;
  }
}

/* Video dentro del featured */
.character-featured__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Transición suave al cambiar de personaje */
  transition: opacity 0.25s ease;
}

/* Cuando el video no tiene src, se oculta para mostrar el fondo dark */
.character-featured__video:not([src]):not([data-loaded]) {
  opacity: 0;
}

/* Overlay gradiente + nombre del personaje encima del video */
.character-featured__video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(to top,
      rgba(13, 11, 18, 0.85) 0%,
      rgba(13, 11, 18, 0.4) 50%,
      transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.character-featured__video-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.character-featured__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  justify-content: center;
}

.character-name {
  font-family: var(--font-display);
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: var(--space-sm);
}

.character-name--sm {
  font-size: 1.6rem;
}

.character-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-electric-lilac);
}

.character-traits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}

.trait-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 45, 120, 0.1);
  color: var(--color-bubblegum);
  border: 1px solid rgba(255, 110, 180, 0.2);
}

.trait-pill--sm {
  padding: 4px 10px;
  font-size: 0.68rem;
}

.character-quote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  border-left: 3px solid var(--color-chic-pink);
  padding-left: var(--space-md);
  line-height: 1.5;
  margin-block: var(--space-sm);
}

.character-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   CREW CAROUSEL — Sistema escalable de personajes
---------------------------------------------------------------- */
.crew-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

/* Track wrapper — oculta el overflow */
.crew-carousel__track-wrapper {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

/* Track — contenedor horizontal deslizable */
.crew-carousel__track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Mini-tarjetas del carrusel */
.crew-card {
  /* Desktop: 4 cards visibles */
  flex: 0 0 calc(25% - (var(--space-md) * 3 / 4));
  min-width: 0;
}

@media (max-width: 899px) {

  /* Tablet: 2 cards visibles */
  .crew-card {
    flex: 0 0 calc(50% - (var(--space-md) / 2));
  }
}

@media (max-width: 599px) {

  /* Mobile: 1 card visible */
  .crew-card {
    flex: 0 0 100%;
  }
}

/* Botones de navegación */
.crew-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-spring);
  z-index: 2;
}

.crew-carousel__btn:hover {
  background: var(--color-chic-pink);
  border-color: var(--color-chic-pink);
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.4);
  transform: scale(1.08);
}

.crew-carousel__btn:active {
  transform: scale(0.95);
}

.crew-carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Character Cards — compartidas entre grid y carrusel */
.character-card {
  background: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition-spring),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.character-card:hover {
  transform: translateY(-5px);
  border-color: rgba(191, 95, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* Card activa (seleccionada en el carrusel, preparada para JS) */
.character-card.is-active {
  border-color: var(--color-chic-pink);
  box-shadow:
    0 0 0 1px var(--color-chic-pink),
    0 16px 48px rgba(255, 45, 120, 0.2);
}

.character-card__image {
  overflow: hidden;
}

.character-card__info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* Crew Quote Block */
.crew-quote {
  text-align: center;
  padding: var(--space-3xl) var(--space-md);
  position: relative;
}

.crew-quote__text {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ----------------------------------------------------------------
   SECTION 5: THE CHIC-KEE WORLD
---------------------------------------------------------------- */
.chickee-world {
  background: var(--bg-primary);
  position: relative;
}

.chickee-world::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%,
      rgba(255, 215, 0, 0.04) 0%,
      transparent 70%);
  pointer-events: none;
}

.world-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .world-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.world-lore {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.world-lore__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-glam-gold);
}

.world-lore__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  font-weight: 400;
}

.world-lore__body {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.world-lore__body em {
  font-style: italic;
  color: var(--color-electric-lilac);
}

.world-lore__stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-block: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.world-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.world-stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
}

.world-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* World Visual */
.world-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.world-visual__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.world-visual:hover .world-visual__img {
  transform: scale(1.03);
}

.world-visual .placeholder--world {
  border-radius: var(--radius-xl);
}

.world-visual__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.deco-circle--1 {
  width: 200px;
  height: 200px;
  background: var(--color-electric-lilac);
  top: 20%;
  left: 20%;
  filter: blur(60px);
}

.deco-circle--2 {
  width: 150px;
  height: 150px;
  background: var(--color-chic-pink);
  bottom: 25%;
  right: 20%;
  filter: blur(50px);
}

.deco-circle--3 {
  width: 100px;
  height: 100px;
  background: var(--color-glam-gold);
  top: 50%;
  left: 55%;
  filter: blur(40px);
}

/* ----------------------------------------------------------------
   SECTION 6: COLOR & SLAY
---------------------------------------------------------------- */
.color-and-slay {
  background: var(--bg-secondary);
}

.color-and-slay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(191, 95, 255, 0.35) 30%,
      rgba(0, 229, 204, 0.3) 70%,
      transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hashtag {
  color: var(--color-electric-lilac);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition-base);
}

.gallery-cell:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.gallery-cell .placeholder--gallery {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 0;
  border: none;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  transition: background var(--transition-base);
}

.gallery-cell:hover .placeholder--gallery {
  background: linear-gradient(135deg,
      rgba(191, 95, 255, 0.12) 0%,
      var(--bg-tertiary) 100%);
}

/* CTA Cell */
.gallery-cell--cta {
  background: linear-gradient(135deg,
      rgba(255, 45, 120, 0.12) 0%,
      rgba(191, 95, 255, 0.12) 100%);
  border: 1.5px solid rgba(191, 95, 255, 0.25);
  border-radius: var(--radius-md);
  cursor: default;
}

.gallery-cell--cta:hover {
  transform: none;
}

.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-lg);
  height: 100%;
  min-height: 180px;
}

.gallery-cta__hashtag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-electric-lilac);
}

.gallery-cta__text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ----------------------------------------------------------------
   SECTION 7: WHAT'S DROPPING
---------------------------------------------------------------- */
.whats-dropping {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.whats-dropping::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 45, 120, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(191, 95, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.whats-dropping__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.dropping-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-glam-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.dropping-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

.dropping-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 80px;
  padding: 18px 14px 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 95, 255, 0.18);
  border-radius: var(--radius-md);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.countdown__block:hover {
  border-color: rgba(191, 95, 255, 0.38);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(191, 95, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--text-primary) 60%, var(--color-electric-lilac) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  transform: translateY(-8px);
}

/* Notify Form */
.notify-form {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.notify-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .notify-form__fields {
    flex-direction: row;
  }

  .notify-form__fields .input {
    flex: 1;
  }
}

.notify-form__error,
.join-form__error {
  font-size: 0.8rem;
  color: var(--color-chic-pink);
  min-height: 1.2em;
  text-align: left;
}

.notify-form__success,
.join-form__success {
  background: rgba(0, 229, 204, 0.08);
  border: 1px solid rgba(0, 229, 204, 0.3);
  color: var(--color-neon-mint);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ----------------------------------------------------------------
   SECTION 8: JOIN THE CREW
---------------------------------------------------------------- */
.join-the-crew {
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.join-inner {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.join-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.join-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 420px;
}

.join-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.join-form__fields {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .join-form__fields {
    flex-direction: row;
  }

  .join-form__fields .input {
    flex: 1;
  }
}

/* Success State */
.join-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.success-icon {
  font-size: 2rem;
  color: var(--color-neon-mint);
}

/* ----------------------------------------------------------------
   SECTION 9: FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--bg-primary);
  padding-block: var(--space-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}

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

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

/* Logo imagen — footer */
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: opacity var(--transition-base);
}

.footer__logo:hover .footer__logo-img {
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  transition:
    color var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-spring),
    box-shadow var(--transition-base);
}

.social-icon:hover {
  color: var(--text-primary);
  transform: translateY(-4px);
}

/* Instagram — Chic Pink */
.footer__social .social-icon:nth-child(1):hover {
  background: var(--color-chic-pink);
  border-color: var(--color-chic-pink);
  box-shadow: 0 8px 24px rgba(255, 45, 120, 0.45);
}

/* TikTok — Electric Lilac */
.footer__social .social-icon:nth-child(2):hover {
  background: var(--color-electric-lilac);
  border-color: var(--color-electric-lilac);
  box-shadow: 0 8px 24px rgba(191, 95, 255, 0.45);
}

/* Pinterest — Glam Gold */
.footer__social .social-icon:nth-child(3):hover {
  background: var(--color-glam-gold);
  border-color: var(--color-glam-gold);
  color: var(--color-void-black);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
}

.footer__email {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__email:hover {
  color: var(--color-chic-pink);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--text-primary);
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (768px)
---------------------------------------------------------------- */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-4xl);
  }

  .hero {
    min-height: 100svh;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — DESKTOP (1200px)
---------------------------------------------------------------- */
@media (min-width: 1200px) {
  .section {
    padding-block: calc(var(--space-4xl) + var(--space-xl));
  }

  .hero {
    gap: var(--space-3xl);
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — WIDE (1440px)
---------------------------------------------------------------- */
@media (min-width: 1440px) {
  :root {
    --max-width: 1400px;
  }
}

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

/* ----------------------------------------------------------------
   SELECTION STYLES
---------------------------------------------------------------- */
::selection {
  background: rgba(255, 45, 120, 0.35);
  color: var(--text-primary);
}

/* ----------------------------------------------------------------
   FOCUS STYLES
---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--color-electric-lilac);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------
   STYKE DROP
---------------------------------------------------------------- */
.product-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

/* ----------------------------------------------------------------
   BANNER
---------------------------------------------------------------- */

.crew-more__banner {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.crew-more__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.crew-more__img {
  transition: transform 0.6s ease;
}

.crew-more__banner:hover .crew-more__img {
  transform: scale(1.03);
}

.crew-more__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 20, 0.6), transparent);
}


/* ----------------------------------------------------------------
   CREW INTRO VIDEO (Section 4 — Meet the Crew)
---------------------------------------------------------------- */
.crew-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-block: var(--space-2xl);
  border: 1px solid rgba(255, 45, 120, 0.18);
  box-shadow:
    0 0 48px rgba(255, 45, 120, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.55);
  background: var(--bg-tertiary);
}

.crew-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 5, 20, 0.55) 0%,
    transparent 45%
  );
  pointer-events: none;
}

/* Variante lila — Section 6: Color & Slay */
.crew-video-wrap--lilac {
  border-color: rgba(191, 95, 255, 0.18);
  box-shadow:
    0 0 48px rgba(191, 95, 255, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

/* ----------------------------------------------------------------
   HERO VIDEO MUTE BUTTON
---------------------------------------------------------------- */
.hero-mute-btn {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  background: rgba(13, 11, 18, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pure-white);
  cursor: pointer;
  z-index: 10;
  transition: 
    background var(--transition-base), 
    box-shadow var(--transition-base), 
    transform var(--transition-spring),
    border-color var(--transition-base);
  box-shadow: 0 0 16px rgba(255, 45, 120, 0.15);
}

.hero-mute-btn:hover {
  background: rgba(13, 11, 18, 0.7);
  border-color: rgba(255, 45, 120, 0.4);
  box-shadow: 0 0 24px rgba(255, 45, 120, 0.35);
  transform: scale(1.08);
}

.hero-mute-btn:active {
  transform: scale(0.95);
}

.hero-mute-btn svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}