/* Verhuurmeester - Tech Startup Inspired Design */
/* Based on modern tech startup aesthetic with turquoise/cyan primary colors */

:root {
    /* Primary Colors - Turquoise/Cyan Theme */
    --vm-primary: #00d4ff;
    --vm-primary-dark: #00b8e6;
    --vm-primary-light: #33ddff;
    --vm-primary-rgb: 0, 212, 255;
    
    /* Secondary Colors - Navy Blue for Structure */
    --vm-secondary: #1a1f3a;
    --vm-secondary-dark: #0f1420;
    --vm-secondary-light: #2d3350;
    
    /* Accent Colors - Orange/Coral for CTAs */
    --vm-accent: #ff6b35;
    --vm-accent-dark: #e65a2d;
    --vm-accent-light: #ff8555;
    
    /* Status Colors */
    --vm-success: #00e396;
    --vm-warning: #feb019;
    --vm-danger: #ff4560;
    --vm-info: #008ffb;
    
    /* Neutral Colors - 60% Base */
    --vm-white: #ffffff;
    --vm-off-white: #f8f9fb;
    --vm-light-gray: #f0f2f5;
    --vm-gray: #8492a6;
    --vm-dark-gray: #3c4858;
    --vm-dark: #1a1f3a;
    --vm-black: #0a0e1a;
    
    /* UI Colors */
    --vm-border: #e4e7eb;
    --vm-border-light: #f0f2f5;
    --vm-divider: rgba(0, 0, 0, 0.08);
    
    /* Overlay & Glass */
    --vm-overlay: rgba(26, 31, 58, 0.8);
    --vm-glass-bg: rgba(255, 255, 255, 0.85);
    --vm-glass-border: rgba(255, 255, 255, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #00b8e6 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1f3a 0%, #2d3350 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(0, 212, 255, 0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(255, 107, 53, 0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(0, 212, 255, 0.1) 0px, transparent 50%);
    
    /* Shadows - Soft & Modern */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 24px rgba(0, 212, 255, 0.25);
    --shadow-accent: 0 8px 24px rgba(255, 107, 53, 0.25);
    
    /* Border Radius - Clean & Modern */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 999px;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--vm-dark);
    background: var(--vm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.vm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Hero Section - Tech Startup Style */
.vm-hero-search {
    background: var(--vm-secondary);
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
    position: relative;
    overflow: hidden;
}

.vm-hero-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.4;
    z-index: 0;
}

.vm-hero-search::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.vm-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 var(--space-md) 0;
    color: var(--vm-white);
    text-align: center;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.vm-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin: 0 0 var(--space-2xl) 0;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

/* Search Mode Selector - Clean Pills */
.vm-search-mode-selector {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.vm-mode-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--vm-white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 0.938rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    white-space: nowrap;
}

.vm-mode-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
}

.vm-mode-btn.active {
    background: var(--vm-white);
    color: var(--vm-primary);
    border-color: var(--vm-white);
    box-shadow: var(--shadow-primary);
}

.vm-mode-btn .vm-icon {
    font-size: 1.125rem;
}

/* Search Box - Clean White Card */
.vm-search-box {
    display: none;
    background: var(--vm-white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--vm-border);
    position: relative;
    z-index: 1;
}

.vm-search-box.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

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

.vm-search-box h3 {
    color: var(--vm-secondary);
    margin: 0 0 var(--space-lg) 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Input Fields - Modern & Clean */
.vm-triangle-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space-lg);
}

.vm-location-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--vm-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    background: var(--vm-white);
    color: var(--vm-dark);
    font-family: var(--font-sans);
}

.vm-location-input::placeholder {
    color: var(--vm-gray);
}

.vm-location-input:hover {
    border-color: var(--vm-primary-light);
}

.vm-location-input:focus {
    outline: none;
    border-color: var(--vm-primary);
    box-shadow: 0 0 0 4px rgba(var(--vm-primary-rgb), 0.1);
}

/* Mini Map */
.vm-mini-map {
    width: 100%;
    height: 320px;
    background: var(--vm-light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--vm-border);
}

/* Radius Slider - Modern Style */
.vm-radius-slider {
    margin-top: var(--space-lg);
}

.vm-radius-slider label {
    display: block;
    color: var(--vm-secondary);
    margin-bottom: var(--space);
    font-weight: 600;
    font-size: 0.938rem;
}

