/* ============================================
   TENTATION MAG - Premium Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Palette originale Tentation Mag */
  --pink: #e6007e;
  --pink-light: #ff2d9b;
  --pink-dark: #b80064;
  --pink-glow: rgba(230, 0, 126, 0.4);
  --pink-subtle: rgba(230, 0, 126, 0.1);

  --dark: #2b2b2b;
  --dark-deeper: #1a1a1a;
  --dark-card: #333333;
  --dark-surface: #3a3a3a;
  --dark-overlay: rgba(26, 26, 26, 0.85);

  --white: #ffffff;
  --grey-100: #f5f5f5;
  --grey-200: #e0e0e0;
  --grey-300: #bdbdbd;
  --grey-400: #9e9e9e;
  --grey-500: #757575;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-pink: 0 8px 30px rgba(230, 0, 126, 0.3);
  --shadow-pink-lg: 0 15px 50px rgba(230, 0, 126, 0.4);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--dark-deeper);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul,
ol {
  list-style: none;
}

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

/* --- Utility Classes --- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

.text-pink {
  color: var(--pink);
}

.text-gradient {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.top-bar {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 8px var(--space-md);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-main {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 var(--space-lg);
  width: 100%;
  max-width: 100vw;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.logo-accent {
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--pink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

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

.nav-action-btn {
  position: relative;
  color: var(--grey-300);
  font-size: 1.1rem;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-action-btn:hover {
  color: var(--pink);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

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

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px var(--pink-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--pink-glow), 0 0 80px rgba(230, 0, 126, 0.15);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes rotateGradient {
  0% {
    --angle: 0deg;
  }

  100% {
    --angle: 360deg;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) rotate(720deg);
    opacity: 0;
  }
}

/* --- Scroll Animation Classes --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(-50px);
}

.animate-on-scroll.slide-left.animated {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(50px);
}

.animate-on-scroll.slide-right.animated {
  transform: translateX(0);
}

.animate-on-scroll.scale-up {
  transform: scale(0.85);
}

.animate-on-scroll.scale-up.animated {
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

.stagger-5 {
  transition-delay: 0.5s;
}

.stagger-6 {
  transition-delay: 0.6s;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: linear-gradient(90deg, var(--pink-dark), var(--pink), var(--pink-dark));
  color: var(--white);
  text-align: center;
  padding: 10px var(--space-md);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-med);
}

.header.scrolled {
  top: 0;
}

.header.scrolled .top-bar {
  transform: translateY(-100%);
  height: 0;
  padding: 0;
  overflow: hidden;
}

.nav-main {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(230, 0, 126, 0.15);
  padding: 0 var(--space-lg);
  transition: var(--transition-med);
}

.header.scrolled .nav-main {
  background: rgba(26, 26, 26, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: var(--transition-fast);
}

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

.logo-accent {
  color: var(--pink);
  font-style: italic;
  font-weight: 500;
  font-size: 0.7rem;
  display: block;
  letter-spacing: 1px;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  color: var(--grey-300);
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width var(--transition-med), left var(--transition-med);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-action-btn {
  color: var(--grey-300);
  font-size: 1.2rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-action-btn:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition-med);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-overlay);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--pink);
  transform: translateX(10px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-deeper);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.3), rgba(230, 0, 126, 0.08)),
    url('https://images.unsplash.com/photo-1604871000636-074fa5117945?w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.4) contrast(1.2);
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.6) 0%, transparent 30%, transparent 60%, rgba(26, 26, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(230, 0, 126, 0.08) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pink);
  border-radius: var(--radius-full);
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(2) {
  left: 25%;
  animation-duration: 15s;
  animation-delay: 2s;
  width: 5px;
  height: 5px;
}

.particle:nth-child(3) {
  left: 40%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  left: 55%;
  animation-duration: 14s;
  animation-delay: 1s;
  width: 6px;
  height: 6px;
}

.particle:nth-child(5) {
  left: 70%;
  animation-duration: 11s;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}

.particle:nth-child(6) {
  left: 85%;
  animation-duration: 13s;
  animation-delay: 5s;
}

.particle:nth-child(7) {
  left: 50%;
  animation-duration: 16s;
  animation-delay: 6s;
  width: 2px;
  height: 2px;
}

.particle:nth-child(8) {
  left: 15%;
  animation-duration: 9s;
  animation-delay: 7s;
  width: 5px;
  height: 5px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(230, 0, 126, 0.15);
  border: 1px solid rgba(230, 0, 126, 0.3);
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink-light);
  margin-bottom: var(--space-xl);
  animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge::before {
  content: '✦';
  font-size: 0.7rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-title em {
  font-style: italic;
  color: var(--pink);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
  opacity: 0.5;
  border-radius: 2px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--grey-300);
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  animation: fadeInUp 1s ease 0.9s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink-lg);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(230, 0, 126, 0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-mouse-dot {
  width: 4px;
  height: 8px;
  background: var(--pink);
  border-radius: 2px;
  animation: fadeInUp 1.5s ease infinite;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--pink);
  margin-bottom: var(--space-md);
  position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '—';
  margin: 0 var(--space-sm);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-description {
  font-size: 1.05rem;
  color: var(--grey-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   WEBGIRLS GALLERY
   ============================================ */
