/* =============================================================================
   Branch Selector
   ============================================================================= */

.bss-wrap {
    position: relative;
    font-family: inherit;
    line-height: 1.4;
}

/* --- Info block (title, address, hours) --- */

.bss-info {
    padding: 0 0 6px;
}

.bss-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: #333;
    line-height: 1.3;
}

.bss-title span {
    color: #e85d1e; /* orange — adjust to match brand */
}

.bss-info p {
    margin: 0 0 2px;
    font-size: 0.875rem;
    color: #444;
}

/* --- Change Location button --- */

.bss-change-btn {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: #ebebeb;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    letter-spacing: 0.01em;
}

.bss-change-btn:hover {
    background: #e0e0e0;
}

.bss-arrow {
    display: inline-block;
    margin-left: 6px;
    color: #e85d1e;
    font-size: 0.75rem;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.bss-change-btn[aria-expanded="true"] .bss-arrow {
    transform: rotate(180deg);
}

/* --- Dropdown container --- */

.bss-dropdown-wrap {
    position: relative;
}

.bss-change-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #ebebeb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bss-change-container.bss-open {
    display: block;
}

/* --- Location buttons inside dropdown --- */

.bss-location-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    border-top: 1px solid #d8d8d8;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    text-align: center;
    -webkit-appearance: none;
    appearance: none;
    transition: background 0.15s ease;
}

.bss-location-btn:first-child {
    border-top: none;
}

.bss-location-btn:hover {
    background: #e0e0e0;
}

.bss-location-btn.bss-active {
    font-weight: 700;
    color: #e85d1e;
}
