/* ==========================================================================
   KNOCKAT SA - Ultra-Glossy VIP Model Edition
   High-Fashion Editorial Aesthetics • Frosted Acrylic Glassmorphism • Gold Marigold
   ========================================================================== */

:root {
  /* Ultra-Clean Foundation */
  --bg-canvas: #0A1128;          /* Outer wallpaper deep space */
  --bg-primary: #FFFFFF;
  --bg-surface: #F8FAFC;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-strong: rgba(255, 255, 255, 0.95);
  --bg-glass-card: rgba(255, 255, 255, 0.9);
  --bg-glass-dark: rgba(10, 25, 47, 0.85);
  
  /* Typography */
  --text-primary: #0A192F;       /* Deep Mzansi Navy */
  --text-secondary: #2C3E50;     /* Slate Navy */
  --text-muted: #64748B;         /* Cool Grey */
  --text-light: #94A3B8;
  
  /* Brand Hero: Energetic 24K Marigold Yellow & Gold */
  --gold-primary: #FFB703;
  --gold-vivid: #F59E0B;
  --gold-light: #FEF3C7;
  --gold-glow: rgba(255, 183, 3, 0.45);
  --gold-gradient: linear-gradient(135deg, #FFC107 0%, #FFB703 50%, #F59E0B 100%);
  --gold-sheen: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  
  /* Trust & Luxury Accents */
  --emerald-trust: #10B981;
  --emerald-light: #ECFDF5;
  --emerald-border: #A7F3D0;
  --sa-blue: #0284C7;
  --sa-blue-light: #E0F2FE;
  --protea-red: #E11D48;
  --protea-light: #FFE4E6;
  --vip-purple: #7C3AED;
  --vip-purple-light: #F3E8FF;
  
  /* Glossy Borders & Reflections */
  --glass-border: 1px solid rgba(226, 232, 240, 0.8);
  --glass-border-highlight: 1px solid rgba(255, 255, 255, 0.9);
  --specular-line: inset 0 1px 1px 0 rgba(255, 255, 255, 0.8);
  
  /* Multi-Layered Elevated Shadows */
  --shadow-subtle: 0 2px 8px -2px rgba(10, 25, 47, 0.05);
  --shadow-card: 0 10px 25px -5px rgba(10, 25, 47, 0.08), 0 4px 10px -2px rgba(10, 25, 47, 0.04);
  --shadow-hover: 0 20px 35px -8px rgba(10, 25, 47, 0.15), 0 8px 16px -4px rgba(10, 25, 47, 0.08);
  --shadow-gloss-gold: 0 8px 24px -3px rgba(255, 183, 3, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  --shadow-float: 0 16px 36px -6px rgba(10, 25, 47, 0.18);
  
  /* Dimensions & Shapes */
  --mobile-max-width: 460px;
  --desktop-max-width: 1200px;
  --nav-height: 68px;
  --header-height: 62px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Smooth Physics */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: radial-gradient(circle at 50% 10%, #152238 0%, #0A1128 100%);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ==========================================================================
   APP CONTAINER (Mobile-First Shell)
   ========================================================================== */
.app-container {
  width: 100%;
  max-width: var(--mobile-max-width);
  min-height: 100vh;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 183, 3, 0.1);
  transition: max-width 0.35s var(--ease-smooth);
  padding-bottom: calc(var(--nav-height) + 20px);
  overflow: hidden;
}

body.expanded-view .app-container {
  max-width: var(--desktop-max-width);
}

/* Ambient Background Glow Mesh */
.app-container::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.app-container::after {
  content: '';
  position: absolute;
  top: 350px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   HEADER (Frosted Glass Acrylic Bar)
   ========================================================================== */
.app-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 4px 20px -4px rgba(10, 25, 47, 0.04);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.brand-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px var(--gold-glow), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.brand-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 100%);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.6px;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.brand-flag {
  font-size: 0.95rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

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

.header-btn {
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s var(--ease-smooth);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.header-btn:hover {
  background: #FFFFFF;
  border-color: var(--gold-vivid);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.data-saver-btn {
  padding: 0 12px;
  width: auto;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  gap: 5px;
  background: rgba(236, 253, 245, 0.9);
  color: #065F46;
  border: 1px solid var(--emerald-border);
}

.data-saver-btn.active {
  background: var(--emerald-trust);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.badge-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  background-color: var(--protea-red);
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(225, 29, 72, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* Floating View Mode Switcher (Desktop) */
.view-mode-toggle {
  position: fixed;
  top: 14px;
  right: 18px;
  z-index: 1000;
  background: rgba(10, 25, 47, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.view-mode-toggle:hover {
  background: var(--gold-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 183, 3, 0.45);
}

@media (max-width: 768px) {
  .view-mode-toggle { display: none; }
}

/* ==========================================================================
   HERO BANNER & MODEL STORY REELS
   ========================================================================== */
.hero-banner {
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, #FFFDF7 0%, #FFFFFF 100%);
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(254, 243, 199, 0.85);
  backdrop-filter: blur(8px);
  color: #92400E;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.12);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.6px;
}

.hero-title span {
  background: linear-gradient(120deg, #D97706 0%, #F59E0B 50%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
}

.hero-subtitle {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 14px;
  font-weight: 500;
}

/* Live Booking Ticker Pill */
.live-feed-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  white-space: nowrap;
}

.live-feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-trust);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

/* Model Spotlight Story Rings */
.model-spotlight-section {
  padding: 4px 16px 14px;
  background: #FFFFFF;
}

.spotlight-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}

.spotlight-scroll::-webkit-scrollbar { display: none; }

.spotlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring);
}

.spotlight-item:hover {
  transform: translateY(-2px);
}

.spotlight-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #FFB703, #E11D48, #0284C7);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.35);
  position: relative;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}

.spotlight-name {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-primary);
  max-width: 64px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   PROMINENT GLOSSY SEARCH CAPSULE
   ========================================================================== */
.search-container {
  position: relative;
  margin-bottom: 12px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 46px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 4px 16px -2px rgba(10, 25, 47, 0.05), inset 0 1px 2px rgba(0,0,0,0.02);
  transition: all 0.25s var(--ease-smooth);
}

.search-input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 4px var(--gold-glow), 0 8px 24px -4px rgba(10, 25, 47, 0.08);
}

.search-input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.search-clear-btn {
  position: absolute;
  right: 14px;
  background: rgba(241, 245, 249, 0.9);
  border: none;
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-clear-btn.visible {
  display: flex;
}

/* Quick Search Tag Chips */
.quick-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.quick-tags::-webkit-scrollbar { display: none; }

.quick-tag-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
}

.quick-tag-chip {
  padding: 4px 10px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-full);
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-tag-chip:hover {
  background: var(--gold-light);
  color: #92400E;
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

/* Trust Stats Strip */
.trust-strip {
  display: flex;
  justify-content: space-around;
  padding: 10px 16px;
  background: linear-gradient(90deg, #F8FAFC 0%, #F1F5F9 50%, #F8FAFC 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* ==========================================================================
   HORIZONTAL CATEGORY CHIPS
   ========================================================================== */
.categories-section {
  padding: 14px 0 10px;
  background: var(--bg-primary);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 10px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.3px;
}

.section-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.horizontal-scroll-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 16px 6px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll-chips::-webkit-scrollbar { display: none; }

.category-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(10, 25, 47, 0.03);
}

.category-chip:hover {
  border-color: var(--gold-vivid);
  background: #FFFDF7;
  color: var(--text-primary);
  transform: translateY(-1px);
}

.category-chip.active {
  background: var(--text-primary);
  color: var(--gold-primary);
  border-color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(10, 25, 47, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

/* Language Filter Chips */
.languages-section {
  padding: 0 16px 12px;
}

.language-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.language-scroll::-webkit-scrollbar { display: none; }

.lang-chip {
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.lang-chip.active {
  background: var(--sa-blue);
  color: #FFFFFF;
  border-color: var(--sa-blue);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.35);
}

/* ==========================================================================
   MODEL CREATOR CARDS (High-Gloss Editorial Grid)
   ========================================================================== */
.creators-section {
  padding: 10px 16px 24px;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .creators-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  body.expanded-view .creators-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

.creator-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-spring), border-color 0.2s ease;
  cursor: pointer;
  position: relative;
}

.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 183, 3, 0.4);
}

/* Glossy Image Wrapper with High-Fashion Crop */
.creator-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 125%; /* Sleek 4:5 editorial model ratio */
  background: #0F172A;
  overflow: hidden;
}

.creator-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Gradient Vignette over photo bottom */
.creator-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 25, 47, 0.75) 100%);
  pointer-events: none;
}

/* Glossy Shimmer Light Sweep on Hover */
.creator-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 5;
}

