/* ==========================================================================
   AZARAR MOBILE APP - COMPLETE STYLESHEET
   Mobile-First (100dvh Strict Isolation, Hidden Scrollbars & Clean Architecture)
   ========================================================================== */

/* --- CSS Variables & Theme --- */
:root {
  --primary-pink: #ec4899;
  --primary-pink-hover: #f43f5e;
  --primary-pink-glow: rgba(236, 72, 153, 0.55);
  --primary-pink-soft: rgba(236, 72, 153, 0.18);
  --magenta-gradient: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #8b5cf6 100%);
  --magenta-gradient-hover: linear-gradient(135deg, #ff1a72 0%, #ff2b88 50%, #f41b6c 100%);
  
  --bg-deep-dark: #030407;
  --bg-view-solid: #05070c;
  --bg-card: rgba(11, 16, 30, 0.85);
  --bg-card-hover: rgba(16, 24, 44, 0.9);
  --bg-card-glass: linear-gradient(135deg, rgba(14, 20, 38, 0.85) 0%, rgba(8, 12, 24, 0.92) 100%);
  --bg-input: rgba(255, 255, 255, 0.05);
  --bg-input-focus: rgba(255, 255, 255, 0.10);
  
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-glass: rgba(59, 130, 246, 0.22);
  --border-input: rgba(255, 255, 255, 0.12);
  --border-glass-subtle: rgba(59, 130, 246, 0.15);
  --border-glass-glow: rgba(236, 72, 153, 0.5);
  
  --intent-serious: #38bdf8;
  --intent-casual: #f59e0b;
  --intent-sex: #ec4899;
  --intent-company: #8b5cf6;
  
  --font-brand: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-full: 9999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* --- Global Reset & Hide Scrollbars --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html, body {
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--bg-deep-dark);
  font-family: var(--font-ui);
  color: var(--text-white);
  overflow: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   APP MAIN SCREEN & CONTAINER
   ========================================================================== */
.app-screen {
  position: relative;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #030407;
  user-select: none;
  overflow: hidden;
}

.screen-container {
  position: relative;
  z-index: 10;
  width: 100% !important;
  max-width: 480px !important;
  height: 100% !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  display: flex;
  flex-direction: column;
  margin: 0 auto !important;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
  background: 
    radial-gradient(circle at 50% 0%, rgba(28, 38, 58, 0.45) 0%, transparent 65%),
    radial-gradient(circle at 10% 40%, rgba(18, 26, 40, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(14, 20, 32, 0.40) 0%, transparent 60%),
    linear-gradient(180deg, #07090e 0%, #030407 100%);
  background-color: #030407;
  transition: background 0.4s ease;
}

/* Background States */
.screen-container.view-mode-home {
  overflow: hidden;
  background: 
    radial-gradient(circle at 50% 0%, rgba(28, 38, 58, 0.45) 0%, transparent 65%),
    radial-gradient(circle at 10% 40%, rgba(18, 26, 40, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 90% 80%, rgba(14, 20, 32, 0.40) 0%, transparent 60%),
    linear-gradient(180deg, #07090e 0%, #030407 100%);
  background-color: #030407;
}

.screen-container.view-mode-register,
.screen-container.view-mode-login {
  background: 
    radial-gradient(circle at 50% 0%, rgba(30, 42, 64, 0.50) 0%, transparent 65%),
    radial-gradient(circle at 90% 40%, rgba(20, 28, 44, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 10% 75%, rgba(16, 22, 36, 0.35) 0%, transparent 60%),
    linear-gradient(180deg, #080b12 0%, #030407 100%);
  background-color: #030407;
}

.screen-container.view-mode-app-shell {
  max-width: 520px !important;
  background: 
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(28, 38, 58, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 70% 40% at 95% 45%, rgba(20, 28, 44, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 75% 45% at 5% 75%, rgba(16, 22, 36, 0.30) 0%, transparent 65%),
    linear-gradient(180deg, #07090e 0%, #030407 100%);
  background-color: #030407;
}

.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* ==========================================================================
   VIEW CONTROLLER (STRICT ISOLATION)
   ========================================================================== */
.app-view {
  display: none !important;
  width: 100%;
  height: 100%;
  max-height: 100%;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-view.active {
  display: flex !important;
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   VIEW 1: HOME / LANDING SCREEN (ATMOSPHERIC BACKGROUND & CINEMATIC SLIDESHOW)
   ========================================================================== */
.view-home {
  position: relative;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--safe-top) + 20px) 20px calc(var(--safe-bottom) + 18px);
  overflow: hidden;
  box-sizing: border-box;
  background-color: #05020a;
}

/* Hero Couple Background Image */
.az-hero-bg-single {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.az-hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
}

/* Atmospheric Multi-layer Dark Gradient & Vignette Overlay */
.az-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 90% 60% at 50% 45%, rgba(7, 10, 20, 0.35) 0%, rgba(7, 10, 20, 0.72) 65%, rgba(7, 10, 20, 0.94) 100%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.72) 0%, rgba(7, 10, 20, 0.28) 35%, rgba(7, 10, 20, 0.78) 75%, rgba(7, 10, 20, 0.96) 95%, rgba(7, 10, 20, 0.99) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Floating Particles Canvas Inside View Home */
.view-home .particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
}

.app-header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  padding: 0;
}

.logo-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Ambient Radial Glow Aura Behind Logo */
.logo-glow-aura {
  position: absolute;
  width: 330px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 42, 122, 0.38) 0%, rgba(168, 85, 247, 0.24) 40%, rgba(216, 180, 254, 0.08) 65%, transparent 75%);
  filter: blur(34px);
  animation: logoAuraPulse 3.8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes logoAuraPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
    filter: blur(28px);
  }
  100% {
    transform: scale(1.12);
    opacity: 1;
    filter: blur(38px);
  }
}

/* Logo Image Increased Size & Dynamic Particle Glow */
.brand-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 185px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 42, 122, 0.7)) drop-shadow(0 0 38px rgba(168, 85, 247, 0.45));
  animation: logoLevitateGlow 4s ease-in-out infinite alternate;
}

@keyframes logoLevitateGlow {
  0% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 16px rgba(255, 42, 122, 0.65)) drop-shadow(0 0 32px rgba(216, 180, 254, 0.35));
  }
  50% {
    transform: translateY(-8px) scale(1.025);
    filter: drop-shadow(0 0 28px rgba(255, 42, 122, 0.95)) drop-shadow(0 0 55px rgba(168, 85, 247, 0.65)) drop-shadow(0 0 80px rgba(255, 42, 122, 0.4));
  }
  100% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 16px rgba(255, 42, 122, 0.65)) drop-shadow(0 0 32px rgba(216, 180, 254, 0.35));
  }
}

/* Orbiting Sparkling Embers Around Logo */
.logo-sparkles-orbit {
  position: absolute;
  inset: -10px;
  pointer-events: none;
  z-index: 3;
}

.logo-sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px currentColor;
}

.logo-sparkle.sp-1 {
  width: 5px;
  height: 5px;
  background: #ff2a7a;
  color: #ff2a7a;
  top: 14%;
  left: 20%;
  animation: sparkleFloat1 3.2s ease-in-out infinite alternate;
}

.logo-sparkle.sp-2 {
  width: 4px;
  height: 4px;
  background: #d8b4fe;
  color: #d8b4fe;
  top: 22%;
  right: 18%;
  animation: sparkleFloat2 2.8s ease-in-out infinite alternate 0.5s;
}

.logo-sparkle.sp-3 {
  width: 6px;
  height: 6px;
  background: #ec4899;
  color: #ec4899;
  bottom: 22%;
  left: 26%;
  animation: sparkleFloat3 3.6s ease-in-out infinite alternate 1s;
}

.logo-sparkle.sp-4 {
  width: 4.5px;
  height: 4.5px;
  background: #f43f5e;
  color: #f43f5e;
  bottom: 20%;
  right: 22%;
  animation: sparkleFloat4 3s ease-in-out infinite alternate 1.4s;
}

@keyframes sparkleFloat1 {
  0% { transform: translate(0, 0) scale(0.8); opacity: 0.3; }
  100% { transform: translate(10px, -14px) scale(1.3); opacity: 1; filter: drop-shadow(0 0 8px #ff2a7a); }
}

@keyframes sparkleFloat2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  100% { transform: translate(-12px, -16px) scale(1.4); opacity: 1; filter: drop-shadow(0 0 8px #d8b4fe); }
}

@keyframes sparkleFloat3 {
  0% { transform: translate(0, 0) scale(0.7); opacity: 0.3; }
  100% { transform: translate(14px, 12px) scale(1.25); opacity: 0.95; filter: drop-shadow(0 0 8px #ec4899); }
}

@keyframes sparkleFloat4 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.4; }
  100% { transform: translate(-10px, 12px) scale(1.3); opacity: 1; filter: drop-shadow(0 0 8px #f43f5e); }
}

/* Tagline & Feature Pills */
.heart-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 10px;
  position: relative;
  width: 100%;
}

.heart-divider::before,
.heart-divider::after {
  content: '';
  height: 1px;
  width: 32px;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 122, 0.7), transparent);
}

.heart-divider svg {
  filter: drop-shadow(0 0 8px rgba(255, 42, 122, 0.9));
  animation: heartbeat 2s ease-in-out infinite;
}

.brand-tagline {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #ffffff;
  letter-spacing: 0.25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  margin-bottom: 0;
}

.tagline-highlight {
  font-weight: 700;
  color: #ff2a7a;
  text-shadow: 0 0 14px rgba(255, 42, 122, 0.85), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.brand-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.brand-feature-pill {
  font-size: 11.5px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 13px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.brand-feature-pill:hover {
  border-color: rgba(255, 42, 122, 0.4);
  background: rgba(255, 42, 122, 0.12);
  color: #ffffff;
}

.screen-spacer {
  flex: 0.4;
  min-height: 15px;
}

.app-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.pill-nearby-btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(16, 7, 24, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 13.5px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-nearby-btn:hover {
  background: rgba(28, 11, 40, 0.88);
  border-color: rgba(255, 80, 170, 0.6);
  box-shadow: 0 6px 22px rgba(255, 42, 122, 0.25);
  transform: translateY(-1px);
}

.pin-badge {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff4b9b, #d80b59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.8);
}

.pin-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--primary-pink);
  animation: pulseRing 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pill-text {
  font-weight: 500;
  letter-spacing: 0.1px;
}

.pill-highlight {
  color: #ff3388;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 51, 136, 0.6);
}

.btn-primary {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--magenta-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--primary-pink-glow), 0 0 16px rgba(255, 42, 122, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: var(--magenta-gradient-hover);
  box-shadow: 0 10px 30px rgba(255, 42, 122, 0.7);
  transform: translateY(-1.5px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 6, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(255, 60, 150, 0.45);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  background: rgba(26, 11, 38, 0.88);
  border-color: rgba(255, 80, 170, 0.7);
  box-shadow: 0 6px 20px rgba(255, 42, 122, 0.25);
  transform: translateY(-1px);
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
}

.shield-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 42, 122, 0.6));
}

.security-text {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   FORMS & AUTH SCREENS (REGISTER & LOGIN)
   ========================================================================== */
.view-register,
.view-login {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  padding: calc(var(--safe-top) + 12px) 18px calc(var(--safe-bottom) + 20px);
  overflow-y: auto;
}

.view-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 12px;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.nav-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nav-back-btn:hover {
  background: rgba(255, 42, 122, 0.2);
  border-color: var(--primary-pink);
  transform: translateX(-2px);
}

.nav-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mini-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 42, 122, 0.5));
}

.nav-placeholder {
  width: 40px;
}

.view-scroll-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4px 2px 20px;
}

.form-intro {
  margin-bottom: 18px;
}

.view-title {
  font-family: var(--font-brand);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 42, 122, 0.3);
}

.view-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.app-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1px;
}

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

.forgot-link {
  font-size: 11.5px;
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--bg-input);
  border: 1.5px solid var(--border-input);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.input-wrap:focus-within {
  background: var(--bg-input-focus);
  border-color: var(--primary-pink);
  box-shadow: 0 0 16px var(--primary-pink-soft);
}

.input-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  color: var(--text-dim);
}

.input-wrap:focus-within .input-icon {
  color: var(--primary-pink);
}

.input-wrap input,
.input-wrap textarea {
  width: 100%;
  height: 48px;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px 0 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: #ffffff;
}

.input-wrap textarea {
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: var(--text-dim);
}

.input-username-wrap {
  padding-left: 12px;
}

.input-prefix {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-pink);
}

.input-username-wrap input {
  padding-left: 4px;
}

.input-wrap input[type="date"] {
  color-scheme: dark;
}