.webgirls-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.webgirls-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.06), transparent 70%);
  pointer-events: none;
}

.webgirls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* --- Carousel Wrapper --- */
.wg-carousel-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--space-md) 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
}

.wg-carousel-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.wg-carousel-track {
  display: flex;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
}

.wg-carousel-track .webgirl-card {
  flex: 0 0 220px;
  width: 220px;
  min-width: 220px;
  height: auto;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .wg-carousel-track .webgirl-card {
    flex: 0 0 180px;
    width: 180px;
    min-width: 180px;
  }
}

@media (min-width: 1200px) {
  .wg-carousel-track .webgirl-card {
    flex: 0 0 250px;
    width: 250px;
    min-width: 250px;
  }
}

/* --- Card Container --- */
.webgirl-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.webgirl-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 0, 126, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(230, 0, 126, 0.15);
}

/* --- Image --- */
.webgirl-card-visual {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.webgirl-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.7s ease;
  filter: brightness(0.85);
}

.webgirl-card:hover .webgirl-card-visual img {
  transform: scale(1.12);
  filter: brightness(1);
}

/* --- Badge Glassmorphism --- */
.webgirl-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: rgba(230, 0, 126, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 0, 126, 0.3);
  color: var(--pink-light);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
}

.webgirl-card:hover .webgirl-card-badge {
  opacity: 1;
  transform: translateY(0);
}

/* --- Overlay Gradient --- */
.webgirl-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg,
      transparent 30%,
      rgba(26, 26, 26, 0.3) 60%,
      rgba(26, 26, 26, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background 0.5s ease;
}

.webgirl-card:hover .webgirl-card-overlay {
  background: linear-gradient(180deg,
      rgba(230, 0, 126, 0.05) 0%,
      rgba(26, 26, 26, 0.4) 50%,
      rgba(26, 26, 26, 0.97) 100%);
}

/* --- Name --- */
.webgirl-card-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  transform: translateY(8px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.3s ease;
}

.webgirl-card:hover .webgirl-card-name {
  transform: translateY(0);
  color: var(--pink);
}

/* --- Role / Subtitle --- */
.webgirl-card-role {
  font-size: 0.78rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}

.webgirl-card:hover .webgirl-card-role {
  opacity: 1;
  transform: translateY(0);
}

/* --- CTA Button --- */
.webgirl-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pink-light);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease 0.12s,
    transform 0.4s ease 0.12s;
}

.webgirl-card-cta i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.webgirl-card:hover .webgirl-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.webgirl-card:hover .webgirl-card-cta i {
  transform: translateX(4px);
}

/* --- Top border glow on hover --- */
.webgirl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

/* ============================================
   SUBSCRIPTIONS
   ============================================ */
.subscriptions-section {
  background: var(--dark-deeper);
  position: relative;
}

.subscriptions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.sub-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-med);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.sub-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 0, 126, 0.3);
  box-shadow: var(--shadow-pink);
}

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

.sub-card.popular {
  border-color: rgba(230, 0, 126, 0.3);
  background: rgba(230, 0, 126, 0.05);
}

