/* ==============================================================
   CHRONOVA — HAUTE HORLOGERIE & FUTURISTIC LUXURY TECH ENGINE (3D CINEMATIC)
   Aesthetic: LUXURY WATCHMAKING + AUTOMOTIVE TECH + 3D CINEMATIC + GLASSMORPHISM
   Palette: OBSIDIAN BLACK (#050508) | METALLIC TITANIUM (#0D0E15) | CRIMSON NEON (#FF1E38) | OFF WHITE (#F5F2ED)
============================================================== */

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

:root {
  /* Color System */
  --bg-black: #050508;
  --bg-deep: #08090E;
  --bg-surface: #0D0E15;
  --bg-card: rgba(14, 16, 24, 0.65);
  --bg-card-hover: rgba(22, 26, 38, 0.85);

  --crimson: #8B0D1A;
  --crimson-dark: #4A050D;
  --crimson-glow: #FF1E38;
  --crimson-neon: #DC142C;
  --crimson-border: rgba(220, 20, 44, 0.35);
  --crimson-border-hover: rgba(255, 30, 56, 0.75);
  --crimson-subtle: rgba(220, 20, 44, 0.12);

  --off-white: #F5F2ED;
  --off-white-sec: #A4A9B6;
  --grey-neutral: #6C7282;
  --border-dark: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(220, 20, 44, 0.45);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-tech: 'Outfit', -apple-system, sans-serif;

  /* Transitions & Timing */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows & Lighting */
  --shadow-luxury: 0 30px 90px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 50px rgba(220, 20, 44, 0.25);
  --shadow-watch: 0 40px 120px rgba(0, 0, 0, 0.95), 0 0 80px rgba(220, 20, 44, 0.2);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-black);
  color: var(--off-white);
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--off-white);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Selection */
::selection {
  background: var(--crimson-glow);
  color: #fff;
}

/* ==============================================================
   BACKGROUND ATMOSPHERE (AURORAS & TECH MESH)
============================================================== */
.bg-ambient-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.22;
  will-change: transform;
}

.aurora-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, var(--crimson-glow) 0%, rgba(139,13,26,0) 70%);
  top: -150px; right: -100px;
  animation: auroraFloat1 18s ease-in-out infinite alternate;
}

.aurora-2 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(20, 40, 80, 0.35) 0%, rgba(5,5,8,0) 70%);
  bottom: -200px; left: -150px;
  animation: auroraFloat2 24s ease-in-out infinite alternate;
}

.aurora-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220, 20, 44, 0.18) 0%, rgba(5,5,8,0) 70%);
  top: 45%; left: 35%;
  animation: auroraFloat3 20s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, 120px) scale(0.95); }
}

@keyframes auroraFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -70px) scale(1.15); }
  100% { transform: translate(50px, -130px) scale(0.9); }
}

@keyframes auroraFloat3 {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.15; }
  50% { transform: translate(-40%, -60%) scale(1.1); opacity: 0.25; }
  100% { transform: translate(-60%, -40%) scale(1); opacity: 0.18; }
}

/* Fine Technical Grid Overlay */
.tech-grid-mesh {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}

/* Vignette overlay */
.vignette-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(5, 5, 8, 0.8) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ==============================================================
   TYPOGRAPHY
============================================================== */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--off-white);
}

h1 {
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  line-height: 1.2;
}

p {
  color: var(--off-white-sec);
  font-size: 1rem;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ==============================================================
   BUTTONS (SHIMMER & HIGH-TECH LUXURY)
============================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--font-tech);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shimmer Highlight Effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: transform 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(200%);
}