.btn-toggle-pwd {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-toggle-pwd:hover {
  color: #ffffff;
}

.intent-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.intent-chip {
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.intent-chip:hover {
  background: rgba(255, 255, 255, 0.12);
}

.intent-chip.active {
  background: rgba(255, 42, 122, 0.22);
  border-color: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 0 14px var(--primary-pink-soft);
}

.form-submit-btn {
  margin-top: 8px;
  height: 50px;
  font-size: 15.5px;
}

.form-switch-prompt {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.link-switch {
  background: none;
  border: none;
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0 4px;
  text-decoration: underline;
}

/* ==========================================================================
   VIEW 4: APP SHELL (TOPBAR, TABS, BOTTOM NAVIGATION)
   ========================================================================== */
.view-app-shell {
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

.app-topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: calc(var(--safe-top) + 12px) 16px 12px !important;
  background: linear-gradient(180deg, rgba(32, 10, 52, 0.88) 0%, rgba(18, 5, 30, 0.78) 100%) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 42, 122, 0.24) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.08) inset !important;
  flex-shrink: 0 !important;
  z-index: 50 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.topbar-center-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.topbar-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 42, 122, 0.7));
}

.topbar-heart-subline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
}

.topbar-heart-subline .heart-line {
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 122, 0.7), transparent);
}

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

.badge-bell-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2a7a;
  box-shadow: 0 0 8px #ff2a7a;
  border: 1.5px solid #0d0517;
}

/* ==========================================================================
   DASHBOARD / INÍCIO LAYOUT (MATCHING REFERENCE MOCKUP)
   ========================================================================== */
.dashboard-grid-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.dashboard-main-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.dashboard-side-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* 1. USER PROFILE HERO CARD */
.hero-profile-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(145deg, rgba(48, 15, 74, 0.75) 0%, rgba(20, 6, 33, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 60, 150, 0.32);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 122, 0.12);
}

.hero-profile-avatar-wrap {
  position: relative;
  width: 100px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 60, 150, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero-profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.badge-verified-shield {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 42, 122, 0.18);
  border: 1px solid rgba(255, 42, 122, 0.45);
  color: #ff5294;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  width: fit-content;
}

.hero-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-profile-name {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}

.verified-blue-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-profile-location {
  font-size: 11.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-profile-pills {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 2px 0 4px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-pill strong {
  color: #ff5294;
}

.btn-hero-edit-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(90deg, #ff1a72 0%, #ff2b88 100%);
  border: none;
  border-radius: 12px;
  padding: 7px 12px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 42, 122, 0.4);
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-hero-edit-profile:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 42, 122, 0.6);
}

/* 2. RADAR REALISTA "PESSOAS PRÓXIMAS" CARD */
.radar-dashboard-card {
  background: linear-gradient(145deg, rgba(48, 15, 74, 0.75) 0%, rgba(20, 6, 33, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 60, 150, 0.32);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 122, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.radar-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radar-target-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 42, 122, 0.18);
  border: 1px solid rgba(255, 42, 122, 0.4);
  color: #ff2a7a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.radar-card-subtitle {
  font-size: 11px;
  color: var(--text-dim);
}

.radar-filter-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radar-filter-btn:hover {
  background: rgba(255, 42, 122, 0.22);
  border-color: var(--primary-pink);
}

/* Radar Scope Display */
.radar-visualizer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 4px auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-scope-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 42, 122, 0.14) 0%, rgba(20, 6, 32, 0.6) 70%, rgba(10, 3, 18, 0.95) 100%),
    radial-gradient(rgba(255, 42, 122, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 18px 18px;
  border: 2px solid rgba(255, 60, 150, 0.5);
  box-shadow: 0 0 30px rgba(255, 42, 122, 0.25), inset 0 0 24px rgba(255, 42, 122, 0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid Axes */
.radar-grid-axis-h, .radar-grid-axis-v, .radar-grid-axis-d1, .radar-grid-axis-d2 {
  position: absolute;
  background: rgba(255, 60, 150, 0.16);
  pointer-events: none;
}
.radar-grid-axis-h {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.radar-grid-axis-v {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}
.radar-grid-axis-d1 {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}
.radar-grid-axis-d2 {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

/* Continuous 360-degree rotating pink sweep beam */
.radar-sweep-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 42, 122, 0.55) 0deg, rgba(255, 42, 122, 0.20) 35deg, rgba(255, 42, 122, 0.03) 70deg, transparent 90deg);
  animation: radarSweepAnim 3.8s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes radarSweepAnim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Concentric Rings */
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 60, 150, 0.42);
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.radar-ring-outer {
  width: 96%;
  height: 96%;
}

.radar-ring-middle {
  width: 62%;
  height: 62%;
}

.radar-ring-inner {
  width: 32%;
  height: 32%;
}

.radar-dist-tag {
  position: absolute;
  bottom: -9px;
  background: rgba(18, 5, 28, 0.92);
  border: 1px solid rgba(255, 60, 150, 0.45);
  border-radius: 8px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

/* Center Point (User Heart) */
.radar-center-point {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-center-glow {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.6) 0%, transparent 70%);
  animation: centerPulse 2s ease-in-out infinite alternate;
}

.radar-center-heart-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1a72 0%, #ff2b88 100%);
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255, 42, 122, 0.9);
}

@keyframes centerPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* Radar Footer Controls */
.radar-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  margin-top: 2px;
}

.radar-ctrl-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radar-ctrl-icon-btn:hover {
  background: rgba(255, 42, 122, 0.25);
  border-color: var(--primary-pink);
}

.radar-distance-readout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.radar-distance-big {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
}

.radar-distance-caption {
  font-size: 9px;
  font-weight: 700;
  color: var(--primary-pink);
  letter-spacing: 0.8px;
}

/* Slider Container */
.radar-slider-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 6px;
}

/* 3. ONLINE PROFILES PANEL */
.online-profiles-panel {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.online-profiles-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.online-profiles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 10px;
}

.online-user-item {
  background: rgba(30, 9, 48, 0.65);
  border: 1px solid rgba(255, 60, 150, 0.22);
  border-radius: 16px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.online-user-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary-pink);
  box-shadow: 0 6px 18px rgba(255, 42, 122, 0.25);
}

.online-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 60, 150, 0.4);
  overflow: visible;
}

.online-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.online-green-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #0d0517;
  box-shadow: 0 0 8px #22c55e;
}

.online-user-name {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80px;
}

.online-status-tag {
  font-size: 9px;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: 0.5px;
}

.btn-view-all-profiles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-view-all-profiles:hover {
  background: rgba(255, 42, 122, 0.22);
  border-color: var(--primary-pink);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  box-shadow: 0 0 12px var(--primary-pink-glow);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(20px);
}

/* --- Draggable Radius Range Slider (5m to 2km) --- */
.radius-slider-box {
  border-top: 1px solid var(--border-glass-subtle);
  padding-top: 10px;
}

.radius-title-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gps-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
  animation: pulseDot 1.8s infinite ease-in-out;
  display: inline-block;
}

.range-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.proximity-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: linear-gradient(to right, #ff2a7a 0%, #ff2a7a var(--slider-pct, 25%), rgba(255, 255, 255, 0.12) var(--slider-pct, 25%), rgba(255, 255, 255, 0.12) 100%);
  outline: none;
  cursor: pointer;
  transition: background 0.1s ease;
}

.proximity-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2a7a 0%, #ff0866 100%);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.8), 0 0 2px #ffffff;
  border: 2px solid #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.proximity-range-slider::-webkit-slider-thumb:hover,
.proximity-range-slider::-webkit-slider-thumb:active {
  transform: scale(1.18);
  box-shadow: 0 0 20px rgba(255, 42, 122, 1), 0 0 4px #ffffff;
}

.proximity-range-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2a7a 0%, #ff0866 100%);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.8), 0 0 2px #ffffff;
  border: 2px solid #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.range-slider-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 2px;
  margin-top: 2px;
}

.scale-point {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.scale-point:hover {
  color: var(--primary-pink);
}

.scale-point.active-tick {
  color: var(--primary-pink);
  font-weight: 800;
  text-shadow: 0 0 8px rgba(255, 42, 122, 0.6);
}

.subnav-radar {
  display: flex;
  background: rgba(36, 12, 58, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 60, 150, 0.28);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 14px;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

.subnav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

.subnav-btn span {
  white-space: nowrap;
}

.subnav-btn.active {
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.40) 0%, rgba(168, 85, 247, 0.35) 100%);
  color: #ffffff;
  border: 1px solid var(--primary-pink);
  box-shadow: 0 0 16px var(--primary-pink-glow);
}

.nearby-users-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.user-radar-card {
  position: relative;
  background: linear-gradient(155deg, rgba(42, 13, 66, 0.74) 0%, rgba(19, 6, 31, 0.86) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 60, 150, 0.30);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(255, 42, 122, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-radar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 80, 170, 0.75);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(255, 42, 122, 0.25);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: pointer;
}

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

.card-distance-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(14, 5, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.card-name-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.card-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.card-user-age {
  font-size: 12px;
  color: var(--text-dim);
}

.card-intent-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  width: fit-content;
}

.card-intent-badge.intent-serious { background: rgba(56, 189, 248, 0.2); color: var(--intent-serious); border: 1px solid var(--intent-serious); }
.card-intent-badge.intent-casual { background: rgba(245, 158, 11, 0.2); color: var(--intent-casual); border: 1px solid var(--intent-casual); }
.card-intent-badge.intent-sex { background: rgba(236, 72, 153, 0.2); color: var(--intent-sex); border: 1px solid var(--intent-sex); }
.card-intent-badge.intent-company { background: rgba(168, 85, 247, 0.2); color: var(--intent-company); border: 1px solid var(--intent-company); }

.card-bio-snippet {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 4px;
}

.btn-card-action {
  padding: 7px 4px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-card-follow {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-card-follow.following {
  background: rgba(255, 42, 122, 0.2);
  border-color: var(--primary-pink);
  color: var(--primary-pink);
}

.btn-card-chat {
  background: var(--magenta-gradient);
  color: #ffffff;
}

.mural-chat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 480px;
  overflow: hidden;
}

.mural-banner {
  background: rgba(255, 42, 122, 0.12);
  border-bottom: 1px solid var(--border-glass-subtle);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mural-badge {
  background: var(--primary-pink);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.mural-info {
  font-size: 11.5px;
  color: var(--text-muted);
}

.mural-messages-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mural-msg-item {
  display: flex;
  gap: 8px;
  animation: fadeIn 0.2s ease;
}

.mural-msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--primary-pink);
}

.mural-msg-bubble {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 14px 14px 14px;
  padding: 6px 10px;
  max-width: 82%;
}

.mural-msg-item.is-me {
  flex-direction: row-reverse;
}

.mural-msg-item.is-me .mural-msg-bubble {
  background: rgba(255, 42, 122, 0.25);
  border-color: var(--primary-pink);
  border-radius: 14px 4px 14px 14px;
}

.mural-msg-header {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.mural-msg-author {
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
}

.mural-msg-dist {
  font-size: 9.5px;
  color: var(--primary-pink);
  font-weight: 600;
}

.mural-msg-time {
  font-size: 9.5px;
  color: var(--text-dim);
  margin-left: auto;
}

.mural-msg-text {
  font-size: 13px;
  color: #ffffff;
  line-height: 1.35;
}

.mural-input-bar {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(14, 5, 23, 0.95);
  border-top: 1px solid var(--border-glass-subtle);
}

.mural-input-bar input,
.chat-input-bar input {
  flex: 1;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0 14px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 13px;
  outline: none;
}

.mural-input-bar input:focus,
.chat-input-bar input:focus {
  border-color: var(--primary-pink);
  background: rgba(255, 255, 255, 0.12);
}

.btn-send-mural {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--magenta-gradient);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

/* ==========================================================================
   TAB 2: FEED SOCIAL (INSTAGRAM STYLE)
   ========================================================================== */
.stories-section {
  margin-bottom: 14px;
}

.stories-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 6px;
}

.dynamic-stories-row {
  display: flex;
  gap: 10px;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  width: 58px;
  flex-shrink: 0;
}

.story-avatar-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.story-my-add .story-avatar-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0d0517;
}

.story-add-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  border: 2px solid #0d0517;
}

.story-username {
  font-size: 10.5px;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-posts-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-post-card {
  background: linear-gradient(150deg, rgba(42, 13, 66, 0.74) 0%, rgba(19, 6, 31, 0.86) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 60, 150, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 18px rgba(255, 42, 122, 0.10);
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.post-author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.post-author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary-pink);
}

.post-author-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.post-location {
  font-size: 10.5px;
  color: var(--text-dim);
}

.post-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

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

.post-actions-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 4px;
}

.btn-post-action {
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.btn-post-action.liked svg {
  fill: #ff2a7a;
  stroke: #ff2a7a;
  filter: drop-shadow(0 0 8px #ff2a7a);
  animation: heartBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.post-body {
  padding: 0 12px 12px;
}

.post-likes-count {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.post-caption {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.35;
}

.post-caption-author {
  font-weight: 700;
  color: #ffffff;
  margin-right: 4px;
}

.post-time {
  font-size: 10px;
  color: var(--text-dim);
  margin-top: 4px;
}

.fab-new-post {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--magenta-gradient);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--primary-pink-glow);
  z-index: 50;
  transition: transform 0.25s ease;
}

.fab-new-post:hover {
  transform: scale(1.08) rotate(90deg);
}

/* ==========================================================================
   TAB 3: MENSAGENS & CONVERSAS
   ========================================================================== */
.messages-header {
  margin-bottom: 12px;
}

.messages-title {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0 12px;
  height: 38px;
}

.search-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 13px;
}

.pinned-mural-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 42, 122, 0.14);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  margin-bottom: 16px;
  cursor: pointer;
}

