        
        /* ==========================================
           PROFESSIONAL DESIGN SYSTEM
           ========================================== */
        
        :root { 
            /* Primary Colors */
            --gold: #D4AF37;
            --gold-light: #E8C86B;
            --gold-dark: #B8942E;
            
            /* Background Colors */
            --dark-bg: #0D0D0D;
            --card-bg: #1A1A1A;
            --card-hover: #252525;
            --surface-bg: #222222;
            
            /* Text Colors */
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-muted: #666666;
            
            /* Semantic Colors */
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --whatsapp-green: #25D366;
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
            --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
            
            /* Transitions */
            --transition-fast: 0.15s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }
        
        /* ==========================================
           ENHANCED TYPOGRAPHY SYSTEM
           ========================================== */
        
        /* Advanced Font Smoothing */
        html {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            -moz-osx-font-smoothing: grayscale;
            font-smooth: always;
        }
        
        /* Typography System - Enhanced */
        body { 
            background-color: var(--dark-bg); 
            color: var(--text-primary);
            margin: 0; 
            padding: 0; 
            font-family: 'Inter', 'Cairo', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 1.7;
            letter-spacing: 0.01em;
            text-rendering: geometricPrecision;
            -webkit-text-size-adjust: 100%;
            -moz-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
            transition: font-weight 0.2s ease, color 0.3s ease;
        }
        
        /* Font Feature Settings - Enable advanced OpenType features */
        body, 
        .car-card,
        .modal-content,
        input, 
        select,
        textarea {
            font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "cv11" 1;
            font-kerning: normal;
            font-variant-ligatures: common-ligatures discretionary-ligatures;
            -webkit-font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
            -moz-font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
        }
        
        /* Enhanced Heading Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', 'Cairo', Georgia, 'Times New Roman', serif;
            font-weight: 600;
            margin: 0 0 0.5em 0;
            letter-spacing: -0.02em;
            line-height: 1.3;
            text-rendering: geometricPrecision;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            color: var(--text-primary);
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        /* Heading sizes with improved hierarchy */
        h1 { 
            font-size: 3rem; 
            font-weight: 700;
            letter-spacing: -0.03em;
            text-shadow: 0 2px 10px rgba(212,175,55,0.1);
            margin-bottom: 0.7em;
        }
        
        h2 { 
            font-size: 2.5rem; 
            font-weight: 600;
            letter-spacing: -0.025em;
            text-shadow: 0 2px 8px rgba(212,175,55,0.08);
            margin-bottom: 0.6em;
        }
        
        h3 { 
            font-size: 2rem; 
            font-weight: 600;
            letter-spacing: -0.02em;
            text-shadow: 0 1px 5px rgba(212,175,55,0.05);
            margin-bottom: 0.55em;
        }
        
        h4 { 
            font-size: 1.5rem; 
            font-weight: 600;
            letter-spacing: -0.01em;
            margin-bottom: 0.5em;
        }
        
        h5 { 
            font-size: 1.25rem; 
            font-weight: 500;
            letter-spacing: 0;
            margin-bottom: 0.45em;
        }
        
        h6 { 
            font-size: 1rem; 
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 0.4em;
        }
        
        /* Paragraph improvements */
        p {
            margin: 0 0 1.2em 0;
            line-height: 1.8;
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: 0.01em;
            text-rendering: optimizeLegibility;
        }
        
        /* Small text styling */
        small, .text-small {
            font-size: 0.85em;
            line-height: 1.6;
            letter-spacing: 0.02em;
            color: var(--text-muted);
        }
        
        /* Bold text enhancement */
        strong, b {
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0.01em;
        }
        
        /* Link styling */
        a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            text-rendering: optimizeLegibility;
        }
        
        a:hover {
            color: var(--gold-light);
            text-shadow: 0 0 15px rgba(212,175,55,0.4);
        }
        
        /* Selection styling */
        ::selection {
            background: rgba(212,175,55,0.3);
            color: var(--text-primary);
        }
        
        /* Placeholder styling */
        ::placeholder {
            color: var(--text-muted);
            opacity: 0.7;
            letter-spacing: 0.02em;
        }
        
        /* Input text styling */
        input, select, textarea {
            font-family: inherit;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.01em;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Button text styling */
        button, .btn {
            font-family: inherit;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: none;
            -webkit-font-smoothing: antialiased;
        }
        
        /* Price tag styling */
        .price-tag, .price {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Car card title styling */
        .car-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 0;
            color: var(--gold);
            transition: color 0.3s ease, transform 0.3s ease;
        }
        
        .car-card h3:hover {
            color: var(--gold-light);
            transform: translateY(-2px);
        }
        
        /* Modal title styling */
        .modal-content h2 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold);
            text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(212,175,55,0.15);
        }
        
        /* Side menu link styling */
        .side-menu a {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            padding: 15px 30px;
            text-decoration: none;
            color: var(--gold);
            display: block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(212,175,55,0.1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        /* Label styling */
        label {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 8px;
            color: var(--gold);
            transition: color 0.3s ease;
        }
        
        /* Info label styling */
        .info-label, .car-details-info-label, .profile-stat-label {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #888;
        }
        
        /* Info value styling */
        .info-value, .car-details-info-value {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.01em;
        }
        
        /* Profile name styling */
        .profile-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 0.3em;
            letter-spacing: 0.02em;
            text-shadow: 0 2px 10px rgba(212,175,55,0.2);
        }
        
        /* Profile email styling */
        .profile-email {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #888;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        
        /* Section title styling */
        .profile-section-title, .other-cars-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.2rem;
            letter-spacing: 0;
            text-shadow: 0 2px 8px rgba(212,175,55,0.1);
        }
        
        /* Quick filter button styling */
        .quick-filter-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Filter group label styling */
        .filter-group label {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        /* Social button text styling */
        .social-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Toggle text styling */
        .auth-modal .toggle-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            color: #888;
            margin-top: 1rem;
            letter-spacing: 0.01em;
        }
        
        /* Toggle link styling */
        .auth-modal .toggle-link {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Divider text styling */
        .divider-text span {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        /* Comments section title styling */
        .comments-section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0;
            text-shadow: 0 2px 8px rgba(212,175,55,0.1);
        }
        
        /* Comment form title styling */
        .comment-form-title {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        
        /* Comment item name styling */
        .comment-item-name {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Comment item time styling */
        .comment-item-time {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            color: #666;
            letter-spacing: 0.02em;
        }
        
        /* Comment item text styling */
        .comment-item-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            line-height: 1.7;
            letter-spacing: 0.01em;
            color: #ccc;
        }
        
        /* Comment action button styling */
        .comment-action-btn {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* No comments text styling */
        .no-comments-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            letter-spacing: 0.02em;
        }
        
        /* Login prompt text styling */
        .login-prompt-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            color: #ccc;
        }
        
        /* Login prompt button styling */
        .login-prompt-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        
        /* Like button styling */
        .like-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Save button styling */
        .save-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Favorites panel styling */
        .favorites-panel-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Favorites page title styling */
        .favorites-page-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            letter-spacing: 0;
            text-shadow: 0 2px 10px rgba(212,175,55,0.15);
        }
        
        /* Filter button styling */
        .filter-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        
        /* Results count styling */
        .results-count {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
        }
        
        /* Active filters label styling */
        .active-filters-label {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Filter tag styling */
        .filter-tag {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Clear all filters styling */
        .clear-all-filters {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Change password section heading styling */
        .change-password-section h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Change password section paragraph styling */
        .change-password-section p {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.01em;
        }
        
        /* Email progress step label styling */
        .step-label {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        /* Password requirements title styling */
        .password-requirements-title {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        /* Requirement text styling */
        .requirement {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        
        /* Success title styling */
        .success-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 0;
            text-shadow: 0 2px 10px rgba(77,255,136,0.2);
        }
        
        /* Success message styling */
        .success-message {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.95rem;
            line-height: 1.7;
            letter-spacing: 0.01em;
        }
        
        /* Car details title styling */
        .car-details-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-shadow: 0 4px 20px rgba(212,175,55,0.2);
            margin: 1.5rem 0;
        }
        
        /* Car details price styling */
        .car-details-price {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, #fff 0%, var(--gold-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Car details WhatsApp button styling */
        .car-details-wa-btn {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        
        /* Profile stat number styling */
        .profile-stat-number {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Profile stat label styling */
        .profile-stat-label {
            font-size: 0.75rem;
        }
        
        /* No listings text styling */
        .no-listings {
            font-family: 'Inter', 'Cairo', sans-serif;
            letter-spacing: 0.02em;
        }
        
        /* No favorites text styling */
        .no-favorites-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* No favorites subtext styling */
        .no-favorites-subtext {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        
        /* Notification message styling */
        .notification-message {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }
        
        /* Email input styling */
        .email-input {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.02em;
        }
        
        /* Email button text styling */
        .email-btn .btn-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-weight: 600;
            letter-spacing: 0.03em;
        }
        
        /* Validation message styling */
        .validation-msg {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
        }
        
        /* Security notice text styling */
        .security-notice-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }
        
        /* Code input styling */
        .code-input {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 0.3em;
        }
        
        /* Resend code text styling */
        .resend-code-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        
        /* Resend code link styling */
        .resend-code-link {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Timer styling */
        .code-timer {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        
        /* Warning box text styling */
        .warning-box-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            line-height: 1.6;
            letter-spacing: 0.01em;
        }
        
        /* Current email value styling */
        .current-email-value {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Current email label styling */
        .current-email-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        /* Change email header styling */
        .change-email-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0;
        }
        
        /* Change email header paragraph styling */
        .change-email-header p {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        
        /* Other car info h4 styling */
        .other-car-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0;
        }
        
        /* Other car info price styling */
        .other-car-info .price {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Profile car info h4 styling */
        .profile-car-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0;
        }
        
        /* Profile car info price styling */
        .profile-car-info .price {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Favorite car info h4 styling */
        .favorite-car-info h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0;
        }
        
        /* Favorite price row styling */
        .favorite-price-row .current-price {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Original price styling */
        .favorite-price-row .original-price {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        
        /* Price drop info styling */
        .price-drop-info {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.02em;
        }
        
        /* Tracking info styling */
        .tracking-info {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
        }
        
        /* Drop zone text styling */
        .drop-zone-text {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.9rem;
            letter-spacing: 0.02em;
        }
        
        /* User email in side menu styling */
        .side-menu .user-info .user-email {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.02em;
        }
        
        /* User name in side menu styling */
        .side-menu .user-info .user-name {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        
        /* Profile phone styling */
        .profile-phone {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        /* Social login title span styling */
        .social-login-title span {
            font-family: 'Inter', 'Cairo', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* ==========================================
           LOADING PAGE STYLES
           ========================================== */
        
        /* Loader Overlay */
        .loader-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader-overlay.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        
        /* Spinning Wheel Container */
        .loader-wheel-container {
            position: relative;
            width: 120px;
            height: 120px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }
        
        /* Outer Ring */
        .loader-wheel-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        /* Inner Ring */
        .loader-wheel-container::after {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            border: 3px solid transparent;
            border-bottom-color: var(--gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite reverse;
        }
        
        /* Car Wheel SVG */
        .loader-wheel {
            width: 80px;
            height: 80px;
            animation: wheelSpin 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        
        /* Keyframes */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes wheelSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Pulse effect for center */
        .loader-center {
            position: absolute;
            width: 30px;
            height: 30px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0.2);
            }
        }
        
        /* Loading Text */
        .loader-text {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: textPulse 1.5s ease-in-out infinite;
        }
        
        @keyframes textPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Loading Progress Bar */
        .loader-progress {
            width: 200px;
            height: 4px;
            background: #333;
            border-radius: 2px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .loader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
            border-radius: 2px;
            animation: progressSlide 1.5s ease-in-out infinite;
        }
        
        @keyframes progressSlide {
            0% {
                width: 0;
                margin-left: 0;
            }
            50% {
                width: 100%;
                margin-left: 0;
            }
            100% {
                width: 0;
                margin-left: 100%;
            }
        }

        /* ==========================================
           SKELETON LOADING STATES
           ========================================== */
        
        .skeleton {
            background: linear-gradient(90deg, #1A1A1A 25%, #252525 50%, #1A1A1A 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 8px;
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* ==========================================
           ENHANCED HEADER
           ========================================== */
        
        .head { 
            background-color: #000; 
            height: 70px; 
            display: flex; 
            align-items: center; 
            padding: 0 20px; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 2px solid var(--gold);
            box-shadow: var(--shadow-md);
        }

        .hamburger-icon { 
            background: transparent; 
            border: none; 
            cursor: pointer; 
            display: flex; 
            flex-direction: column; 
            gap: 6px;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition-fast);
        }
        
        .hamburger-icon:hover {
            background: rgba(212,175,55,0.1);
        }

        .hamburger-icon .bar { 
            width: 28px; 
            height: 3px; 
            background-color: var(--gold); 
            border-radius: 4px;
            transition: var(--transition-fast);
        }

        .hamburger-icon:hover .bar:nth-child(1) {
            transform: rotate(-5deg) translateY(1px);
        }
        
        .hamburger-icon:hover .bar:nth-child(3) {
            transform: rotate(5deg) translateY(1px);
        }

        .side-menu { 
            height: 100%; width: 0; position: fixed; z-index: 1500; 
            top: 0; left: 0; background-color: #000; 
            overflow-x: hidden; transition: 0.5s; padding-top: 60px; 
            box-shadow: var(--shadow-lg);
        }
        .side-menu a { 
            padding: 15px 30px; text-decoration: none; font-size: 18px; 
            color: var(--gold); display: block; transition: 0.3s; 
            border-bottom: 1px solid #333; cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .side-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
            transition: 0.5s;
        }
        .side-menu a:hover::before {
            left: 100%;
        }
        .side-menu a:hover { 
            background: #222; 
            color: #fff; 
            padding-left: 40px;
        }
        .side-menu .divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 15px 0; opacity: 0.5; }

        /* Enhanced user info in side menu */
        .side-menu .user-info {
            padding: 20px 30px;
            border-bottom: 2px solid var(--gold);
            background: linear-gradient(135deg, #1a1a1a, #252525);
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .side-menu .user-info .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), #c9a030);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #000;
            font-size: 18px;
        }
        
        .side-menu .user-info .user-details {
            flex: 1;
        }
        
        .side-menu .user-info .user-name {
            color: var(--gold);
            font-weight: 600;
            font-size: 16px;
        }
        
        .side-menu .user-info .user-email {
            color: #888;
            font-size: 12px;
        }

        .search-container { text-align: center; padding: 30px 20px; }
        
        /* Search Wrapper - for inline search and advanced search button */
        .search-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        #searchInput { 
            width: 80%; max-width: 500px; padding: 12px 25px; 
            background: #222; border: 1px solid var(--gold); 
            border-radius: 30px; color: white; font-size: 16px; outline: none; 
        }
        
        /* Advanced Search Button Styles */
        .advanced-search-btn {
            margin: 0 !important;
            white-space: nowrap;
        }
        
        .advanced-search-btn:hover {
            background: var(--gold) !important;
            color: black !important;
        }

        .all-body { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; padding: 20px; }
        
        .car-card { 
            width: 320px; background-color: var(--card-bg); 
            padding: 15px; border-radius: 15px; position: relative; 
            text-align: center; border: 1px solid #333; transition: 0.3s;
        }
        .car-card.sold-listing {
            opacity: 0.78;
        }
        .sold-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 5;
            background: rgba(0, 0, 0, 0.15);
            border: 2px solid rgba(231, 76, 60, 0.95);
            color: rgba(231, 76, 60, 0.98);
            font-weight: 900;
            letter-spacing: 0.06em;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 12px;
            text-transform: uppercase;
            box-shadow: 0 10px 22px rgba(0,0,0,0.25);
        }
        .BUY:disabled {
            opacity: 0.55;
            cursor: not-allowed;
            transform: none !important;
        }
        .car-card.verified-listing {
            border: 2px solid #2ecc71;
            box-shadow: 0 0 0 1px rgba(46, 204, 113, 0.25), 0 12px 30px rgba(0, 0, 0, 0.35);
        }
        .car-card:hover { border-color: var(--gold); transform: translateY(-5px); }
        .car-card.verified-listing:hover { border-color: #2ecc71; }
        .car-card img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: contain; border-radius: 10px; cursor: pointer; background: #000; }
        
        .car-card h3 { color: var(--gold); margin: 15px 0 5px 0; }
        .price-tag { color: #fff; font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; }

        .compare-btn {
            width: 100%;
            margin-top: 10px;
            padding: 10px 15px;
            border-radius: 12px;
            border: 1px solid #333;
            background: #111;
            color: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-normal);
        }

        .compare-btn:hover {
            border-color: var(--gold);
            transform: translateY(-1px);
        }

        .compare-btn.active {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #111;
            border-color: transparent;
        }

        .compare-bar {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            bottom: 20px;
            z-index: 9999;
            display: none;
            align-items: center;
            gap: 12px;
            padding: 12px 14px;
            background: rgba(20, 20, 20, 0.92);
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            max-width: calc(100vw - 24px);
        }

        .compare-bar .compare-count {
            font-weight: 800;
            color: var(--gold);
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .compare-bar .compare-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .compare-bar button {
            padding: 10px 14px;
            border-radius: 12px;
            border: 1px solid #333;
            background: #111;
            color: #fff;
            cursor: pointer;
            font-weight: 700;
            transition: var(--transition-normal);
            white-space: nowrap;
        }

        .compare-bar button:hover {
            border-color: var(--gold);
        }

        .compare-bar button.primary {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #111;
            border-color: transparent;
        }

        .compare-bar button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
            border-radius: 14px;
            border: 1px solid #333;
            background: #111;
        }

        .compare-table th,
        .compare-table td {
            padding: 12px 12px;
            border-bottom: 1px solid #2a2a2a;
            border-right: 1px solid #2a2a2a;
            text-align: left;
            vertical-align: top;
        }

        .compare-table th:last-child,
        .compare-table td:last-child {
            border-right: none;
        }

        .compare-table thead th {
            background: rgba(212, 175, 55, 0.12);
            color: #fff;
            font-weight: 800;
        }

        .compare-table tbody tr:last-child td {
            border-bottom: none;
        }

        .compare-table .row-label {
            color: var(--text-secondary);
            font-weight: 700;
            width: 180px;
            white-space: nowrap;
        }

        .BUY { 
            background-color: var(--whatsapp-green); color: white; 
            border: none; padding: 12px; border-radius: 8px; 
            cursor: pointer; font-size: 16px; font-weight: bold; width: 100%; 
        }

        .admin-btn { 
            padding: 8px; border: none; border-radius: 5px; color: white; 
            cursor: pointer; width: 100%; margin-top: 5px; font-size: 12px; 
        }
        
        .owner-btn { 
            padding: 8px; border: none; border-radius: 5px; color: white; 
            cursor: pointer; width: 48%; margin-top: 5px; font-size: 12px; 
            font-weight: bold; transition: all 0.3s ease;
        }
        
        .owner-btn.edit-btn { 
            background-color: #3498db; 
            margin-right: 2%;
        }
        
        .owner-btn.edit-btn:hover { 
            background-color: #2980b9; transform: translateY(-1px);
        }
        
        .owner-btn.delete-btn { 
            background-color: #e74c3c; 
        }
        
        .owner-btn.delete-btn:hover { 
            background-color: #c0392b; transform: translateY(-1px);
        }

        .modal { 
            display: none; position: fixed; z-index: 3000; 
            left: 0; top: 0; width: 100%; height: 100%; 
            background: rgba(0,0,0,0.95); justify-content: center; 
            align-items: center; overflow-y: auto; padding: 20px 0;
        }
        .modal-content { 
            background: #1e1e1e; width: 95%; max-width: 600px; 
            border-radius: 15px; padding: 25px; border: 1px solid var(--gold); 
            margin: 0 auto;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }

        .chat-modal-content {
            max-width: 980px;
            width: min(980px, 96vw);
            padding: 18px;
        }
        .chat-wrap {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 14px;
            height: min(72vh, 680px);
        }
        @media (max-width: 900px) {
            .chat-wrap { grid-template-columns: 1fr; height: auto; }
        }
        .chat-sidebar {
            border: 1px solid #333;
            border-radius: 14px;
            background: #111;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .chat-sidebar-header {
            padding: 12px 12px;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-sidebar-header h3 {
            margin: 0;
            font-size: 16px;
            color: var(--gold);
        }
        .chat-thread-list {
            overflow: auto;
            padding: 8px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .chat-search-wrap {
            padding: 10px;
            border-bottom: 1px solid #222;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .chat-search-input {
            width: 100%;
            padding: 10px 12px;
            background: #0f0f0f;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            color: #fff;
            margin: 0;
            box-sizing: border-box;
        }
        .chat-search-results {
            max-height: 190px;
            overflow: auto;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .chat-search-hint {
            font-size: 12px;
            color: #aaa;
            line-height: 1.3;
        }
        .chat-thread-item {
            border: 1px solid #222;
            background: #151515;
            border-radius: 12px;
            padding: 10px 10px;
            cursor: pointer;
            transition: 0.2s;
        }
        .chat-thread-item:hover { border-color: var(--gold); }
        .chat-thread-item.active { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(212,175,55,0.25); }
        .chat-thread-title {
            font-weight: 800;
            color: #fff;
            font-size: 14px;
            margin-bottom: 4px;
        }
        .chat-thread-sub {
            font-size: 12px;
            color: #aaa;
            line-height: 1.3;
        }
        .chat-main {
            border: 1px solid #333;
            border-radius: 14px;
            background: #111;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 420px;
        }
        .chat-main-header {
            padding: 12px 12px;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
        }
        .chat-main-title {
            color: #fff;
            font-weight: 900;
            font-size: 14px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .chat-messages {
            flex: 1;
            padding: 12px;
            overflow: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .chat-msg {
            max-width: 78%;
            padding: 10px 12px;
            border-radius: 14px;
            border: 1px solid #222;
            background: #151515;
            color: #fff;
            line-height: 1.4;
            word-break: break-word;
        }
        .chat-msg.mine {
            margin-left: auto;
            border-color: rgba(212,175,55,0.35);
            background: rgba(212,175,55,0.12);
        }
        .chat-msg-meta {
            margin-top: 6px;
            font-size: 11px;
            color: #aaa;
        }
        .chat-compose {
            border-top: 1px solid #222;
            padding: 10px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .chat-input {
            flex: 1;
            width: 100%;
            padding: 12px;
            background: #0f0f0f;
            border: 1px solid #2a2a2a;
            border-radius: 12px;
            color: #fff;
            margin: 0;
            box-sizing: border-box;
        }
        .chat-send-btn {
            width: 160px;
            border-radius: 12px;
        }
        @media (max-width: 520px) {
            .chat-send-btn { width: 120px; }
        }
        
        /* Mobile responsive styles for site title */
        @media (max-width: 768px) {
            .site-title {
                font-size: 1.2rem !important;
                letter-spacing: 1px !important;
            }
            .car-wheel-logo {
                width: 24px !important;
                height: 24px !important;
                font-size: 12px !important;
                margin-left: 8px !important;
            }
            .site-title-container {
                margin-left: 10px !important;
                margin-top: 20px !important;
            }
        }
        
        @media (max-width: 480px) {
            .site-title {
                font-size: 1rem !important;
                letter-spacing: 0.5px !important;
            }
            .car-wheel-logo {
                width: 20px !important;
                height: 20px !important;
                font-size: 10px !important;
                margin-left: 6px !important;
            }
            .site-title-container {
                margin-left: 8px !important;
                margin-top: 18px !important;
            }
        }
        
        /* Car wheel rotation animation */
        @keyframes rotateWheel {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .chat-toast {
            position: fixed;
            right: 16px;
            bottom: 16px;
            z-index: 9000;
            min-width: 260px;
            max-width: min(420px, calc(100vw - 32px));
            background: rgba(18, 18, 18, 0.96);
            border: 1px solid rgba(212, 175, 55, 0.35);
            border-radius: 14px;
            padding: 12px 14px;
            color: #fff;
            box-shadow: 0 18px 40px rgba(0,0,0,0.55);
            display: none;
        }
        .chat-toast strong { color: var(--gold); }
        .chat-toast .chat-toast-actions {
            margin-top: 10px;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        .chat-toast .chat-toast-actions button {
            padding: 8px 12px;
            border-radius: 10px;
            border: 1px solid #333;
            background: #111;
            color: #fff;
            cursor: pointer;
            font-weight: 800;
        }
        .chat-toast .chat-toast-actions button.primary {
            border-color: rgba(212, 175, 55, 0.55);
            background: rgba(212, 175, 55, 0.18);
        }

        .inbox-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 20px;
            height: 20px;
            padding: 0 7px;
            border-radius: 999px;
            background: rgba(231, 76, 60, 0.95);
            color: #fff;
            font-size: 12px;
            font-weight: 900;
            margin-left: 8px;
        }
        
        input, select { 
            width: 100%; padding: 10px; background: #222; 
            border: 1px solid #444; border-radius: 8px; 
            color: white; margin-bottom: 10px; box-sizing: border-box;
        }
        input:focus, select:focus { outline: none; border-color: var(--gold); }
        label { display: block; margin-bottom: 4px; color: var(--gold); font-size: 13px; font-weight: bold; }

        .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
        .info-item { background: #252525; padding: 10px; border-radius: 8px; border-left: 3px solid var(--gold); text-align: left;}
        .info-label { font-size: 11px; color: #888; text-transform: uppercase; }
        .info-value { font-size: 13px; font-weight: bold; color: #fff; }

        .btn-gold { 
            background: var(--gold); color: black; font-weight: bold; 
            padding: 12px 30px; border-radius: 30px; border: none; cursor: pointer;
        }
        .btn-gold:hover { background: #c9a030; }

        .btn-outline {
            background: transparent; border: 2px solid var(--gold); color: var(--gold);
            padding: 10px 25px; border-radius: 30px; cursor: pointer; font-weight: bold;
            transition: 0.3s; display: block; margin: 10px 0;
        }
        .btn-outline:hover { background: var(--gold); color: black; }

        /* Auth Modal Styles */
        .auth-modal .modal-content { 
            max-width: 450px; 
            text-align: center; 
            padding: 30px 25px;
            max-height: calc(100vh - 40px);
            overflow-y: auto;
        }
        .auth-modal h2 { color: var(--gold); margin-bottom: 20px; }
        .auth-modal .toggle-text { color: #888; margin-top: 15px; font-size: 14px; }
        .auth-modal .toggle-link { color: var(--gold); cursor: pointer; text-decoration: underline; }
        .auth-modal .close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #888; }
        .auth-modal .close-btn:hover { color: var(--gold); }
        
        .user-info { 
            background: #252525; padding: 12px 20px; border-radius: 8px; 
            margin: 10px 20px; border-left: 4px solid var(--gold); 
            display: none;
        }
        .user-info .user-name { color: var(--gold); font-weight: bold; }
        .user-info .user-email { color: #888; font-size: 12px; }

        .auth-btn { 
            background: var(--gold); color: black; font-weight: bold; 
            padding: 12px; border-radius: 8px; border: none; cursor: pointer; 
            width: 100%; font-size: 16px; margin-top: 10px;
        }
        .auth-btn:disabled { opacity: 0.6; cursor: not-allowed; }
        
        .error-msg { color: #ff4d4d; font-size: 13px; margin-bottom: 10px; display: none; }
        .success-msg { color: #4dff88; font-size: 13px; margin-bottom: 10px; display: none; }

        /* Social Login Styles */
        .social-login-section { margin-bottom: 20px; }
        .social-login-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .social-login-title::before,
        .social-login-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #444;
        }
        .social-login-title span {
            color: #888;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 12px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }
        .social-btn svg {
            width: 20px;
            height: 20px;
        }
        .social-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        .social-btn:active {
            transform: translateY(0);
        }
        .google-btn {
            background: #fff;
            color: #333;
            border: 1px solid #ddd;
        }
        .google-btn:hover {
            background: #f5f5f5;
            border-color: #ccc;
        }
        .facebook-btn {
            background: #1877F2;
            color: white;
        }
        .facebook-btn:hover {
            background: #166fe5;
        }
        .divider-text {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        .divider-text::before,
        .divider-text::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #444;
        }
        .divider-text span {
            padding: 0 15px;
            color: #888;
            font-size: 13px;
        }

        /* Profile Styles */
        .profile-pic {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--gold);
            cursor: pointer;
            transition: 0.3s;
        }
        .profile-pic:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px var(--gold);
        }
        .profile-header {
            text-align: center;
            padding: 30px 20px;
            border-bottom: 2px solid var(--gold);
            margin-bottom: 20px;
        }
        .profile-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--gold);
            margin-bottom: 15px;
        }
        .profile-name {
            color: var(--gold);
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .profile-email {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }
        .profile-phone {
            color: #fff;
            font-size: 16px;
        }
        .profile-section-title {
            color: var(--gold);
            font-size: 18px;
            margin: 20px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        .profile-cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 10px;
        }
        .profile-users-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            padding: 10px;
        }
        .profile-car-card {
            background: #252525;
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
            cursor: pointer;
        }
        .profile-car-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }
        .profile-user-card {
            background: #252525;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: 0.3s;
            cursor: pointer;
            border: 1px solid #333;
        }
        .profile-user-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 15px rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
        }
        .profile-user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 20px;
            flex-shrink: 0;
        }
        .profile-user-info {
            flex: 1;
            min-width: 0;
        }
        .profile-user-name {
            color: var(--gold);
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .profile-user-email {
            color: #888;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .follow-btn {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #1a1a1a;
            border: 2px solid #FFD700;
            padding: 10px 18px;
            border-radius: 25px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
            margin-top: 8px;
        }
        .follow-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }
        .follow-btn:hover {
            background: linear-gradient(135deg, #FFA500, #FF8C00);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
            border-color: #FFA500;
        }
        .follow-btn:hover:before {
            left: 100%;
        }
        .follow-btn.following {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            color: #FFD700;
            border: 2px solid #FFD700;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
        }
        .follow-btn.following:hover {
            background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
        }
        .profile-car-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .profile-car-info {
            padding: 12px;
            text-align: center;
        }
        .profile-car-info h4 {
            color: var(--gold);
            margin: 0 0 5px 0;
            font-size: 16px;
        }
        .profile-car-info .price {
            color: #fff;
            font-weight: bold;
            font-size: 15px;
        }
        .no-listings {
            text-align: center;
            padding: 40px 20px;
            color: #888;
        }
        .no-listings-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }
        .upload-btn {
            background: var(--gold);
            color: black;
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            margin-top: 10px;
        }
        .upload-btn:hover {
            background: #c9a030;
        }

        /* Full Page Profile Styles */
        .profile-full-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 4000;
            overflow-y: auto;
        }
        .profile-full-page.active {
            display: block;
        }
        .profile-page-header {
            background: #000;
            height: 70px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--gold);
        }
        .profile-back-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 16px;
            font-weight: bold;
        }
        .profile-back-btn:hover {
            color: #fff;
        }
        .profile-page-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        .profile-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 20px 0;
        }
        .profile-stat {
            text-align: center;
        }
        .profile-stat-number {
            font-size: 28px;
            font-weight: bold;
            color: var(--gold);
        }
        .profile-stat-label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
        }
        .profile-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        .profile-pic-container {
            position: relative;
            display: inline-block;
        }
        .profile-pic-upload-btn {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 3px solid #1a1a1a;
            transition: 0.3s;
        }
        .profile-pic-upload-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }
        .profile-pic-upload-btn svg {
            width: 20px;
            height: 20px;
            fill: black;
        }
        #profilePicInput {
            display: none;
        }
        .uploading-indicator {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #333;
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Drag and Drop Styles */
        .drop-zone {
            border: 2px dashed #555;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s;
            margin-bottom: 15px;
            background: #1a1a1a;
        }
        .drop-zone:hover, .drop-zone.dragover {
            border-color: var(--gold);
            background: #252525;
        }
        .drop-zone-icon {
            font-size: 40px;
            margin-bottom: 10px;
            opacity: 0.7;
        }
        .drop-zone-text {
            color: #888;
            font-size: 14px;
        }
        .drop-zone-text span {
            color: var(--gold);
            text-decoration: underline;
        }
        .drop-zone input[type="file"] {
            display: none;
        }

        /* Full Page Car Details Styles */
        .car-details-full-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 4000;
            overflow-y: auto;
        }
        .car-details-full-page.active {
            display: block;
        }
        .car-details-header {
            background: #000;
            height: 70px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--gold);
        }
        .car-details-back-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 16px;
            font-weight: bold;
        }
        .car-details-back-btn:hover {
            color: #fff;
        }
        .car-details-content {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        .car-details-main-image {
            width: 100%;
            max-height: 500px;
            object-fit: contain;
            border-radius: 15px;
            border: 1px solid #333;
            background: #000;
            transition: opacity 0.15s ease-in-out;
        }
        .car-details-title {
            color: var(--gold);
            font-size: 28px;
            margin: 20px 0;
            text-align: center;
        }
        .car-details-price {
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            text-align: center;
            margin-bottom: 30px;
        }
        .car-details-seller {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: -18px 0 22px;
            color: #ccc;
            font-size: 14px;
        }
        .car-details-seller .seller-name {
            color: #fff;
            font-weight: 700;
        }
        .car-details-seller .verified-badge {
            color: #2ecc71;
            font-weight: 800;
        }
        .car-details-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .car-details-info-item {
            background: #252525;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid var(--gold);
            text-align: left;
        }
        .car-details-info-label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .car-details-info-value {
            font-size: 16px;
            font-weight: bold;
            color: #fff;
        }
        .car-details-wa-btn {
            display: block;
            width: 100%;
            max-width: 400px;
            margin: 20px auto;
            padding: 15px;
            background-color: var(--whatsapp-green);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
        }
        .car-details-wa-btn:hover {
            background-color: #1fb855;
        }
        .other-cars-section {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 2px solid #333;
        }
        .other-cars-title {
            color: var(--gold);
            font-size: 24px;
            margin-bottom: 25px;
            text-align: center;
        }
        .other-cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .other-car-card {
            background: #252525;
            border-radius: 12px;
            overflow: hidden;
            transition: 0.3s;
            cursor: pointer;
            border: 1px solid #333;
        }
        .other-car-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }
        .other-car-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .other-car-info {
            padding: 15px;
            text-align: center;
        }
        .other-car-info h4 {
            color: var(--gold);
            margin: 0 0 8px 0;
            font-size: 16px;
        }
        .other-car-info .price {
            color: #fff;
            font-weight: bold;
            font-size: 18px;
        }
.no-other-cars {
            text-align: center;
            padding: 30px;
            color: #888;
            font-size: 16px;
        }

        /* ==========================================
                 LIKES & COMMENTS STYLES
           ========================================== */
        
        /* Like Button Styles */
        .like-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 12px;
            border-radius: 20px;
            transition: all 0.3s ease;
            color: #888;
            font-size: 14px;
            font-weight: 600;
        }
        
        .like-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
        }
        
        .like-btn.liked {
            color: #e74c3c;
        }
        
        .like-btn.liked:hover {
            background: rgba(231, 76, 60, 0.1);
        }
        
        .like-btn svg {
            width: 22px;
            height: 22px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            transition: all 0.3s ease;
        }
        
        .like-btn.liked svg {
            fill: #e74c3c;
            stroke: #e74c3c;
            animation: heartBeat 0.5s ease;
        }
        
        @keyframes heartBeat {
            0% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(1); }
            75% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Like button on car card */
        .car-card .like-btn {
            width: 100%;
            justify-content: center;
            margin-top: 10px;
            border-top: 1px solid #333;
            padding-top: 12px;
        }
        
        /* Comments Section Styles */
        .comments-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 2px solid #333;
        }
        
        .comments-section-title {
            color: var(--gold);
            font-size: 22px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .comments-count {
            background: var(--gold);
            color: #000;
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: bold;
        }
        
        /* Comment Input Form */
        .comment-form {
            background: #252525;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
        }
        
        .comment-form-title {
            color: var(--gold);
            font-size: 14px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .comment-input-group {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }
        
        .comment-user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .comment-user-avatar svg {
            width: 24px;
            height: 24px;
            fill: #000;
        }
        
        .comment-input-wrapper {
            flex: 1;
        }
        
        .comment-textarea {
            width: 100%;
            min-height: 60px;
            padding: 12px 15px;
            background: #1a1a1a;
            border: 2px solid #333;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            resize: vertical;
            font-family: inherit;
            box-sizing: border-box;
            transition: border-color 0.3s ease;
        }
        
        .comment-textarea:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        .comment-textarea::placeholder {
            color: #666;
        }
        
        .comment-submit-btn {
            background: var(--gold);
            color: black;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .comment-submit-btn:hover {
            background: #c9a030;
            transform: translateY(-2px);
        }
        
        .comment-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .comment-submit-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        
        /* Comments List */
        .comments-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        
        .comment-item {
            background: #252525;
            border-radius: 12px;
            padding: 15px;
            display: flex;
            gap: 12px;
            animation: fadeInComment 0.4s ease;
        }
        
        @keyframes fadeInComment {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .comment-item-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), #c9a030);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
            color: #000;
            font-size: 16px;
        }
        
        .comment-item-content {
            flex: 1;
        }
        
        .comment-item-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }
        
        .comment-item-name {
            color: var(--gold);
            font-weight: bold;
            font-size: 14px;
        }
        
        .comment-item-time {
            color: #666;
            font-size: 12px;
        }
        
        .comment-item-text {
            color: #ccc;
            font-size: 14px;
            line-height: 1.5;
            word-break: break-word;
        }
        
        .comment-item-actions {
            display: flex;
            gap: 15px;
            margin-top: 8px;
        }
        
        .comment-action-btn {
            background: none;
            border: none;
            color: #666;
            font-size: 12px;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }
        
        .comment-action-btn:hover {
            color: var(--gold);
        }
        
        .comment-action-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
        
        /* No Comments State */
        .no-comments {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }
        
        .no-comments-icon {
            font-size: 50px;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .no-comments-text {
            font-size: 16px;
        }
        
        /* Login Prompt */
        .login-prompt {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .login-prompt-text {
            color: #ccc;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .login-prompt-btn {
            background: var(--gold);
            color: black;
            border: none;
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            font-size: 13px;
        }
        
        .login-prompt-btn:hover {
            background: #c9a030;
        }
        
        /* Like Section in Car Details */
        .car-details-like-section {
            display: flex;
            justify-content: center;
            margin: 20px 0;
        }
        
        .car-details-like-btn {
            background: transparent;
            border: 2px solid #333;
            padding: 12px 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #888;
        }
        
        .car-details-like-btn:hover {
            border-color: var(--gold);
            background: rgba(212, 175, 55, 0.05);
        }
        
        .car-details-like-btn.liked {
            border-color: #e74c3c;
            background: #e74c3c;
            color: #fff;
        }

        .car-details-like-btn.liked:hover {
            background: #c0392b;
            border-color: #c0392b;
        }
        
        .car-details-like-btn svg {
            width: 24px;
            height: 24px;
        }
        
        .car-details-like-count {
            font-size: 16px;
            font-weight: bold;
        }
        
        /* Delete Comment Button */
        .delete-comment-btn {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .delete-comment-btn:hover {
            background: rgba(231, 76, 60, 0.2);
            color: #e74c3c;
        }
        
        .delete-comment-btn svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        /* Comment Loading State */
        .comments-loading {
            text-align: center;
            padding: 30px;
            color: #888;
        }
        
        .comments-loading-spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #333;
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Show More Comments Button */
        .show-more-comments-btn {
            background: linear-gradient(135deg, var(--gold), #c9a030);
            color: black;
            border: none;
            padding: 15px 25px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .show-more-comments-btn:hover {
            background: linear-gradient(135deg, #c9a030, var(--gold));
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }
        
        .show-more-comments-btn:active {
            transform: translateY(0);
        }
        
        .show-more-comments-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Image Navigation Styles */
        .car-image-container {
            position: relative;
            width: 100%;
        }
        .car-image-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #444;
            border: 2px solid var(--gold);
            cursor: pointer;
            transition: 0.3s;
        }
        .nav-dot:hover {
            background: var(--gold);
        }
        .nav-dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid var(--gold);
            color: var(--gold);
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            z-index: 10;
        }
        .nav-arrow:hover {
            background: var(--gold);
            color: #000;
        }
        .nav-arrow.prev {
            left: 10px;
        }
        .nav-arrow.next {
            right: 10px;
        }
        .nav-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        /* Card Image Navigation Styles */
        .card-image-container {
            position: relative;
            width: 100%;
        }
        .card-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 18px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
            z-index: 5;
            opacity: 0;
        }
        .card-image-container:hover .card-nav-arrow {
            opacity: 1;
        }
        .card-nav-arrow:hover {
            background: var(--gold);
            color: #000;
        }
        .card-nav-arrow.prev {
            left: 8px;
        }
        .card-nav-arrow.next {
            right: 8px;
        }
        .card-nav-arrow:disabled {
            opacity: 0;
            cursor: not-allowed;
        }
        .card-image-counter {
            position: absolute;
            bottom: 8px;
            right: 8px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--gold);
            font-size: 11px;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 12px;
            border: 1px solid var(--gold);
        }

/* ==========================================
           PROFESSIONAL CHANGE EMAIL MODAL STYLES
           ========================================== */
        
        .change-email-modal {
            z-index: 5000 !important;
        }
        
        .change-email-modal .modal-content {
            max-width: 550px;
            background: linear-gradient(145deg, #1e1e1e, #252525);
            border: 1px solid var(--gold);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.4s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .change-email-header {
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 2px solid #333;
            margin-bottom: 25px;
        }

        .change-email-header h2 {
            color: var(--gold);
            font-size: 26px;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .change-email-header p {
            color: #888;
            font-size: 14px;
            margin: 0;
        }

        /* Progress Indicator */
        .email-progress {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .step-circle {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #333;
            border: 3px solid #444;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #666;
            font-size: 16px;
            transition: all 0.4s ease;
            position: relative;
        }

        .step-circle svg {
            width: 20px;
            height: 20px;
            fill: #4dff88;
            display: none;
        }

        .step-circle.active {
            background: var(--gold);
            border-color: var(--gold);
            color: #000;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            animation: pulseStep 2s infinite;
        }

        @keyframes pulseStep {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
            50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }
        }

        .step-circle.completed {
            background: #4dff88;
            border-color: #4dff88;
            color: transparent;
        }

        .step-circle.completed svg {
            display: block;
        }

        .step-label {
            font-size: 11px;
            color: #666;
            margin-top: 8px;
            text-align: center;
            transition: color 0.3s ease;
        }

        .step-label.active {
            color: var(--gold);
            font-weight: bold;
        }

        .step-line {
            width: 80px;
            height: 3px;
            background: #333;
            margin: 0 10px;
            margin-bottom: 25px;
            transition: background 0.4s ease;
            border-radius: 2px;
        }

        .step-line.completed {
            background: linear-gradient(90deg, #4dff88, var(--gold));
        }

        /* Form Sections */
        .email-form-section {
            display: none;
            animation: fadeInSection 0.4s ease-out;
        }

        .email-form-section.active {
            display: block;
        }

        @keyframes fadeInSection {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Current Email Display */
        .current-email-display {
            background: linear-gradient(135deg, #252525, #1a1a1a);
            border: 2px solid var(--gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }

        .current-email-display::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .current-email-label {
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .current-email-value {
            font-size: 18px;
            color: var(--gold);
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .current-email-value svg {
            width: 20px;
            height: 20px;
            fill: #4dff88;
        }

        /* Input Styles */
        .email-input-group {
            position: relative;
            margin-bottom: 20px;
        }

        .email-input-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
        }

        .email-input-group label svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .email-input {
            width: 100%;
            padding: 15px 20px;
            padding-left: 50px;
            background: #252525;
            border: 2px solid #333;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .email-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }

        .email-input.error {
            border-color: #ff4d4d;
            box-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
        }

        .email-input.success {
            border-color: #4dff88;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 42px;
            width: 20px;
            height: 20px;
            fill: #666;
            transition: fill 0.3s ease;
        }

        .email-input:focus + .input-icon,
        .email-input-group:focus-within .input-icon {
            fill: var(--gold);
        }

        /* Validation Messages */
        .validation-msg {
            font-size: 12px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
            animation: fadeIn 0.3s ease;
        }

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

        .validation-msg.error {
            color: #ff4d4d;
        }

        .validation-msg.success {
            color: #4dff88;
        }

        .validation-msg svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }

        /* Password Visibility Toggle */
        .password-toggle {
            position: absolute;
            right: 18px;
            top: 42px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .password-toggle svg {
            width: 20px;
            height: 20px;
            fill: #666;
            transition: fill 0.3s ease;
        }

        .password-toggle:hover svg {
            fill: var(--gold);
        }

        /* Security Notice */
        .security-notice {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .security-notice svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
            flex-shrink: 0;
        }

        .security-notice-text {
            font-size: 13px;
            color: #ccc;
            line-height: 1.5;
        }

        .security-notice-text strong {
            color: var(--gold);
        }

        /* Buttons */
        .email-btn {
            width: 100%;
            padding: 16px 30px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .email-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .email-btn-primary {
            background: linear-gradient(135deg, var(--gold), #c9a030);
            color: black;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .email-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
        }

        .email-btn-primary:active {
            transform: translateY(0);
        }

        .email-btn-primary:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .email-btn-secondary {
            background: transparent;
            border: 2px solid #444;
            color: #888;
        }

        .email-btn-secondary:hover {
            border-color: #666;
            color: #fff;
        }

        /* Loading Spinner */
        .btn-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top-color: currentColor;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

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

        .email-btn.loading .btn-spinner {
            display: block;
        }

        .email-btn.loading .btn-text {
            opacity: 0.7;
        }

        /* Verification Code Input */
        .code-inputs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 25px 0;
        }

        .code-input {
            width: 55px;
            height: 65px;
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            background: #252525;
            border: 2px solid #333;
            border-radius: 12px;
            color: white;
            transition: all 0.3s ease;
        }

        .code-input:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        .code-input.error {
            border-color: #ff4d4d;
            animation: shakeError 0.5s ease;
        }

        @keyframes shakeError {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Resend Code */
        .resend-code {
            text-align: center;
            margin-top: 20px;
        }

        .resend-code-text {
            color: #888;
            font-size: 14px;
        }

        .resend-code-link {
            color: var(--gold);
            cursor: pointer;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .resend-code-link:hover {
            color: #fff;
            text-decoration: underline;
        }

        .resend-code-link.disabled {
            color: #555;
            cursor: not-allowed;
        }

        /* Success View */
        .success-view {
            text-align: center;
            padding: 20px 0;
        }

        .success-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #4dff88, #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: successPop 0.5s ease-out;
        }

        @keyframes successPop {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-icon svg {
            width: 50px;
            height: 50px;
            fill: white;
        }

        .success-title {
            color: #4dff88;
            font-size: 26px;
            margin-bottom: 15px;
        }

        .success-message {
            color: #ccc;
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .success-message strong {
            color: var(--gold);
        }

        /* Timer */
        .code-timer {
            font-size: 14px;
            color: #888;
            margin-top: 10px;
        }

        .code-timer span {
            color: var(--gold);
            font-weight: bold;
        }

        /* Warning Box */
        .warning-box {
            background: rgba(255, 77, 77, 0.1);
            border: 1px solid rgba(255, 77, 77, 0.3);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .warning-box svg {
            width: 24px;
            height: 24px;
            fill: #ff4d4d;
            flex-shrink: 0;
        }
        .warning-box-text {
            font-size: 13px;
            color: #ff9999;
            line-height: 1.5;
        }
        
        /* ==========================================
           CHANGE PASSWORD MODAL STYLES
           ========================================== */
        
        .change-password-modal {
            z-index: 5000 !important;
        }
        
        .change-password-modal .modal-content {
            max-width: 500px;
            background: linear-gradient(145deg, #1e1e1e, #252525);
            border: 1px solid var(--gold);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.4s ease-out;
        }
        
        .password-strength-bar {
            height: 4px;
            background: #333;
            border-radius: 2px;
            margin-top: 8px;
            overflow: hidden;
        }
        
        .password-strength-fill {
            height: 100%;
            width: 0%;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .password-strength-fill.weak {
            width: 33%;
            background: #ff4d4d;
        }
        
        .password-strength-fill.medium {
            width: 66%;
            background: #ffcc00;
        }
        
        .password-strength-fill.strong {
            width: 100%;
            background: #4dff88;
        }
        
        .password-requirements {
            background: #252525;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .password-requirements-title {
            color: var(--gold);
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .requirement {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #666;
            margin-bottom: 6px;
            transition: color 0.3s ease;
        }
        
        .requirement.met {
            color: #4dff88;
        }
        
        .requirement svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        .password-match-indicator {
            font-size: 13px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .password-match-indicator.match {
            color: #4dff88;
        }
        
        .password-match-indicator.no-match {
            color: #ff4d4d;
        }
        
        .change-password-btn {
            background: linear-gradient(135deg, var(--gold), #c9a030);
            color: black;
            font-weight: bold;
            padding: 14px 30px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        
        .change-password-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
        }
        
        .change-password-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .change-password-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        .change-password-section {
            background: linear-gradient(135deg, #252525, #1a1a1a);
            border: 2px solid #333;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .change-password-section:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
        }
        
        .change-password-section h4 {
            color: var(--gold);
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .change-password-section h4 svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }
        
.change-password-section p {
            color: #888;
            font-size: 13px;
            margin: 0;
        }

        /* ==========================================
           ADVANCED SEARCH & FILTERS STYLES
           ========================================== */
        
        .filters-panel {
            background: linear-gradient(145deg, #1e1e1e, #252525);
            border: 1px solid var(--gold);
            border-radius: 15px;
            padding: 20px;
            margin: 20px auto;
            max-width: 1200px;
            display: none;
        }
        
        .filters-panel.active {
            display: block;
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .filters-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        
        .filters-header h3 {
            color: var(--gold);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filters-header h3 svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }
        
        .toggle-filters-btn {
            background: var(--gold);
            color: black;
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .toggle-filters-btn:hover {
            background: #c9a030;
            transform: scale(1.05);
        }
        
        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
        }
        
        .filter-group label {
            color: var(--gold);
            font-size: 13px;
            font-weight: bold;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .filter-group label svg {
            width: 16px;
            height: 16px;
            fill: var(--gold);
        }
        
        .filter-group input,
        .filter-group select {
            width: 100%;
            padding: 12px 15px;
            background: #252525;
            border: 2px solid #333;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .filter-group input:focus,
        .filter-group select:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        
        .filter-group input::placeholder {
            color: #666;
        }
        
        .price-range {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .price-range span {
            color: var(--gold);
            font-weight: bold;
        }
        
        .price-range input {
            flex: 1;
        }
        
        .year-range {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        
        .year-range span {
            color: var(--gold);
            font-weight: bold;
        }
        
        .year-range input {
            flex: 1;
        }
        
        .filter-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding-top: 15px;
            border-top: 1px solid #333;
        }
        
        .filter-btn {
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .filter-btn.apply {
            background: linear-gradient(135deg, var(--gold), #c9a030);
            color: black;
            border: none;
        }
        
        .filter-btn.apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
        }
        
        .filter-btn.reset {
            background: transparent;
            border: 2px solid #444;
            color: #888;
        }
        
        .filter-btn.reset:hover {
            border-color: #666;
            color: white;
        }
        
        .filter-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        
        .active-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #333;
        }
        
        .active-filters-label {
            color: #888;
            font-size: 13px;
            margin-right: 5px;
        }
        
        .filter-tag {
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: fadeInTag 0.3s ease;
        }
        
        @keyframes fadeInTag {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .filter-tag button {
            background: none;
            border: none;
            color: var(--gold);
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            padding: 0;
            display: flex;
            align-items: center;
        }
        
        .filter-tag button:hover {
            color: #fff;
        }
        
        .clear-all-filters {
            color: #ff4d4d;
            font-size: 12px;
            cursor: pointer;
            text-decoration: underline;
            margin-left: auto;
        }
        
        .clear-all-filters:hover {
            color: #ff6b6b;
        }
        
        .results-count {
            text-align: center;
            color: #888;
            font-size: 14px;
            margin: 15px 0;
            padding: 10px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            display: none;
        }
        
        .results-count.active {
            display: block;
        }
        
        .results-count strong {
            color: var(--gold);
        }
        
        /* Quick Filters */
        .quick-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
        }
        
        .quick-filter-btn {
            background: #252525;
            border: 1px solid #444;
            color: #888;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quick-filter-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        
.quick-filter-btn.active {
            border-color: var(--gold);
            color: black;
        }
        
        /* ==========================================
           FAVORITES PANEL STYLES
           ========================================== */
        
        .favorites-btn {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .favorites-btn:hover {
            background: var(--gold);
            color: black;
        }
        
        .favorites-btn .badge {
            background: #e74c3c;
            color: white;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
        }
        
        /* Favorites Panel (Slide-in from right) */
        .favorites-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            max-width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #1e1e1e, #252525);
            z-index: 5000;
            transition: right 0.4s ease-out;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
            overflow-y: auto;
        }
        
        .favorites-panel.active {
            right: 0;
        }
        
        .favorites-panel-header {
            background: #000;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .favorites-panel-header h2 {
            color: var(--gold);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .favorites-panel-close {
            background: none;
            border: none;
            color: var(--gold);
            font-size: 28px;
            cursor: pointer;
            transition: 0.3s;
        }
        
        .favorites-panel-close:hover {
            color: #fff;
            transform: rotate(90deg);
        }
        
        .favorites-panel-content {
            padding: 20px;
        }
        
        .favorites-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .favorite-car-card {
            background: #252525;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #333;
            transition: 0.3s;
        }
        
        .favorite-car-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
        }
        
        .favorite-car-image {
            position: relative;
            height: 150px;
        }
        
        .favorite-car-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
        }
        
        .price-drop-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            animation: pulseBadge 2s infinite;
        }
        
        @keyframes pulseBadge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .remove-favorite-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #e74c3c;
            color: #e74c3c;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .remove-favorite-btn:hover {
            background: #e74c3c;
            color: white;
        }
        
        .favorite-car-info {
            padding: 15px;
            cursor: pointer;
        }
        
        .favorite-car-info h4 {
            color: var(--gold);
            margin: 0 0 10px 0;
            font-size: 16px;
        }
        
        .favorite-price-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }
        
        .favorite-price-row .current-price {
            font-size: 18px;
            font-weight: bold;
            color: #fff;
        }
        
        .favorite-price-row .original-price {
            font-size: 14px;
            color: #888;
            text-decoration: line-through;
        }
        
        .price-drop-info {
            color: #4dff88;
            font-size: 13px;
            font-weight: bold;
        }
        
        .tracking-info {
            color: #888;
            font-size: 12px;
        }
        
        .no-favorites {
            text-align: center;
            padding: 40px 20px;
        }
        
        .no-favorites-icon {
            font-size: 60px;
            margin-bottom: 15px;
        }
        
        .no-favorites-text {
            color: var(--gold);
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .no-favorites-subtext {
            color: #888;
            font-size: 14px;
            margin: 0;
        }
        
        /* Favorites Full Page */
        .favorites-full-page {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 6000;
            overflow-y: auto;
        }
        
        .favorites-full-page.active {
            display: block;
        }
        
        .favorites-page-header {
            background: #000;
            height: 70px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid var(--gold);
        }
        
        .favorites-back-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-size: 16px;
            font-weight: bold;
        }
        
        .favorites-back-btn:hover {
            color: #fff;
        }
        
        .favorites-page-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .favorites-page-title {
            color: var(--gold);
            font-size: 28px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .favorites-page-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .favorites-notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #e74c3c;
            color: white;
            font-size: 10px;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            display: none;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        /* Toast Notification Styles */
        .notification-toast {
            position: fixed;
            top: 90px;
            right: 20px;
            background: linear-gradient(135deg, #1e1e1e, #252525);
            border: 1px solid var(--gold);
            border-radius: 12px;
            padding: 15px 20px;
            z-index: 10000;
            animation: slideInRight 0.3s ease-out;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            max-width: 300px;
        }
        
        .notification-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .notification-icon {
            font-size: 24px;
        }
        
        .notification-message {
            color: #fff;
            font-size: 14px;
            line-height: 1.4;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideOutRight {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }
        
        /* Favorites button in header */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }
        
        /* Save button on car cards */
        .save-btn {
            background: transparent;
            border: 1px solid #444;
            color: #888;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            width: 100%;
            justify-content: center;
            margin-top: 10px;
        }
        
        .save-btn:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        
        .save-btn.favorited {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--gold);
            color: var(--gold);
        }
        
        .save-btn.favorited:hover {
            background: rgba(231, 76, 60, 0.1);
            border-color: #e74c3c;
            color: #e74c3c;
        }
        


/* ---- Multi-page additions ---- */
a.btn-gold{display:inline-block;text-decoration:none;}