.btn-crimson {
  background: linear-gradient(135deg, var(--crimson) 0%, #B50E20 100%);
  color: var(--off-white);
  border-color: rgba(255, 30, 56, 0.4);
  box-shadow: 0 10px 30px rgba(139, 13, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-crimson:hover {
  background: linear-gradient(135deg, #A80E1F 0%, var(--crimson-glow) 100%);
  border-color: var(--crimson-glow);
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 30, 56, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-crimson i {
  transition: transform 0.3s var(--ease-spring);
}

.btn-crimson:hover i {
  transform: translateX(4px);
}

.btn-outline-luxury {
  background: rgba(14, 16, 24, 0.5);
  color: var(--off-white);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline-luxury:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-inverted-crimson {
  background: #000;
  color: #fff;
  border-color: var(--crimson-glow);
}

.btn-inverted-crimson:hover {
  background: var(--crimson);
  color: #fff;
  transform: translateY(-3px);
}

.btn-inverted-outline {
  background: transparent;
  color: #111;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-inverted-outline:hover {
  border-color: #000;
  background: rgba(0, 0, 0, 0.05);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.btn-block {
  width: 100%;
}

/* ==============================================================
   DECORATIVE ELEMENTS & BADGES
============================================================== */
.editorial-line {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
  position: relative;
}

.editorial-line::before,
.editorial-line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(220, 20, 44, 0.6));
}

.editorial-line::after {
  background: linear-gradient(90deg, rgba(220, 20, 44, 0.6), transparent);
}

.editorial-dot {
  width: 6px;
  height: 6px;
  background: var(--crimson-glow);
  border-radius: 50%;
  margin: 0 16px;
  box-shadow: 0 0 14px var(--crimson-glow);
}

.section-tag {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson-glow), transparent);
}

.section-head {
  margin-bottom: 54px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-sub {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-neutral);
  margin-top: 6px;
}

/* Continuous Section Divider Glow */
.section-divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(220, 20, 44, 0.35) 50%, transparent 100%);
  margin: 0 auto;
  position: relative;
}

.section-divider-glow::after {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 3px;
  background: var(--crimson-glow);
  filter: blur(4px);
}

/* ==============================================================
   HEADER NAVIGATION (3D FLOATING GLASS & LOGO IMAGE)
============================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s var(--ease-cinematic);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(5, 5, 8, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.9), 0 0 25px rgba(220, 20, 44, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 30, 56, 0.45));
  transition: transform 0.4s var(--ease-spring);
}

.brand:hover .brand-logo-img {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 0 20px rgba(255, 30, 56, 0.75));
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--off-white);
}

.brand-name span {
  color: var(--crimson-glow);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white-sec);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--crimson-glow);
  box-shadow: 0 0 8px var(--crimson-glow);
  transition: width 0.3s var(--ease-cinematic);
}

.nav-link:hover,
.nav-link.active {
  color: var(--off-white);
}

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

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

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(220, 20, 44, 0.18);
  border-color: var(--crimson-glow);
  color: var(--crimson-glow);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(220, 20, 44, 0.35);
}

.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--crimson-glow);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--crimson-glow);
}

.menu-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-toggle-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: rgba(8, 9, 14, 0.96);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s var(--ease-cinematic);
    border-left: 1px solid var(--border-dark);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }
}

/* ==============================================================
   HERO SECTION (3D CINEMATIC TRANSPARENT STAGE & HOLOGRAPHIC RINGS)
============================================================== */
.hero-luxury {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-tag span {
  width: 8px; height: 8px;
  background: var(--crimson-glow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--crimson-glow);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line-white {
  display: block;
  color: var(--off-white);
}

.hero-title .line-crimson {
  display: block;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--crimson-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(220, 20, 44, 0.4));
}

.hero-desc {
  font-size: 1.12rem;
  max-width: 580px;
  margin-bottom: 36px;
  color: var(--off-white-sec);
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .hero-cta-group {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto; margin-right: auto;
  }
}

.hero-specs-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .hero-specs-row {
    justify-content: center;
  }
}

.hero-spec-item strong {
  display: block;
  font-family: var(--font-tech);
  font-size: 1.1rem;
  color: var(--off-white);
  letter-spacing: 0.05em;
}

.hero-spec-item span {
  font-size: 0.78rem;
  color: var(--grey-neutral);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* 3D Parallax & Holographic HUD Orbit Stage */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  cursor: pointer;
  min-height: 480px;
}

.hero-watch-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 30, 56, 0.35) 0%, rgba(139, 13, 26, 0.08) 55%, transparent 75%);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hud-ring-outer {
  position: absolute;
  width: 460px; height: 460px;
  border: 1px dashed rgba(255, 30, 56, 0.3);
  border-radius: 50%;
  z-index: 0;
  transform: rotateX(60deg);
  animation: rotateHUDOuter 35s linear infinite;
}

