.btl-locator,
.btl-locator * {
    box-sizing: border-box;
}

.btl-locator {
    width: 100%;
    color: #111827;
    font-family: inherit;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.btl-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 22%, rgba(235, 74, 49, .42), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, .15), transparent 22%),
        linear-gradient(135deg, var(--btl-main, #000000), #18181b 62%, #2b1110);
    color: #fff;
    padding: clamp(28px, 5vw, 54px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.btl-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -58% auto;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    border: 58px solid rgba(255, 255, 255, .06);
    pointer-events: none;
}

.btl-hero h2 {
    color: #fff;
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.02;
    margin: 0 0 12px;
    font-weight: 900;
    letter-spacing: -0.055em;
    max-width: 840px;
}

.btl-hero p {
    margin: 0;
    max-width: 760px;
    opacity: .9;
    font-size: 17px;
    line-height: 1.6;
}

.btl-search-form {
    padding: 24px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .09);
    position: relative;
    z-index: 3;
    margin: -20px clamp(16px, 3vw, 28px) 0;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.btl-search-main,
.btl-filter-row {
    display: grid;
    gap: 14px;
    align-items: end;
}

.btl-search-main {
    grid-template-columns: minmax(260px, 1fr) 160px auto auto;
}

.btl-filter-row {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    margin-top: 14px;
    max-width: 670px;
}

.btl-locator label {
    display: block;
    margin: 0;
}

.btl-locator label span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 8px;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btl-locator input,
.btl-locator select,
.btl-locator textarea {
    width: 100%;
    border: 1px solid #d9e0ea;
    border-radius: 16px;
    min-height: 52px;
    padding: 13px 15px;
    background: #fff;
    color: #0f172a;
    outline: none;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.btl-locator textarea {
    min-height: 112px;
    resize: vertical;
}

.btl-locator input:focus,
.btl-locator select:focus,
.btl-locator textarea:focus {
    border-color: var(--btl-accent, #EB4A31);
    box-shadow: 0 0 0 5px rgba(235, 74, 49, .12);
}

.btl-btn {
    border: 0;
    min-height: 52px;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--btl-accent, #EB4A31), #ff765f);
    color: #fff;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 12px 26px rgba(235, 74, 49, .24);
}

.btl-btn:hover,
.btl-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(235, 74, 49, .3);
    color: #fff;
}

.btl-btn[disabled] {
    opacity: .65;
    cursor: wait;
    transform: none;
}

.btl-secondary {
    background: linear-gradient(135deg, #111827, #334155);
    box-shadow: 0 12px 26px rgba(15, 23, 42, .18);
}

.btl-secondary:hover,
.btl-secondary:focus {
    box-shadow: 0 16px 32px rgba(15, 23, 42, .26);
}

.btl-alert {
    margin: 18px clamp(16px, 3vw, 28px) 0;
    padding: 15px 17px;
    border-radius: 18px;
    background: #fff3f0;
    border: 1px solid rgba(235, 74, 49, .28);
    color: #7a1f10;
    font-weight: 800;
}

.btl-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px clamp(16px, 3vw, 28px) 0;
}

.btl-summary div {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.btl-summary div::after {
    content: "";
    position: absolute;
    width: 76px;
    height: 76px;
    right: -28px;
    bottom: -28px;
    border-radius: 999px;
    background: rgba(235, 74, 49, .08);
}

.btl-summary strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--btl-accent, #EB4A31);
    margin-bottom: 7px;
    font-weight: 950;
}

.btl-summary span {
    color: #475569;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btl-map-wrap {
    position: relative;
    background: #f4f6fa;
    border-radius: 26px;
    overflow: hidden;
    min-height: var(--btl-map-height);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
    margin: 22px clamp(16px, 3vw, 28px) 0;
    border: 1px solid rgba(226, 232, 240, .9);
}

.btl-map-toolbar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    pointer-events: none;
}

.btl-map-toolbar > div:first-child,
.btl-map-legend {
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.btl-map-toolbar > div:first-child {
    padding: 12px 15px;
}

.btl-map-toolbar strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 950;
}

.btl-map-toolbar span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-top: 3px;
}

.btl-map-legend {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 11px 13px;
}

.btl-map-legend span {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #334155;
    font-weight: 900;
}

.btl-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    display: inline-block;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, .07);
}