.vm-radius-slider label span {
    color: var(--vm-primary);
    font-size: 1.75rem;
    font-weight: 700;
}

.vm-radius-slider input[type="range"] {
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, 
        var(--vm-primary) 0%, 
        var(--vm-primary) 20%, 
        var(--vm-border) 20%, 
        var(--vm-border) 100%);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
}

.vm-radius-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--vm-white);
    border: 3px solid var(--vm-primary);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition-fast);
}

.vm-radius-slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-primary);
}

/* Quick Categories - Grid Layout */
.vm-quick-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.vm-cat-icon {
    background: var(--vm-white);
    border: 1.5px solid var(--vm-border);
    color: var(--vm-dark);
    padding: var(--space) var(--space-sm);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    text-align: center;
}

.vm-cat-icon:hover {
    border-color: var(--vm-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vm-cat-icon.active {
    background: var(--gradient-primary);
    color: var(--vm-white);
    border-color: var(--vm-primary);
    box-shadow: var(--shadow-primary);
}

.vm-cat-emoji {
    font-size: 2rem;
    line-height: 1;
}

.vm-cat-name {
    font-size: 0.813rem;
    line-height: 1.3;
}

.vm-cat-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.vm-cat-icon.active .vm-cat-count {
    background: rgba(255, 255, 255, 0.25);
}

/* Search Button - Accent Color CTA */
.vm-search-btn {
    background: var(--gradient-accent);
    color: var(--vm-white);
    border: none;
    padding: 18px 48px;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.vm-search-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: var(--transition-slow);
}

.vm-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
}

.vm-search-btn:hover::before {
    left: 100%;
}

.vm-search-btn:active {
    transform: translateY(-1px);
}

/* Filters Bar - Sticky Clean */
.vm-filters-bar {
    background: var(--vm-white);
    border-bottom: 1px solid var(--vm-border);
    padding: var(--space-lg) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.98);
}

.vm-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space);
}

.vm-filters-grid-secondary {
    margin-top: var(--space);
    padding-top: var(--space);
    border-top: 1px solid var(--vm-border-light);
}

.vm-filter-group-availability {
    grid-column: 1 / -1;
    max-width: 600px;
}

.vm-date-inputs {
    display: flex;
    align-items: center;
    gap: var(--space);
}

.vm-date-inputs .vm-filter-date {
    flex: 1;
}

.vm-date-separator {
    color: var(--vm-gray);
    font-weight: 600;
    font-size: 0.938rem;
}

.vm-filters-grid-secondary {
    margin-top: var(--space);
    grid-template-columns: 1fr;
}

.vm-filter-group-availability {
    max-width: 600px;
}

.vm-date-inputs {
    display: flex;
    align-items: center;
    gap: var(--space);
}

.vm-date-inputs .vm-filter-date {
    flex: 1;
}

.vm-date-separator {
    color: var(--vm-gray);
    font-weight: 600;
    white-space: nowrap;
}

.vm-filter-group label {
    display: block;
    color: var(--vm-secondary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vm-filter-select,
.vm-filter-date {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--vm-border);
    border-radius: var(--radius);
    font-size: 0.938rem;
    font-weight: 500;
    transition: var(--transition);
    background: var(--vm-white);
    font-family: var(--font-sans);
}

.vm-filter-select:hover,
.vm-filter-date:hover {
    border-color: var(--vm-primary-light);
}

.vm-filter-select:focus,
.vm-filter-date:focus {
    outline: none;
    border-color: var(--vm-primary);
    box-shadow: 0 0 0 4px rgba(var(--vm-primary-rgb), 0.1);
}

.vm-price-inputs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.vm-price-inputs input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--vm-border);
    border-radius: var(--radius);
    font-size: 0.938rem;
    font-weight: 500;
}

.vm-price-inputs span {
    color: var(--vm-gray);
    font-weight: 600;
}

/* View Toggle - Segmented Control */
.vm-view-toggle {
    display: inline-flex;
    gap: 4px;
    background: var(--vm-light-gray);
    padding: 4px;
    border-radius: var(--radius);
}

.vm-view-btn {
    background: transparent;
    border: none;
    color: var(--vm-gray);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    font-size: 0.875rem;
}

.vm-view-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--vm-dark);
}

