@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
    /* Color Palette */
    --rose-quartz: #FFB7B2;
    --rose-light: #FFDFDE;
    --crimson: #D90429;
    --crimson-dark: #A3001C;
    --cream: #FFFDF9;
    --charcoal: #2B2D42;
    --gray: #8D99AE;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Layout */
    --max-width: 480px;
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Outfit', sans-serif; background-color: var(--cream);
    color: var(--charcoal); line-height: 1.5; overflow-x: hidden;
    display: flex; justify-content: center; min-height: 100vh;
}

/* Utilities */
.hidden { display: none !important; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-col { flex-direction: column; }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-4 { margin-top: var(--spacing-md); }
.mt-6 { margin-top: var(--spacing-lg); }
.mt-8 { margin-top: var(--spacing-xl); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-4 { margin-bottom: var(--spacing-md); }
.mb-6 { margin-bottom: var(--spacing-lg); }
.mb-8 { margin-bottom: var(--spacing-xl); }
.p-4 { padding: var(--spacing-md); }
.p-8 { padding: var(--spacing-xl); }
.pb-24 { padding-bottom: 96px; } 
.w-full { width: 100%; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-gray { color: var(--gray); }
.text-rose { color: var(--rose-quartz); }
.text-white { color: white; }
.font-bold { font-weight: 700; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.opacity-50 { opacity: 0.5; }

/* Main App Wrapper */
.screen {
    width: 100%; max-width: var(--max-width); height: 100vh; height: 100dvh;
    background-color: var(--cream); position: relative; overflow: hidden; box-shadow: 0 0 40px rgba(0,0,0,0.05);
}
#main-app { display: flex; flex-direction: column; }

/* Splash & Login Screens */
#splash-screen { background: var(--cream); padding: var(--spacing-xl); }
.splash-logo { width: 150px; height: auto; animation: pulse 2s infinite ease-in-out; filter: drop-shadow(0 10px 20px rgba(217, 4, 41, 0.2)); }
.heart-pulse { width: 80px; height: 80px; background-color: var(--crimson); border-radius: 50%; margin-bottom: var(--spacing-lg); box-shadow: 0 0 30px rgba(217, 4, 41, 0.4); animation: pulse 2s infinite ease-in-out; position: relative; }
.heart-pulse::after { content: 'favorite'; font-family: 'Material Icons Round'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 40px; }
@keyframes pulse { 0% { transform: scale(1); filter: drop-shadow(0 10px 20px rgba(217, 4, 41, 0.2)); } 50% { transform: scale(1.05); filter: drop-shadow(0 15px 30px rgba(217, 4, 41, 0.4)); } 100% { transform: scale(1); filter: drop-shadow(0 10px 20px rgba(217, 4, 41, 0.2)); } }
.brand-title { font-size: 3rem; font-weight: 700; color: var(--crimson); margin-bottom: var(--spacing-xs); letter-spacing: -1px; }
.brand-subtitle { font-size: 1.1rem; color: var(--charcoal); text-align: center; font-weight: 300; margin-bottom: var(--spacing-xl); }
.regional-warning { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); padding: var(--spacing-md); border-radius: var(--radius-md); display: flex; align-items: center; gap: var(--spacing-sm); text-align: left; font-size: 0.9rem; }
.loader { border: 4px solid var(--rose-light); border-top: 4px solid var(--crimson); border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

#login-screen { background: var(--cream); display: flex; flex-direction: column; }
.login-header { padding: var(--spacing-xl) var(--spacing-xl) var(--spacing-md); background: linear-gradient(to bottom, var(--rose-light), var(--cream)); text-align: center; }
.login-logo { width: 80px; height: auto; margin: 0 auto; display: block; }
.login-header h2 { font-size: 2rem; color: var(--crimson); margin-top: 10px; }
.login-header p { color: var(--gray); font-size: 1rem; }

/* Buttons */
.btn-primary {
    background-color: var(--crimson); color: white; border: none; padding: 16px 24px; border-radius: var(--radius-lg); font-size: 1.1rem;
    font-weight: 600; font-family: 'Outfit', sans-serif; cursor: pointer; transition: var(--transition); display: flex; justify-content: center;
    align-items: center; gap: 8px; box-shadow: 0 10px 20px rgba(217, 4, 41, 0.2);
}
.btn-primary:active { transform: scale(0.97); box-shadow: 0 5px 10px rgba(217, 4, 41, 0.2); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid #E2E8F0; padding: 16px 24px; border-radius: var(--radius-lg); font-size: 1.1rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: var(--transition); }
.btn-outline:active { background: var(--rose-light); transform: scale(0.97); }
.icon-btn { background: transparent; border: none; color: var(--charcoal); width: 44px; height: 44px; border-radius: 50%; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: var(--transition); }
.icon-btn:active { background-color: var(--rose-light); transform: scale(0.95); }

/* App Header */
.app-header { display: flex; justify-content: space-between; align-items: center; padding: var(--spacing-md) var(--spacing-lg); background: rgba(255, 253, 249, 0.9); backdrop-filter: blur(20px); position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(0,0,0,0.03); }
.nav-logo { height: 32px; width: auto; }
.header-logo { font-weight: 700; color: var(--crimson); font-size: 1.5rem; }

/* Content Areas */
.content-area { flex: 1; overflow-y: auto; display: none; }
.content-area.view-active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Homepage Enhancements */
.hp-section { padding: 0 var(--spacing-md); }
.hp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--spacing-md); }
.hp-header h3 { font-size: 1.2rem; letter-spacing: -0.3px; }
.hp-header .btn-outline { font-size: 0.75rem; padding: 6px 14px; border-radius: 20px; font-weight: 600; }

.horizontal-scroll {
    display: flex; gap: var(--spacing-md); overflow-x: auto; padding-bottom: var(--spacing-sm);
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.horizontal-scroll::-webkit-scrollbar { display: none; }
.service-card {
    min-width: 140px; background: white; padding: var(--spacing-md); border-radius: var(--radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); flex-shrink: 0; scroll-snap-align: start; text-align: center;
}
.service-card .material-icons-round { font-size: 2rem; color: var(--crimson); margin-bottom: 8px; }
.service-card h4 { font-size: 1rem; margin-bottom: 4px; }
.service-card p { font-size: 0.75rem; color: var(--gray); line-height: 1.2; }

/* Homepage Stats Strip */
.hp-stats-strip {
    display: flex; justify-content: space-around; padding: 20px var(--spacing-md);
    background: white; border-radius: var(--radius-lg); margin: 0 var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03);
}
.hp-stat { text-align: center; }
.hp-stat .stat-num { font-size: 1.5rem; font-weight: 700; color: var(--crimson); line-height: 1; }
.hp-stat .stat-label { font-size: 0.7rem; color: var(--gray); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }

/* Homepage How It Works */
.hp-how-it-works {
    display: flex; gap: var(--spacing-md); padding: 0 var(--spacing-md);
}
.hiw-step {
    flex: 1; text-align: center; padding: var(--spacing-md) var(--spacing-sm);
    background: white; border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.04);
}
.hiw-step .hiw-icon {
    width: 44px; height: 44px; border-radius: 50%; display: flex; justify-content: center;
    align-items: center; margin: 0 auto var(--spacing-sm); font-size: 1.3rem;
}
.hiw-step h5 { font-size: 0.85rem; margin-bottom: 2px; }
.hiw-step p { font-size: 0.7rem; line-height: 1.3; }

/* Homepage Trust Section */
.hp-trust-row {
    display: flex; gap: var(--spacing-sm); padding: 0 var(--spacing-md); flex-wrap: wrap;
}
.trust-badge {
    flex: 1; min-width: calc(50% - 4px); background: white; padding: 12px; border-radius: var(--radius-md);
    display: flex; align-items: center; gap: var(--spacing-sm); border: 1px solid rgba(0,0,0,0.04);
    font-size: 0.8rem; font-weight: 600; color: var(--charcoal);
}
.trust-badge .material-icons-round { font-size: 1.3rem; color: var(--crimson); }

.subscription-banner {
    background: linear-gradient(135deg, var(--crimson), #FF4D6D); color: white; padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 20px rgba(217, 4, 41, 0.2);
}
.sub-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.sub-info p { font-size: 0.85rem; opacity: 0.9; }

.quick-links { display: flex; gap: var(--spacing-sm); }
.quick-btn {
    flex: 1; background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-md); padding: 12px;
    font-size: 0.85rem; font-weight: 600; color: var(--charcoal); display: flex; align-items: center; justify-content: center; gap: 6px; cursor: pointer; transition: var(--transition);
}
.quick-btn .material-icons-round { font-size: 1.1rem; }
.quick-btn:active { background: var(--rose-light); transform: scale(0.97); }

.feed-divider { border: none; border-top: 1px solid rgba(0,0,0,0.05); margin: var(--spacing-lg) 0; }
.feed-title { padding: 0 var(--spacing-md); font-size: 1.25rem; margin-bottom: var(--spacing-md); }

/* Discover Section Header */
.discover-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-sm);
}
.discover-header h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.5px; margin: 0; }

