.sbl-locator {
    width: 100%;
    --sbl-primary: #6a2878;
    --sbl-secondary: #c99e6a;
    --sbl-border: #e2d8e6;
}

.sbl-toolbar {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.sbl-branch-select,
.sbl-branch-search {
    width: 100%;
    min-height: 58px;
    border: 1px solid var(--sbl-border);
    border-radius: 6px;
    background: #fff;
    padding: 0 18px;
    box-sizing: border-box;
    font-size: 16px;
    color: #433248;
    outline: none;
}

.sbl-branch-select:focus,
.sbl-branch-search:focus {
    border-color: var(--sbl-primary);
    box-shadow: 0 0 0 2px rgba(106, 40, 120, 0.08);
}

.sbl-branch-select {
    appearance: auto;
}

.sbl-search-area {
    position: relative;
}

.sbl-branch-search::placeholder {
    color: #b4a6b9;
}

.sbl-search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 20;
    background: #fff;
    border: 1px solid var(--sbl-border);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.sbl-suggestion-item,
.sbl-suggestion-empty {
    padding: 12px 16px;
    font-size: 15px;
}

.sbl-suggestion-item {
    cursor: pointer;
}

.sbl-suggestion-item:hover {
    background: rgba(201, 158, 106, 0.12);
}

.sbl-slider-viewport {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-top: 1px solid rgba(201, 158, 106, 0.18);
    border-bottom: 1px solid rgba(201, 158, 106, 0.18);
    padding: 12px 0;
}

.sbl-slider-track {
    display: inline-flex;
    gap: 12px;
    white-space: nowrap;
}

.sbl-branch-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(106, 40, 120, 0.16);
    color: #584360;
    font-size: 14px;
}

.sbl-branch-pill.is-active {
    background: rgba(106, 40, 120, 0.08);
    border-color: var(--sbl-primary);
    color: var(--sbl-primary);
}

.sbl-details-card {
    background: #faf8fb;
    border-radius: 14px;
    overflow: hidden;
}

.sbl-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.sbl-text {
    padding: 48px 42px;
}

.sbl-title {
    margin: 0 0 24px;
    font-size: 38px;
    line-height: 1.2;
    color: #241829;
}

.sbl-description {
    margin-bottom: 22px;
    color: #5a4c60;
    line-height: 1.8;
}

.sbl-meta p {
    margin: 0 0 14px;
    line-height: 1.8;
    color: #433248;
}

.sbl-meta strong {
    font-weight: 700;
    color: var(--sbl-primary);
}

.sbl-button-wrap {
    margin-top: 32px;
}

.sbl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 52px;
    padding: 12px 28px;
    background: var(--sbl-primary);
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all 0.2s ease;
}

.sbl-button:hover {
    background: var(--sbl-secondary);
}

.sbl-image-panel,
.sbl-image-wrap {
    height: 100%;
}

.sbl-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sbl-hidden {
    display: none !important;
}

@media (max-width: 991px) {
    .sbl-toolbar {
        grid-template-columns: 1fr;
    }

    .sbl-content {
        grid-template-columns: 1fr;
    }

    .sbl-image-panel {
        order: -1;
        min-height: 300px;
    }

    .sbl-text {
        padding: 30px 24px;
    }

    .sbl-title {
        font-size: 28px;
    }
}