.pinned-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 12px var(--primary-pink-glow);
}

.pinned-info {
  flex: 1;
}

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

.pinned-name {
  font-size: 13.5px;
  color: #ffffff;
}

.pinned-badge {
  font-size: 9.5px;
  font-weight: 800;
  background: var(--primary-pink);
  color: #ffffff;
  padding: 1px 6px;
  border-radius: var(--radius-full);
}

.pinned-last-msg {
  font-size: 11.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.section-subheading {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.conversations-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.conversation-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(42, 13, 64, 0.70) 0%, rgba(20, 6, 32, 0.82) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 60, 150, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.22s ease;
}

.conversation-item:hover {
  background: linear-gradient(135deg, rgba(54, 16, 82, 0.82) 0%, rgba(26, 8, 40, 0.90) 100%);
  border-color: var(--primary-pink);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 14px rgba(255, 42, 122, 0.16);
  transform: translateX(3px);
}

.conv-avatar-wrap {
  position: relative;
  width: 42px;
  height: 42px;
}

.conv-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.conv-online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #22c55e;
  border: 2px solid #0d0517;
  border-radius: 50%;
}

.conv-details {
  flex: 1;
}

.conv-top-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2px;
}

.conv-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
}

.conv-time {
  font-size: 10.5px;
  color: var(--text-dim);
}

.conv-last-msg {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

/* Tab Content Container (SCROLL FIX: Smooth vertical scrolling without overflow clipping) */
.tab-content-container {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-bottom: calc(85px + var(--safe-bottom)) !important;
  box-sizing: border-box !important;
  min-height: 0 !important;
  width: 100% !important;
}

.tab-page {
  display: none !important;
  flex-direction: column;
  padding: 10px 10px 90px;
  animation: fadeIn 0.22s ease;
  width: 100%;
  box-sizing: border-box;
}

.tab-page.active {
  display: flex !important;
}

.tab-page:not(.active) {
  display: none !important;
}

/* ==========================================================================
   DASHBOARD / INÍCIO LAYOUT (EXACT PROPORTIONS: 73.75% / 26.25%)
   ========================================================================== */
.mockup-2col-layout {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

/* Coluna da Esquerda: ~73.75% */
.mockup-left-col {
  flex: 0 0 calc(73.75% - 5px);
  width: calc(73.75% - 5px);
  max-width: calc(73.75% - 5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* Coluna da Direita: ~26.25% */
.mockup-right-col {
  flex: 0 0 calc(26.25% - 5px);
  width: calc(26.25% - 5px);
  max-width: calc(26.25% - 5px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: flex-start;
  height: auto;
  min-width: 0;
}

/* 1. USER PROFILE HERO CARD (STRICTLY IDENTICAL TO MOCKUP) */
.mockup-profile-hero-card {
  position: relative;
  width: 100%;
  min-height: 290px;
  border-radius: 24px;
  background-color: #0f0a1c;
  border: 1px solid rgba(255, 60, 150, 0.16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}

.mockup-profile-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

.mockup-profile-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 10, 28, 0) 0%,
    rgba(15, 10, 28, 0.12) 20%,
    rgba(15, 10, 28, 0.78) 38%,
    rgba(15, 10, 28, 0.98) 48%,
    #0f0a1c 60%
  );
  z-index: 2;
  pointer-events: none;
}

.mockup-profile-details {
  position: relative;
  z-index: 3;
  margin-left: auto;
  width: 56%;
  padding: 14px 7px 14px 2px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 7px;
  box-sizing: border-box;
}

.mockup-verified-tag {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 60, 150, 0.15);
  border: 1px solid rgba(255, 60, 150, 0.35);
  color: #ff5294;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3.5px 12px;
  border-radius: 12px;
  letter-spacing: 0.6px;
  margin: 0 auto 2px;
}

.mockup-name-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.mockup-profile-name {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  text-align: left;
}

.mockup-blue-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mockup-location-row {
  font-size: 11.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.mockup-intent-card {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  border-radius: 14px;
  text-align: left;
  margin: 0;
}

.mockup-card-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.mockup-intent-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.25;
}

.intent-sublabel {
  font-size: 9.5px;
  color: #9ca3af;
  text-align: left;
}

.intent-highlight {
  font-size: 11.5px;
  color: #ff2a7a;
  font-weight: 700;
  text-align: left;
}

.mockup-bio-card {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 7px 10px;
  border-radius: 14px;
  text-align: left;
  margin: 0;
}

.mockup-bio-text {
  font-size: 10px;
  color: #d1d5db;
  line-height: 1.25;
  text-align: left;
}

.btn-mockup-edit-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(90deg, #ff1a72 0%, #d81b60 100%);
  border: none;
  border-radius: 14px;
  padding: 9px 12px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 26, 114, 0.45);
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 2px;
}

.btn-mockup-edit-profile:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 26, 114, 0.65);
}

/* ==========================================================================
   PERFIS ON LINE (STRICTLY IDENTICAL TO MOCKUP)
   ========================================================================== */
.online-profiles-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: auto;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.online-profiles-header {
  padding: 0 0 8px;
  margin: 0;
  width: 100%;
}

.online-profiles-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: center;
  letter-spacing: 0.2px;
  width: 100%;
}

.online-profiles-vertical-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.mockup-online-user-card {
  width: 100%;
  background: rgba(22, 12, 36, 0.85);
  border: 1px solid rgba(255, 60, 150, 0.22);
  border-radius: 20px;
  padding: 8px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  box-sizing: border-box;
  margin: 0;
  transition: all 0.2s ease;
}

.mockup-online-user-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 60, 150, 0.5);
  box-shadow: 0 6px 18px rgba(255, 42, 122, 0.35);
}

.mockup-online-avatar-wrap {
  position: relative;
  width: calc(100% - 4px);
  max-width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-online-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 60, 150, 0.55);
  box-shadow: 0 0 16px rgba(255, 42, 122, 0.35);
  display: block;
}

.mockup-online-green-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid #0f0a1c;
  box-shadow: 0 0 12px #22c55e;
  z-index: 2;
}

.mockup-online-name {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 96%;
  margin-top: 3px;
  letter-spacing: 0.1px;
}

.mockup-online-badge {
  font-size: 9px;
  font-weight: 900;
  color: #22c55e;
  letter-spacing: 0.7px;
}

.btn-view-all-profiles {
  background: rgba(255, 60, 150, 0.12);
  border: 1px solid rgba(255, 60, 150, 0.3);
  border-radius: 14px;
  padding: 8px 6px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  flex: 0 0 auto;
}

.btn-view-all-profiles:hover {
  background: rgba(255, 60, 150, 0.25);
  border-color: var(--primary-pink);
  transform: translateY(-1px);
}

/* RADAR CARD COMPACT */
.radar-dashboard-card {
  background: linear-gradient(145deg, rgba(48, 15, 74, 0.75) 0%, rgba(20, 6, 33, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 60, 150, 0.32);
  border-radius: 20px;
  padding: 12px 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 42, 122, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

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

.radar-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.radar-target-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 42, 122, 0.18);
  border: 1px solid rgba(255, 42, 122, 0.4);
  color: #ff2a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radar-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radar-card-subtitle {
  font-size: 9.5px;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.radar-filter-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 42, 122, 0.15);
  border: 1px solid rgba(255, 42, 122, 0.35);
  color: #ff2a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.radar-filter-btn:hover {
  background: rgba(255, 42, 122, 0.3);
  color: #ffffff;
}

/* Radar Scope Display (Enlarged to fill full block width) */
.radar-visualizer-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 4px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-scope-circle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 42, 122, 0.16) 0%, rgba(20, 6, 32, 0.65) 70%, rgba(10, 3, 18, 0.95) 100%),
    radial-gradient(rgba(255, 42, 122, 0.12) 1px, transparent 1px);
  background-size: 100% 100%, 14px 14px;
  border: 1.8px solid rgba(255, 60, 150, 0.55);
  box-shadow: 0 0 28px rgba(255, 42, 122, 0.3), inset 0 0 20px rgba(255, 42, 122, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid Axes */
.radar-grid-axis-h, .radar-grid-axis-v, .radar-grid-axis-d1, .radar-grid-axis-d2 {
  position: absolute;
  background: rgba(255, 60, 150, 0.16);
  pointer-events: none;
}
.radar-grid-axis-h {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.radar-grid-axis-v {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
}
.radar-grid-axis-d1 {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}
.radar-grid-axis-d2 {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

/* Smart Rotating Pink Sweep Beam (15s rotation on slider move + pause) */
.radar-sweep-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 42, 122, 0.55) 0deg, rgba(255, 42, 122, 0.20) 35deg, rgba(255, 42, 122, 0.03) 70deg, transparent 90deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.radar-sweep-beam.is-spinning {
  opacity: 1;
  animation: radarSweepAnim 3.2s linear infinite;
}

.radar-sweep-beam.is-idle {
  opacity: 0.15;
  animation-play-state: paused;
}

@keyframes radarSweepAnim {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Concentric Rings */
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.2px solid rgba(255, 60, 150, 0.42);
  box-shadow: 0 0 8px rgba(255, 42, 122, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.radar-ring-outer {
  width: 96%;
  height: 96%;
}

.radar-ring-middle {
  width: 62%;
  height: 62%;
}

.radar-ring-inner {
  width: 32%;
  height: 32%;
}

.radar-dist-tag {
  display: none !important;
}

/* Center Point (User Heart) */
.radar-center-point {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-center-glow {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 42, 122, 0.6) 0%, transparent 70%);
  animation: centerPulse 2s ease-in-out infinite alternate;
}

.radar-center-heart-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1a72 0%, #ff2b88 100%);
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.9);
}

/* Radar Footer Controls */
.radar-controls-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
  margin-top: 2px;
  gap: 6px;
}

.radar-ctrl-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.radar-ctrl-icon-btn:hover {
  background: rgba(255, 42, 122, 0.25);
  border-color: var(--primary-pink);
  transform: scale(1.05);
}

.radar-distance-readout-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.radar-stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 60, 150, 0.16);
  border: 1.5px solid rgba(255, 60, 150, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.15s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.radar-stepper-btn svg {
  pointer-events: none;
  display: block;
}

.radar-stepper-btn:hover {
  background: rgba(255, 42, 122, 0.4);
  border-color: var(--primary-pink);
  transform: scale(1.12);
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.7);
}

.radar-stepper-btn:active {
  transform: scale(0.9);
  background: rgba(255, 42, 122, 0.7);
}

.radar-distance-readout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 90px;
  line-height: 1.15;
}

.radar-distance-big {
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
  text-align: center;
  text-shadow: 0 0 14px rgba(255, 42, 122, 0.7);
}

.radar-distance-caption {
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-pink);
  letter-spacing: 0.9px;
  opacity: 0.85;
  text-align: center;
  margin-top: 1px;
}

/* Modern Neon Distance Selector */
.radar-slider-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 4px 4px 2px;
  margin-top: 8px;
}

.discrete-slider-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

/* Minimalist Clean Vector Lock on Slider Track */
.slider-lock-marker {
  position: absolute;
  top: -17px;
  transform: translateX(-50%) translateY(4px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: left 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.slider-lock-marker.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.slider-lock-pill {
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  background: rgba(22, 6, 36, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.65);
  border-radius: 999px;
  padding: 2px 6px 2px 5px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4), 0 2px 5px rgba(0, 0, 0, 0.6);
  color: #fbbf24;
  transition: all 0.2s ease;
}

.slider-lock-svg {
  width: 10px;
  height: 10px;
  color: #fbbf24;
  flex-shrink: 0;
  display: block;
}

.slider-lock-tag {
  font-family: var(--font-ui);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #fbbf24;
  line-height: 1;
}

.slider-lock-pin-line {
  width: 1.5px;
  height: 5px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0) 100%);
  border-radius: 1px;
}

.slider-lock-marker.shake-lock .slider-lock-pill {
  animation: lockShakeAnim 0.4s ease-in-out;
  border-color: #ff2a7a;
  color: #ff5294;
  box-shadow: 0 0 14px rgba(255, 42, 122, 0.8);
}

.slider-lock-marker.shake-lock .slider-lock-svg,
.slider-lock-marker.shake-lock .slider-lock-tag {
  color: #ff5294;
}

@keyframes lockShakeAnim {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(-4px) rotate(-8deg); }
  40% { transform: translateX(4px) rotate(8deg); }
  60% { transform: translateX(-3px) rotate(-5deg); }
  80% { transform: translateX(3px) rotate(5deg); }
}

.proximity-range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff1a72 0%, #ff2b88 var(--slider-pct, 42.9%), rgba(255, 255, 255, 0.12) var(--slider-pct, 42.9%), rgba(255, 255, 255, 0.12) 100%);
  outline: none;
  cursor: pointer;
  margin: 4px 0 0;
  padding: 0;
}

.proximity-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ff1a72;
  box-shadow: 0 0 12px rgba(255, 42, 122, 1), 0 2px 6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.proximity-range-slider::-webkit-slider-thumb:hover,
.proximity-range-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
  box-shadow: 0 0 18px rgba(255, 42, 122, 1), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.proximity-range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ff1a72;
  box-shadow: 0 0 12px rgba(255, 42, 122, 1), 0 2px 6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.slider-minmax-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--text-dim);
  padding: 0 2px;
  letter-spacing: 0.3px;
}