.sub-card.popular::before {
  opacity: 1;
}

.sub-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--pink);
  color: var(--white);
  padding: 6px 40px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.sub-icon {
  width: 70px;
  height: 70px;
  background: var(--pink-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-lg);
  transition: var(--transition-med);
}

.sub-card:hover .sub-icon {
  background: var(--pink);
  transform: scale(1.1) rotate(5deg);
}

.sub-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.sub-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: var(--space-xs);
}

.sub-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey-400);
}

.sub-period {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: var(--space-lg);
}

.sub-features {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.sub-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--grey-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-features li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  font-size: 0.85rem;
}

.sub-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   BOUTIQUE PREVIEW (Homepage)
   ============================================ */
.boutique-preview-section {
  background: var(--dark);
  position: relative;
}

.boutique-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--dark-deeper);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-med);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 0, 126, 0.2);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--dark-card);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-actions {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: var(--space-sm);
  opacity: 0;
  transition: var(--transition-med);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-action-btn {
  width: 44px;
  height: 44px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-action-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.product-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--pink);
  color: var(--white);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-tag.new {
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
}

.product-tag.exclusive {
  background: linear-gradient(135deg, #c9a84c, #f0d78c);
  color: var(--dark);
}

.product-card-info {
  padding: var(--space-lg);
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: var(--space-sm);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.product-card:hover .product-name {
  color: var(--pink);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink);
}

.product-price-old {
  font-size: 0.9rem;
  color: var(--grey-500);
  text-decoration: line-through;
  margin-left: var(--space-sm);
  font-weight: 400;
}

/* ============================================
   BOUTIQUE PAGE
   ============================================ */
.boutique-hero {
  padding-top: 140px;
  padding-bottom: var(--space-2xl);
  background:
    linear-gradient(180deg, var(--dark-deeper), var(--dark)),
    linear-gradient(135deg, rgba(230, 0, 126, 0.08), transparent);
  text-align: center;
  position: relative;
}

.boutique-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.3;
}

.boutique-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: 10px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grey-400);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-med);
  background: transparent;
}

.filter-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.filter-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.boutique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--dark);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.4s ease;
}

.modal-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

.modal-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pink);
  margin-bottom: var(--space-md);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.modal-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: var(--space-lg);
}

.modal-desc {
  color: var(--grey-400);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.modal-actions {
  display: flex;
  gap: var(--space-md);
}

/* ============================================
   CONTACT / FOOTER
   ============================================ */
.contact-section {
  background: var(--dark-deeper);
  position: relative;
}

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

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.contact-info p {
  color: var(--grey-400);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: rgba(230, 0, 126, 0.03);
  box-shadow: 0 0 20px rgba(230, 0, 126, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-500);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--pink);
  background: var(--dark-deeper);
  padding: 0 6px;
}

.footer {
  background: var(--dark-deeper);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--grey-500);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--grey-500);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--pink);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--grey-500);
  font-size: 0.82rem;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 1rem;
  transition: var(--transition-med);
}

.footer-social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark);
  border: 1px solid rgba(230, 0, 126, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 3000;
  box-shadow: var(--shadow-pink);
  transform: translateX(120%);
  transition: transform var(--transition-bounce);
}

.toast.show {
  transform: translateX(0);
}

.toast-icon {
  width: 36px;
  height: 36px;
  background: var(--pink);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.toast-text small {
  display: block;
  color: var(--grey-400);
  font-size: 0.78rem;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-image {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .webgirls-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .subscriptions-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .boutique-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .section-padding {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {

  .webgirls-grid,
  .boutique-grid,
  .boutique-preview-grid {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    gap: var(--space-md);
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.82rem;
  }
}

/* ============================================
   WEBGIRLS HOMEPAGE CAROUSEL
   ============================================ */
.wg-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-lg) 0;
  /* Mask edges for a fading effect */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.wg-carousel-track {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  padding-left: var(--space-md);
}

.wg-carousel-track.scrolling {
  animation: scrollTrack 60s linear infinite;
}

.wg-carousel-wrapper:hover .wg-carousel-track.scrolling {
  animation-play-state: paused;
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - (var(--space-md) / 2)));
  }
}