.vm-view-btn.active {
    background: var(--vm-white);
    color: var(--vm-primary);
    box-shadow: var(--shadow-xs);
}

/* Results Section */
.vm-results-section {
    padding: var(--space-2xl) 0;
    min-height: 60vh;
}

.vm-results-header {
    margin-bottom: var(--space-xl);
}

.vm-results-header h2 {
    color: var(--vm-secondary);
    font-size: 2.25rem;
    margin: 0 0 var(--space-sm) 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

#vm-results-count {
    color: var(--vm-gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Results Grid */
.vm-results-grid {
    display: none;
}

.vm-results-grid.active {
    display: block;
}

#vm-listings-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Listing Card - Clean & Modern */
.vm-listing-card {
    background: var(--vm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--vm-border);
    display: flex;
    flex-direction: column;
}

.vm-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--vm-primary-light);
}

.vm-listing-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--vm-light-gray);
}

.vm-listing-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vm-listing-badges {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space);
    flex-wrap: wrap;
}

.vm-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.vm-badge-verified {
    background: var(--vm-success);
    color: var(--vm-white);
}

.vm-badge-featured {
    background: var(--vm-accent);
    color: var(--vm-white);
}

.vm-listing-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vm-secondary);
    margin: 0 0 var(--space-sm) 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.vm-listing-location {
    color: var(--vm-gray);
    font-size: 0.875rem;
    margin-bottom: var(--space);
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.vm-listing-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: auto;
    padding-bottom: var(--space);
}

.vm-stars {
    color: var(--vm-warning);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.vm-reviews-count {
    color: var(--vm-gray);
    font-size: 0.875rem;
    font-weight: 500;
}

.vm-listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space);
    border-top: 1px solid var(--vm-border-light);
    margin-top: auto;
}

.vm-listing-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vm-secondary);
    letter-spacing: -0.01em;
}

.vm-listing-price small {
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--vm-gray);
}

.vm-listing-distance {
    background: var(--gradient-primary);
    color: var(--vm-white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 700;
}

/* Loading State */
.vm-loading {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.vm-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--vm-border);
    border-top-color: var(--vm-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto var(--space-lg);
}

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

/* Pagination */
.vm-pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.vm-page-btn {
    background: var(--vm-white);
    border: 1.5px solid var(--vm-border);
    color: var(--vm-dark);
    padding: 10px 16px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    min-width: 44px;
    font-size: 0.938rem;
}

.vm-page-btn:hover {
    border-color: var(--vm-primary);
    background: var(--vm-off-white);
}

.vm-page-btn.active {
    background: var(--vm-primary);
    color: var(--vm-white);
    border-color: var(--vm-primary);
    box-shadow: var(--shadow-primary);
}

.vm-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Map View */
.vm-results-map-view {
    display: none;
}

.vm-results-map-view.active {
    display: block;
}

#vm-main-map {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--vm-border);
    box-shadow: var(--shadow);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vm-hero-search {
        padding: var(--space-2xl) var(--space-md) var(--space-xl);
    }
    
    #vm-listings-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 32px;
        --space-2xl: 48px;
        --space-3xl: 64px;
    }
    
    .vm-search-mode-selector {
        flex-direction: column;
        width: 100%;
    }
    
    .vm-mode-btn {
        width: 100%;
        justify-content: center;
    }
    
    .vm-search-box {
        padding: var(--space-lg);
    }
    
    .vm-triangle-inputs {
        grid-template-columns: 1fr;
    }
    
    .vm-filters-grid {
        grid-template-columns: 1fr;
    }
    
    #vm-listings-container {
        grid-template-columns: 1fr;
    }
    
    .vm-quick-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Utilities */
.vm-text-center { text-align: center; }
.vm-mt-4 { margin-top: var(--space-lg); }
.vm-mb-4 { margin-bottom: var(--space-lg); }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid var(--vm-primary);
    outline-offset: 2px;
}

/* Availability Row - Separate Line */
.vm-filters-grid-secondary {
    margin-top: var(--space);
    padding-top: var(--space);
    border-top: 1px solid var(--vm-border-light);
}

.vm-filter-group-availability {
    max-width: 600px;
}