/* Touch-Friendly Distance Chips Grid */
.radar-distance-chips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
}

.distance-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 5px 2px;
  color: #d1d5db;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: all 0.18s ease;
  white-space: nowrap;
  user-select: none;
}

.distance-chip:hover {
  background: rgba(255, 42, 122, 0.15);
  border-color: rgba(255, 42, 122, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.distance-chip:active {
  transform: translateY(0);
}

.distance-chip.active-chip {
  background: linear-gradient(135deg, #ff1a72 0%, #d81b60 100%);
  border-color: #ff5294;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(255, 26, 114, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.distance-chip.vip-chip {
  border-style: dashed;
}

.distance-chip.vip-chip.active-chip {
  border-style: solid;
}

/* Bronze Chip (15km) */
.distance-chip.vip-chip.bronze {
  border: 1px dashed rgba(205, 127, 50, 0.45);
  background: rgba(205, 127, 50, 0.06);
  color: #d1a075;
}

.distance-chip.vip-chip.bronze:hover,
.distance-chip.vip-chip.bronze.is-locked:hover {
  border-color: #cd7f32;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.28) 0%, rgba(138, 79, 21, 0.28) 100%);
  color: #f6c8a2;
  box-shadow: 0 0 12px rgba(205, 127, 50, 0.5);
  transform: translateY(-1px);
}

.distance-chip.vip-chip.bronze.active-chip {
  background: linear-gradient(135deg, #cd7f32 0%, #8a4f15 100%);
  border: 1px solid #e29b63;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(205, 127, 50, 0.7);
}

/* Prata Chip (30km) */
.distance-chip.vip-chip.prata {
  border: 1px dashed rgba(203, 213, 225, 0.45);
  background: rgba(203, 213, 225, 0.06);
  color: #cbd5e1;
}

.distance-chip.vip-chip.prata:hover,
.distance-chip.vip-chip.prata.is-locked:hover {
  border-color: #e2e8f0;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.28) 0%, rgba(148, 163, 184, 0.28) 100%);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(226, 232, 240, 0.6);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.distance-chip.vip-chip.prata.active-chip {
  background: linear-gradient(135deg, #cbd5e1 0%, #64748b 100%);
  border: 1px solid #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 0 14px rgba(226, 232, 240, 0.8);
}

/* Ouro Chip (50km) */
.distance-chip.vip-chip.ouro {
  border: 1px dashed rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.06);
  color: #fbbf24;
}

.distance-chip.vip-chip.ouro:hover,
.distance-chip.vip-chip.ouro.is-locked:hover {
  border-color: #f59e0b;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.28) 0%, rgba(180, 83, 9, 0.28) 100%);
  color: #fef08a;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.55);
  transform: translateY(-1px);
}

.distance-chip.vip-chip.ouro.active-chip {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: 1px solid #fbbf24;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.8);
}

/* Platina Chip (100km) with High-End Diamond Shimmer */
.distance-chip.vip-chip.platina {
  border: 1px dashed rgba(56, 189, 248, 0.55);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(168, 85, 247, 0.08) 100%);
  color: #7dd3fc;
  position: relative;
  overflow: hidden;
}

.distance-chip.vip-chip.platina:hover,
.distance-chip.vip-chip.platina.is-locked:hover {
  border-color: #38bdf8;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.35) 0%, rgba(168, 85, 247, 0.35) 50%, rgba(255, 255, 255, 0.3) 100%);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.8), 0 0 8px rgba(168, 85, 247, 0.6);
  text-shadow: 0 0 8px #38bdf8, 0 0 12px #ffffff;
  animation: platinaShimmerPulse 1.8s infinite ease-in-out;
}

.distance-chip.vip-chip.platina.active-chip {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
  border: 1px solid #ffffff;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.9), 0 0 10px rgba(192, 132, 252, 0.7);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes platinaShimmerPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.7), 0 0 6px rgba(168, 85, 247, 0.4);
    transform: translateY(-1px) scale(1);
  }
  50% {
    box-shadow: 0 0 22px rgba(56, 189, 248, 1), 0 0 12px rgba(224, 231, 255, 0.85);
    transform: translateY(-1px) scale(1.03);
  }
}

.chip-vip-tag {
  font-size: 9px;
  line-height: 1;
}

/* Free/VIP Tier Notice Row */
.free-tier-notice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1px;
  padding: 0 2px;
}

.free-limit-tag {
  font-size: 9.5px;
  color: var(--text-dim);
  font-weight: 500;
}

.link-upgrade-inline {
  background: transparent;
  border: none;
  color: #ff5294;
  font-size: 9.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}

.link-upgrade-inline:hover {
  color: #ffffff;
}



/* ==========================================================================
   4. LOUNGE VIP & MÍDIAS EXCLUSIVAS (TAB 'FEED' / 'LOUNGE')
   ========================================================================== */
.lounge-vip-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.8) 0%, rgba(22, 7, 36, 0.9) 100%);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 16px rgba(168, 85, 247, 0.2);
}

.vip-sparkle-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff1a72 0%, #a855f7 100%);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.vip-banner-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.vip-banner-desc {
  font-size: 11px;
  color: var(--text-dim);
  margin: 2px 0 0;
}

.btn-flash-boost {
  background: linear-gradient(90deg, #eab308 0%, #f59e0b 100%);
  border: none;
  border-radius: 12px;
  padding: 8px 12px;
  color: #000000;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.4);
  white-space: nowrap;
}

.vip-moments-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-moment-card {
  background: linear-gradient(145deg, rgba(38, 12, 58, 0.8) 0%, rgba(18, 5, 28, 0.9) 100%);
  border: 1px solid rgba(255, 60, 150, 0.25);
  border-radius: 18px;
  overflow: hidden;
}

.vip-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0517;
}

.vip-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vip-media-img.is-blurred {
  filter: blur(18px) saturate(140%);
  transform: scale(1.08);
}

.vip-unlock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 5, 23, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  text-align: center;
}

.vip-lock-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 12px #ff2a7a);
}

.vip-unlock-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.vip-unlock-desc {
  font-size: 11px;
  color: var(--text-dim);
  max-width: 240px;
  margin: 0;
}

.btn-unlock-media {
  background: linear-gradient(90deg, #ff1a72 0%, #ff2b88 100%);
  border: none;
  border-radius: 12px;
  padding: 8px 16px;
  color: #ffffff;
  font-weight: 700;
  font-size: 11.5px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 42, 122, 0.4);
}

/* ==========================================================================
   5. VIP SUBSCRIPTION PLANS MODAL STYLING
   ========================================================================== */
.vip-plans-sheet {
  max-height: 85vh;
  overflow-y: auto;
}

.vip-sheet-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 0.8px;
}

.vip-sheet-subtitle {
  font-size: 11.5px;
  color: var(--text-dim);
  margin: 4px 0 14px;
}

.vip-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.vip-plan-card {
  position: relative;
  background: rgba(25, 8, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vip-plan-card:hover {
  border-color: rgba(255, 60, 150, 0.5);
  background: rgba(35, 12, 54, 0.85);
}

.vip-plan-card.featured-gold-card {
  border: 1.5px solid #f59e0b;
  background: linear-gradient(145deg, rgba(58, 32, 10, 0.85) 0%, rgba(24, 10, 36, 0.9) 100%);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
}

.vip-plan-card.platinum-glow-card {
  border: 1.5px solid #38bdf8;
  background: linear-gradient(145deg, rgba(12, 35, 60, 0.85) 0%, rgba(20, 8, 38, 0.9) 100%);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.popular-ribbon {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
  color: #000000;
  font-size: 8.5px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.plan-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.plan-name {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.gold-glow {
  color: #fbbf24;
}

.plat-glow {
  color: #38bdf8;
}

.silver-glow {
  color: #e2e8f0;
}

.bronze-glow {
  color: #f97316;
}

.plan-price {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.plan-price small {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: normal;
}

.plan-badge-current {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}

.plan-badge-tier {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}

.plan-badge-bronze {
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fb923c;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}

.plan-badge-gold {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}

.plan-badge-plat {
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plan-features li {
  font-size: 11px;
  color: var(--text-muted);
}

.btn-upgrade-tier {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 10px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-ui);
}

.btn-tier-bronze {
  background: linear-gradient(90deg, #ea580c 0%, #f97316 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.4);
}

.btn-tier-prata {
  background: linear-gradient(90deg, #94a3b8 0%, #cbd5e1 100%);
  color: #0f172a;
}

.btn-tier-ouro {
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  color: #000000;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-tier-platina {
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.4);
}

.vip-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-dim);
  text-align: center;
  padding-top: 4px;
}
.profile-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.profile-avatar-container {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.profile-hero-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-pink);
  box-shadow: 0 0 14px var(--primary-pink-glow);
}

.btn-change-avatar {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-pink);
  border: 2px solid #0d0517;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.profile-hero-info {
  flex: 1;
}

.name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-fullname {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.verified-check {
  background: #0ea5e9;
  color: #ffffff;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.8), 0 0 4px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  margin-left: 6px;
  vertical-align: middle;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.profile-handle {
  font-size: 12.5px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}

.profile-intent-pill {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 42, 122, 0.18);
  border: 1px solid var(--primary-pink);
  border-radius: var(--radius-full);
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
}

.profile-stats-bar {
  display: flex;
  justify-content: space-around;
  background: var(--bg-card);
  border: 1px solid var(--border-glass-subtle);
  border-radius: var(--radius-md);
  padding: 10px 8px;
  margin-bottom: 12px;
}

.stat-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.stat-txt {
  font-size: 11px;
  color: var(--text-dim);
}

.profile-bio-card {
  margin-bottom: 12px;
}

.profile-bio-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
}

.profile-location-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--primary-pink);
}

.profile-actions-row {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.btn-profile-action {
  height: 38px;
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-edit-prof {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.btn-logout-prof {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #ef4444;
}

.profile-nav-tabs {
  display: flex;
  border-top: 1px solid var(--border-glass-subtle);
  border-bottom: 1px solid var(--border-glass-subtle);
  margin-bottom: 12px;
}

.prof-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.prof-tab-btn.active {
  color: var(--primary-pink);
  border-bottom-color: var(--primary-pink);
}

.instagram-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.grid-photo-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a0826;
  border-radius: 4px;
  cursor: pointer;
}

.grid-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tinder-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.tinder-card-heading {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.passions-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.passion-tag {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.tinder-info-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-item-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.info-label {
  color: var(--text-dim);
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR (EXACTLY MATCHING MOCKUP)
   ========================================================================== */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 68px;
  background: #080312;
  border-top: 1px solid rgba(255, 60, 150, 0.14);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 10px calc(var(--safe-bottom) + 4px);
  z-index: 60;
  box-sizing: border-box;
}

.nav-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: none;
  color: #71717a;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 18px;
  transition: all 0.2s ease;
  min-width: 54px;
}

.nav-tab-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #71717a;
  transition: color 0.2s ease;
}

.nav-tab-icon-wrap svg {
  stroke: currentColor;
}

.nav-tab-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  color: #71717a;
  transition: color 0.2s ease;
}

/* Active tab state: highlighted rounded capsule box with pink icon & text */
.nav-tab-item.active {
  background: rgba(255, 26, 114, 0.18);
  border: 1px solid rgba(255, 26, 114, 0.35);
  box-shadow: 0 0 16px rgba(255, 26, 114, 0.2);
  padding: 6px 14px;
}

.nav-tab-item.active .nav-tab-icon-wrap {
  color: #ff1a72;
}

.nav-tab-item.active .nav-tab-icon-wrap svg {
  fill: #ff1a72;
  stroke: none;
}

.nav-tab-item.active .nav-tab-label {
  color: #ff1a72;
  font-weight: 700;
}

.badge-unread-count {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #ff1a72;
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 50%;
  min-width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px #ff1a72;
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.app-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.app-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 1, 8, 0.8);
  backdrop-filter: blur(8px);
}

.modal-card-sheet {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  max-height: 90dvh;
  background: #140722;
  border-top: 1px solid var(--border-glass);
  border-radius: 24px 24px 0 0;
  padding: 18px 18px calc(var(--safe-bottom) + 20px);
  overflow-y: auto;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: -18px;
  margin: -18px -18px 12px -18px;
  padding: 16px 18px 12px 18px;
  background: rgba(20, 7, 34, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid rgba(255, 60, 150, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  z-index: 50;
}

.modal-title {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.2s ease;
  pointer-events: auto;
  z-index: 60;
}

.modal-close-btn:hover {
  background: rgba(255, 42, 122, 0.4);
  border-color: var(--primary-pink);
  transform: scale(1.08);
}

.modal-close-btn:active {
  transform: scale(0.92);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preset-photos-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
}

.preset-thumb-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.preset-thumb-btn.active {
  border-color: var(--primary-pink);
  box-shadow: 0 0 10px var(--primary-pink-glow);
}

.preset-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fullscreen Direct Chat */
.modal-chat-fullscreen.active {
  display: flex;
  align-items: stretch;
}

.chat-fullscreen-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  height: 100dvh;
  background: #0d0517;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: calc(var(--safe-top) + 8px) 14px 10px;
  background: rgba(20, 8, 32, 0.95);
  border-bottom: 1px solid var(--border-glass-subtle);
}

.chat-user-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.chat-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
}

.chat-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary-pink);
}