/* Feed Stack — 2 Column Grid */
.feed-stack {
    padding: 0 var(--spacing-md); padding-bottom: 100px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

/* Companion Card — Overlay Style */
.companion-card {
    background: white; border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06); transition: var(--transition);
    cursor: pointer; position: relative;
}
.companion-card:active { transform: scale(0.97); }
.card-image-wrap { width: 100%; height: 260px; background-color: #f0f0f0; overflow: hidden; position: relative; }
.card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.companion-card:active .card-image { transform: scale(1.03); }

/* Gradient overlay on image for text readability */
.card-image-wrap::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
    pointer-events: none;
}

/* Price Pill Overlay on image */
.card-price-pill {
    position: absolute; top: 10px; right: 10px; z-index: 2;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    color: white; padding: 6px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2px;
}

/* Overlay info on image bottom */
.card-overlay-info {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 16px; color: white;
}
.card-overlay-info .card-name { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 2px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.card-overlay-info .card-location { color: rgba(255,255,255,0.9); font-size: 0.8rem; margin-bottom: 0; text-shadow: 0 1px 5px rgba(0,0,0,0.6); }
.card-overlay-info .card-location .material-icons-round { font-size: 0.9rem; }

.card-info { padding: 12px 16px; background: white; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.card-tier { 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    display: inline-block;
}
.card-tier.Standard { 
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%); 
    color: #334155; 
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    box-shadow: 0 4px 10px rgba(148,163,184,0.3);
    border: 1px solid #ffffff;
}
.card-tier.Premium { 
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); 
    color: #ffffff; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(99,102,241,0.4);
    border: 1px solid #818cf8;
}
.card-tier.Luxury { 
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); 
    color: #ffffff; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(245,158,11,0.4);
    border: 1px solid #fde68a;
}
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.tag { background: var(--cream); border: 1px solid var(--rose-light); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; color: var(--charcoal); }