.vm-date-inputs {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.vm-date-separator {
    color: var(--vm-gray);
    font-weight: 600;
    font-size: 0.938rem;
    padding: 0 var(--space-sm);
}

.vm-filter-date {
    flex: 1;
}

/* ========================================
   DASHBOARD STYLING
   ======================================== */

.vm-dashboard-wrapper {
    background: var(--vm-white);
}

.vm-dashboard-header {
    background: var(--vm-secondary);
    padding: var(--space-xl) var(--space-md);
    color: var(--vm-white);
}

.vm-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.vm-header-left h1 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--vm-white);
}

.vm-header-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.vm-dashboard-nav {
    background: var(--vm-white);
    border-bottom: 2px solid var(--vm-border);
    position: sticky;
    top: 0;
    z-index: 99;
}

.vm-tabs-nav {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vm-tab-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space) var(--space-lg);
    color: var(--vm-gray);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.vm-tab-link:hover {
    color: var(--vm-primary);
    background: var(--vm-light-gray);
}

.vm-tab-link.active {
    color: var(--vm-primary);
    border-bottom-color: var(--vm-primary);
}

.vm-tab-icon {
    font-size: 1.25rem;
}

.vm-badge-count-small {
    background: var(--vm-primary);
    color: var(--vm-white);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.vm-dashboard-content {
    padding: var(--space-2xl) 0;
    min-height: 60vh;
}

.vm-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.vm-stat-card {
    background: var(--vm-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--vm-border);
    text-align: center;
    transition: var(--transition);
}

.vm-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--vm-primary);
}

.vm-stat-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space);
}

.vm-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vm-primary);
    margin-bottom: var(--space-sm);
}

.vm-stat-label {
    color: var(--vm-gray);
    font-size: 0.938rem;
    font-weight: 500;
}

.vm-empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.vm-empty-state .vm-icon {
    font-size: 4rem;
    margin-bottom: var(--space);
    opacity: 0.5;
}

.vm-empty-state h3 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--vm-secondary);
}

.vm-empty-state p {
    margin: 0 0 var(--space-lg) 0;
    color: var(--vm-gray);
}

/* ========================================
   ADD LISTING STYLING
   ======================================== */

.vm-add-listing-wrapper {
    background: var(--vm-light-gray);
}

.vm-add-listing-header {
    background: var(--vm-white);
    padding: var(--space-2xl) var(--space-md);
    border-bottom: 1px solid var(--vm-border);
}

.vm-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.vm-add-listing-header h1 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vm-secondary);
}

.vm-progress-steps {
    background: var(--vm-white);
    padding: var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--vm-border);
}

.vm-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vm-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.vm-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vm-light-gray);
    border: 2px solid var(--vm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--vm-gray);
    transition: var(--transition);
}

.vm-step.active .vm-step-number {
    background: var(--vm-primary);
    border-color: var(--vm-primary);
    color: var(--vm-white);
}

.vm-step.completed .vm-step-number {
    background: var(--vm-success);
    border-color: var(--vm-success);
    color: var(--vm-white);
}

.vm-step-label {
    font-size: 0.875rem;
    color: var(--vm-gray);
    font-weight: 600;
}

.vm-step.active .vm-step-label {
    color: var(--vm-primary);
}

.vm-step-divider {
    flex: 1;
    height: 2px;
    background: var(--vm-border);
    margin: 0 var(--space-sm);
    margin-bottom: 32px;
}

.vm-add-listing-form {
    padding: var(--space-2xl) 0;
}

.vm-form-section {
    display: none;
}

.vm-form-section.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.vm-form-card {
    background: var(--vm-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--vm-border);
}

.vm-form-card h2 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vm-secondary);
}

.vm-section-desc {
    color: var(--vm-gray);
    margin: 0 0 var(--space-xl) 0;
}

.vm-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space-xl);
}

.vm-category-option {
    cursor: pointer;
}

.vm-category-option input[type="radio"] {
    display: none;
}

