/* FOYKE · Definitive Stylesheet & Custom Properties */
:root {
  --color-verde-noche: #0E2A29;
  --color-verde-cannabis: #567A52;
  --color-oliva: #8B9B7A;
  --color-hueso: #EDE4D6;
  --color-violeta: #553A72;
  --color-coral: #D65E52;
  --color-acento-optico: #D9C7FF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #081010;
}
::-webkit-scrollbar-thumb {
  background: #182B2B;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #567A52;
}

/* Glassmorphism & Luxury Panels */
.glass-panel {
  background: rgba(14, 26, 26, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-nav {
  background: rgba(8, 16, 16, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Carousel Animations */
.carousel-slide {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.carousel-slide.inactive {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
}

/* Indicator dots */
.carousel-dot {
  transition: all 0.3s ease;
}
.carousel-dot.active {
  width: 2rem;
  background-color: #D9C7FF;
}