/* Inline Expansion Styles */
.card-expandable-content {
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    border-top: 1px solid transparent;
}
.companion-card.expanded .card-expandable-content {
    max-height: 400px; opacity: 1; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.companion-card.expanded .btn-book-options { display: none; }
.expanded-bio { font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-bottom: 16px; }

/* FEATURE 4: Blind Date Blur Effect */
.blur-active .card-image { filter: blur(30px); transition: filter 60s linear; }

/* Modals & Forms */
.modal-drawer { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 100; display: flex; align-items: flex-end; justify-content: center; opacity: 1; transition: opacity 0.3s; }
.modal-drawer.hidden { opacity: 0; pointer-events: none; }
.drawer-content { width: 100%; max-width: var(--max-width); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-radius: 32px 32px 0 0; padding: var(--spacing-xl) var(--spacing-lg); transform: translateY(0); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 -10px 40px rgba(0,0,0,0.1); max-height: 90vh; overflow-y: auto; }
.modal-drawer.hidden .drawer-content { transform: translateY(100%); }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--spacing-lg); }

.input-group { margin-bottom: var(--spacing-lg); }
.input-group label { display: block; font-weight: 600; margin-bottom: var(--spacing-sm); font-size: 0.95rem; }
.input-group input, .input-group textarea, .custom-select { width: 100%; padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid #E2E8F0; background: white; font-family: inherit; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.input-group input:focus, .input-group textarea:focus, .custom-select:focus { border-color: var(--crimson); }
.custom-select { appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }

.filter-group { margin-bottom: var(--spacing-lg); }
.filter-group label { display: block; font-weight: 600; margin-bottom: var(--spacing-sm); font-size: 0.95rem; }
.chip-group { display: flex; flex-wrap: wrap; gap: var(--spacing-sm); }
.chip { padding: 8px 16px; border-radius: 20px; border: 1px solid var(--rose-light); background: white; color: var(--charcoal); font-family: inherit; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.chip.active { background: var(--crimson); color: white; border-color: var(--crimson); }

/* Sub Views */
.sub-view { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--cream); z-index: 50; display: flex; flex-direction: column; overflow: hidden; transform: translateY(0); transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1); }
.drawer-content { flex: 1; overflow-y: auto; }
.sub-view.hidden { display: block !important; transform: translateY(100%); pointer-events: none; }
.back-btn { position: absolute; top: var(--spacing-md); left: var(--spacing-md); width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.6); display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 60; color: var(--charcoal); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.back-btn:active { transform: scale(0.92); }

/* Profile View */
.profile-hero { position: relative; height: 450px; width: 100%; }
.profile-hero img { width: 100%; height: 100%; object-fit: cover; }
.haptic-hint { position: absolute; top: var(--spacing-md); right: var(--spacing-md); background: rgba(0,0,0,0.6); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; display: flex; align-items: center; gap: 4px; pointer-events: none; }
.pv-gradient { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.pv-header-info { position: absolute; bottom: var(--spacing-lg); left: var(--spacing-lg); color: white; }
.pv-header-info h2 { font-size: 2rem; font-weight: 700; }
.pv-header-info p { display: flex; align-items: center; gap: 4px; opacity: 0.9; }

.profile-body { padding: var(--spacing-lg) var(--spacing-lg) 120px; background: var(--cream); border-radius: 32px 32px 0 0; position: relative; margin-top: -32px; }
.pv-badges { display: flex; gap: var(--spacing-sm); margin-bottom: var(--spacing-md); flex-wrap: wrap; }
.badge { padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; background: white; border: 1px solid #E2E8F0; }
#pv-tier { 
    padding: 6px 16px; 
    border-radius: 20px; 
    font-size: 0.8rem; 
    font-weight: 800; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    display: inline-block;
}
#pv-tier.Standard { 
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%); 
    color: #334155; 
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
    box-shadow: 0 4px 10px rgba(148,163,184,0.3);
    border: 1px solid #ffffff;
}
#pv-tier.Premium { 
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); 
    color: #ffffff; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(99,102,241,0.4);
    border: 1px solid #818cf8;
}
#pv-tier.Luxury { 
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); 
    color: #ffffff; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: 0 4px 10px rgba(245,158,11,0.4);
    border: 1px solid #fde68a;
}

/* FEATURE 3: Social Battery */
.social-battery-box { background: white; border-radius: var(--radius-md); padding: var(--spacing-md); border: 1px solid #E2E8F0; }
.sb-header { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; font-weight: 600; }
.custom-range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; background: #E2E8F0; border-radius: 5px; outline: none; }
.custom-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--crimson); cursor: pointer; }

.pv-bio { font-size: 1.05rem; color: #4A5568; margin-bottom: var(--spacing-lg); }
.section-title { font-size: 1.1rem; font-weight: 600; margin-bottom: var(--spacing-sm); color: var(--charcoal); }
.chip-group.sm .chip { padding: 6px 12px; font-size: 0.8rem; pointer-events: none; }

/* Service Matrix */
.pricing-cards { display: flex; flex-direction: column; gap: var(--spacing-md); }
.price-card { background: white; border: 2px solid transparent; border-radius: var(--radius-lg); padding: var(--spacing-md); box-shadow: 0 4px 15px rgba(0,0,0,0.03); cursor: pointer; transition: var(--transition); }
.price-card.selected { border-color: var(--crimson); background: var(--rose-light); }
.price-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--spacing-xs); }
.price-header h5 { font-size: 1.1rem; display: flex; align-items: center; gap: 4px; }
.price-val { font-weight: 700; color: var(--crimson); font-size: 1.1rem; }
.price-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: var(--spacing-xs); }
.half-day { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }

