/********************* Region selector (global nav) *********************/

#navRegion {
    position: relative;
}

#navRegionButton {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid #DDD;
    border-radius: 999px;
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    color: var(--black);
    cursor: pointer;
    white-space: nowrap;
}

#navRegionButton:hover {
    border-color: var(--primary);
}

#navRegionPanel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 60;
    width: 240px;
    padding: 14px;
    background: #fff;
    border: 1px solid #EBEBEA;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: left;
}

#navRegion.active #navRegionPanel {
    display: block;
}

.navRegionPanelRow {
    margin-bottom: 10px;
}

.navRegionHidden {
    display: none;
}

.navRegionPanelLabel {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

#navRegionCountry,
#navRegionState,
#navRegionCurrency {
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}

#navRegionPanelNote {
    margin: 8px 0 0;
    font-size: 11px;
    line-height: 1.4;
    color: #8C8D8B;
}