.wg-carousel-card {
  width: 280px;
  flex-shrink: 0;
}

/* ============================================
   WEBGIRLS DEDICATED PAGE
   ============================================ */

/* --- Hero Banner --- */
.webgirls-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-deeper);
  margin-top: 0;
}

.webgirls-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.5), rgba(230, 0, 126, 0.12)),
    url('https://images.unsplash.com/photo-1604871000636-074fa5117945?w=1920&q=80') center/cover no-repeat;
  filter: brightness(0.3) contrast(1.2) saturate(1.1);
  transform: scale(1.05);
  transition: transform 10s ease;
}

.webgirls-hero:hover .webgirls-hero-bg {
  transform: scale(1.0);
}

.webgirls-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, transparent 30%, transparent 50%, rgba(26, 26, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(230, 0, 126, 0.1) 0%, transparent 50%);
}

.webgirls-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 100px var(--space-lg) 0;
}

.webgirls-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease 0.4s both;
}

.webgirls-hero-title em {
  font-style: italic;
  color: var(--pink);
  position: relative;
}

.webgirls-hero-title em::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
  opacity: 0.5;
  border-radius: 2px;
}

.webgirls-hero-description {
  font-size: 1.1rem;
  color: var(--grey-300);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.6s both;
}

/* --- Stats Bar --- */
.webgirls-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-xl);
  animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey-400);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* --- Gallery Section --- */
.wg-gallery-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.wg-gallery-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 0, 126, 0.05), transparent 70%);
  pointer-events: none;
}

.wg-gallery-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: var(--space-lg);
}

/* --- CTA Section --- */
.wg-cta-section {
  background:
    linear-gradient(135deg, var(--dark-deeper) 0%, rgba(230, 0, 126, 0.08) 50%, var(--dark-deeper) 100%);
  position: relative;
  overflow: hidden;
}

.wg-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.3;
}