.creator-card:hover::before {
  transform: rotate(25deg) translateY(100%);
}

/* VIP Badge */
.card-vip-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(10, 25, 47, 0.88);
  backdrop-filter: blur(8px);
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 183, 3, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Play Preview Floating Disc */
.card-sample-play-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 3;
  transition: transform 0.3s var(--ease-spring), background 0.2s ease;
}

.creator-card:hover .card-sample-play-btn {
  transform: scale(1.15);
  background: var(--gold-primary);
  color: var(--text-primary);
}

/* Card Body */
.creator-card-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
}

.creator-header-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.creator-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.3px;
}

.verified-badge {
  color: #0284C7;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.creator-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Language tags */
.creator-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.language-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xs);
}

.language-pill.primary {
  background: var(--sa-blue-light);
  color: #0369A1;
  border-color: #BAE6FD;
}

/* Rating row */
.creator-rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.rating-star { color: #F59E0B; }
.review-count { color: var(--text-muted); font-weight: 600; }

/* Card Footer: Bold Rand Price + 3D Marigold Action Button */
.creator-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.4px;
}

.book-btn-mini {
  background: var(--gold-gradient);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gloss-gold);
  transition: all 0.2s var(--ease-smooth);
}

.book-btn-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -2px rgba(255, 183, 3, 0.6);
}