.chat-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #0d0517;
}

.chat-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.chat-user-sub {
  font-size: 10.5px;
  color: var(--text-dim);
}

.btn-chat-follow {
  padding: 5px 10px;
  background: rgba(255, 42, 122, 0.2);
  border: 1px solid var(--primary-pink);
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
}

.chat-messages-container {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-bubble {
  max-width: 78%;
  padding: 9px 12px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.35;
  animation: fadeIn 0.2s ease;
}

.chat-bubble.them {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 3px;
  color: #ffffff;
}

.chat-bubble.me {
  align-self: flex-end;
  background: var(--magenta-gradient);
  border-bottom-right-radius: 3px;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-pink-soft);
}

.chat-input-bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px calc(var(--safe-bottom) + 10px);
  background: rgba(18, 7, 28, 0.98);
  border-top: 1px solid var(--border-glass-subtle);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notification {
  position: fixed;
  top: calc(var(--safe-top) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(20, 8, 30, 0.96);
  border: 1px solid var(--primary-pink);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px var(--primary-pink-glow);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.toast-notification.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes logoFloat { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-3px) scale(1.01); } }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.22); } 30% { transform: scale(1); } 45% { transform: scale(1.15); } 60% { transform: scale(1); } }
@keyframes pulseRing { 0% { transform: scale(0.95); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.3); opacity: 1; } }
@keyframes heartBounce { 0% { transform: scale(1); } 50% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* ==========================================================================
   BRINDE 🥂 & AZARAR ⚡ DYNAMIC STYLES
   ========================================================================== */
.btn-card-cheers {
  background: linear-gradient(135deg, #ff2a7a 0%, #d946ef 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255, 42, 122, 0.45) !important;
  border: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn-card-cheers:active {
  transform: scale(0.94);
  box-shadow: 0 2px 8px rgba(255, 42, 122, 0.6) !important;
}
.btn-card-cheers.cheers-sent {
  background: rgba(255, 42, 122, 0.2) !important;
  color: #ff478e !important;
  border: 1px solid rgba(255, 42, 122, 0.4) !important;
  box-shadow: none !important;
}

.card-vibe-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 5, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 3px 9px;
  border-radius: 9999px;
  font-size: 10.5px;
  font-weight: 600;
  color: #ffffff;
  z-index: 4;
}

/* Celebration Modal */
.cheers-celebration-card {
  text-align: center;
  background: radial-gradient(circle at 50% 30%, #300c46 0%, #130420 100%) !important;
  border: 2px solid #ff2a7a !important;
  box-shadow: 0 0 40px rgba(255, 42, 122, 0.5) !important;
}
.cheers-avatars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 15px 0 12px 0;
}
.cheers-avatar-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid #ff2a7a;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 42, 122, 0.6);
}
.cheers-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cheers-icon-bounce {
  font-size: 38px;
  animation: cheersBounce 1s infinite alternate cubic-bezier(0.28, 0.84, 0.42, 1);
}
@keyframes cheersBounce {
  0% { transform: scale(0.9) rotate(-10deg); }
  100% { transform: scale(1.2) rotate(10deg); }
}
.cheers-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.cheers-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.cheers-timer-warning {
  background: rgba(255, 42, 122, 0.15);
  border: 1px solid rgba(255, 42, 122, 0.35);
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #ffd1e3;
}

/* Chat Countdown & Icebreakers */
.chat-countdown-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 42, 122, 0.15);
  border-bottom: 1px solid rgba(255, 42, 122, 0.3);
  padding: 6px 12px;
  font-size: 11px;
  color: #ff94bf;
}
.chat-countdown-bar strong {
  color: #ffffff;
  font-family: 'Montserrat', monospace;
  letter-spacing: 0.5px;
}

.quick-icebreakers-row {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 6px 10px;
  background: rgba(13, 5, 23, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.icebreaker-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 9999px;
  font-size: 11px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}
.icebreaker-chip:hover, .icebreaker-chip:active {
  background: rgba(255, 42, 122, 0.25);
  border-color: #ff2a7a;
  color: #ffffff;
}

/* Vibe Selector */
.vibe-selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}
.vibe-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 11.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vibe-chip.active {
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.3) 0%, rgba(217, 70, 239, 0.3) 100%);
  border-color: #ff2a7a;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.4);
}
.auto-off-notice {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  line-height: 1.4;
}

/* ==========================================================================
   FACIAL RECOGNITION & VERIFICATION STYLES
   ========================================================================== */
.face-verification-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(22, 9, 32, 0.95) 0%, rgba(35, 12, 50, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}
.face-verification-card.is-verified {
  border-color: rgba(56, 189, 248, 0.8);
  background: linear-gradient(135deg, rgba(8, 30, 48, 0.9) 0%, rgba(12, 18, 35, 0.9) 100%);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.verif-card-icon {
  font-size: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.verif-icon-circle-blue {
  background: #0ea5e9;
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.verif-card-info {
  flex: 1;
}

.verif-card-info h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}

.verif-card-badge-pill {
  display: inline-block;
  padding: 1px 7px;
  background: rgba(14, 165, 233, 0.22);
  border: 1px solid rgba(14, 165, 233, 0.6);
  border-radius: 9999px;
  font-size: 9.5px;
  font-weight: 800;
  color: #38bdf8;
  margin-left: 6px;
}
.verif-card-info p {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.35;
}
.btn-verify-face {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(56, 189, 248, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-verify-face:hover, .btn-verify-face:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.7);
}
.btn-verify-face.verified-done {
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border: 1px solid #38bdf8;
  box-shadow: none;
  cursor: default;
}

/* Face Scanner Modal */
.face-scanner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px 0;
}
.camera-stream-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 42, 122, 0.6);
  background: #000;
  box-shadow: 0 0 30px rgba(255, 42, 122, 0.4);
}
.camera-stream-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.camera-stream-wrap.scan-success {
  border-color: #38bdf8;
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.7);
}

.face-target-oval {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
}
.scan-laser-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff2a7a, #38bdf8, transparent);
  box-shadow: 0 0 12px #ff2a7a, 0 0 8px #38bdf8;
  animation: laserScan 2s infinite ease-in-out alternate;
}
@keyframes laserScan {
  0% { top: 5%; opacity: 0.8; }
  100% { top: 92%; opacity: 1; }
}

.face-scan-status-box {
  width: 100%;
  text-align: center;
  margin-top: 14px;
}
.face-scan-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11.5px;
  color: #ffffff;
}
.face-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 10px;
}
.face-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ff2a7a 0%, #38bdf8 100%);
  border-radius: 9999px;
  transition: width 0.3s ease;
}

/* ==========================================================================
   LUXURY AZARAR FACE ID LOGIN & AUTH DIVIDER
   ========================================================================== */
.auth-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px 0 14px;
  width: 100%;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 42, 122, 0.4), rgba(56, 189, 248, 0.4), transparent);
}

.divider-text {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #94a3b8;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-face-login {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 52px !important;
  padding: 0 16px !important;
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.12) 0%, rgba(13, 5, 23, 0.85) 50%, rgba(56, 189, 248, 0.14) 100%) !important;
  border: 1.5px solid rgba(255, 42, 122, 0.4) !important;
  border-radius: var(--radius-md) !important;
  color: #ffffff !important;
  font-family: var(--font-ui) !important;
  cursor: pointer !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 0 12px rgba(255, 42, 122, 0.1) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden !important;
}

.btn-face-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: all 0.5s ease;
}

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

.btn-face-login:hover,
.btn-face-login:active {
  transform: translateY(-2px);
  border-color: #ff2a7a !important;
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.2) 0%, rgba(20, 8, 35, 0.95) 50%, rgba(56, 189, 248, 0.22) 100%) !important;
  box-shadow: 0 10px 30px rgba(255, 42, 122, 0.35), 0 0 20px rgba(56, 189, 248, 0.25) !important;
}

.face-id-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
  transition: transform 0.25s ease;
}

.btn-face-login:hover .face-id-icon-box {
  transform: scale(1.08);
  color: #ffffff;
  background: rgba(56, 189, 248, 0.3);
  border-color: #38bdf8;
}

.btn-face-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  text-align: left;
  flex: 1;
  margin-left: 10px;
}

.badge-face-id {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 8px;
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.25), rgba(56, 189, 248, 0.25));
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 9999px;
  color: #38bdf8;
  flex-shrink: 0;
}

/* ==========================================================================
   RADAR SEARCH FILTERS (PILL BAR)
   ========================================================================== */
.radar-filter-pill-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.radar-filter-pill-bar::-webkit-scrollbar {
  display: none;
}

.radar-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  user-select: none;
}

.radar-filter-pill:hover {
  background: rgba(255, 42, 122, 0.18);
  border-color: rgba(255, 42, 122, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.radar-filter-pill.active {
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.35) 0%, rgba(255, 90, 160, 0.2) 100%);
  border-color: var(--primary-pink);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.45);
}

.radar-filter-pill .pill-icon {
  font-size: 12px;
}

/* ==========================================================================
   DYNAMIC VENUE PINS (ANTI-COLLISION & TOUCH FRIENDLY ON RADAR)
   ========================================================================== */
.radar-venue-pins-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 25;
}

.radar-venue-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 26;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.radar-venue-pin:hover {
  transform: translate(-50%, -50%) scale(1.22);
  z-index: 35;
}

.venue-pin-circle {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.venue-pin-icon {
  font-size: 15px;
  line-height: 1;
  display: block;
}

/* Gold Partner VIP Pin (e.g. Bar do Cuscuz) */
.radar-venue-pin.is-gold-partner .venue-pin-circle {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border: 1.8px solid #fde047;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.85), 0 2px 8px rgba(0, 0, 0, 0.5);
  animation: goldPinPulse 2.2s infinite ease-in-out;
}

.radar-venue-pin.is-gold-partner .venue-pin-name-tag {
  color: #fde047;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.9), 0 1px 3px rgba(0, 0, 0, 0.9);
}

@keyframes goldPinPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(245, 158, 11, 0.6), 0 2px 6px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 22px rgba(245, 158, 11, 1), 0 0 8px #ffffff; }
}

/* Organic Venue Pin (e.g. Dona Branca, Posto Select, Feirinha, Orla) */
.radar-venue-pin.is-organic .venue-pin-circle {
  background: rgba(22, 7, 34, 0.88);
  border: 1.5px solid rgba(255, 60, 150, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 42, 122, 0.3);
}

.venue-pin-bubble-count {
  position: absolute;
  top: -4px;
  right: -5px;
  background: #ff2a7a;
  color: #ffffff;
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  box-shadow: 0 0 6px rgba(255, 42, 122, 0.8);
  line-height: 1.1;
  min-width: 15px;
  text-align: center;
}

.radar-venue-pin.is-gold-partner .venue-pin-bubble-count {
  background: #1e1b4b;
  color: #fde047;
  border-color: #fde047;
  box-shadow: 0 0 6px rgba(253, 224, 71, 0.8);
}

.venue-pin-name-tag {
  font-size: 8.5px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 72px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
  background: rgba(10, 3, 18, 0.75);
  padding: 1px 5px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   RADAR FILTERS MODAL (SETTINGS & ADVANCED CATEGORIES)
   ========================================================================== */
.radar-filters-sheet {
  max-width: 440px;
}

.radar-filters-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 6px 0 12px;
}

.filter-section-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-options-grid {
  display: grid;
  gap: 8px;
}

.filter-options-grid.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.filter-select-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-select-btn .f-icon {
  font-size: 16px;
}

.filter-select-btn:hover {
  background: rgba(255, 42, 122, 0.15);
  border-color: rgba(255, 42, 122, 0.4);
  color: #ffffff;
}

.filter-select-btn.active {
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.3) 0%, rgba(255, 90, 160, 0.2) 100%);
  border-color: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.4);
}

.filter-subcategories-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  color: #f1f5f9;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.filter-checkbox-item:hover {
  opacity: 0.9;
}

.filter-checkbox-item input[type="checkbox"] {
  display: none;
}

