/* Modern Store Selector Widget - Premium Design */
.store-selector {
    margin-right: 15px;
}

.store-selector__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.store-selector__btn:hover {
    background: #fafafa;
    border-color: #d4a574;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.15);
    transform: translateY(-1px);
}

.store-selector__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    line-height: 1.3;
}

.store-selector__label {
    font-size: 9px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 2px;
}

.store-selector__name {
    font-size: 13px;
    font-weight: 700;
    color: #2c1810;
    letter-spacing: 0.2px;
}

.store-selector__zip {
    font-size: 11px;
    color: #d4a574;
    font-weight: 600;
}

.store-selector__btn--empty {
    background: linear-gradient(135deg, #d4a574 0%, #c19461 100%);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.store-selector__btn--empty:hover {
    background: linear-gradient(135deg, #c19461 0%, #d4a574 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.store-selector__btn i {
    color: #d4a574;
    font-size: 16px;
}

.store-selector__btn--empty i {
    color: white;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .store-selector {
        margin-right: 8px;
    }

    .store-selector__btn {
        padding: 8px 12px;
        gap: 6px;
    }

    .store-selector__name {
        font-size: 11px;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .store-selector__zip {
        font-size: 10px;
    }
}

/* Header Top Banner - Modern Style */
.header__top {
    padding: 12px 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__top--wrapper p {
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.5px !important;
}

.header__top--wrapper p .store-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
    transition: opacity 0.2s;
}

.header__top--wrapper p .store-link:hover {
    opacity: 0.85;
}