.bbt-region-switch-trigger > a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #000;
    color: #000;
    font-weight: 700;
    line-height: 30px;
}

.bbt-region-switch {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: none;
}

.bbt-region-switch.is-open {
    display: block;
}

.bbt-region-switch__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.bbt-region-switch__dialog {
    position: relative;
    width: min(960px, calc(100vw - 32px));
    margin: 6vh auto 0;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.bbt-region-switch__content {
    padding: 40px;
}

.bbt-region-switch__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #000;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
}

.bbt-region-switch__title {
    margin: 0 0 24px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.bbt-region-switch__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bbt-region-switch__tile {
    position: relative;
    display: block;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #000;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bbt-region-switch__tile:hover,
.bbt-region-switch__tile:focus {
    border-color: #000;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.bbt-region-switch__tile.is-current {
    border-color: #ffb81c;
}

.bbt-region-switch__tile.is-selected {
    border-color: #ffb81c;
    box-shadow: inset 0 0 0 1px #ffb81c;
}

.bbt-region-switch__selected-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    padding: 6px 10px;
    background: #ffb81c;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.bbt-region-switch__image-wrap {
    display: block;
    aspect-ratio: 4 / 3;
    padding: 24px;
    background: #f7f7f7;
}

.bbt-region-switch__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bbt-region-switch__label {
    display: block;
    padding: 18px 20px 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

body.bbt-region-switch-open {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .bbt-region-switch__dialog {
        width: calc(100vw - 24px);
        margin-top: 24px;
    }

    .bbt-region-switch__content {
        padding: 32px 16px 16px;
    }

    .bbt-region-switch__title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .bbt-region-switch__grid {
        gap: 12px;
    }

    .bbt-region-switch__label {
        padding: 14px 14px 16px;
        font-size: 16px;
    }
}