.chk-box-custom {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.filter-checkbox-item input[type="checkbox"]:checked + .chk-box-custom {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  box-shadow: 0 0 8px rgba(255, 42, 122, 0.6);
}

.filter-checkbox-item input[type="checkbox"]:checked + .chk-box-custom::after {
  content: '✓';
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.filter-vibe-btn {
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-vibe-btn:hover {
  background: rgba(255, 42, 122, 0.15);
  color: #ffffff;
}

.filter-vibe-btn.active {
  background: rgba(255, 42, 122, 0.3);
  border-color: var(--primary-pink);
  color: #ffffff;
}

.btn-apply-filters {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  margin-top: 6px;
}

/* ==========================================================================
   VENUE DETAILS MODAL (B2B SHOWCASE & ORGANIC HUBS)
   ========================================================================== */
.venue-details-sheet {
  max-width: 440px;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.venue-sheet-header {
  position: absolute;
  top: 12px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.venue-sheet-header .modal-close-btn {
  pointer-events: auto;
  background: rgba(18, 5, 28, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
}

.venue-modal-scroll-body {
  overflow-y: auto;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

/* Venue Hero Banner */
.venue-hero-banner {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.venue-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(13, 3, 20, 0.85) 75%, #0d0314 100%);
}

.venue-header-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  pointer-events: auto;
}

.venue-header-badge-tag.gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a0b02;
  border: 1.2px solid #fde047;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.8);
}

.venue-header-badge-tag.organic {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

/* Venue Content Body */
.venue-content-container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.venue-title-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.venue-main-name {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.venue-category-pill {
  font-size: 11px;
  color: var(--primary-pink);
  font-weight: 700;
}

.venue-live-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 700;
  width: fit-content;
}

.venue-pulse-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: liveDotPulse 1.5s infinite;
}

@keyframes liveDotPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
}

/* Exclusive B2B Partner Perk Card */
.venue-partner-perk-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(255, 42, 122, 0.15) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.15);
}

.venue-perk-headline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: #fde047;
}

.venue-perk-text {
  font-size: 11.5px;
  color: #f1f5f9;
  line-height: 1.45;
  margin: 0;
}

/* Checked-in Users List */
.venue-users-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.venue-section-label {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.venue-users-horizontal-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.venue-users-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.venue-user-avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.venue-user-avatar-card:hover {
  transform: translateY(-2px);
}

.venue-user-thumb-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary-pink);
  padding: 2px;
  background: rgba(255, 42, 122, 0.2);
}

.venue-user-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.venue-user-first-name {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  max-width: 56px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Venue Action Buttons Row */
.venue-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.btn-venue-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  text-align: center;
}

.btn-venue-checkin {
  background: linear-gradient(135deg, #ff2a7a 0%, #e11d48 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 42, 122, 0.4);
}

.btn-venue-checkin:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 42, 122, 0.6);
}

.btn-venue-route {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-venue-route:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* B2B Lead Generation Box for Organic Spots */
.venue-b2b-cta-box {
  background: linear-gradient(135deg, rgba(30, 10, 48, 0.9) 0%, rgba(55, 15, 80, 0.7) 100%);
  border: 1px dashed rgba(255, 60, 150, 0.5);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  margin-top: 6px;
}

.venue-b2b-cta-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #fde047;
  margin: 0;
}

.venue-b2b-cta-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.4;
  margin: 0;
}

.btn-b2b-partner-contact {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a0b02;
  font-weight: 800;
  font-size: 11.5px;
  padding: 8px 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
  margin-top: 4px;
}

.btn-b2b-partner-contact:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.6);
}


/* ==========================================================================
   TAB 2: LOCAIS & POINTS DUAL SHOWCASE (SPLIT DISCOVERY & B2B HERO)
   ========================================================================== */
.tab-venues {
  width: 100% !important;
  height: 100% !important;
  flex: 1 1 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #090310 !important;
  display: flex !important;
  flex-direction: column !important;
  box-sizing: border-box !important;
}

.tab-venues.active {
  display: flex !important;
  flex: 1 1 100% !important;
  height: 100% !important;
  min-height: 0 !important;
}

.tab-venues:not(.active) {
  display: none !important;
}

.venues-split-layout {
  display: flex !important;
  width: 100% !important;
  height: 100% !important;
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

/* LEFT COLUMN: LIST, SEARCH, CATEGORIES & MINIMALIST DRAWER (FULL WIDTH) */
.venues-list-column {
  width: 100% !important;
  flex: 1 1 auto !important;
  max-width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #0e0417 !important;
  position: relative !important;
  z-index: 10 !important;
  overflow: hidden !important;
}

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

.venues-brand-wrap {
  display: flex;
  flex-direction: column;
}

.venues-logo-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venues-logo-sparkle {
  color: #f59e0b;
  font-size: 15px;
}

.venues-header-subtitle {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 1px;
}

/* Minimalist Retractable Distance Drawer Trigger */
.venues-radius-trigger-wrap {
  position: relative;
}

.btn-venues-radius-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 42, 122, 0.12);
  border: 1px solid rgba(255, 42, 122, 0.35);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.btn-venues-radius-trigger:hover {
  background: rgba(255, 42, 122, 0.22);
  border-color: var(--primary-pink);
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.35);
}

.venues-drawer-arrow {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.btn-venues-radius-trigger.open .venues-drawer-arrow {
  transform: rotate(180deg);
}

/* Retractable Minimalist Slider Drawer Popover */
.venues-radius-drawer {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 250px;
  background: rgba(20, 6, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 42, 122, 0.35);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 42, 122, 0.2);
  z-index: 60;
  display: none;
}

.venues-radius-drawer.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideDownDrawer 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownDrawer {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.venues-drawer-title {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venues-drawer-val {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-pink);
}

.venues-drawer-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-drawer-stepper {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.btn-drawer-stepper:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
}

.venues-drawer-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
}

.venues-drawer-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--primary-pink);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 42, 122, 0.8);
}

.venues-drawer-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.venues-drawer-quick-chips .v-chip {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.venues-drawer-quick-chips .v-chip:hover {
  background: rgba(255, 42, 122, 0.2);
  color: #ffffff;
}

.venues-drawer-quick-chips .v-chip.active {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: #ffffff;
  font-weight: 800;
}

/* Search Bar */
.venues-search-box-wrap {
  padding: 0 16px 8px;
}

.venues-search-input-inner {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0 12px;
  height: 40px;
  transition: all 0.2s ease;
}

.venues-search-input-inner:focus-within {
  background: rgba(255, 42, 122, 0.08);
  border-color: var(--primary-pink);
  box-shadow: 0 0 12px rgba(255, 42, 122, 0.25);
}

.venues-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 12px;
  padding: 0 8px;
}

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

.btn-clear-search {
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 12px;
  padding: 4px;
}

/* Category Filter Pills */
.venues-category-pill-bar {
  display: flex;
  gap: 6px;
  padding: 4px 16px 10px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
}

.venues-category-pill-bar::-webkit-scrollbar {
  display: none;
}

.v-cat-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v-cat-pill:hover {
  background: rgba(255, 42, 122, 0.15);
  color: #ffffff;
  border-color: rgba(255, 42, 122, 0.3);
}

.v-cat-pill.active {
  background: linear-gradient(135deg, rgba(255, 42, 122, 0.35) 0%, rgba(255, 90, 160, 0.2) 100%);
  border-color: var(--primary-pink);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 42, 122, 0.35);
  font-weight: 800;
}

/* Venues Items Vertical List */
.venues-items-vertical-list {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  overflow-y: auto !important;
  padding: 6px 14px 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  -webkit-overflow-scrolling: touch !important;
}

.venue-item-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
}

.venue-card-main-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.venue-item-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
}