.vm-category-card {
    background: var(--vm-white);
    border: 2px solid var(--vm-border);
    border-radius: var(--radius);
    padding: var(--space-lg) var(--space);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.vm-category-option:hover .vm-category-card {
    border-color: var(--vm-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vm-category-option input:checked + .vm-category-card {
    background: var(--vm-primary);
    border-color: var(--vm-primary);
    color: var(--vm-white);
}

.vm-form-group {
    margin-bottom: var(--space-lg);
}

.vm-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.label-text {
    font-weight: 600;
    color: var(--vm-secondary);
    font-size: 0.938rem;
}

.label-hint {
    font-size: 0.813rem;
    color: var(--vm-gray);
}

.vm-input,
.vm-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--vm-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
    background: var(--vm-white);
}

.vm-input:hover,
.vm-textarea:hover {
    border-color: var(--vm-primary-light);
}

.vm-input:focus,
.vm-textarea:focus {
    outline: none;
    border-color: var(--vm-primary);
    box-shadow: 0 0 0 4px rgba(var(--vm-primary-rgb), 0.1);
}

.vm-textarea {
    resize: vertical;
    min-height: 120px;
}

.vm-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.vm-input-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.vm-input-prefix .prefix {
    position: absolute;
    left: 18px;
    color: var(--vm-gray);
    font-weight: 700;
    font-size: 1.125rem;
    pointer-events: none;
}

.vm-input-prefix input {
    padding-left: 42px;
}

.vm-date-row {
    display: flex;
    align-items: center;
    gap: var(--space);
}

.vm-date-separator {
    color: var(--vm-gray);
    font-weight: 600;
}

.vm-upload-area {
    margin-bottom: var(--space-lg);
}

.vm-file-input {
    display: none;
}

.vm-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space);
    padding: var(--space-2xl);
    border: 2px dashed var(--vm-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    background: var(--vm-light-gray);
}

.vm-upload-label:hover {
    border-color: var(--vm-primary);
    background: rgba(var(--vm-primary-rgb), 0.05);
}

.vm-upload-icon {
    font-size: 3rem;
    opacity: 0.6;
}

.vm-upload-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vm-upload-text strong {
    color: var(--vm-secondary);
    font-size: 1.125rem;
}

.vm-upload-text span {
    color: var(--vm-gray);
    font-size: 0.938rem;
}

.vm-upload-hint {
    font-size: 0.813rem;
    color: var(--vm-gray);
}

.vm-image-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space);
    margin-top: var(--space-lg);
}

.vm-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--vm-border);
}

.vm-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vm-remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--vm-danger);
    color: var(--vm-white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.vm-preview-item:hover .vm-remove-image {
    opacity: 1;
}

.vm-form-actions {
    display: flex;
    gap: var(--space);
    justify-content: space-between;
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--vm-border-light);
}

.vm-btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* Button Styles */
.vm-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-sans);
}

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

