/* Snowcountry Country Switcher - Banner styles for Luma theme */
.sc-country-bar {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #f6f6f6;
    border-bottom: 1px solid #e3e3e3;
}

.sc-country-bar .wrapper {
    display: flex;
    gap: 8px;
}

.sc-country-bar .message {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

.sc-country-bar .sc-select {
    min-width: 220px;
    padding: 8px 12px;
}

.sc-country-bar .sc-btn {
    padding: 8px 14px;
}

.sc-country-bar .sc-close {
    cursor: pointer;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 18px;
    color: #666;
}

.sc-country-bar .sc-close:hover {
    color: #000;
}

@media (max-width: 639px) {
    .sc-country-bar {
        flex-wrap: wrap;
        flex-direction: column;
        /*align-items: start;*/
        justify-content: start;
        gap: 8px;
    }

    .sc-country-bar .wrapper {
        width: 100%;
        flex-direction: column;
    }

    .sc-country-bar #sc-country-dismiss {
        position: absolute;
        top: 0;
        right: 0;
    }
}