.hud-ring-inner {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  z-index: 0;
  transform: rotateY(50deg);
  animation: rotateHUDInner 25s linear infinite reverse;
}

@keyframes rotateHUDOuter {
  from { transform: rotateX(60deg) rotate(0deg); }
  to { transform: rotateX(60deg) rotate(360deg); }
}

@keyframes rotateHUDInner {
  from { transform: rotateY(50deg) rotate(0deg); }
  to { transform: rotateY(50deg) rotate(360deg); }
}

.hero-watch-wrap {
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-3d {
  animation: levitate3D 6s ease-in-out infinite alternate;
}

@keyframes levitate3D {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-watch-img {
  max-height: 480px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(255, 30, 56, 0.35));
  transition: transform 0.5s var(--ease-cinematic);
}

.watch-floor-shadow {
  width: 280px;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, transparent 75%);
  margin-top: -20px;
  border-radius: 50%;
  animation: shadowPulse 6s ease-in-out infinite alternate;
}

@keyframes shadowPulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Scroll Indicator Line */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-neutral);
  z-index: 2;
}

.scroll-indicator-line {
  width: 1.5px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--crimson-glow);
  box-shadow: 0 0 10px var(--crimson-glow);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ==============================================================
   TECHNICAL MARQUEE TICKER
============================================================== */
.technical-ticker {
  background: rgba(13, 14, 21, 0.85);
  border-y: 1px solid var(--glass-border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: tickerScroll 32s linear infinite;
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white-sec);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ticker-item i {
  color: var(--crimson-glow);
  font-size: 0.5rem;
}

/* ==============================================================
   SECTIONS & CARDS (GLASSMORPHISM & HOVER SPOTLIGHT)
============================================================== */
.section {
  padding: 110px 0;
  position: relative;
}

.link-view-all {
  font-family: var(--font-tech);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.link-view-all:hover {
  color: #fff;
  transform: translateX(4px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 32px;
}

/* Product Card Luxury Glassmorphism */
.prod-card-luxury {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease-cinematic);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.prod-card-luxury::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%, rgba(220,20,44,0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.prod-card-luxury:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(220, 20, 44, 0.25);
  border-color: rgba(220, 20, 44, 0.5);
}

.prod-card-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(220, 20, 44, 0.9);
  color: #fff;
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 0 12px rgba(220, 20, 44, 0.6);
}

.prod-card-stage {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.prod-card-img {
  max-height: 230px;
  width: auto;
  object-fit: contain;
  transition: transform 0.6s var(--ease-cinematic);
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85));
}

.prod-card-luxury:hover .prod-card-img {
  transform: scale(1.1) translateY(-6px) rotate(-3deg);
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.95)) drop-shadow(0 0 20px rgba(255, 30, 56, 0.3));
}

.prod-card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-card-collection {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  margin-bottom: 6px;
  font-weight: 600;
}

.prod-card-name {
  font-size: 1.45rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.prod-card-name a:hover {
  color: var(--crimson-glow);
}

.prod-card-specs-mini {
  font-size: 0.8rem;
  color: var(--grey-neutral);
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.prod-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: auto;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--off-white);
}

.price-original {
  font-size: 0.95rem;
  color: var(--grey-neutral);
  text-decoration: line-through;
}

.prod-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==============================================================
   COLOR VARIANT SHOWCASE SECTION (3D STAGE & TRANSPARENT PNG)
============================================================== */
.variant-showcase-section {
  background: var(--bg-deep);
  border-y: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

#particles-white-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.variant-showcase-section .container {
  position: relative;
  z-index: 1;
}


.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.variant-display-box {
  height: 500px;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.variant-glow-circle {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255, 30, 56, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(55px);
}

.variant-display-img {
  max-height: 390px;
  width: auto;
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-cinematic);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.95)) drop-shadow(0 0 30px rgba(255,30,56,0.25));
}