h1, h2, h3, h4 { font-weight: 600; color: var(--charcoal); margin-bottom: var(--spacing-sm); }
.logo-text { font-family: 'Great Vibes', cursive; font-weight: 400; font-size: 1.2em; letter-spacing: 2px; }
p { color: var(--gray); font-size: 0.95rem; line-height: 1.5; }

.sticky-bottom-btn {
    padding: var(--spacing-md) var(--spacing-lg); background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,0,0,0.05); display: flex; gap: var(--spacing-sm); flex-shrink: 0; z-index: 10;
}
.sticky-bottom-btn .btn-primary { border-radius: 16px; font-size: 1rem; padding: 16px; width: 100%; box-shadow: 0 8px 20px rgba(217, 4, 41, 0.2); }

.booking-body { flex: 1; overflow-y: auto; position: relative; padding-bottom: 0 !important; display: flex; flex-direction: column; }
.booking-form-content { padding: var(--spacing-md); flex: 1; }
.simple-header {
    display: flex; align-items: center; justify-content: center; padding: var(--spacing-md);
    background: rgba(255, 253, 249, 0.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(0,0,0,0.04);
}
.simple-header h3 { font-size: 1.1rem; letter-spacing: -0.3px; margin: 0; }
.simple-header .back-btn { position: absolute; left: var(--spacing-md); top: 50%; transform: translateY(-50%); box-shadow: none; background: transparent; border: none; }
.simple-header .back-btn:active { background: var(--rose-light); }

.companion-mini-card {
    display: flex; align-items: center; gap: var(--spacing-md);
    background: white; padding: 12px var(--spacing-md); border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03);
}
.companion-mini-card img { width: 52px; height: 52px; border-radius: 16px; object-fit: cover; }
.companion-mini-card h4 { font-size: 1rem; margin-bottom: 0; }
.companion-mini-card p { font-size: 0.8rem; margin: 0; }
.time-slots { display: flex; gap: var(--spacing-sm); }
.slot-btn {
    flex: 1; padding: 12px 0; border: 1.5px solid #E2E8F0; background: white;
    border-radius: 14px; font-family: inherit; font-size: 0.85rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
}
.slot-btn.active { background: var(--charcoal); color: white; border-color: var(--charcoal); box-shadow: 0 4px 12px rgba(43,45,66,0.2); }

/* FEATURE 9: Drama Picker */
.drama-options { display: flex; flex-direction: column; gap: 8px; }
.drama-cb { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; cursor: pointer; }

/* Receipt-style invoice */
.invoice-box {
    background: white; border-radius: var(--radius-lg); padding: var(--spacing-lg);
    border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.invoice-box h4 { margin-bottom: var(--spacing-md); font-size: 1rem; letter-spacing: -0.3px; }
.invoice-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; color: #4A5568; }
.invoice-row span:last-child { font-weight: 600; color: var(--charcoal); }
.invoice-box hr { border: none; border-top: 1px dashed #E2E8F0; margin: var(--spacing-md) 0; }
.invoice-row.total { font-weight: 700; font-size: 1.25rem; color: var(--crimson); margin-bottom: 0; }

/* Activity View / Bookings */
.booking-card { background: white; padding: var(--spacing-md); border-radius: var(--radius-md); box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: var(--spacing-md); }
.bk-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--spacing-sm); border-bottom: 1px solid #f0f0f0; padding-bottom: var(--spacing-sm);}
.bk-status { background: #E0E7FF; color: #4338CA; padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.bk-details { display: flex; gap: var(--spacing-md); }
.bk-details img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; }
.bk-info h4 { margin-bottom: 4px; }
.bk-info p { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.bk-actions { display: flex; gap: var(--spacing-sm); margin-top: var(--spacing-md); }

/* Empty Booking State CTA */
.empty-booking-state { text-align: center; background: white; padding: var(--spacing-xl); border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.ebs-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--rose-light); color: var(--crimson); display: flex; justify-content: center; align-items: center; margin: 0 auto var(--spacing-md); }
.ebs-steps { text-align: left; margin-top: var(--spacing-lg); }
.step { display: flex; align-items: center; gap: 12px; margin-bottom: var(--spacing-sm); }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--charcoal); color: white; display: flex; justify-content: center; align-items: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.step p { font-size: 0.95rem; color: var(--charcoal); }

/* Booking Details Elements */
.bd-header { text-align: center; margin-bottom: var(--spacing-md); }
.bd-header img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: var(--spacing-sm); }
.bd-item { display: flex; flex-direction: column; margin-bottom: var(--spacing-md); }
.bd-item label { font-size: 0.85rem; color: var(--gray); margin-bottom: 4px; }
.bd-item p { font-size: 1rem; font-weight: 500; }
.bd-actions { display: flex; gap: var(--spacing-sm); }