.vm-btn-primary:hover {
    background: var(--vm-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.vm-btn-secondary {
    background: var(--vm-white);
    color: var(--vm-secondary);
    border: 2px solid var(--vm-border);
}

.vm-btn-secondary:hover {
    border-color: var(--vm-primary);
    color: var(--vm-primary);
}

.vm-btn-accent {
    background: linear-gradient(135deg, var(--vm-accent) 0%, var(--vm-accent-light) 100%);
    color: var(--vm-white);
    box-shadow: var(--shadow-accent);
}

.vm-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .vm-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vm-tabs-nav {
        gap: 0;
    }
    
    .vm-tab-link {
        flex: 1;
        justify-content: center;
        font-size: 0.875rem;
    }
    
    .vm-tab-label {
        display: none;
    }
    
    .vm-steps {
        overflow-x: auto;
    }
    
    .vm-step-label {
        font-size: 0.75rem;
    }
    
    .vm-form-card {
        padding: var(--space-lg);
    }
    
    .vm-form-row {
        grid-template-columns: 1fr;
    }
    
    .vm-form-actions {
        flex-direction: column;
    }
}

/* Single Price Input Styling */
.vm-price-input-single {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.vm-price-prefix {
    color: var(--vm-gray);
    font-weight: 600;
    font-size: 0.938rem;
}

.vm-price-input-single input {
    flex: 1;
}

/* ========================================
   DIVI OVERRIDE & SPECIFICITY BOOST
   ======================================== */

/* Force our styling on Divi pages */
.page .vm-dashboard-wrapper,
.page .vm-add-listing-wrapper,
#main-content .vm-dashboard-wrapper,
#main-content .vm-add-listing-wrapper,
.et_pb_section .vm-dashboard-wrapper,
.et_pb_section .vm-add-listing-wrapper {
    background: var(--vm-white) !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Dashboard Header Override */
.page .vm-dashboard-header,
#main-content .vm-dashboard-header,
.et_pb_section .vm-dashboard-header {
    background: var(--vm-secondary) !important;
    padding: var(--space-xl) var(--space-md) !important;
    color: var(--vm-white) !important;
    margin: 0 !important;
    width: 100% !important;
}

.page .vm-dashboard-header h1,
#main-content .vm-dashboard-header h1,
.et_pb_section .vm-dashboard-header h1 {
    margin: 0 0 var(--space-sm) 0 !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--vm-white) !important;
    line-height: 1.2 !important;
}

.page .vm-header-subtitle,
#main-content .vm-header-subtitle,
.et_pb_section .vm-header-subtitle {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

/* Dashboard Navigation Override */
.page .vm-dashboard-nav,
#main-content .vm-dashboard-nav,
.et_pb_section .vm-dashboard-nav {
    background: var(--vm-white) !important;
    border-bottom: 2px solid var(--vm-border) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page .vm-tab-link,
#main-content .vm-tab-link,
.et_pb_section .vm-tab-link {
    display: flex !important;
    align-items: center !important;
    gap: var(--space-sm) !important;
    padding: var(--space) var(--space-lg) !important;
    color: var(--vm-gray) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border-bottom: 3px solid transparent !important;
    transition: var(--transition) !important;
}

.page .vm-tab-link:hover,
#main-content .vm-tab-link:hover,
.et_pb_section .vm-tab-link:hover {
    color: var(--vm-primary) !important;
    background: var(--vm-light-gray) !important;
}

.page .vm-tab-link.active,
#main-content .vm-tab-link.active,
.et_pb_section .vm-tab-link.active {
    color: var(--vm-primary) !important;
    border-bottom-color: var(--vm-primary) !important;
}

/* Stat Cards Override */
.page .vm-stat-card,
#main-content .vm-stat-card,
.et_pb_section .vm-stat-card {
    background: var(--vm-white) !important;
    padding: var(--space-lg) !important;
    border-radius: var(--radius-lg) !important;
    border: 1.5px solid var(--vm-border) !important;
    text-align: center !important;
    box-shadow: none !important;
}

.page .vm-stat-card:hover,
#main-content .vm-stat-card:hover,
.et_pb_section .vm-stat-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-md) !important;
    border-color: var(--vm-primary) !important;
}

.page .vm-stat-value,
#main-content .vm-stat-value,
.et_pb_section .vm-stat-value {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--vm-primary) !important;
    margin-bottom: var(--space-sm) !important;
    line-height: 1 !important;
}

/* Add Listing Header Override */
.page .vm-add-listing-header,
#main-content .vm-add-listing-header,
.et_pb_section .vm-add-listing-header {
    background: var(--vm-white) !important;
    padding: var(--space-2xl) var(--space-md) !important;
    border-bottom: 1px solid var(--vm-border) !important;
    margin: 0 !important;
}

.page .vm-add-listing-header h1,
#main-content .vm-add-listing-header h1,
.et_pb_section .vm-add-listing-header h1 {
    margin: 0 0 var(--space-sm) 0 !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--vm-secondary) !important;
    line-height: 1.2 !important;
}

/* Progress Steps Override */
.page .vm-progress-steps,
#main-content .vm-progress-steps,
.et_pb_section .vm-progress-steps {
    background: var(--vm-white) !important;
    padding: var(--space-lg) var(--space-md) !important;
    border-bottom: 1px solid var(--vm-border) !important;
    margin: 0 !important;
}

.page .vm-step-number,
#main-content .vm-step-number,
.et_pb_section .vm-step-number {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: var(--vm-light-gray) !important;
    border: 2px solid var(--vm-border) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    color: var(--vm-gray) !important;
}

.page .vm-step.active .vm-step-number,
#main-content .vm-step.active .vm-step-number,
.et_pb_section .vm-step.active .vm-step-number {
    background: var(--vm-primary) !important;
    border-color: var(--vm-primary) !important;
    color: var(--vm-white) !important;
}

/* Form Card Override */
.page .vm-form-card,
#main-content .vm-form-card,
.et_pb_section .vm-form-card {
    background: var(--vm-white) !important;
    padding: var(--space-2xl) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow) !important;
    border: 1px solid var(--vm-border) !important;
    margin: 0 0 var(--space-lg) 0 !important;
}

.page .vm-form-card h2,
#main-content .vm-form-card h2,
.et_pb_section .vm-form-card h2 {
    margin: 0 0 var(--space-sm) 0 !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--vm-secondary) !important;
    line-height: 1.3 !important;
}