.venue-item-card.selected {
  background: linear-gradient(135deg, rgba(255, 245, 230, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(245, 158, 11, 0.1);
}

.venue-item-card.is-gold-card {
  border-left: 3.5px solid #f59e0b;
}

.venue-thumb-circle-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.venue-item-card.selected .venue-thumb-circle-wrap {
  border-color: #f59e0b;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.venue-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.venue-item-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.venue-item-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-item-dist-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}

.venue-item-address {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.venue-item-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.venue-item-presence {
  font-size: 10px;
  font-weight: 700;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 4px;
}

.venue-item-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ffffff;
  flex-shrink: 0;
}

.venue-item-card.selected .venue-item-arrow {
  background: #f59e0b;
  color: #1a0b02;
  font-weight: 900;
}

/* Transport Action Strip in Venue Card */
.venue-card-transport-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-top: 7px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
}

.transport-strip-label {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
}

.transport-strip-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-ride-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3.5px 7.5px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  user-select: none;
}

.btn-ride-pill:hover, .btn-ride-pill:active {
  transform: scale(1.05);
}

.btn-ride-pill.uber {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-ride-pill.app99 {
  background: rgba(255, 209, 0, 0.14);
  border: 1px solid rgba(255, 209, 0, 0.45);
  color: #ffd100;
}

.btn-ride-pill.waze {
  background: rgba(51, 204, 255, 0.14);
  border: 1px solid rgba(51, 204, 255, 0.45);
  color: #38bdf8;
}

.btn-ride-pill.gmaps {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Sticky Footer: Ver no Mapa */
.venues-list-footer-bar {
  flex-shrink: 0 !important;
  width: 100% !important;
  padding: 8px 16px 10px !important;
  background: rgba(14, 4, 23, 0.96) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  z-index: 20 !important;
  box-sizing: border-box !important;
}

.btn-view-on-map {
  width: 100%;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.btn-view-on-map:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* ==========================================================================
   RIGHT COLUMN: IMMERSIVE VENUE SHOWCASE (MATCHING USER SCREENSHOT)
   ========================================================================== */
.venues-showcase-column {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  overflow: hidden;
  background: #090310;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
}

.venues-showcase-column.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.showcase-hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.35s ease-in-out;
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(10, 3, 16, 0.85) 60%, #0a0310 95%);
}

.showcase-top-bar {
  position: relative;
  z-index: 10;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-showcase-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-showcase-back:hover {
  background: rgba(255, 42, 122, 0.3);
  border-color: var(--primary-pink);
  transform: translateX(-2px);
}

.showcase-top-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.btn-showcase-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-showcase-icon:hover {
  background: rgba(255, 42, 122, 0.3);
  border-color: var(--primary-pink);
}

.showcase-details-card {
  margin-top: auto;
  position: relative;
  z-index: 10;
  padding: 20px 24px calc(var(--safe-bottom) + 20px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 85vh;
  overflow-y: auto;
}

.showcase-title-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.showcase-name-heading {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2px 8px;
  border-radius: 8px;
  color: #fde047;
  backdrop-filter: blur(6px);
}

.showcase-address-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
}

.showcase-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-vibe-tag {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 700;
  color: #e2e8f0;
}

.showcase-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.btn-showcase-main-cta {
  flex: 1;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.btn-showcase-main-cta:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  box-shadow: 0 0 18px rgba(255, 42, 122, 0.6);
}

.btn-showcase-bookmark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-showcase-bookmark:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* ==========================================================================
   AZARAR 2.0 DESIGN SYSTEM & HIGH-FIDELITY LAYOUT (MATCHING REFERENCE IMAGE)
   ========================================================================== */
.az-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(7, 10, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.az-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-topbar-btn-menu {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(16, 24, 48, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-topbar-btn-menu:hover {
  border-color: #38bdf8;
  background: rgba(59, 130, 246, 0.15);
}

.az-topbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 40%, #8b5cf6 75%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.az-topbar-btn-bell {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(16, 24, 48, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.az-topbar-btn-bell:hover {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.15);
}

.az-bell-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #f43f5e;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #070a14;
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.8);
}

.tab-radar {
  width: 100% !important;
  height: 100% !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: 0 !important;
}

.tab-radar.active {
  display: block !important;
}

.tab-radar:not(.active) {
  display: none !important;
}

.az-dashboard-grid {
  display: grid !important;
  grid-template-columns: 0.99fr 1.6fr !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 8px 8px 90px !important;
  box-sizing: border-box !important;
  align-items: start !important;
}

.az-col-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.az-col-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.az-card {
  width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(13, 20, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 14px;
  padding: 8px 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}

.az-card:hover {
  border-color: rgba(59, 130, 246, 0.28);
}

.az-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.az-card-title-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.az-card-title-text {
  font-size: 9.5px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.az-col-right .az-card-title-text {
  font-size: 11px;
  letter-spacing: 0.6px;
}

/* ==========================================================================
   LEFT COLUMN (PROPORTION 0.99fr & ENHANCED FONTS)
   ========================================================================== */

/* 1. Profile Card */
.az-profile-card {
  padding: 6px !important;
}

.az-profile-photo-wrap {
  position: relative;
  width: 100%;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f172a;
}

.az-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.az-btn-photo-edit {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 20, 40, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.az-btn-photo-edit:hover {
  background: #ec4899;
  border-color: #ec4899;
}

.az-verified-pill {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2.5px 6px;
  border-radius: 999px;
  background: rgba(10, 25, 20, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.az-profile-info-body {
  padding: 6px 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.az-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.az-profile-name {
  font-size: 13.5px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.az-blue-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.az-profile-occupation {
  font-size: 9px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.az-profile-bio-quote {
  font-size: 8.5px;
  color: #cbd5e1;
  line-height: 1.35;
  margin-top: 2px;
}

/* 2. Radar Card */
.az-radar-card {
  padding: 7px 6px !important;
}

.az-radius-pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 2.5px 6px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.45);
  color: #c084fc;
  font-size: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-radius-pill-badge:hover {
  background: rgba(139, 92, 246, 0.35);
  color: #ffffff;
}

.az-radar-scope-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
}

.az-radar-scope-circle {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, rgba(16, 32, 68, 0.55) 0%, rgba(7, 12, 26, 0.98) 75%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15), inset 0 0 16px rgba(59, 130, 246, 0.1);
  overflow: hidden;
}

.az-radar-cross-h {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(59, 130, 246, 0.18);
}

.az-radar-cross-v {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(59, 130, 246, 0.18);
}

.az-scope-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.az-ring-1 { width: 31px; height: 31px; }
.az-ring-2 { width: 62px; height: 62px; }
.az-ring-3 { width: 93px; height: 93px; }
.az-ring-4 { width: 120px; height: 120px; }

.az-radar-center-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.az-core-glow-pulse {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.4);
  animation: corePulse 2s infinite ease-out;
}

@keyframes corePulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.az-core-dot {
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 7px #38bdf8;
}

.az-radar-sweep-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(236, 72, 153, 0.1) 320deg, rgba(56, 189, 248, 0.4) 360deg);
  animation: radarSpin 4s linear infinite;
  pointer-events: none;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* GPS Recalibrate Button */
.az-gps-recalibrate-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.az-gps-recalibrate-btn:hover {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  transform: rotate(45deg);
}

/* Proximity Checkin Alert Banner */
.az-proximity-alert {
  margin: 6px 4px 4px;
  padding: 6px 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 26, 114, 0.22), rgba(139, 92, 246, 0.25));
  border: 1px solid rgba(255, 26, 114, 0.5);
  box-shadow: 0 0 12px rgba(255, 26, 114, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulseNeonBorder 2s infinite ease-in-out;
}
.az-proximity-icon {
  font-size: 16px;
  animation: bounceGps 1.5s infinite;
}
.az-proximity-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.az-proximity-info strong {
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.az-proximity-info span {
  font-size: 7.5px;
  color: #e2e8f0;
}
.az-btn-quick-checkin {
  background: linear-gradient(135deg, #ff1a72, #ec4899);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(255, 26, 114, 0.4);
}
.az-btn-quick-checkin:hover {
  transform: scale(1.04);
  box-shadow: 0 3px 12px rgba(255, 26, 114, 0.6);
}

/* Radar Controls Panel */
.az-radar-controls-panel {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.az-gps-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  font-size: 7.5px;
}
.az-gps-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #38bdf8;
  font-weight: 700;
}
.az-gps-pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulseDot 1.5s infinite;
}
.az-gps-coords-preview {
  color: #94a3b8;
  font-size: 7px;
}
.az-radius-chips-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}
.az-radius-chips-bar::-webkit-scrollbar { display: none; }
.az-radius-chip {
  flex: 1;
  padding: 3px 2px;
  font-size: 7.5px;
  font-weight: 700;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.az-radius-chip:hover {
  border-color: rgba(255, 26, 114, 0.5);
  color: #fff;
}
.az-radius-chip.active {
  background: linear-gradient(135deg, rgba(255, 26, 114, 0.28), rgba(236, 72, 153, 0.2));
  border-color: #ff1a72;
  color: #ff5294;
  box-shadow: 0 0 8px rgba(255, 26, 114, 0.3);
}

@keyframes pulseNeonBorder {
  0%, 100% { border-color: rgba(255, 26, 114, 0.5); box-shadow: 0 0 10px rgba(255, 26, 114, 0.2); }
  50% { border-color: rgba(56, 189, 248, 0.7); box-shadow: 0 0 16px rgba(56, 189, 248, 0.35); }
}

@keyframes bounceGps {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* 3. Nearby List */
.az-nearby-card {
  padding: 7px 6px !important;
}

.az-nearby-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.az-nearby-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(16, 24, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-nearby-row:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(2px);
}

.az-nearby-avatar-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.az-nearby-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.az-nearby-green-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  border: 1px solid #0d1428;
}

.az-nearby-info {
  flex: 1;
  min-width: 0;
}

.az-nearby-name {
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.az-status-dot.green { color: #22c55e; font-size: 5.5px; }
.az-status-dot.pink { color: #ec4899; font-size: 5.5px; }
.az-status-dot.cyan { color: #38bdf8; font-size: 5.5px; }

.az-status-text {
  font-size: 8px;
  font-weight: 600;
  color: #94a3b8;
}

.az-nearby-dist {
  font-size: 8px;
  font-weight: 700;
  color: #64748b;
  flex-shrink: 0;
}

/* ==========================================================================
   RIGHT COLUMN (ENLARGED & HIGH-LEGIBILITY FONTS)
   ========================================================================== */

/* 4. Hero Banner */
.az-banner-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px !important;
  background: linear-gradient(135deg, rgba(16, 24, 52, 0.95) 0%, rgba(38, 16, 52, 0.9) 100%);
  border: 1px solid rgba(236, 72, 153, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 0 16px rgba(236, 72, 153, 0.08);
}

.az-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.az-banner-sublabel {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  color: #94a3b8;
  text-transform: uppercase;
}

.az-banner-headline {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 2px 0 3px;
}

.az-pink-gradient-text {
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.az-banner-desc {
  font-size: 9.5px;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 6px;
}

.az-btn-turbo {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #f43f5e 100%);
  border: none;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(244, 63, 94, 0.45);
  transition: all 0.2s ease;
}

.az-btn-turbo:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.6);
}

.az-banner-art-wrap {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.az-neon-heart-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.az-heart-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.8));
}

.az-heart-pedestal {
  position: absolute;
  bottom: 2px;
  width: 38px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
}

/* 5. Stats 4-col Card */
.az-dropdown-pill {
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
  cursor: pointer;
}

.az-stats-4col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.az-stat-box {
  background: rgba(16, 24, 48, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 7px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5px;
}

.az-stat-icon-wrap {
  font-size: 14px;
  margin-bottom: 1px;
}

.az-stat-number {
  font-size: 14px;
  font-weight: 900;
  color: #ffffff;
}

.az-stat-label {
  font-size: 9px;
  font-weight: 700;
  color: #94a3b8;
}

.az-stat-growth {
  font-size: 8px;
  font-weight: 700;
  color: #22c55e;
}

.az-stat-growth.highlight {
  color: #22c55e;
}

/* 6. Sobre Você Card */
.az-btn-inline-edit {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 9.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-btn-inline-edit:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #38bdf8;
  color: #ffffff;
}

.az-about-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.az-about-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(16, 24, 48, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.az-about-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.az-about-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.az-about-k {
  font-size: 8.5px;
  font-weight: 600;
  color: #64748b;
}

.az-about-v {
  font-size: 10.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 7. Interesses Card */
.az-link-view-all {
  font-size: 9.5px;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}

.az-link-view-all:hover {
  color: #38bdf8;
}

.az-interests-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.az-interest-pill {
  padding: 4.5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #cbd5e1;
  font-size: 9.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.az-interest-pill:hover {
  border-color: #38bdf8;
  color: #ffffff;
  background: rgba(56, 189, 248, 0.12);
}

/* 8. Premium Card */
.az-premium-banner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px !important;
  background: linear-gradient(135deg, rgba(16, 24, 56, 0.95) 0%, rgba(32, 16, 56, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 0 16px rgba(139, 92, 246, 0.1);
}

.az-premium-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.az-premium-title-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.az-premium-title-text {
  font-size: 12px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
}

.az-premium-perks-list {
  list-style: none;
  padding: 0;
  margin: 2px 0 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.az-premium-perks-list li {
  font-size: 9px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.az-btn-activate-premium {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #8b5cf6 100%);
  border: none;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.45);
  transition: all 0.2s ease;
}

.az-btn-activate-premium:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.6);
}

.az-premium-art-wrap {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.az-neon-crown-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.az-crown-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
}

.az-crown-pedestal {
  position: absolute;
  bottom: 2px;
  width: 42px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.6) 0%, transparent 70%);
}

/* 9. Featured Carousel */
.az-featured-carousel {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.az-featured-item {
  flex: 0 0 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 2.5px;
  transition: transform 0.2s ease;
}

.az-featured-item:hover {
  transform: translateY(-1px);
}

.az-featured-img-wrap {
  width: 52px;
  height: 64px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: #111827;
}

.az-featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.az-featured-badge-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  border: 1px solid #070a14;
}

.az-featured-name {
  font-size: 9.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 54px;
}

.az-featured-status {
  font-size: 8.5px;
  font-weight: 700;
  color: #22c55e;
}

/* Floating Bottom Navigation Dock */
.az-floating-dock {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 480px;
  height: 60px;
  border-radius: 999px;
  background: rgba(10, 15, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(59, 130, 246, 0.12);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}

.az-dock-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 8px;
  border-radius: 12px;
}

.az-dock-btn:hover {
  color: #94a3b8;
}

.az-dock-btn.active {
  color: #38bdf8;
}

.az-dock-label {
  font-size: 9.5px;
  font-weight: 700;
}

.az-dock-center-fab-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-fab-lightning-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #f43f5e 100%);
  border: 3px solid rgba(10, 15, 32, 0.95);
  box-shadow: 0 0 18px rgba(244, 63, 94, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-8px);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.az-fab-lightning-btn:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 24px rgba(244, 63, 94, 0.9);
}

.az-dock-unread-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f43f5e;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #0a0f20;
}

/* ==========================================================================
   AZARAR SIDE MENU DRAWER (HAMBURGER ☰)
   ========================================================================== */
.az-side-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 4, 7, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.az-side-drawer {
  position: fixed;
  top: 0;
  right: 0 !important;
  left: auto !important;
  bottom: 0;
  width: 300px;
  max-width: 86vw;
  background: linear-gradient(180deg, #0d1224 0%, #060813 100%);
  border-left: 1px solid rgba(236, 72, 153, 0.35);
  border-right: none;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.85);
  z-index: 9995;
  transform: translateX(100%) !important;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-sizing: border-box;
}

.az-side-drawer.active {
  transform: translateX(0) !important;
}

/* Logout Button In Drawer */
.az-drawer-item-logout {
  color: #f43f5e !important;
  border: 1px solid rgba(244, 63, 94, 0.25) !important;
  background: rgba(244, 63, 94, 0.08) !important;
  margin-top: 6px;
  border-radius: 12px !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}

.az-drawer-item-logout:hover,
.az-drawer-item-logout:active {
  background: rgba(244, 63, 94, 0.22) !important;
  border-color: #f43f5e !important;
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.45) !important;
  color: #ffffff !important;
  transform: translateX(-3px) !important;
}

.az-drawer-item-logout .az-logout-text {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.az-drawer-header {
  padding: 20px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.az-drawer-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.az-drawer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #ec4899;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
  flex-shrink: 0;
}

.az-drawer-name {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 2px;
}

.az-drawer-handle {
  font-size: 11px;
  color: #94a3b8;
  display: block;
}

.az-drawer-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.az-drawer-close-btn:hover {
  background: #ec4899;
  border-color: #ec4899;
}

.az-drawer-nav {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.az-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}

.az-drawer-item:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #ffffff;
  transform: translateX(3px);
}

.az-drawer-item.active {
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  color: #ffffff;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.az-drawer-icon {
  font-size: 16px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.az-drawer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 10px;
}

.az-drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10.5px;
  color: #64748b;
  text-align: center;
}

/* ==========================================================================
   EDIT PROFILE MODAL (HIGH FIDELITY, CLEAN & ATTRACTIVE)
   ========================================================================== */
.az-edit-modal-sheet {
  max-width: 440px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #0e1428 0%, #060914 100%) !important;
  border: 1px solid rgba(236, 72, 153, 0.3) !important;
  border-radius: 20px !important;
  padding: 20px 18px 26px !important;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.9) !important;
}

.az-edit-header {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
}

.az-edit-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f43f5e, #ec4899);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.az-edit-title {
  font-size: 17px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 3px;
  letter-spacing: -0.3px;
}

.az-edit-subtitle {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
}

/* Photo Section */
.az-photo-upload-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.az-avatar-preview-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 2.5px solid #ec4899;
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.45);
  overflow: hidden;
  background: #0f172a;
}

.az-avatar-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.az-photo-actions-row {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

.az-btn-photo-action {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-btn-photo-action:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #38bdf8;
  transform: translateY(-1px);
}

.az-btn-photo-action.camera {
  border-color: rgba(236, 72, 153, 0.4);
}

.az-btn-photo-action.camera:hover {
  background: rgba(236, 72, 153, 0.2);
  border-color: #ec4899;
}

/* Form Inputs */
.az-edit-field {
  margin-bottom: 16px;
}

.az-field-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.az-form-input,
.az-form-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(16, 24, 48, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 10px;
  padding: 9px 12px;
  color: #ffffff;
  font-family: inherit;
  font-size: 12.5px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.az-form-input:focus,
.az-form-textarea:focus {
  border-color: #ec4899;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

/* Sections: SOU, ESTOU ACOMPANHADO, PROCURO POR */
.az-pref-section {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(16, 24, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.az-pref-section-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.az-pref-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.az-pref-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.az-pref-chip:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  color: #ffffff;
}

.az-pref-chip.active {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.25) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: #ec4899;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
}

/* Familiar Sub-Options Box */
.az-sub-options-box {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: fadeIn 0.2s ease;
}

.az-sub-options-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #c084fc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.az-sub-chips-row {
  display: flex;
  gap: 8px;
}

.az-sub-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(168, 85, 247, 0.45);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.az-sub-chip:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: #c084fc;
}

.az-sub-chip.active {
  background: rgba(168, 85, 247, 0.35);
  border: 1px solid #c084fc;
  color: #ffffff;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

/* Save Button */
.az-btn-save-profile {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
  border: none;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(244, 63, 94, 0.5);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.az-btn-save-profile:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(244, 63, 94, 0.7);
}


/* ==========================================================================
   MODAL: COMO IR ATÉ O LOCAL (UBER, 99, WAZE, GOOGLE MAPS)
   ========================================================================== */
.az-ride-modal-sheet {
  background: linear-gradient(180deg, #180829 0%, #0c0214 100%) !important;
  border-top: 1px solid rgba(255, 42, 122, 0.35) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px 24px 0 0 !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 42, 122, 0.2) !important;
  padding: 22px 20px calc(var(--safe-bottom) + 20px) !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.az-ride-modal-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.az-ride-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ff2a7a;
  background: rgba(255, 42, 122, 0.15);
  border: 1px solid rgba(255, 42, 122, 0.3);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.az-ride-modal-title {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.az-ride-modal-address {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.az-ride-groups-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.az-ride-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.az-ride-group-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #cbd5e1;
  text-transform: uppercase;
}

.az-ride-group-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.az-ride-option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.az-ride-option-btn:hover, .az-ride-option-btn:active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.az-ride-option-btn.uber:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.az-ride-option-btn.app99:hover {
  border-color: #ffd100;
  box-shadow: 0 4px 16px rgba(255, 209, 0, 0.25);
}

.az-ride-option-btn.waze:hover {
  border-color: #38bdf8;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.25);
}

.az-ride-option-btn.gmaps:hover {
  border-color: #34d399;
  box-shadow: 0 4px 16px rgba(52, 211, 153, 0.25);
}

.az-ride-app-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.az-ride-app-icon.uber {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-ride-app-icon.app99 {
  background: #ffd100;
  color: #1a1100;
}

.az-ride-app-icon.waze {
  background: #33ccff;
}

.az-ride-app-icon.gmaps {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.az-ride-btn-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.az-ride-btn-info strong {
  font-size: 13.5px;
  font-weight: 800;
  color: #ffffff;
}

.az-ride-btn-info span {
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.az-ride-action-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

.az-ride-action-tag.uber {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-ride-action-tag.app99 {
  background: rgba(255, 209, 0, 0.15);
  color: #ffd100;
  border: 1px solid rgba(255, 209, 0, 0.35);
}

.az-ride-action-tag.waze {
  background: rgba(51, 204, 255, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(51, 204, 255, 0.35);
}

.az-ride-action-tag.gmaps {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.az-btn-copy-address {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.az-btn-copy-address:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   SHOWCASE RIDE OPTIONS BOX (IN VENUE SHOWCASE DETAILS)
   ========================================================================== */
.showcase-ride-options-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.showcase-ride-box-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.showcase-ride-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.showcase-ride-copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.showcase-ride-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.showcase-ride-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.showcase-ride-card:hover, .showcase-ride-card:active {
  transform: translateY(-1px);
}

.showcase-ride-card.uber:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.showcase-ride-card.app99:hover {
  border-color: rgba(255, 209, 0, 0.45);
  background: rgba(255, 209, 0, 0.08);
}

.showcase-ride-card.waze:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.08);
}

.showcase-ride-card.gmaps:hover {
  border-color: rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.08);
}

.showcase-ride-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.showcase-ride-icon.uber {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-ride-icon.app99 {
  background: #ffd100;
}

.showcase-ride-icon.waze {
  background: #33ccff;
}

.showcase-ride-icon.gmaps {
  background: #fff;
}

.showcase-ride-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.showcase-ride-meta strong {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.showcase-ride-meta span {
  font-size: 9.5px;
  color: #94a3b8;
  line-height: 1.2;
}

.showcase-ride-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 5px;
  white-space: nowrap;
}

.showcase-ride-badge.uber {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.showcase-ride-badge.app99 {
  background: rgba(255, 209, 0, 0.18);
  color: #ffd100;
}

.showcase-ride-badge.waze {
  background: rgba(51, 204, 255, 0.18);
  color: #38bdf8;
}

.showcase-ride-badge.gmaps {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

/* ==========================================================================
   B2B VENUE SYSTEM: KEBAB MENU, ONBOARDING (1-5 STARS), AND SEARCH PIPELINE
   ========================================================================== */
.az-topbar-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-topbar-btn-kebab {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(16, 24, 48, 0.8);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.az-topbar-btn-kebab:hover {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.az-kebab-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.az-kebab-backdrop.active {
  display: block;
}

.az-kebab-menu-dropdown {
  position: fixed;
  top: 56px;
  right: 12px;
  width: 290px;
  max-width: calc(100vw - 24px);
  background: rgba(13, 17, 34, 0.96);
  border: 1px solid rgba(236, 72, 153, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), 0 0 20px rgba(236, 72, 153, 0.25);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: azKebabDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-kebab-menu-dropdown.active {
  display: flex;
}

@keyframes azKebabDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.az-kebab-menu-header {
  padding: 10px 14px 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.az-kebab-menu-items {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 80vh;
  overflow-y: auto;
}

.az-kebab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s ease;
  width: 100%;
}

.az-kebab-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.az-kebab-item.highlight-b2b {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.az-kebab-item.highlight-b2b:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%);
  border-color: #f59e0b;
}

.az-kebab-item.highlight-search {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.az-kebab-item.highlight-search:hover {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
  border-color: #38bdf8;
}

.az-kebab-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.az-kebab-item-icon.b2b {
  background: rgba(245, 158, 11, 0.25);
}

.az-kebab-item-icon.search {
  background: rgba(56, 189, 248, 0.25);
}

.az-kebab-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.az-kebab-item-info strong {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
}

.az-kebab-item-info span {
  font-size: 10.5px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.az-kebab-badge-b2b {
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  background: #f59e0b;
  color: #1a1100;
  letter-spacing: 0.5px;
}

.az-kebab-badge-search {
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  background: #38bdf8;
  color: #032030;
  letter-spacing: 0.5px;
}

.az-kebab-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 4px 6px;
}

.az-drawer-section-label {
  padding: 8px 16px 4px;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #94a3b8;
  text-transform: uppercase;
}

.az-drawer-item.b2b-gold {
  border-left: 3px solid #f59e0b;
}

.az-drawer-tag-b2b {
  margin-left: auto;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Modal 1: Register Venue B2B Sheet */
.az-b2b-modal-sheet {
  background: linear-gradient(180deg, #130722 0%, #080210 100%) !important;
  border-top: 1px solid rgba(245, 158, 11, 0.4) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 24px 24px 0 0 !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.2) !important;
  padding: 22px 20px calc(var(--safe-bottom) + 20px) !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.az-b2b-modal-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.az-b2b-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.az-b2b-title {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.3px;
}

.az-b2b-subtitle {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.az-b2b-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.az-b2b-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 14px;
}

.az-b2b-section-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.az-b2b-section-hint {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
}

.az-b2b-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Star Plans Grid (1 to 5 Stars) */
.az-b2b-star-plans-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.az-star-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.az-star-plan-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 158, 11, 0.4);
}

.az-star-plan-card.active {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.25);
}

.az-star-plan-card.is-vip-platinum.active {
  background: rgba(168, 85, 247, 0.12);
  border-color: #c084fc;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35);
}

.az-plan-popular-tag {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #f59e0b;
  color: #1a1100;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.az-plan-vip-tag {
  position: absolute;
  top: -8px;
  right: 12px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

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

.az-plan-stars {
  font-size: 14px;
  font-weight: 900;
  color: #fde047;
}

.az-plan-price {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
}

.az-plan-price small {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.az-plan-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #cbd5e1;
}

.az-plan-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Billing cycles */
.az-billing-cycles-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.az-billing-cycle-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  user-select: none;
}

.az-billing-cycle-card input {
  display: none;
}

.az-billing-cycle-card:has(input:checked) {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.az-cycle-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}

.az-cycle-content strong {
  font-size: 12px;
  color: #ffffff;
}

.az-cycle-content span {
  font-size: 9.5px;
  color: #94a3b8;
}

.az-cycle-content em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #38bdf8;
  margin-top: 3px;
}

.az-cycle-discount-pill {
  position: absolute;
  top: -7px;
  background: #10b981;
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 4px;
}

.az-cycle-discount-pill.highlight {
  background: #f43f5e;
}

/* Warning box for billing expiration */
.az-b2b-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-top: 4px;
}

.az-warning-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.az-warning-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
  line-height: 1.4;
  color: #e2e8f0;
}

.az-warning-text strong {
  color: #f59e0b;
}

/* Virtual Card Preview */
.az-virtual-card-preview {
  position: relative;
  height: 140px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e1b4b 0%, #311042 50%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}

.az-vcard-chip {
  width: 32px;
  height: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, #ffd700, #b8860b);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.az-vcard-brand {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #ffffff;
}

.az-vcard-number {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.az-vcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.az-vcard-footer small {
  display: block;
  font-size: 8px;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.az-vcard-footer strong {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Media Notice Banner */
.az-b2b-notice-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px dashed rgba(56, 189, 248, 0.35);
  font-size: 11px;
  color: #e0f2fe;
  line-height: 1.35;
}

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

.az-b2b-quota-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fde047;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.az-b2b-media-slots-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.az-b2b-slot-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.az-b2b-slot-label {
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.az-b2b-slots-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
}

.az-b2b-slot-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1.5px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.az-b2b-slot-card:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
}

.az-b2b-slot-card.has-media {
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3);
}

.az-b2b-slot-card img, .az-b2b-slot-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-b2b-slot-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 8px;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

/* Submit button */
.az-btn-submit-b2b {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
  border: none;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
}

.az-btn-submit-b2b:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.6);
}

/* Modal 2: Registered Venues Search Sheet */
.az-registered-venues-sheet {
  background: linear-gradient(180deg, #10061e 0%, #06020c 100%) !important;
  border-top: 1px solid rgba(56, 189, 248, 0.4) !important;
  border-radius: 24px 24px 0 0 !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(56, 189, 248, 0.2) !important;
  padding: 22px 20px calc(var(--safe-bottom) + 20px) !important;
  max-height: 92vh !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.az-venues-search-header {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.az-venues-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 2px;
}

.az-venues-title {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.az-venues-subtitle {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

/* Algorithm Sorting Pipeline Box */
.az-algorithm-sort-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.az-algorithm-box-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.az-algorithm-label {
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.az-algorithm-hint {
  font-size: 10.5px;
  color: #94a3b8;
}

.az-priority-order-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}

.az-priority-slot {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.az-priority-num {
  font-size: 9.5px;
  font-weight: 900;
  color: #38bdf8;
  text-transform: uppercase;
}

.az-priority-select {
  width: 100%;
  height: 36px;
  background: rgba(16, 24, 48, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 10px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 0 8px;
  outline: none;
  cursor: pointer;
}

.az-priority-arrow {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 900;
}

.az-quick-order-presets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.az-order-preset-btn {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.15s ease;
}

.az-order-preset-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #ffffff;
}

.az-order-preset-btn.active {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
  color: #ffffff;
  font-weight: 800;
}

/* Toolbar search and radius */
.az-venues-filter-toolbar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.az-search-input-wrap svg {
  position: absolute;
  left: 12px;
}

.az-venues-search-input {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 12px 0 36px;
  color: #ffffff;
  font-size: 12px;
  outline: none;
}

.az-venues-search-input:focus {
  border-color: #38bdf8;
}

.az-radius-pills-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
}

.az-radius-pill-btn {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}

.az-radius-pill-btn:hover, .az-radius-pill-btn.active {
  background: rgba(56, 189, 248, 0.25);
  border-color: #38bdf8;
  color: #ffffff;
}

/* Venue Results Cards (Exact Match to Audio Specification) */
.az-registered-venues-results-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}

.az-b2b-venue-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.az-b2b-venue-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.az-b2b-card-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.az-b2b-card-left-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

/* Name in pure white */
.az-b2b-venue-name {
  font-size: 15px;
  font-weight: 900;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.2;
}

.az-b2b-venue-address {
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.3;
}

.az-b2b-meta-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.az-b2b-people-badge {
  font-size: 10.5px;
  font-weight: 800;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.3);
  padding: 2px 7px;
  border-radius: 6px;
}

.az-b2b-dist-badge {
  font-size: 10.5px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 2px 7px;
  border-radius: 6px;
}

/* Top Right Stars */
.az-b2b-card-right-stars {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.az-b2b-stars-row {
  font-size: 13px;
  color: #fde047;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(253, 224, 71, 0.5);
}

.az-b2b-stars-label {
  font-size: 9.5px;
  font-weight: 800;
  color: #cbd5e1;
}

/* Media Carousel in Venue Card */
.az-b2b-media-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 6px;
  -webkit-overflow-scrolling: touch;
}

.az-b2b-media-item {
  position: relative;
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.az-b2b-media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-b2b-media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-b2b-media-type-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
}

.az-b2b-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
}

/* Card bottom actions */
.az-b2b-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.az-b2b-edit-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 10.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.az-b2b-edit-media-btn:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: #38bdf8;
  color: #ffffff;
}

/* Edit Venue Media Modal */
.az-edit-media-sheet {
  background: linear-gradient(180deg, #140726 0%, #07020e 100%) !important;
  border-top: 1px solid rgba(236, 72, 153, 0.4) !important;
  border-radius: 24px 24px 0 0 !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85) !important;
  padding: 22px 20px calc(var(--safe-bottom) + 20px) !important;
  max-height: 88vh !important;
  overflow-y: auto !important;
}

.az-edit-media-slots-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
