* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* DARK THEME - LOCKED */
    --bg-primary: #0B0F14;
    --bg-secondary: #141921;
    --bg-tertiary: #1C222B;
    --bg-card: #1F2937;
    
    /* ACCENT COLORS */
    --primary: #00C2D1;
    --primary-hover: #00D4E4;
    --primary-light: rgba(0, 194, 209, 0.1);
    --primary-dark: #00A8B5;
    
    /* STATUS COLORS */
    --success: #10B981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #F59E0B;
    --warning-light: rgba(245, 158, 11, 0.1);
    --danger: #EF4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    
    /* TEXT COLORS - HIGH CONTRAST */
    --text-primary: #FFFFFF;
    --text-secondary: #D1D5DB;
    --text-tertiary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* BORDERS */
    --border-color: #374151;
    --border-light: #4B5563;
    
    /* SPACING */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* MINIMUM TAP TARGET */
    --min-tap-size: 44px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    /* NO THIN FONTS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    min-height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

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

.nav-btn {
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 8px;
    min-height: var(--min-tap-size);
    display: flex;
    align-items: center;
}

.nav-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-btn.active {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-card);
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid var(--neutral-200);
    padding: var(--spacing-lg) 0;
    position: sticky;
    top: 65px;
    height: calc(100vh - 65px);
    overflow-y: auto;
}

.sidebar-item {
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--neutral-600);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-item.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* ==================== MAIN CONTAINER ==================== */
.container {
    display: flex;
    min-height: calc(100vh - 65px);
}

.main-content {
    flex: 1;
    padding: var(--spacing-2xl);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    margin-bottom: var(--spacing-2xl);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 16px;
    color: var(--neutral-500);
}

/* ==================== INTENT SELECTION CARDS ==================== */
.intent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.intent-card {
    background: white;
    border: 2px solid var(--neutral-200);
    border-radius: 16px;
    padding: var(--spacing-2xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intent-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intent-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 95, 255, 0.15);
}

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

.intent-icon {
    font-size: 64px;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.intent-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
    position: relative;
    z-index: 1;
}

.intent-description {
    font-size: 14px;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.intent-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    color: var(--neutral-600);
}

.benefit-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 95, 255, 0.3);
}

.btn-primary:disabled {
    background: var(--neutral-300);
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.btn-secondary {
    background: var(--neutral-100);
    color: var(--neutral-700);
}

.btn-secondary:hover {
    background: var(--neutral-200);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:disabled {
    background: var(--neutral-300);
    cursor: not-allowed;
    transform: none;
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ==================== CARDS ==================== */
.card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--neutral-300);
}

.card-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--neutral-900);
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--neutral-700);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--neutral-300);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

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

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
    background: var(--neutral-100);
    cursor: not-allowed;
}