/* Category Grid Override */
.page .vm-category-card,
#main-content .vm-category-card,
.et_pb_section .vm-category-card {
    background: var(--vm-white) !important;
    border: 2px solid var(--vm-border) !important;
    border-radius: var(--radius) !important;
    padding: var(--space-lg) var(--space) !important;
    text-align: center !important;
    box-shadow: none !important;
}

.page .vm-category-option input:checked + .vm-category-card,
#main-content .vm-category-option input:checked + .vm-category-card,
.et_pb_section .vm-category-option input:checked + .vm-category-card {
    background: var(--vm-primary) !important;
    border-color: var(--vm-primary) !important;
    color: var(--vm-white) !important;
}

/* Input Override */
.page .vm-input,
.page .vm-textarea,
#main-content .vm-input,
#main-content .vm-textarea,
.et_pb_section .vm-input,
.et_pb_section .vm-textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid var(--vm-border) !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-family: var(--font-sans) !important;
    background: var(--vm-white) !important;
    box-shadow: none !important;
}

.page .vm-input:focus,
.page .vm-textarea:focus,
#main-content .vm-input:focus,
#main-content .vm-textarea:focus,
.et_pb_section .vm-input:focus,
.et_pb_section .vm-textarea:focus {
    outline: none !important;
    border-color: var(--vm-primary) !important;
    box-shadow: 0 0 0 4px rgba(var(--vm-primary-rgb), 0.1) !important;
}

/* Button Override */
.page .vm-btn,
#main-content .vm-btn,
.et_pb_section .vm-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: var(--space-sm) !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
}

.page .vm-btn-primary,
#main-content .vm-btn-primary,
.et_pb_section .vm-btn-primary {
    background: var(--vm-primary) !important;
    color: var(--vm-white) !important;
}

.page .vm-btn-accent,
#main-content .vm-btn-accent,
.et_pb_section .vm-btn-accent {
    background: linear-gradient(135deg, var(--vm-accent) 0%, var(--vm-accent-light) 100%) !important;
    color: var(--vm-white) !important;
}

/* Container Width Override */
.page .vm-container,
.page .vm-container-narrow,
#main-content .vm-container,
#main-content .vm-container-narrow,
.et_pb_section .vm-container,
.et_pb_section .vm-container-narrow {
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--space-md) !important;
    padding-right: var(--space-md) !important;
}

.page .vm-container-narrow,
#main-content .vm-container-narrow,
.et_pb_section .vm-container-narrow {
    max-width: 800px !important;
}

.page .vm-container,
#main-content .vm-container,
.et_pb_section .vm-container {
    max-width: 1200px !important;
}

/* Remove Divi Padding/Margin on Wrappers */
.et_pb_row .vm-dashboard-wrapper,
.et_pb_row .vm-add-listing-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

.et_pb_column .vm-dashboard-wrapper,
.et_pb_column .vm-add-listing-wrapper {
    margin: 0 !important;
    padding: 0 !important;
}

/* Full width sections */
body .vm-dashboard-wrapper,
body .vm-add-listing-wrapper {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* Label Override */
.page .vm-label .label-text,
#main-content .vm-label .label-text,
.et_pb_section .vm-label .label-text {
    font-weight: 600 !important;
    color: var(--vm-secondary) !important;
    font-size: 0.938rem !important;
    margin-bottom: 4px !important;
}

/* Empty State Override */
.page .vm-empty-state,
#main-content .vm-empty-state,
.et_pb_section .vm-empty-state {
    text-align: center !important;
    padding: var(--space-3xl) var(--space-md) !important;
}

.page .vm-empty-state h3,
#main-content .vm-empty-state h3,
.et_pb_section .vm-empty-state h3 {
    margin: 0 0 var(--space-sm) 0 !important;
    color: var(--vm-secondary) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

/* Hide Divi default module styles on our elements */
.vm-dashboard-wrapper *,
.vm-add-listing-wrapper * {
    box-sizing: border-box !important;
}

/* Ensure our grid layouts work */
.page .vm-overview-grid,
#main-content .vm-overview-grid,
.et_pb_section .vm-overview-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: var(--space-lg) !important;
}

.page .vm-category-grid,
#main-content .vm-category-grid,
.et_pb_section .vm-category-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: var(--space) !important;
}