.book-btn-mini:active {
  transform: scale(0.96);
}

/* ==========================================================================
   BROWSE & ADVANCED FILTER VIEW
   ========================================================================== */
.browse-container { padding: 16px; }

.browse-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.browse-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.filter-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
}

.filter-row { margin-bottom: 14px; }
.filter-row:last-child { margin-bottom: 0; }

.filter-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: block;
}

.filter-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  padding: 6px 12px;
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.active {
  background: var(--text-primary);
  color: var(--gold-primary);
  border-color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(10, 25, 47, 0.2);
}

.sort-select {
  width: 100%;
  height: 42px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-primary);
  outline: none;
}

/* ==========================================================================
   DEDICATED CHECKOUT VIEW
   ========================================================================== */
.checkout-view {
  padding: 16px;
  background: #F8FAFC;
  min-height: 100vh;
}

.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.checkout-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.2s ease;
}

.checkout-back-btn:hover {
  transform: translateX(-2px);
  border-color: var(--text-primary);
}

.checkout-step-indicator {
  font-size: 0.74rem;
  font-weight: 800;
  color: #065F46;
  background: var(--emerald-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--emerald-border);
}

.checkout-creator-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.checkout-creator-avatar {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 4px 10px var(--gold-glow);
}

.checkout-creator-info { flex: 1; }