/* ==================== ALERT BOXES ==================== */
.alert {
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.alert-info {
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid #BFDBFE;
}

.alert-danger {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-success {
    background: var(--success-light);
    color: #065F46;
    border: 1px solid #A7F3D0;
}

/* ==================== MAP CONTAINER ==================== */
.map-container {
    width: 100%;
    height: 300px;
    background: var(--neutral-100);
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.map-container.large {
    height: 400px;
}

/* ==================== OTP DISPLAY ==================== */
.otp-section {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    margin: var(--spacing-lg) 0;
}

.otp-section.locked {
    background: linear-gradient(135deg, var(--neutral-400) 0%, var(--neutral-500) 100%);
    opacity: 0.6;
}

.otp-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.otp-display {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.otp-digit {
    width: 60px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.otp-digit.hidden {
    background: rgba(255, 255, 255, 0.1);
}

.otp-warning {
    font-size: 12px;
    opacity: 0.9;
    margin-top: var(--spacing-md);
    background: rgba(0,0,0,0.1);
    padding: var(--spacing-sm);
    border-radius: 6px;
}

/* ==================== COUNTDOWN TIMER ==================== */
.countdown-timer {
    background: var(--warning);
    color: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.countdown-time {
    font-size: 24px;
    font-weight: 700;
    margin-top: var(--spacing-sm);
}

/* ==================== PRICE BREAKDOWN ==================== */
.price-breakdown {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: 14px;
}

.price-row.total {
    border-top: 2px solid var(--neutral-300);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md);
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

/* ==================== STATUS BADGES ==================== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #FEF3C7;
    color: #92400E;
}

.status-paid {
    background: var(--success-light);
    color: #065F46;
}

.status-delivered {
    background: var(--success-light);
    color: #065F46;
}

.status-active {
    background: #DBEAFE;
    color: #1E40AF;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--neutral-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 20px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--neutral-500);
    transition: color 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.modal-close:hover {
    color: var(--neutral-900);
    background: var(--neutral-100);
}

.modal-body {
    padding: var(--spacing-lg);
}

/* ==================== LOADING STATE ==================== */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-md);
}

.loading.active {
    display: flex;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--neutral-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-text {
    color: var(--neutral-600);
    font-weight: 500;
}

/* ==================== UTILITY CLASSES ==================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.w-full {
    width: 100%;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--neutral-200);
        display: flex;
        overflow-x: auto;
        padding: 0;
    }

    .sidebar-item {
        padding: var(--spacing-md);
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .sidebar-item.active {
        border-left: none;
        border-bottom-color: var(--primary);
    }

    .main-content {
        padding: var(--spacing-lg);
    }

    .page-title {
        font-size: 24px;
    }

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

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

    .otp-digit {
        width: 50px;
        height: 60px;
        font-size: 24px;
    }

    .nav-buttons {
        gap: var(--spacing-sm);
    }

    .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .logo {
        font-size: 20px;
    }

    .main-content {
        padding: var(--spacing-md);
    }

    .page-title {
        font-size: 20px;
    }

    .card {
        padding: var(--spacing-md);
    }

    .intent-card {
        padding: var(--spacing-lg);
    }

    .intent-icon {
        font-size: 48px;
    }

    .intent-title {
        font-size: 20px;
    }
}

/* ==================== BOTTOM NAV (Mobile) ==================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--neutral-200);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-around;
}

.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    color: var(--neutral-500);
    cursor: pointer;
    font-size: 10px;
    font-weight: 500;
    transition: color 0.2s;
}

.bnav-item span:first-child {
    font-size: 20px;
}

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

/* ==================== DESKTOP/MOBILE VISIBILITY ==================== */
.desktop-nav { display: flex; }
.mobile-nav { display: none; }
.mobile-header-right { display: none; }

@media (max-width: 768px) {
    .desktop-nav { display: none !important; }
    .mobile-nav { display: flex !important; }
    .mobile-header-right { display: flex !important; }
    .main-content { padding-bottom: 90px; }
}

/* ==================== WALLET PILL (Header) ==================== */
.wallet-pill {
    background: var(--primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* ==================== PAYMENT MODAL ==================== */
.payment-box {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.payment-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.payment-desc {
    font-size: 13px;
    color: var(--neutral-500);
    margin-top: 4px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method:hover:not(.disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-method.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-method.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pm-icon { font-size: 28px; }
.pm-info { flex: 1; }
.pm-name { font-weight: 600; font-size: 15px; }
.pm-detail { font-size: 12px; color: var(--neutral-500); }
.pm-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* ==================== LOCATION LIST (Find V-Box) ==================== */
.loc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    background: white;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(11, 95, 255, 0.1);
}

.loc-info { flex: 1; }
.loc-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.loc-address { font-size: 12px; color: var(--neutral-500); margin-bottom: 4px; }
.loc-meta { display: flex; gap: 12px; font-size: 11px; }
.loc-status { font-weight: 500; color: var(--neutral-500); }
.loc-status.online { color: var(--success); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.text-center { text-align: center; }
.text-muted { color: var(--neutral-500); }

/* ==================== CAPACITY INDICATORS ==================== */
.loc-capacity {
    font-weight: 500;
}

.loc-capacity.available {
    color: var(--success);
}

.loc-capacity.limited {
    color: var(--warning);
}

.loc-capacity.full {
    color: var(--danger);
}

/* ==================== STATUS BADGES ==================== */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-created, .status-pending { 
    background: #E0E7FF; 
    color: #3730A3; 
}

.status-in-transit { 
    background: #FEF3C7; 
    color: #92400E; 
}

.status-delivered, .status-dropped-off { 
    background: #D1FAE5; 
    color: #065F46; 
}

.status-picked-up, .status-completed { 
    background: #D1FAE5; 
    color: #065F46; 
}

.status-active, .status-confirmed { 
    background: #DBEAFE; 
    color: #1E40AF; 
}

.status-expired, .status-cancelled, .status-failed { 
    background: #FEE2E2; 
    color: #991B1B; 
}

.status-pending-payment {
    background: #FEF3C7;
    color: #92400E;
}

/* ==================== LOCATION CARD SELECTED STATE ==================== */
.location-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

/* ==================== WIDTH UTILITIES ==================== */
.w-full {
    width: 100%;
}

/* ==================== CAPACITY BAR ==================== */
.capacity-bar-container {
    display: flex;
    gap: 2px;
    margin-top: 8px;
}

.capacity-segment {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    transition: background 0.2s;
}

.capacity-segment.occupied {
    background: var(--primary);
}

.capacity-segment.free {
    background: var(--neutral-200);
}

/* ==================== LOCATION CARD OFFLINE STATE ==================== */
.location-card.offline {
    opacity: 0.6;
    background: var(--neutral-50);
}

.location-card.offline:hover {
    border-color: var(--neutral-300);
}

/* ==================== SPINNER ==================== */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid var(--neutral-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==================== OTP SECTION ==================== */
.otp-section {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== BUTTON LARGE ==================== */
.btn-lg {
    padding: 14px 24px;
    font-size: 15px;
}

/* ==================== ADDITIONAL STATUS COLORS ==================== */
.status-default {
    background: var(--neutral-100);
    color: var(--neutral-600);
}

/* ==================== LOCATION BOTTOM SHEET ==================== */
.location-bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ==================== ACCESS OPTION ==================== */
.access-option {
    padding: 20px;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.access-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 95, 255, 0.15);
}

.access-option:active {
    transform: translateY(0);
}

/* ==================== SMALL SPINNER ==================== */
.spinner-small {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid var(--neutral-200);
    border-top-color: var(--warning);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ==================== WARNING LIGHT ==================== */
.warning-light:not(.alert) {
    background: #FEF3C7;
}

/* ==================== CUSTOM MARKER ==================== */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.marker-pin:hover {
    transform: scale(1.1);
}

/* ==================== COUNTDOWN TIMER ==================== */
.countdown-timer {
    background: var(--success-light);
    border: 2px solid var(--success);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.countdown-time {
    font-size: 36px;
    font-weight: 700;
    color: var(--success);
    font-variant-numeric: tabular-nums;
}

/* ==================== OTP DIGIT ==================== */
.otp-digit {
    font-variant-numeric: tabular-nums;
}

/* ==================== CUSTOM STYLES FOR NEW FLOW ==================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .location-bottom-sheet {
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .access-option {
        padding: 16px;
    }
    
    .countdown-time {
        font-size: 28px;
    }
}