/* User Profile Settings View */
.profile-summary { text-align: center; background: white; padding: var(--spacing-xl); border-radius: var(--radius-lg); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.user-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--rose-light); color: var(--crimson); display: flex; justify-content: center; align-items: center; margin: 0 auto; }
.settings-list { display: flex; flex-direction: column; gap: var(--spacing-sm); }
.setting-item { background: white; padding: var(--spacing-md); border-radius: var(--radius-md); display: flex; align-items: center; gap: var(--spacing-md); box-shadow: 0 2px 10px rgba(0,0,0,0.02); cursor: pointer; transition: var(--transition); }
.setting-item:active { transform: scale(0.98); background: var(--rose-light); }
.si-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--rose-light); color: var(--crimson); display: flex; justify-content: center; align-items: center; }
.si-info { flex: 1; }
.si-info h5 { font-size: 1rem; color: var(--charcoal); }
.si-info p { font-size: 0.85rem; color: var(--gray); }

/* Toggle Switch */
.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #CBD5E0; transition: .4s; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; }
input:checked + .slider { background-color: var(--crimson); }
input:focus + .slider { box-shadow: 0 0 1px var(--crimson); }
input:checked + .slider:before { transform: translateX(20px); }
.slider.round { border-radius: 24px; }
.slider.round:before { border-radius: 50%; }