.wg-cta-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.wg-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.wg-cta-description {
  font-size: 1.05rem;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* --- Responsive: WebGirls Page --- */
@media (max-width: 1200px) {
  .wg-gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .webgirls-hero {
    height: 60vh;
    min-height: 420px;
  }

  .webgirls-hero-content {
    padding: 80px var(--space-md) 0;
  }

  .webgirls-hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .wg-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .wg-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .webgirls-hero-stats {
    gap: var(--space-sm);
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* ============================================
   VOTES PAGE STYLES
   ============================================ */

.votes-page-content {
  background-color: var(--dark-deeper);
}

.vote-form {
  margin-top: var(--space-xl);
  background: var(--dark-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom styling for inputs and selects */
.vote-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.vote-input:focus {
  outline: none;
  border-color: var(--pink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(230, 0, 126, 0.2);
}

/* Premium Select Dropdown Styling */
select.vote-input.custom-select-design {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e6007e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1.2em;
  padding: 1.2rem 3rem 1.2rem 1.5rem;
  border: 1px solid rgba(230, 0, 126, 0.3);
  /* Subtle pink trace */
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

select.vote-input.custom-select-design:hover {
  border-color: var(--pink);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 0, 126, 0.15);
}

select.vote-input.custom-select-design:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(230, 0, 126, 0.4);
}

select.vote-input.custom-select-design option {
  background-color: var(--dark-deeper);
  color: var(--white);
  padding: 15px;
  font-size: 1.1rem;
}

/* Form group overrides for vote page specifically */
.vote-form .form-group label {
  position: relative;
  top: auto;
  left: auto;
  background: transparent;
  padding: 0;
  text-transform: none;
  font-size: 1.05rem;
  color: var(--grey-300);
  font-weight: 500;
  letter-spacing: normal;
  display: block;
  margin-bottom: 0.8rem;
}

/* Submit Button */
.btn-submit-vote {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 1rem;
}

.btn-submit-vote:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

/* ============================================
   PROFILE PAGE STYLES (Dynamic WebGirl Pages)
   ============================================ */

.profile-page .header {
  background: var(--dark-deeper);
}

.profile-hero {
  padding: 160px 0 var(--space-xl);
  background: linear-gradient(to bottom, var(--dark-deeper) 0%, var(--dark) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--pink);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 20px rgba(230, 0, 126, 0.2);
}

.profile-separator {
  color: var(--white);
  font-weight: 300;
  opacity: 0.5;
  margin: 0 10px;
}

.profile-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--grey-300);
  max-width: 800px;
  margin: 0 auto;
}

.profile-section {
  padding: var(--space-3xl) 0;
}

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

.profile-grid.reverse {
  direction: rtl;
}

.profile-grid.reverse>* {
  direction: ltr;
}

.profile-text h2 {
  font-family: var(--font-display);
  color: var(--pink);
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.profile-text p {
  color: var(--grey-300);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.profile-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.profile-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.profile-img.main-img {
  aspect-ratio: 3/4;
}

.profile-img.portrait-img {
  aspect-ratio: 4/5;
}

.profile-img.landscape-img {
  aspect-ratio: 16/9;
}

.profile-image-wrapper:hover .profile-img {
  transform: scale(1.05);
}

/* Boutique Products Showcase */
.profile-products-intro {
  text-align: center;
  color: var(--grey-400);
  font-size: 1.1rem;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.profile-products .boutique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .profile-products .boutique-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-products .boutique-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PROFILE PAGE — NEW DESIGN
   ============================================ */

/* --- Full-width Hero --- */
.profile-hero-full {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: var(--dark-deeper);
}

.profile-hero-bg {
  position: absolute;
  inset: -5%;
  /* Slight bleed to avoid blur clipping */
  width: 110%;
  height: 110%;
  z-index: 0;
}

.profile-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: blur(8px) brightness(0.6) saturate(1.2);
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.profile-hero-full:hover .profile-hero-bg img {
  transform: scale(1.0);
}

.profile-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.6) 80%),
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.6) 60%,
      var(--dark) 100%);
}

.profile-hero-info {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  max-width: 700px;
}

.profile-badge {
  display: inline-block;
  background: rgba(230, 0, 126, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 0, 126, 0.3);
  color: var(--pink-light);
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.profile-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.profile-hero-role {
  font-size: 1.1rem;
  color: var(--grey-300);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

/* --- Bio Section --- */
.profile-bio {
  background: var(--dark);
}

.profile-bio-content {
  text-align: center;
}

.profile-bio-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.profile-bio-content p {
  font-size: 1.05rem;
  color: var(--grey-300);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.profile-bio-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  flex-wrap: wrap;
}

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

.profile-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition-med);
}

.profile-gallery-item.large {
  grid-column: span 1;
  grid-row: span 2;
}

.profile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-gallery-item:hover {
  border-color: rgba(230, 0, 126, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 768px) {
  .profile-hero-full {
    height: 60vh;
    min-height: 400px;
  }

  .profile-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .profile-bio-actions {
    flex-direction: column;
  }

  .profile-bio-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .profile-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LEGAL & PRIVACY PAGES
   ============================================ */
.legal-hero {
  padding-top: 140px;
  padding-bottom: var(--space-2xl);
  text-align: center;
  background:
    linear-gradient(180deg, var(--dark-deeper), var(--dark)),
    linear-gradient(135deg, rgba(230, 0, 126, 0.05), transparent);
  position: relative;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0.3;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  text-align: left;
  transition: var(--transition-med);
}

.legal-card:hover {
  border-color: rgba(230, 0, 126, 0.2);
}

.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--pink);
}

.legal-card p,
.legal-card li {
  color: var(--grey-300);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-card p+p {
  margin-top: var(--space-sm);
}

.legal-card ul {
  padding-left: 20px;
  margin: var(--space-sm) 0;
}

.legal-card li {
  list-style: disc;
  margin-bottom: 6px;
}

.legal-card address {
  font-style: normal;
  margin: var(--space-sm) 0;
  padding: var(--space-md);
  background: rgba(230, 0, 126, 0.05);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-card a {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: var(--pink-light);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.cookie-table th {
  background: rgba(230, 0, 126, 0.1);
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-table code {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.85rem;
}

/* ============================================
   HAMBURGER ICON & MOBILE MENU
   ============================================ */

/* --- Hamburger Icon (hidden on desktop, shown on mobile) --- */
.hamburger {
  display: none;
  /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  /* Explicit white — always visible */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Animated X when open */
.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  /* Dynamic viewport height for mobile browsers */
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  color: var(--pink);
  transform: scale(1.05);
}

/* --- Mobile Responsive: Show hamburger, hide nav-links at ≤ 850px --- */
@media (max-width: 850px) {
  .nav-links {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 6px var(--space-sm);
  }

  .nav-main {
    padding: 0 var(--space-md);
  }

  .nav-container {
    height: 60px;
    max-width: 100%;
  }

  .logo {
    font-size: 1.3rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-accent {
    display: none;
  }

  .nav-actions {
    flex-shrink: 0;
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .boutique-preview-grid,
  .subscriptions-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   AUTH MODAL & CLIENT DROPDOWN
   ===================== */
.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.auth-modal[hidden] {
  display: none !important;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(5px);
}

.auth-modal-content {
  position: relative;
  background: linear-gradient(145deg, var(--black-soft), #151515);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.4s ease-out;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}

.auth-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  z-index: 2;
}

.auth-modal-close:hover {
  color: var(--gold-primary);
}

.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
  border-bottom: 2px solid #222;
  padding-bottom: 0;
}

.auth-tab {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 12px 20px;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.auth-tab:hover {
  color: #fff;
}

.auth-tab.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

.auth-tab-pane {
  display: none;
}

.auth-tab-pane.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.auth-error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid var(--red-error, #f44336);
  color: var(--red-error, #f44336);
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  text-align: center;
}

.auth-error[hidden] {
  display: none;
}

/* Client Dropdown */
.client-dropdown {
  position: relative;
  display: inline-block;
}

.client-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: linear-gradient(145deg, var(--black-soft), #151515);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius);
  min-width: 180px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 1100;
}

.client-dropdown-menu.show {
  display: block;
}

.client-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
}

.client-dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
}

@media (max-width: 850px) {
  .client-dropdown {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .client-dropdown-menu {
    position: absolute;
    top: 50px;
    /* Push below the icon */
    right: -10px;
    /* Align near the edge */
    min-width: 150px;
    background: linear-gradient(145deg, var(--black-soft), #151515);
    border: 1px solid var(--gold-primary);
    border-radius: var(--radius);
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  }

  .client-dropdown-menu.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .client-dropdown-menu a {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    padding: 8px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.3s;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 90%;
    /* Fit inside small menu */
  }

  .client-dropdown-menu a:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.2);
  }
}

/* ============================================
   AGE VERIFICATION POPUP
   ============================================ */

/* Overlay bloquant */
.age-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--dark-overlay);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-med), visibility var(--transition-med);
}

/* La popup style Tentation Mag */
.age-modal {
  background: var(--dark-card);
  border: 1px solid var(--pink-subtle);
  box-shadow: var(--shadow-pink-lg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  max-width: 450px;
  width: 90%;
  text-align: center;
  color: var(--white);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-overlay.active .age-modal {
  transform: translateY(0) scale(1);
}

.age-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 0 10px var(--pink-glow));
}

.age-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--white), var(--pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.age-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--grey-300);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

/* Saisie de la date */
.age-inputs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.age-input {
  background: var(--dark-surface);
  border: 1px solid var(--grey-500);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  width: 70px;
  transition: all var(--transition-fast);
  outline: none;
}

#age-year {
  width: 90px;
}

.age-input::-webkit-outer-spin-button,
.age-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.age-input[type=number] {
  -moz-appearance: textfield;
}

.age-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}

.age-input-separator {
  color: var(--grey-400);
  font-size: 1.5rem;
  font-weight: 300;
}

.age-error {
  color: var(--pink);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-fast);
  height: 15px;
}

.age-error.visible {
  opacity: 1;
}

/* Bouton principal */
.age-btn {
  width: 100%;
  padding: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.age-btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.age-btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-lg);
}

.age-footer {
  margin-top: var(--space-lg);
}

.age-footer a {
  font-size: 0.8rem;
  color: var(--grey-400);
  transition: color var(--transition-fast);
}

.age-footer a:hover {
  color: var(--pink);
}

body.age-locked {
  overflow: hidden;
}