.dealer-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

/* Ensure dealer hero section stays above subsequent fx-block elements 
   so the dropdown menu can overlay content below */
.dealer-hero {
    z-index: 20;
}
.dealer-dropdown-toggle {
    background: var(--primary-color, #0066cc);
    color: white;
    padding: 12px 40px 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    min-width: 200px;
    text-align: left;
}
.dealer-dropdown-toggle:hover {
    background: var(--primary-color-dark, #0052a3);
}
.dropdown-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.dealer-dropdown-toggle.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.dealer-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 100%;
    margin-top: 5px;
    display: none;
    z-index: 1000;
}
.dealer-dropdown-menu.open {
    display: block;
}
.dealer-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid #eee;
}
.dealer-dropdown-item:last-child {
    border-bottom: none;
}
.dealer-dropdown-item:hover {
    background: #f5f5f5;
    color: var(--primary-color, #0066cc);
}