.btl-dot.available { background: #22A650; }
.btl-dot.limited { background: #F2A900; }
.btl-dot.unavailable { background: #D93025; }

.btl-map {
    height: var(--btl-map-height);
    width: 100%;
}

.btl-map:empty::before {
    content: "Map will appear here after Google API key is added.";
    height: var(--btl-map-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    color: #475569;
    font-weight: 900;
}

.btl-results {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px clamp(16px, 3vw, 28px) 30px;
}

.btl-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-height: 100%;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.btl-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--btl-accent, #EB4A31), #ffb199);
    opacity: .9;
}

.btl-card:hover,
.btl-card.is-active {
    transform: translateY(-4px);
    border-color: rgba(235, 74, 49, .38);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.btl-card.is-active {
    outline: 4px solid rgba(235, 74, 49, .12);
}

.btl-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.btl-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: -.02em;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .16);
    flex: 0 0 auto;
}

.btl-card-icon.available { background: linear-gradient(135deg, #22A650, #0f7a35); }
.btl-card-icon.limited { background: linear-gradient(135deg, #F2A900, #bd7e00); }
.btl-card-icon.unavailable { background: linear-gradient(135deg, #D93025, #a61e15); }

.btl-card h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.18;
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -.02em;
}

.btl-card-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.btl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #1e293b;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
}

.btl-badge.available {
    background: #e7f8ed;
    color: #11652b;
}

.btl-badge.limited {
    background: #fff4d6;
    color: #7a5200;
}

.btl-badge.unavailable {
    background: #ffe9e7;
    color: #8f2117;
}

.btl-badge.distance {
    background: #eef4ff;
    color: #1a4fb2;
}

.btl-card p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.58;
}

.btl-card-note {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    padding: 10px 12px;
}

.btl-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 2px 0 4px;
}

.btl-card-stats div {
    background: #f8fafc;
    border: 1px solid #e8eef6;
    border-radius: 16px;
    padding: 13px;
}

.btl-card-stats strong {
    display: block;
    color: var(--btl-accent, #EB4A31);
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 950;
}

.btl-card-stats span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.btl-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btl-card-actions .btl-btn {
    width: 100%;
}

.btl-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 22px;
    padding: 32px;
    text-align: center;
    color: #475569;
    font-weight: 800;
}

.btl-empty strong,
.btl-empty span {
    display: block;
}

.btl-empty strong {
    color: #0f172a;
    font-size: 18px;
    margin-bottom: 5px;
}

.btl-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(15, 23, 42, .68);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    backdrop-filter: blur(8px);
}

.btl-quote-modal[hidden] {
    display: none !important;
}

.btl-quote-panel {
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    position: relative;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

.btl-quote-panel h3 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #0f172a;
    font-weight: 950;
    letter-spacing: -.03em;
}

.btl-modal-location {
    margin: 0 0 18px;
    color: #475569;
    font-weight: 800;
}

.btl-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 0;
    background: #f1f5f9;
    color: #111827;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.btl-quote-form {
    display: grid;
    gap: 13px;
}

.btl-quote-response {
    margin-top: 12px;
    font-weight: 900;
}

.btl-quote-response.success { color: #11652b; }
.btl-quote-response.error { color: #9c2413; }

.btl-map-info {
    min-width: 215px;
    color: #111827;
    font-size: 13px;
    line-height: 1.45;
    padding: 2px 0;
}

.btl-map-info-title {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #0f172a;
    font-weight: 950;
    line-height: 1.25;
}

.btl-map-info-row {
    margin-bottom: 6px;
    color: #475569;
}

.btl-map-info-row strong {
    color: var(--btl-accent, #EB4A31);
    font-size: 18px;
}

.btl-map-info-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 9px;
    font-weight: 900;
    font-size: 11px;
    margin: 3px 0;
}

.btl-map-info-status.available { background: #e7f8ed; color: #11652b; }
.btl-map-info-status.limited { background: #fff4d6; color: #7a5200; }
.btl-map-info-status.unavailable { background: #ffe9e7; color: #8f2117; }

.btl-map-info-distance {
    color: #1a4fb2;
    font-weight: 900;
    margin-top: 5px;
}

@media (max-width: 1100px) {
    .btl-search-main {
        grid-template-columns: 1fr 160px;
    }

    .btl-search-btn,
    .btl-use-location {
        width: 100%;
    }

    .btl-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .btl-hero {
        padding: 24px;
    }

    .btl-search-form {
        margin-left: 12px;
        margin-right: 12px;
        padding: 18px;
    }

    .btl-search-main,
    .btl-filter-row,
    .btl-summary,
    .btl-results {
        grid-template-columns: 1fr;
    }

    .btl-map-toolbar {
        position: static;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        background: #f8fafc;
    }

    .btl-map-toolbar > div:first-child,
    .btl-map-legend {
        box-shadow: none;
    }

    .btl-map-wrap,
    .btl-map,
    .btl-map:empty::before {
        min-height: 410px;
        height: 410px;
    }

    .btl-card-head {
        flex-direction: column;
    }

    .btl-card-meta {
        justify-content: flex-start;
    }
}

/* Backend-only autocomplete dropdown */
.btl-search-field {
    position: relative;
}

.btl-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 25;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(203, 213, 225, .95);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
    overflow: hidden;
    max-height: 360px;
    overflow-y: auto;
    backdrop-filter: blur(12px);
}

.btl-suggestions[hidden] {
    display: none !important;
}

.btl-suggestion-item {
    width: 100%;
    border: 0;
    background: #fff;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #eef2f7;
    transition: background .18s ease, transform .18s ease;
}

.btl-suggestion-item:last-child {
    border-bottom: 0;
}

.btl-suggestion-item:hover,
.btl-suggestion-item:focus {
    background: #f8fafc;
    outline: none;
}

.btl-suggestion-pin {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .15);
}

.btl-suggestion-pin.available { background: linear-gradient(135deg, #22A650, #0f7a35); }
.btl-suggestion-pin.limited { background: linear-gradient(135deg, #F2A900, #bd7e00); }
.btl-suggestion-pin.unavailable { background: linear-gradient(135deg, #D93025, #a61e15); }

.btl-suggestion-copy {
    min-width: 0;
}

.btl-suggestion-copy strong,
.btl-suggestion-copy small {
    display: block;
}

.btl-suggestion-copy strong {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btl-suggestion-copy small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    margin-top: 4px;
}

.btl-suggestion-status {
    border-radius: 999px;
    padding: 7px 9px;
    font-size: 10px;
    font-weight: 950;
    white-space: nowrap;
}

.btl-suggestion-status.available { background: #e7f8ed; color: #11652b; }
.btl-suggestion-status.limited { background: #fff4d6; color: #7a5200; }
.btl-suggestion-status.unavailable { background: #ffe9e7; color: #8f2117; }

.btl-suggestion-empty {
    padding: 15px;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    background: #fff;
}

.btl-card-icon {
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

.btl-card-icon strong {
    color: #fff;
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
}

.btl-card-icon span {
    color: rgba(255, 255, 255, .9);
    font-size: 9px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@media (max-width: 760px) {
    .btl-suggestion-item {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .btl-suggestion-status {
        grid-column: 2;
        justify-self: start;
    }
}

/* v1.0.5: cleaner backend autocomplete, hardened against theme button styles */
.btl-locator .btl-search-field {
    position: relative;
    z-index: 50;
}

.btl-locator .btl-search-query {
    border-radius: 18px;
    border-color: #dbe3ee;
    background: #ffffff;
    padding-left: 18px;
}

.btl-locator .btl-suggestions {
    left: 0;
    right: auto;
    width: min(100%, 620px);
    top: calc(100% + 10px);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, .95);
    background: #ffffff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .16);
    padding: 8px;
    overflow-y: auto;
    overflow-x: hidden;
}

.btl-locator button.btl-suggestion-item,
.btl-locator .btl-suggestion-item {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 100% !important;
    min-height: auto !important;
    padding: 11px 12px !important;
    border: 1px solid transparent !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: grid !important;
    grid-template-columns: 54px minmax(0, 1fr) 76px !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.2 !important;
}

.btl-locator button.btl-suggestion-item + button.btl-suggestion-item {
    margin-top: 6px !important;
}

.btl-locator button.btl-suggestion-item:hover,
.btl-locator button.btl-suggestion-item:focus {
    background: #f8fafc !important;
    border-color: rgba(235, 74, 49, .22) !important;
    transform: none !important;
    outline: none !important;
}

.btl-locator .btl-suggestion-pin {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    flex-direction: column;
    gap: 1px;
    color: #ffffff !important;
}

.btl-locator .btl-suggestion-pin strong {
    color: #ffffff !important;
    font-size: 17px;
    line-height: 1;
    font-weight: 950;
}

.btl-locator .btl-suggestion-pin em {
    color: rgba(255,255,255,.9) !important;
    font-size: 8px;
    line-height: 1;
    font-weight: 950;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.btl-locator .btl-suggestion-copy strong {
    max-width: 100%;
    color: #0f172a !important;
    font-size: 14px;
    letter-spacing: .01em;
}

.btl-locator .btl-suggestion-copy small {
    color: #64748b !important;
    font-size: 12px;
    font-weight: 750;
}

.btl-locator .btl-suggestion-count {
    justify-self: end;
    min-width: 68px;
    padding: 8px 8px;
    border-radius: 14px;
    text-align: center;
    background: #f1f5f9;
    color: #0f172a;
}

.btl-locator .btl-suggestion-count b,
.btl-locator .btl-suggestion-count small {
    display: block;
    line-height: 1;
}

.btl-locator .btl-suggestion-count b {
    font-size: 17px;
    font-weight: 950;
}

.btl-locator .btl-suggestion-count small {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 900;
    color: #64748b;
}

.btl-locator .btl-suggestion-count.available { background: #e7f8ed; color: #11652b; }
.btl-locator .btl-suggestion-count.limited { background: #fff4d6; color: #7a5200; }
.btl-locator .btl-suggestion-count.unavailable { background: #ffe9e7; color: #8f2117; }

.btl-locator .btl-suggestion-empty {
    border-radius: 14px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
}

.btl-locator .btl-radius-label {
    position: relative;
    z-index: 3;
}

@media (max-width: 760px) {
    .btl-locator .btl-suggestions {
        width: 100%;
        max-height: 320px;
    }

    .btl-locator button.btl-suggestion-item,
    .btl-locator .btl-suggestion-item {
        grid-template-columns: 48px minmax(0, 1fr) !important;
    }

    .btl-locator .btl-suggestion-count {
        grid-column: 2;
        justify-self: start;
        min-width: 82px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .btl-locator .btl-suggestion-count b,
    .btl-locator .btl-suggestion-count small {
        display: inline;
        margin: 0;
    }
}

/* v1.0.6: region/category suggestions */
.btl-locator button.btl-suggestion-item,
.btl-locator .btl-suggestion-item {
    grid-template-columns: 72px 54px minmax(0, 1fr) 76px !important;
}

.btl-locator .btl-suggestion-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .08em;
    background: #eef2ff;
    color: #3730a3;
    text-transform: uppercase;
}

.btl-locator .btl-suggestion-item.is-location .btl-suggestion-type {
    background: #f1f5f9;
    color: #334155;
}

.btl-locator .btl-suggestion-item.is-region {
    border-color: rgba(26, 115, 232, .22) !important;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
}

.btl-locator .btl-suggestion-item.is-region:hover,
.btl-locator .btl-suggestion-item.is-region:focus {
    border-color: rgba(26, 115, 232, .38) !important;
    background: #f4f8ff !important;
}

@media (max-width: 760px) {
    .btl-locator button.btl-suggestion-item,
    .btl-locator .btl-suggestion-item {
        grid-template-columns: 62px 48px minmax(0, 1fr) !important;
    }
    .btl-locator .btl-suggestion-count {
        grid-column: 3;
    }
}

/* v1.0.8: Region-first map and region room */
.btl-locator .btl-region-room[hidden] { display: none !important; }

.btl-locator .btl-region-room {
    margin: 22px 0;
}

.btl-locator .btl-room-shell {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.btl-locator .btl-room-header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(235, 74, 49, .14), transparent 36%),
        linear-gradient(135deg, #0f172a 0%, #111827 64%, #1f2937 100%);
    color: #ffffff;
}

.btl-locator .btl-room-kicker {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: #fff7ed;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.btl-locator .btl-room-header h3 {
    margin: 10px 0 6px !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.05 !important;
    color: #ffffff !important;
}

.btl-locator .btl-room-header p {
    margin: 0 !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 14px;
}

.btl-locator .btl-room-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
    min-width: 280px;
}

.btl-locator .btl-room-stats > div {
    border-radius: 22px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.18);
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.btl-locator .btl-room-stats strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #ffffff;
}

.btl-locator .btl-room-stats span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 900;
    color: rgba(255,255,255,.74);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btl-locator .btl-room-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
}

.btl-locator .btl-room-site {
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 20px;
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btl-locator .btl-room-site:hover,
.btl-locator .btl-room-site.is-selected {
    transform: translateY(-2px);
    border-color: rgba(235, 74, 49, .42);
    box-shadow: 0 18px 40px rgba(235, 74, 49, .12);
}

.btl-locator .btl-room-site-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btl-locator .btl-room-site-head strong {
    color: #111827;
    font-size: 16px;
    line-height: 1.25;
}

.btl-locator .btl-site-status {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    height: 26px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btl-locator .btl-site-status.available {
    background: #ecfdf3;
    color: #027a48;
}

.btl-locator .btl-site-status.limited {
    background: #fffaeb;
    color: #b54708;
}

.btl-locator .btl-site-status.unavailable {
    background: #fef3f2;
    color: #b42318;
}

.btl-locator .btl-room-site p {
    margin: 10px 0 8px !important;
    color: #475467 !important;
    font-size: 13px;
    line-height: 1.45;
}

.btl-locator .btl-room-site small {
    display: block;
    color: #667085;
    font-weight: 700;
    font-size: 12px;
}

.btl-locator .btl-room-site-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btl-locator .btl-mini-btn,
.btl-locator button.btl-mini-btn {
    appearance: none !important;
    border: 1px solid rgba(15,23,42,.12) !important;
    background: #ffffff !important;
    color: #111827 !important;
    border-radius: 999px !important;
    min-height: 34px !important;
    padding: 0 13px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

.btl-locator .btl-mini-btn:hover,
.btl-locator button.btl-mini-btn:hover {
    border-color: var(--btl-accent) !important;
    color: var(--btl-accent) !important;
}

.btl-locator .btl-room-empty {
    grid-column: 1 / -1;
    border-radius: 20px;
    background: #fff7ed;
    border: 1px solid rgba(235, 74, 49, .18);
    padding: 22px;
    color: #9a3412;
    font-weight: 800;
}

.btl-locator .btl-map-room-btn,
.btl-locator button.btl-map-room-btn {
    margin-top: 10px !important;
    width: 100% !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #111827 !important;
    color: #ffffff !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

.btl-locator .btl-card-icon span {
    font-size: 10px !important;
}

@media (max-width: 920px) {
    .btl-locator .btl-room-header {
        flex-direction: column;
    }
    .btl-locator .btl-room-stats {
        min-width: 0;
    }
    .btl-locator .btl-room-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .btl-locator .btl-room-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .btl-locator .btl-room-header {
        padding: 18px;
    }
    .btl-locator .btl-room-stats {
        grid-template-columns: 1fr 1fr;
    }
}

/* v1.0.8 override: suggestions now use REGION / CHILD + marker + text only */
.btl-locator button.btl-suggestion-item,
.btl-locator .btl-suggestion-item {
    grid-template-columns: 72px 54px minmax(0, 1fr) !important;
}
@media (max-width: 760px) {
    .btl-locator button.btl-suggestion-item,
    .btl-locator .btl-suggestion-item {
        grid-template-columns: 62px 48px minmax(0, 1fr) !important;
    }
}

/* v1.0.9: child room markers and infowindow quote button fix */
.btl-map-info-child .btl-map-info-row {
    margin-top: 6px;
    color: #475467;
    font-size: 12px;
}
.btl-map-child-quote-btn,
button.btl-map-child-quote-btn {
    appearance: none !important;
    width: 100% !important;
    margin-top: 10px !important;
    min-height: 36px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--btl-main, #111827), var(--btl-accent, #EB4A31)) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

/* v1.0.11: clear search control and smoother region-room interactions */
.btl-search-main {
    grid-template-columns: minmax(260px, 1fr) 160px auto auto auto;
}
.btl-locator .btl-clear-search,
.btl-locator button.btl-clear-search {
    background: #ffffff !important;
    color: #111827 !important;
    border: 1px solid #d9e0ea !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .08) !important;
}
.btl-locator .btl-clear-search:hover,
.btl-locator button.btl-clear-search:hover,
.btl-locator .btl-clear-search:focus,
.btl-locator button.btl-clear-search:focus {
    color: #111827 !important;
    background: #f8fafc !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .12) !important;
}
@media (max-width: 1100px) {
    .btl-search-main {
        grid-template-columns: 1fr 160px;
    }
    .btl-search-btn,
    .btl-clear-search,
    .btl-use-location {
        width: 100%;
    }
}
@media (max-width: 760px) {
    .btl-search-main {
        grid-template-columns: 1fr;
    }
}

/* v1.0.14: Store locator logic with original premium UI restored. */
.btl-locator .btl-region-room { display: none !important; }
.btl-location-address {
    padding: 12px 13px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 14px;
    color: #334155 !important;
    font-weight: 750;
}
.btl-map-info-location .btl-map-info-row {
    margin-top: 8px;
    color: #475467;
    font-size: 12px;
}
.btl-card.is-active {
    scroll-margin-top: 110px;
}