.checkout-creator-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.checkout-creator-cat {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.checkout-creator-timing {
  font-size: 0.74rem;
  font-weight: 800;
  color: #B45309;
}

.checkout-section {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.checkout-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group { margin-bottom: 14px; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-label-helper {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

.char-counter {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  font-weight: 600;
}

.occasion-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.occasion-pill {
  padding: 7px 13px;
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.occasion-pill.active {
  background: #FFFBEB;
  color: #92400E;
  border-color: var(--gold-primary);
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.15);
}

/* Delivery options */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-card {
  padding: 14px;
  background: var(--bg-surface);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.delivery-card.active {
  background: #FFFDF5;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.15);
}

.delivery-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.delivery-card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.delivery-card-price {
  font-size: 0.82rem;
  font-weight: 800;
  color: #B45309;
}

/* Price Breakdown */
.price-breakdown-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-row.discount {
  color: var(--emerald-trust);
  font-weight: 800;
}

.price-row.total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dashed #E2E8F0;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.promo-box {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.promo-input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  background: var(--bg-surface);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-btn {
  height: 40px;
  padding: 0 16px;
  background: var(--text-primary);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

/* Payment Method Cards */
.payment-methods-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-method-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 2px solid #E2E8F0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-method-card.active {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 4px 14px rgba(255, 183, 3, 0.2);
}

.payment-method-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.payment-method-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
}

.payment-method-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.payment-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-method-card.active .payment-radio {
  border-color: var(--gold-primary);
  background: var(--gold-primary);
}

.payment-radio-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-primary);
}

/* Escrow Callout */
.escrow-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--emerald-light);
  border: 1px solid var(--emerald-border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.escrow-callout-icon {
  font-size: 1.3rem;
  color: var(--emerald-trust);
  flex-shrink: 0;
}

.escrow-callout-text {
  font-size: 0.76rem;
  color: #065F46;
  line-height: 1.4;
}

/* Sticky Action Button */
.checkout-action-btn {
  width: 100%;
  height: 54px;
  background: var(--gold-gradient);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gloss-gold);
  transition: all 0.25s var(--ease-spring);
}

.checkout-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.6);
}

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

/* ==========================================================================
   MY BOOKINGS & SHOUTOUT VIDEO PLAYER
   ========================================================================== */
.bookings-container { padding: 16px; }

.bookings-tabs {
  display: flex;
  gap: 6px;
  background: #F1F5F9;
  padding: 4px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid #E2E8F0;
}

.bookings-tab-btn {
  flex: 1;
  padding: 9px;
  text-align: center;
  background: none;
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bookings-tab-btn.active {
  background: #FFFFFF;
  color: var(--text-primary);
  box-shadow: var(--shadow-subtle);
}

.booking-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.booking-ref-id {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-muted);
  font-family: monospace;
}

.booking-status-badge {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-status-badge.delivered {
  background: var(--emerald-light);
  color: #065F46;
  border: 1px solid var(--emerald-border);
}

.booking-status-badge.progress {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.booking-creator-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.booking-creator-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.booking-meta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-primary);
}

.booking-meta-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Stepper */
.booking-stepper {
  margin: 14px 0;
  padding: 12px;
  background: #F8FAFC;
  border-radius: var(--radius-sm);
}

.stepper-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.stepper-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #CBD5E1;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.stepper-step.completed { background: var(--emerald-trust); }

.stepper-step.current {
  background: var(--gold-primary);
  color: var(--text-primary);
  box-shadow: 0 0 0 4px var(--gold-glow);
}

.stepper-status-msg {
  font-size: 0.76rem;
  color: var(--text-secondary);
  font-weight: 700;
}

/* Video Player in Delivered Booking */
.shoutout-video-box {
  background: #0A1128;
  border-radius: var(--radius-md);
  padding: 16px;
  color: #FFFFFF;
  margin-top: 14px;
  box-shadow: 0 10px 30px rgba(10, 17, 40, 0.4);
}

.video-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.video-player-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold-primary);
}

.video-simulation-canvas {
  width: 100%;
  height: 190px;
  background: radial-gradient(circle at 50% 30%, #1E293B 0%, #0A1128 100%);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-actor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.4);
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.video-playing .video-actor-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 183, 3, 0.8);
}

