/* Location Selector Dropdown Bar */
.wc-location-selector-widget {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 12px 20px;
    margin: 0;
    z-index: 999;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.wc-location-selector-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.wc-location-selector-content label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.wc-location-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.wc-location-dropdown {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    color: #495057;
    cursor: pointer;
    min-width: 200px;
}

.wc-location-dropdown:hover {
    border-color: #adb5bd;
}

.wc-location-dropdown:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
}

/* Location Bar */
.wc-location-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wc-location-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.wc-location-bar-text {
    font-size: 14px;
    color: #495057;
}

.wc-location-bar-text strong {
    font-weight: 600;
    color: #212529;
}

.wc-reset-location {
    margin-left: 10px;
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.wc-reset-location:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .wc-location-selector-widget {
        padding: 15px;
    }

    .wc-location-selector-content {
        flex-direction: column;
        align-items: stretch;
    }

    .wc-location-selector-content label {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .wc-location-label {
        text-align: center;
        font-size: 16px;
    }

    .wc-location-dropdown {
        width: 100%;
        min-width: auto;
    }
}