.pedestal-3d {
  width: 260px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, transparent 75%);
  border-radius: 50%;
  margin-top: -15px;
  position: relative;
  z-index: 1;
}

.color-pills-wrap {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.color-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 10px 20px;
  color: var(--off-white);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.color-pill-btn:hover,
.color-pill-btn.active {
  background: rgba(220, 20, 44, 0.18);
  border-color: var(--crimson-glow);
  color: #fff;
  box-shadow: 0 0 18px rgba(220, 20, 44, 0.35);
}

.color-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
}

.color-circle.black { background: #0B0B0B; }
.color-circle.crimson { background: #8B0D1A; }
.color-circle.offwhite { background: #F5F2ED; }

/* ==============================================================
   INVERTED SECTION ("CRAFTED FOR TIME")
============================================================== */
.showcase-inverted {
  background: #F5F2ED;
  color: #050508;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#particles-inverted-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.showcase-inverted .container {
  position: relative;
  z-index: 1;
}

.showcase-inverted h2,
.showcase-inverted h3,
.showcase-inverted p {
  color: #050508;
}


.showcase-inverted-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .showcase-inverted-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-inverted-tag {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.showcase-inverted-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  color: #050508;
}

.inverted-glow-ring {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 13, 26, 0.15) 0%, transparent 70%);
}

/* ==============================================================
   TECHNICAL SPECIFICATIONS SECTION
============================================================== */
.specs-section {
  padding: 110px 0;
  position: relative;
}

.specs-editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.spec-editorial-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 30px;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-cinematic);
  position: relative;
}

.spec-editorial-card:hover {
  border-color: var(--crimson-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(220, 20, 44, 0.2);
}

.spec-editorial-label {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.spec-editorial-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--off-white);
  margin-bottom: 10px;
}

.spec-editorial-desc {
  font-size: 0.9rem;
  color: var(--off-white-sec);
}

/* ==============================================================
   CRAFT GALLERY & STORY (3D GLASS CARDS)
============================================================== */
.craft-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

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

.craft-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.craft-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--crimson-glow);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
}

.craft-card h4 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  color: var(--off-white);
}

.craft-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.glass-3d-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.4s var(--ease-cinematic);
}

.glass-3d-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson-glow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85), 0 0 25px rgba(255,30,56,0.3);
}

.glass-3d-card img {
  max-height: 190px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.9));
  transition: transform 0.5s var(--ease-cinematic);
}

.glass-3d-card:hover img {
  transform: scale(1.12) rotate(-3deg);
}

/* ==============================================================
   SIGNATURE MONUMENTAL SHOWCASE (3D TOURBILLON STAGE)
============================================================== */
.signature-section {
  padding: 130px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, rgba(220, 20, 44, 0.18) 0%, rgba(5, 5, 8, 0.95) 70%);
  position: relative;
  border-y: 1px solid var(--glass-border);
}

.signature-watch-wrap {
  position: relative;
  max-width: 650px;
  margin: 60px auto 0;
}

.signature-3d-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.signature-glow {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255, 30, 56, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.signature-watch-img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 75px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 50px rgba(255, 30, 56, 0.4));
  transition: transform 0.6s var(--ease-cinematic);
}

.signature-pedestal {
  width: 320px; height: 26px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, transparent 75%);
  border-radius: 50%;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.signature-watch-wrap:hover .signature-watch-img {
  transform: scale(1.08) translateY(-10px);
}

.signature-callout {
  position: absolute;
  background: rgba(14, 16, 24, 0.88);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 6px;
  backdrop-filter: blur(14px);
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.85);
  z-index: 3;
}

.signature-callout span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--crimson-glow);
  display: block;
}

.signature-callout strong {
  font-size: 0.95rem;
  color: var(--off-white);
}

.callout-top-left { top: 10%; left: -10%; }
.callout-top-right { top: 10%; right: -10%; }
.callout-bottom-left { bottom: 15%; left: -10%; }
.callout-bottom-right { bottom: 15%; right: -10%; }

@media (max-width: 768px) {
  .signature-callout { position: static; margin: 10px auto; max-width: 250px; text-align: center; }
}