.audio-waves-container {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  margin-bottom: 8px;
}

.wave-bar {
  width: 3px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 2px;
}

.video-playing .wave-bar {
  animation: wavePulse 0.5s infinite ease-in-out alternate;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.15s; }
.wave-bar:nth-child(6) { animation-delay: 0.25s; }

@keyframes wavePulse {
  0% { height: 4px; }
  100% { height: 24px; }
}

.video-subtitle-banner {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  text-align: center;
  max-width: 90%;
  color: #F8FAFC;
  line-height: 1.35;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.video-play-btn {
  background: var(--gold-gradient);
  color: var(--text-primary);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
}

.video-action-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-action-btn:hover { background: rgba(255, 255, 255, 0.25); }

.whatsapp-share-btn {
  background: #25D366;
  color: #FFFFFF;
  border: none;
}

.whatsapp-share-btn:hover { background: #1EBE5D; }

/* ==========================================================================
   FIXED BOTTOM NAVIGATION BAR (Frosted Acrylic Floating Dock)
   ========================================================================== */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--mobile-max-width);
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  padding: 0 12px;
  box-shadow: 0 -8px 24px rgba(10, 25, 47, 0.08);
  transition: max-width 0.35s var(--ease-smooth);
}

body.expanded-view .bottom-nav-bar {
  max-width: var(--desktop-max-width);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 0;
  position: relative;
  transition: all 0.2s ease;
}

.nav-icon-wrapper {
  font-size: 1.3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-spring);
}

.nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.nav-badge-count {
  position: absolute;
  top: -4px;
  right: -9px;
  background: var(--protea-red);
  color: #FFFFFF;
  font-size: 0.6rem;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  border: 2px solid #FFFFFF;
}

.nav-item.active {
  color: var(--text-primary);
}

.nav-item.active .nav-icon-wrapper {
  transform: translateY(-2px);
  color: #B45309;
}

.nav-item.active .nav-label {
  color: var(--text-primary);
  font-weight: 800;
}

.nav-active-pill {
  position: absolute;
  top: 0;
  width: 28px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  opacity: 0;
  box-shadow: 0 2px 6px var(--gold-glow);
  transition: opacity 0.2s ease;
}

.nav-item.active .nav-active-pill { opacity: 1; }

/* ==========================================================================
   MODAL OVERLAYS & SHEETS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.75);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.modal-sheet {
  width: 100%;
  max-width: var(--mobile-max-width);
  max-height: 90vh;
  background: #FFFFFF;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  overflow-y: auto;
  padding: 20px 18px 34px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .modal-overlay { align-items: center; }
  .modal-sheet {
    border-radius: var(--radius-lg);
    max-height: 85vh;
  }
}

.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-handle {
  width: 40px;
  height: 4px;
  background: #CBD5E1;
  border-radius: var(--radius-full);
  margin: 0 auto 16px;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.creator-detail-cover {
  width: 100%;
  height: 150px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: -40px;
}

.creator-detail-header-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 0 8px;
  margin-bottom: 14px;
}

.creator-detail-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

.creator-detail-info { flex: 1; }

.creator-detail-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-primary);
}

.creator-detail-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.sample-reel-box {
  background: #0A1128;
  border-radius: var(--radius-md);
  padding: 14px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.sample-reel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Payment Sim Box */
.payment-sim-box {
  text-align: center;
  padding: 12px 0;
}

.payment-sim-logo {
  font-size: 3.2rem;
  margin-bottom: 8px;
}

.payment-sim-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.payment-sim-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.payment-phone-display {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-surface);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-full);
  font-family: monospace;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.payment-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #E2E8F0;
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 14px auto;
}

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

.payment-success-check {
  font-size: 3.8rem;
  color: var(--emerald-trust);
  animation: popIn 0.4s var(--ease-spring);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Toast */
.toast-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-40px);
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}