.page .vm-form-row,
#main-content .vm-form-row,
.et_pb_section .vm-form-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: var(--space-lg) !important;
}

/* Category Color Support */
.vm-cat-icon:hover,
.vm-cat-icon.active {
    border-color: currentColor !important;
}

.vm-category-option input:checked + .vm-category-card {
    background: var(--selected-color, var(--vm-primary)) !important;
    border-color: var(--selected-color, var(--vm-primary)) !important;
}

/* Dynamic category card colors */
.vm-category-card[data-color]:hover {
    border-color: attr(data-color) !important;
}

/* ========================================
   REGISTRATION STYLING
   ======================================== */

.vm-registration-wrapper {
    background: var(--vm-light-gray);
}

.vm-registration-header {
    background: var(--vm-white);
    padding: var(--space-2xl) var(--space-md);
    border-bottom: 1px solid var(--vm-border);
}

.vm-registration-header h1 {
    margin: 0 0 var(--space-sm) 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vm-secondary);
}

.vm-registration-content {
    padding: var(--space-2xl) 0;
}

.vm-registration-card {
    background: var(--vm-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--vm-border);
}

.vm-form-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--vm-border-light);
}

.vm-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-lg);
}

.vm-form-section h2 {
    margin: 0 0 var(--space-lg) 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vm-secondary);
}

/* Account Type Selection */
.vm-account-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space);
    margin-bottom: var(--space-lg);
}

.vm-account-type-option {
    cursor: pointer;
}

.vm-account-type-option input[type="radio"] {
    display: none;
}

.vm-account-type-card {
    background: var(--vm-white);
    border: 2px solid var(--vm-border);
    border-radius: var(--radius);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-height: 150px;
    justify-content: center;
}

.vm-account-type-option:hover .vm-account-type-card {
    border-color: var(--vm-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vm-account-type-option input:checked + .vm-account-type-card {
    background: var(--vm-primary);
    border-color: var(--vm-primary);
    color: var(--vm-white);
}

.vm-account-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.vm-account-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.vm-account-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Notices */
.vm-notice {
    padding: var(--space) var(--space-lg);
    border-radius: var(--radius);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space);
}

.vm-notice-info {
    background: rgba(var(--vm-primary-rgb), 0.1);
    border: 1px solid var(--vm-primary);
    color: var(--vm-secondary);
}

.vm-notice-success {
    background: rgba(var(--vm-success-rgb), 0.1);
    border: 1px solid var(--vm-success);
    color: var(--vm-secondary);
}

.vm-notice-error {
    background: rgba(var(--vm-danger-rgb), 0.1);
    border: 1px solid var(--vm-danger);
    color: var(--vm-secondary);
}

.vm-notice-icon {
    font-size: 1.5rem;
}

.vm-notice-text {
    flex: 1;
}

/* Button Full Width */
.vm-btn-full {
    width: 100%;
    justify-content: center;
}

/* Form Footer */
.vm-form-footer {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--vm-border-light);
    color: var(--vm-gray);
}

.vm-form-footer a {
    color: var(--vm-primary);
    text-decoration: none;
    font-weight: 600;
}

.vm-form-footer a:hover {
    text-decoration: underline;
}

/* Spinner Small */
.vm-spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Messages Area */
#vm-registration-messages {
    margin-top: var(--space-lg);
}

/* ========================================
   INFO TOOLTIP
   ======================================== */

.vm-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: var(--space-xs);
    font-size: 0.875rem;
    cursor: help;
    position: relative;
    opacity: 0.7;
    transition: var(--transition);
}

.vm-info-icon:hover {
    opacity: 1;
}

/* Tooltip */
.vm-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: var(--vm-secondary);
    color: var(--vm-white);
    padding: var(--space-sm) var(--space);
    border-radius: var(--radius);
    font-size: 0.813rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    width: 280px;
    max-width: 90vw;
    text-align: left;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    pointer-events: none;
}

/* Tooltip arrow */
.vm-info-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--vm-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Show tooltip on hover */
.vm-info-icon:hover::after,
.vm-info-icon:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .vm-info-icon::after {
        width: 240px;
        font-size: 0.75rem;
        padding: var(--space-xs) var(--space-sm);
    }
}

/* Mode button with info icon */
.vm-mode-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.vm-mode-btn .vm-info-icon {
    margin-left: auto;
}