/* ==============================================================
   TRUST & BENEFITS GRID
============================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 32px 24px;
  border-radius: 8px;
  backdrop-filter: blur(12px);
  transition: all 0.4s var(--ease-cinematic);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--crimson-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(220, 20, 44, 0.2);
}

.trust-icon {
  font-size: 2.2rem;
  color: var(--crimson-glow);
  margin-bottom: 20px;
}

.trust-card h4 {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--off-white);
}

/* ==============================================================
   CTA LUXURY SECTION
============================================================== */
.cta-luxury-section {
  padding: 130px 0;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-black) 0%, rgba(139, 13, 26, 0.25) 100%);
}

.cta-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ==============================================================
   CATALOGO & FILTER SIDEBAR STYLING
============================================================== */
.page-hero {
  padding-top: 150px;
  padding-bottom: 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(220, 20, 44, 0.2) 0%, transparent 70%);
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: var(--font-tech);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white-sec);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-field input[type="text"],
.form-field input[type="search"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--crimson-glow);
  box-shadow: 0 0 15px rgba(220, 20, 44, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.form-field select option {
  background: #0D0E15;
  color: #fff;
}

/* ==============================================================
   PRODUCT DETAIL PAGE STYLING
============================================================== */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.detail-main-img-wrap {
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
}

.detail-main-img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9));
  transition: transform 0.4s var(--ease-cinematic);
}

.detail-thumbs {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.detail-thumb-btn {
  width: 80px; height: 80px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 6px;
}

.detail-thumb-btn.active,
.detail-thumb-btn:hover {
  border-color: var(--crimson-glow);
  box-shadow: 0 0 15px rgba(220, 20, 44, 0.4);
}

.detail-thumb-btn img {
  width: 100%; height: 100%; object-fit: contain;
}

.detail-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.detail-price-box {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.detail-price-now {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--off-white);
  font-weight: 600;
}

.detail-price-old {
  font-size: 1.3rem;
  color: var(--grey-neutral);
  text-decoration: line-through;
}

.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.detail-specs-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.9rem;
}

.detail-specs-table td:first-child {
  color: var(--grey-neutral);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: 40%;
}

/* ==============================================================
   COTIZACION & CHECKOUT PANELS
============================================================== */
.checkout-panel {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 32px;
  backdrop-filter: blur(16px);
  margin-bottom: 32px;
  box-shadow: var(--shadow-luxury);
}

.delivery-tab-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.delivery-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 16px;
  color: var(--off-white-sec);
  font-family: var(--font-tech);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.delivery-tab-btn.active {
  background: rgba(220, 20, 44, 0.18);
  border-color: var(--crimson-glow);
  color: #fff;
  box-shadow: 0 0 20px rgba(220, 20, 44, 0.3);
}

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

@media (max-width: 768px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ==============================================================
   DRAWER LATERAL (CART / COTIZACION QUICK VIEW)
============================================================== */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-cinematic);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0; right: -480px;
  width: 440px;
  max-width: 92vw;
  height: 100vh;
  background: rgba(10, 11, 16, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(220, 20, 44, 0.2);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.95), 0 0 40px rgba(139, 13, 26, 0.15);
}

.drawer-panel.active {
  right: 0;
}

.drawer-head {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 16, 24, 0.6);
}

.drawer-head-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--off-white);
  letter-spacing: 0.02em;
  margin: 0;
  font-weight: 600;
}

.drawer-item-count {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: rgba(220, 20, 44, 0.15);
  border: 1px solid rgba(220, 20, 44, 0.35);
  color: var(--crimson-glow);
  border-radius: 20px;
  font-weight: 600;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--grey-neutral);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: all 0.25s ease;
}

.drawer-close-btn:hover {
  background: rgba(220, 20, 44, 0.2);
  border-color: rgba(220, 20, 44, 0.5);
  color: var(--off-white);
  transform: rotate(90deg);
}

.drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Custom Scrollbar for Drawer Body */
.drawer-body::-webkit-scrollbar {
  width: 5px;
}
.drawer-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
.drawer-body::-webkit-scrollbar-thumb {
  background: rgba(220, 20, 44, 0.4);
  border-radius: 3px;
}
.drawer-body::-webkit-scrollbar-thumb:hover {
  background: var(--crimson-glow);
}