/* Map Overlay */
.map-container { display: flex; flex-direction: column; height: 100%; background: #E2E8F0; position: relative; }
.mock-map { flex: 1; position: relative; overflow: hidden; background: #e0e6ed url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23cbd5e1" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); color: var(--crimson); font-size: 48px; animation: bounce 1s infinite alternate; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.map-pin .material-icons-round { font-size: 48px; }
@keyframes bounce { from { transform: translate(-50%, -100%); } to { transform: translate(-50%, -110%); } }
.map-info-card { position: absolute; bottom: 0; left: 0; width: 100%; background: white; padding: var(--spacing-xl) var(--spacing-lg); border-radius: 32px 32px 0 0; box-shadow: 0 -10px 40px rgba(0,0,0,0.1); text-align: center; z-index: 10; }

/* Chat View */
#chat-view { display: flex; flex-direction: column; }
.chat-header { display: flex; align-items: center; padding: var(--spacing-md); background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #E2E8F0; z-index: 10; }
.chat-header .back-btn { position: static; box-shadow: none; width: auto; background: transparent; margin-right: var(--spacing-sm); }
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-header-info img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.online-status { font-size: 0.75rem; color: #48BB78; display: flex; align-items: center; gap: 4px; }
.online-status::before { content: ''; width: 6px; height: 6px; background: #48BB78; border-radius: 50%; display: inline-block; }
.chat-messages { flex: 1; padding: var(--spacing-md); overflow-y: auto; display: flex; flex-direction: column; gap: var(--spacing-sm); background: #F7FAFC; }
.message { max-width: 80%; padding: 12px 16px; border-radius: 20px; font-size: 0.95rem; line-height: 1.4; position: relative; }
.msg-received { background: white; color: var(--charcoal); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
.msg-sent { background: var(--crimson); color: white; align-self: flex-end; border-bottom-right-radius: 4px; box-shadow: 0 2px 5px rgba(217,4,41,0.2); }
.msg-time { font-size: 0.7rem; opacity: 0.7; margin-top: 4px; text-align: right; display: block; }
.chat-input-area { padding: var(--spacing-md); background: white; border-top: 1px solid #E2E8F0; }
#chat-form { display: flex; gap: var(--spacing-sm); }
#chat-input { flex: 1; padding: 12px 16px; border-radius: 24px; border: 1px solid #E2E8F0; outline: none; font-family: inherit; font-size: 1rem; background: #F7FAFC; }
#chat-input:focus { border-color: var(--rose-quartz); }
.send-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--crimson); color: white; border: none; display: flex; justify-content: center; align-items: center; cursor: pointer; transition: var(--transition); }
.send-btn:active { transform: scale(0.95); }

/* Rules / Privacy */
.rules-content .warning-banner { background: var(--rose-light); color: var(--crimson-dark); padding: var(--spacing-md); border-radius: var(--radius-md); border-left: 4px solid var(--crimson); display: flex; gap: var(--spacing-sm); font-size: 0.9rem; font-weight: 500; }
.rule-card { background: white; padding: var(--spacing-md); border-radius: var(--radius-md); box-shadow: 0 4px 15px rgba(0,0,0,0.03); }
.do-card { border-top: 4px solid #48BB78; }
.dont-card { border-top: 4px solid var(--crimson); }
.rule-header { display: flex; align-items: center; gap: 8px; margin-bottom: var(--spacing-sm); }
.do-card .material-icons-round { color: #48BB78; }
.dont-card .material-icons-round { color: var(--crimson); }
.rule-card ul { padding-left: 20px; font-size: 0.95rem; color: #4A5568; }
.rule-card li { margin-bottom: 6px; }

/* Overlay Success */
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 253, 249, 0.95); backdrop-filter: blur(10px); z-index: 100; text-align: center; padding: var(--spacing-xl); overflow-y: auto; display: flex; flex-direction: column; justify-content: flex-start; align-items: center; }
.check-circle { width: 80px; height: 80px; background: #48BB78; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin-bottom: var(--spacing-lg); animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }

/* Bottom Nav */
.bottom-nav { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: var(--max-width); display: flex; justify-content: space-around; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); padding: var(--spacing-sm) 0; padding-bottom: calc(var(--spacing-sm) + env(safe-area-inset-bottom)); border-top: 1px solid rgba(0,0,0,0.05); z-index: 40; }
.nav-item { background: transparent; border: none; color: var(--gray); display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; transition: var(--transition); flex: 1; }
.nav-item span:last-child { font-size: 0.75rem; font-weight: 500; }
.nav-item.active { color: var(--crimson); }
.nav-item:active { transform: scale(0.9); }

/* --- MEGA UPDATE V4.0 NEW STYLES --- */

/* FEATURE 1: Spreadsheet Panic Overlay */
#panic-spreadsheet-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: white; z-index: 9999; font-family: Arial, sans-serif; }
.excel-header { background: #217346; color: white; padding: 8px 16px; font-weight: bold; display: flex; align-items: center; gap: 8px; }
.excel-toolbar { background: #f3f2f1; padding: 4px 16px; font-size: 13px; color: #323130; border-bottom: 1px solid #e1dfdd; }
.excel-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.excel-table th, .excel-table td { border: 1px solid #e1dfdd; padding: 4px 8px; }
.excel-table th { background: #f3f2f1; font-weight: normal; color: #605e5c; text-align: center; width: 50px; }

/* FEATURE 6: Dynamic Island */
.dynamic-island { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); background: black; color: white; border-radius: 30px; height: 36px; padding: 0 16px; display: flex; align-items: center; justify-content: center; z-index: 9000; box-shadow: 0 10px 20px rgba(0,0,0,0.3); transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.di-content { display: flex; align-items: center; gap: 8px; }
.di-icon { width: 12px; height: 12px; border-radius: 50%; background: #48BB78; animation: pulse 2s infinite; }
.di-text { font-family: monospace; font-size: 14px; font-weight: bold; letter-spacing: 1px; color: #48BB78;}

/* FEATURE 7: Fake Call Overlay */
#fake-call-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(28, 28, 30, 0.95); backdrop-filter: blur(20px); z-index: 9998; display: flex; flex-direction: column; align-items: center; padding-top: 15vh; color: white; }
#fake-call-overlay h2 { font-size: 2.5rem; font-weight: 300; margin-bottom: 8px; }
.call-actions { position: absolute; bottom: 15vh; width: 100%; display: flex; justify-content: space-around; padding: 0 40px; }
.call-btn { width: 75px; height: 75px; border-radius: 50%; border: none; color: white; display: flex; justify-content: center; align-items: center; font-size: 32px; cursor: pointer; }
.call-btn .material-icons-round { font-size: 36px; }
.call-btn.decline { background: #FF3B30; }
.call-btn.accept { background: #34C759; }

/* FEATURE 8: Memory Vault */
.memory-card { min-width: 120px; height: 160px; border-radius: var(--radius-md); overflow: hidden; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.memory-card img { width: 100%; height: 100%; object-fit: cover; }
.memory-card p { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.6); color: white; font-size: 0.7rem; padding: 4px; text-align: center; }

/* FEATURE 10: Care Package Unboxing */
.gift-container { perspective: 1000px; width: 100%; height: 200px; display: flex; justify-content: center; align-items: center; }
.gift-box { width: 150px; height: 150px; position: relative; transition: transform 0.8s; transform-style: preserve-3d; cursor: pointer; }
.gift-box.opened { transform: rotateY(180deg); }
.gift-front, .gift-back { width: 100%; height: 100%; position: absolute; backface-visibility: hidden; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(217,4,41,0.2); }
.gift-front { background: var(--crimson); }
.gift-back { background: var(--charcoal); transform: rotateY(180deg); text-align: center; padding: 16px; border: 2px solid var(--rose-quartz); }

/* --- MEGA UPDATE V5.0 NEW STYLES --- */

/* V5: Bento Box Profile Grid */
.bento-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}
.bento-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.bento-item.large { grid-column: span 2; flex-direction: row; align-items: center; justify-content: flex-start; gap: var(--spacing-md); }
.bento-icon { font-size: 1.5rem; color: var(--crimson); margin-bottom: 4px; }
.bento-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; }
.bento-value { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }

/* V5: Spinning Vinyl Animation */
.vinyl-record {
    width: 40px; height: 40px; border-radius: 50%;
    background: repeating-radial-gradient(#111, #111 2px, #333 3px, #111 4px);
    display: flex; justify-content: center; align-items: center;
    animation: spinVinyl 3s linear infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.vinyl-center { width: 14px; height: 14px; background: var(--crimson); border-radius: 50%; border: 2px solid #000; }
@keyframes spinVinyl { 100% { transform: rotate(360deg); } }

/* V5: Apple Wallet Receipt */
.wallet-pass {
    background: white; width: 100%; max-width: 320px;
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}
.pass-header { background: var(--crimson); padding: 16px; display: flex; align-items: center; gap: 8px; border-bottom: 2px dashed rgba(255,255,255,0.3); }
.pass-body { padding: 24px; position: relative; background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), white); }
.pass-body::before, .pass-body::after {
    content: ''; position: absolute; top: -10px; width: 20px; height: 20px; background: rgba(255, 253, 249, 0.95); border-radius: 50%;
}
.pass-body::before { left: -10px; }
.pass-body::after { right: -10px; }
.barcode { font-family: monospace; font-size: 1.5rem; text-align: center; letter-spacing: 2px; color: var(--charcoal); opacity: 0.8; }

/* V5: Roulette Wheel */
.roulette-container { background: #f8f9fa; padding: 16px; border-radius: var(--radius-md); text-align: center; position: relative; overflow: hidden; }
.roulette-wheel {
    width: 200px; height: 200px; border-radius: 50%; margin: 0 auto;
    background: conic-gradient(var(--rose-light) 0deg 180deg, var(--crimson) 180deg 360deg);
    position: relative; border: 4px solid white; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.wheel-section { position: absolute; width: 100%; height: 100%; display: flex; justify-content: center; align-items: flex-start; padding-top: 20px; font-weight: bold; font-size: 0.8rem; }
.user-pays { color: var(--crimson); transform: rotate(90deg); }
.comp-pays { color: white; transform: rotate(270deg); }
.roulette-pointer {
    width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 20px solid var(--charcoal);
    position: absolute; top: 75px; left: 50%; transform: translateX(-50%); z-index: 2;
}

/* V5: Swipeable Icebreaker Deck */
#icebreaker-deck { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 200; display: flex; justify-content: center; align-items: center; }
.deck-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); }
.deck-container { position: relative; z-index: 201; width: 80%; max-width: 300px; }
.card-stack { position: relative; width: 100%; height: 350px; perspective: 1000px; }
.icebreaker-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: white; border-radius: 20px; padding: 24px;
    display: flex; justify-content: center; align-items: center; text-align: center;
    font-size: 1.2rem; font-weight: 600; color: var(--charcoal);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    user-select: none;
}

/* V5: Niche Views Base */
.niche-view { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1000; overflow-y: auto; background: var(--charcoal); }

/* V5: Silent Co-Worker */
.coworker-bg { position: absolute; width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); opacity: 0.8; z-index: 1; }

/* Custom Toast Notifications */
.toast-notification {
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}
.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}
.toast-notification .material-icons-round {
    color: var(--rose-light);
    font-size: 1.2rem;
}
.blur-loop { animation: gradientShift 10s ease infinite; background-size: 400% 400%; filter: blur(20px); }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.pomodoro-timer { font-family: 'Courier New', monospace; font-size: 5rem; font-weight: bold; color: white; text-shadow: 0 0 20px rgba(255,255,255,0.5); letter-spacing: 5px; }

/* V5: Esports Neo-Brutalist */
.neo-brutalist { background: #E0E7FF; color: black; font-family: 'Courier New', Courier, monospace; }
.neo-input { padding: 16px; border: 3px solid black; background: white; font-weight: bold; font-size: 1rem; box-shadow: 4px 4px 0px black; border-radius: 0; appearance: none; outline: none; }
.neo-btn { padding: 16px; border: 3px solid black; background: #00ff00; font-weight: 900; font-size: 1.2rem; box-shadow: 6px 6px 0px black; cursor: pointer; transition: all 0.1s; border-radius: 0; }
.neo-btn:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0px black; }

/* V5: Design Critic Drop Zone */
.drop-zone { border: 2px dashed #CBD5E0; border-radius: 12px; padding: 24px; background: white; transition: background 0.2s; cursor: pointer; }
.drop-zone:active { background: #F7FAFC; }
.critic-bubble { position: absolute; background: white; padding: 8px 12px; border-radius: 20px; border: 2px solid var(--crimson); font-size: 0.8rem; font-weight: bold; color: var(--crimson); box-shadow: 0 4px 10px rgba(0,0,0,0.1); animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); pointer-events: none; }
@keyframes popIn { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes loadingBar { 0% { transform: translateX(-100%); } 50% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Calendar UI */
.calendar-ui { background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-md); padding: 12px; margin-bottom: 8px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: var(--charcoal); }
.cal-header span.material-icons-round { cursor: pointer; padding: 4px; border-radius: 50%; transition: background 0.2s; }
.cal-header span.material-icons-round:active { background: #f0f0f0; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.75rem; font-weight: 700; color: #A0AEC0; margin-bottom: 8px; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; gap: 4px; }
.cal-day, .cal-days span.disabled { display: flex; justify-content: center; align-items: center; height: 36px; width: 36px; margin: 0 auto; border-radius: 50%; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; }
.cal-days span.disabled { color: #CBD5E0; cursor: not-allowed; }
.cal-day:not(.active):active { background: #F7FAFC; }
.cal-day.active { background: var(--crimson); color: white; box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3); font-weight: bold; }

/* --- ENHANCED BOOKING FLOW --- */

/* Card Price Row & Book Button */
.card-price-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(0,0,0,0.05);
}
.card-price {
    font-size: 0.95rem; font-weight: 700; color: var(--crimson);
    display: flex; align-items: center; gap: 4px;
}
.card-price .text-xs { font-weight: 400; color: var(--gray); }
.btn-book-card {
    background: var(--crimson); color: white; border: none;
    padding: 8px 16px; border-radius: 20px; font-size: 0.85rem;
    font-weight: 600; font-family: inherit; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; gap: 4px;
    box-shadow: 0 4px 12px rgba(217, 4, 41, 0.2);
}
.btn-book-card:active { transform: scale(0.95); box-shadow: 0 2px 6px rgba(217, 4, 41, 0.2); }

/* Profile Price Banner */
.profile-price-banner {
    background: linear-gradient(135deg, rgba(217,4,41,0.08) 0%, rgba(255,182,178,0.15) 100%);
    border: 1px solid rgba(217,4,41,0.12); border-radius: var(--radius-md);
    padding: 14px var(--spacing-md); display: flex; justify-content: space-between;
    align-items: center; margin-bottom: var(--spacing-md);
}
.profile-price-banner .ppb-rate {
    font-size: 1.3rem; font-weight: 700; color: var(--crimson);
}
.profile-price-banner .ppb-label {
    font-size: 0.8rem; color: var(--gray); font-weight: 500;
}
.profile-price-banner .ppb-badge {
    background: var(--crimson); color: white; padding: 6px 14px;
    border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    display: flex; align-items: center; gap: 4px;
    box-shadow: 0 4px 10px rgba(217, 4, 41, 0.2);
}

/* Booking Step Indicator */
.booking-steps-indicator {
    display: flex; align-items: center; justify-content: center;
    gap: 0; padding: var(--spacing-md) var(--spacing-lg);
    background: white; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.step-dot {
    width: 32px; height: 32px; border-radius: 50%;
    background: #E2E8F0; color: var(--gray);
    display: flex; justify-content: center; align-items: center;
    font-size: 0.8rem; font-weight: 700; transition: all 0.3s;
    flex-shrink: 0;
}
.step-dot.active { background: var(--crimson); color: white; box-shadow: 0 4px 10px rgba(217,4,41,0.25); }
.step-dot.completed { background: #48BB78; color: white; }
.step-line {
    width: 40px; height: 2px; background: #E2E8F0; transition: background 0.3s;
}
.step-line.active { background: var(--crimson); }
.step-line.completed { background: #48BB78; }

/* Dress Code Section */
.dress-code-section {
    background: white; border: 1px solid #E2E8F0; border-radius: var(--radius-md);
    padding: var(--spacing-md); margin-top: var(--spacing-sm);
}
.dress-code-toggle {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer;
}
.dress-code-toggle .dc-info h5 { font-size: 1rem; color: var(--charcoal); margin-bottom: 2px; }
.dress-code-toggle .dc-info p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.dress-code-options {
    margin-top: var(--spacing-md); padding-top: var(--spacing-md);
    border-top: 1px solid #E2E8F0; display: none;
}
.dress-code-options.visible { display: block; animation: fadeIn 0.3s ease; }

/* Activity Chips */
.activity-chip-group { display: flex; flex-wrap: wrap; gap: var(--spacing-sm); }
.activity-chip {
    padding: 10px 16px; border-radius: 12px; border: 1.5px solid #E2E8F0;
    background: white; color: var(--charcoal); font-family: inherit;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 6px; font-weight: 500;
}
.activity-chip .material-icons-round { font-size: 1.1rem; color: var(--gray); transition: color 0.3s; }
.activity-chip.active {
    background: var(--crimson); color: white; border-color: var(--crimson);
    box-shadow: 0 4px 10px rgba(217,4,41,0.15);
}
.activity-chip.active .material-icons-round { color: white; }

/* Timing Preference Chips */
.timing-chip-group { display: flex; gap: var(--spacing-sm); flex-wrap: wrap; }
.timing-chip {
    flex: 1; min-width: calc(50% - 4px); padding: 12px; border-radius: var(--radius-md);
    border: 1.5px solid #E2E8F0; background: white; text-align: center;
    cursor: pointer; transition: var(--transition); font-family: inherit;
}
.timing-chip .tc-icon { font-size: 1.3rem; margin-bottom: 2px; }
.timing-chip .tc-label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.timing-chip .tc-time { font-size: 0.7rem; color: var(--gray); }
.timing-chip.active {
    background: var(--charcoal); color: white; border-color: var(--charcoal);
}
.timing-chip.active .tc-label, .timing-chip.active .tc-time { color: white; }

/* Enhanced Booking Form Divider */
.booking-step-header {
    display: flex; align-items: center; gap: 12px;
    margin-top: var(--spacing-xl); margin-bottom: var(--spacing-md);
}
.booking-step-header .bsh-num {
    width: 28px; height: 28px; border-radius: 50%; background: var(--crimson);
    color: white; display: flex; justify-content: center; align-items: center;
    font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}
.booking-step-header h4 { margin: 0; font-size: 1.05rem; }

/* Extra Charge Badge */
.extra-charge-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(217,4,41,0.08); color: var(--crimson);
    padding: 3px 10px; border-radius: 12px; font-size: 0.75rem;
    font-weight: 600; margin-left: 8px;
}

/* Visual Dress Code Cards */
.dc-visual-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px;
    margin-top: var(--spacing-sm);
}
.dc-visual-card {
    text-align: center; padding: 14px 6px; border-radius: 14px;
    border: 2px solid #E2E8F0; background: white; cursor: pointer;
    transition: var(--transition); font-family: inherit;
}
.dc-visual-card .dc-icon { font-size: 1.6rem; margin-bottom: 4px; display: block; }
.dc-visual-card .dc-label { font-size: 0.72rem; font-weight: 600; color: var(--charcoal); display: block; }
.dc-visual-card .dc-price { font-size: 0.65rem; color: var(--gray); margin-top: 2px; display: block; }
.dc-visual-card.active {
    border-color: var(--crimson); background: rgba(217,4,41,0.04);
    box-shadow: 0 4px 12px rgba(217,4,41,0.12);
}
.dc-visual-card.active .dc-label { color: var(--crimson); }
.dc-visual-card:active { transform: scale(0.95); }

/* Card Book Button for grid layout */
.card-price-row { margin-top: 0; padding-top: 8px; border-top: none; }
.btn-book-card { padding: 6px 12px; font-size: 0.75rem; border-radius: 14px; }

/* Micro-animations */
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slideUp 0.4s ease forwards; }

