/* Location Dropdown Styles */
.location-dropdown-container {
    position: relative;
    width: 100%;
}

.location-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 300px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}

.location-dropdown-menu.show {
    display: block;
}

.location-dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
    color: #333;
}

.location-dropdown-item:hover {
    background: #f8f1e5;
    color: #caa24f;
}

.location-dropdown-header {
    padding: 8px 15px;
    background: #f5f5f5;
    font-weight: bold;
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
}

.location-dropdown-no-results {
    padding: 10px 15px;
    color: #888;
    font-style: italic;
}

/* Specific for Hero Search */
.hero-search-row .location-dropdown-container {
    flex: 1;
}

.hero-search-row .location-dropdown-menu {
    top: calc(100% + 10px);
}