/* Luxury Drawer Item Card */
.drawer-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px;
  transition: all 0.3s ease;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(220, 20, 44, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.drawer-item-img-box {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.drawer-item:hover .drawer-item-img {
  transform: scale(1.08);
}

.drawer-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--off-white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.drawer-item-unit-price {
  font-size: 0.8rem;
  color: var(--grey-neutral);
  letter-spacing: 0.02em;
}

.drawer-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.drawer-qty-controls {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.drawer-qty-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  color: var(--off-white);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.drawer-qty-btn:hover {
  background: rgba(220, 20, 44, 0.35);
  color: #fff;
}

.drawer-qty-val {
  padding: 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
}

.drawer-item-subtotal {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--crimson-glow);
}

.drawer-remove-btn {
  align-self: flex-start;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.drawer-remove-btn:hover {
  color: var(--crimson-glow);
  transform: scale(1.15);
}

/* Empty State */
.drawer-empty-state {
  text-align: center;
  padding: 50px 20px;
}

.drawer-empty-state .empty-icon-wrapper {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(220, 20, 44, 0.08);
  border: 1px solid rgba(220, 20, 44, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--crimson-glow);
}

.drawer-empty-state h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.drawer-empty-state p {
  font-size: 0.84rem;
  color: var(--grey-neutral);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* Drawer Footer */
.drawer-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 14, 0.95);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-total-label {
  font-size: 0.95rem;
  color: var(--grey-neutral);
}

.drawer-total-price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--off-white);
  font-weight: 700;
}

.drawer-deposit-note {
  background: linear-gradient(135deg, rgba(220, 20, 44, 0.12) 0%, rgba(139, 13, 26, 0.04) 100%);
  border: 1px solid rgba(220, 20, 44, 0.3);
  border-radius: 6px;
  padding: 12px 14px;
}

.drawer-deposit-note .deposit-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crimson-glow);
  font-weight: 700;
  margin-bottom: 4px;
}

.drawer-deposit-note .deposit-body {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.drawer-deposit-note .deposit-highlight {
  color: var(--off-white);
  font-weight: 700;
}

.drawer-deposit-note .pending-highlight {
  color: var(--crimson-glow);
  font-weight: 700;
}

.btn-drawer-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 20, 44, 0.3);
}

.btn-drawer-checkout:hover {
  box-shadow: 0 6px 25px rgba(220, 20, 44, 0.5);
  transform: translateY(-2px);
}

/* ==============================================================
   FOOTER (TITANIUM DARK & LUXURY EDITORIAL)
============================================================== */
.site-footer {
  background: #030305;
  border-top: 1px solid var(--glass-border);
  padding: 90px 0 40px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 250px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--crimson-glow), transparent);
  box-shadow: 0 0 15px var(--crimson-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

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

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

.footer-brand p {
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white-sec);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--crimson-glow);
  border-color: var(--crimson-glow);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(220, 20, 44, 0.5);
}

.footer-col h4 {
  font-family: var(--font-tech);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--grey-neutral);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--crimson-glow);
}

.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey-neutral);
}

/* Floating WhatsApp Button */
.wa-floating-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s var(--ease-spring);
}

.wa-floating-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* ==============================================================
   REVEAL ANIMATIONS (CINEMATIC INTERSECTION OBSERVER)
============================================================== */
.reveal-luxury {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.98);
  transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic);
  will-change: opacity, transform;
}

.reveal-luxury.in {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Toast Luxury */
.toast-luxury {
  position: fixed;
  bottom: 40px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(13, 14, 21, 0.95);
  border: 1px solid var(--crimson-glow);
  padding: 14px 28px;
  border-radius: 4px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 25px rgba(220, 20, 44, 0.4);
  color: var(--off-white);
  font-family: var(--font-tech);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20000;
  opacity: 0;
  transition: all 0.4s var(--ease-cinematic);
  pointer-events: none;
}

.toast-luxury.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Accessibility Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==============================================================
   particles.js — Futuristic Neural Network Global Background
   ============================================================== */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg-black);
}

.particles-js-canvas-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}


