.ostbpa-wrapper {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #212529;
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 24px calc(190px + env(safe-area-inset-bottom));
    background: #000000;
    border-radius: 32px;
}

.is-hidden {
    display: none !important;
}

.ostbpa-content-card {
    background: var(--ostbpa-card-bg, #ffffff);
    border-radius: 28px;
    padding: 32px 40px 40px;
    box-shadow: 0 50px 100px -60px rgba(33, 37, 41, 0.35);
    border: 1px solid rgba(173, 181, 189, 0.25);
}

.ostbpa-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.ostbpa-steps {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .ostbpa-steps {
        flex-wrap: nowrap;
        overflow: visible;
        padding-bottom: 0;
    }

    .ostbpa-stepper {
        margin-bottom: 7px;
    }

    .ostbpa-step {
        flex: 1 1 80px;
        justify-content: center;
    }

    .ostbpa-step .ostbpa-step-text {
        display: none;
    }

    .ostbpa-step.is-active .ostbpa-step-text {
        display: inline;
    }

    .ostbpa-main {
        gap: 16px;
    }
}

.ostbpa-step {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #f3f3f3;
    color: #545454;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.ostbpa-step-index {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e3e3e3;
    color: #212529;
    font-weight: 600;
    font-size: 14px;
}

.ostbpa-step.is-active {
    background: rgba(190, 155, 63, 0.18);
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-step.is-active .ostbpa-step-index {
    background: var(--ostbpa-primary, #be9b3f);
    color: #ffffff;
}

.ostbpa-page-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.ostbpa-page-subtitle {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 15px;
}

.ostbpa-step-panel {
    display: block;
}

.ostbpa-shell {
    display: grid;
    gap: 32px;
}

@media (min-width: 1100px) {
    .ostbpa-shell {
        grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    }
}

.ostbpa-shell--two {
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .ostbpa-shell--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ostbpa-shell--center {
    justify-items: center;
    gap: 32px;
}

.ostbpa-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ostbpa-service-hero {
    background: linear-gradient(135deg, rgba(190, 155, 63, 0.18), rgba(84, 84, 84, 0.12));
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.ostbpa-service-hero.is-loading {
    opacity: 0.8;
}

.ostbpa-skeleton {
    display: block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    border-radius: 10px;
    animation: ostbpa-shimmer 1.4s ease infinite;
}

.ostbpa-service-skeleton {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(240, 240, 240, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ostbpa-skeleton--thumb {
    height: 96px;
    border-radius: 14px;
}

.ostbpa-skeleton--line {
    height: 16px;
    width: 100%;
}

.ostbpa-skeleton--short {
    width: 60%;
}

.ostbpa-service-gallery.is-loading {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

@keyframes ostbpa-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.ostbpa-hero-media {
    flex: 0 0 260px;
    border-radius: 20px;
    background: linear-gradient(135deg, #212529, #545454);
    min-height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ostbpa-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(33, 37, 41, 0.05), rgba(33, 37, 41, 0.35));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ostbpa-hero-media.has-image::after {
    opacity: 0.55;
}

.ostbpa-hero-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #212529;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ostbpa-hero-body {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.ostbpa-hero-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-hero-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #212529;
}

.ostbpa-hero-desc {
    margin: 0;
    color: #545454;
    font-size: 16px;
    line-height: 1.6;
}

.ostbpa-hero-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    color: #545454;
    font-weight: 600;
}

.ostbpa-hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 32px -28px rgba(33, 37, 41, 0.45);
    font-size: 14px;
}

.ostbpa-hero-rating span[aria-hidden="true"] {
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-hero-rating-caption {
    font-weight: 500;
    color: #545454;
}

.ostbpa-hero-provider {
    display: grid;
    grid-template-rows: auto 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 18px 40px -30px rgba(33, 37, 41, 0.3);
    margin-top: 12px;
    border: 1px solid rgba(84, 84, 84, 0.06);
}

.ostbpa-hero-provider.is-hidden {
    display: none;
}

.ostbpa-hero-provider__media {
    width: 148px;
    height: 148px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3f3f3, #e6e6e6);
    background-size: cover;
    background-position: center;
}

.ostbpa-hero-provider__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    max-width: 640px;
    width: 100%;
}

.ostbpa-hero-provider__label {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: #888;
}

.ostbpa-hero-provider__history {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.ostbpa-hero-provider__history-text {
    margin: 0;
    color: #2c2c2c;
    line-height: 1.6;
    word-break: break-word;
}

.ostbpa-hero-provider__read-more {
    border: none;
    outline: none;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--ostbpa-primary, #be9b3f);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ostbpa-hero-provider__read-more:hover,
.ostbpa-hero-provider__read-more:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px -12px rgba(33, 37, 41, 0.25);
}

.ostbpa-hero-provider__read-more:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

.ostbpa-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ostbpa-section-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-section-subtitle {
    margin: 0;
    color: #be9b3f;
    font-size: 14px;
    line-height: 1.6;
}

.ostbpa-chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ostbpa-chip-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ostbpa-chip-group.is-loading {
    display: none;
}

.ostbpa-chip-skeletons {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
}

.ostbpa-chip-skeletons.is-active {
    display: flex;
}

.ostbpa-skeleton--pill {
    height: 40px;
    width: 64px;
    border-radius: 999px;
}

.ostbpa-skeleton--pill-wide {
    width: 118px;
}

.ostbpa-frequency-weekdays {
    display: none;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(190, 155, 63, 0.08);
}

.ostbpa-frequency-weekdays.is-visible {
    display: flex;
}

.ostbpa-frequency-weekdays-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ostbpa-frequency-weekdays-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.ostbpa-frequency-weekdays-desc {
    margin: 0;
    color: #545454;
    font-size: 14px;
    line-height: 1.5;
}

.ostbpa-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    color: #212529;
    padding: 8px 10px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ostbpa-chip.is-disabled,
.ostbpa-chip:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.ostbpa-chip:hover {
    border-color: var(--ostbpa-primary, #be9b3f);
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-chip.is-active {
    background: #f2f2f2;
    color: var(--ostbpa-primary, #be9b3f);
    border-color: #d8d8d8;
    box-shadow: 0 20px 50px -28px rgba(0, 0, 0, 0.15);
}

.ostbpa-chip:focus-visible {
    outline: 3px solid rgba(190, 155, 63, 0.35);
    outline-offset: 2px;
}

.ostbpa-chip-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ostbpa-chip-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: #d32f2f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.ostbpa-visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ostbpa-toggle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-weight: 600;
    color: #212529;
}

.ostbpa-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ostbpa-toggle-track {
    width: 52px;
    height: 28px;
    border-radius: 999px;
    background: #e3e3e3;
    position: relative;
    transition: background 0.2s ease;
}

.ostbpa-toggle-track::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(33, 37, 41, 0.15);
    transition: transform 0.2s ease;
}

.ostbpa-toggle input:checked + .ostbpa-toggle-track {
    background: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-toggle input:checked + .ostbpa-toggle-track::after {
    transform: translateX(24px);
}

.ostbpa-toggle-label {
    font-size: 14px;
    color: #545454;
}

.ostbpa-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ostbpa-field__inline {
    display: flex;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

.ostbpa-field__inline input {
    flex: 1 1 220px;
}

.ostbpa-field__inline .button {
    flex: 0 0 auto;
    border-radius: 12px;
    padding: 12px 18px;
    height: 48px;
}

.ostbpa-field__hint {
    margin: 0;
    font-size: 12px;
    color: #545454;
}

.ostbpa-field__hint.is-success {
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-field__hint.is-error {
    color: #b00020;
}

.ostbpa-field label {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.ostbpa-date-input {             
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.ostbpa-date-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

.ui-datepicker {
    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    box-shadow: 0 30px 60px -30px rgba(33, 37, 41, 0.35);
    padding: 12px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #212529;
    z-index: 10000 !important;
}

.ui-datepicker .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ui-datepicker .ui-datepicker-title {
    font-weight: 700;
    font-size: 15px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1f3f5;
    color: #343a40;
    cursor: pointer;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.ui-datepicker th {
    font-weight: 600;
    color: #6c757d;
    padding: 6px 0;
}

.ui-datepicker td {
    padding: 2px 0;
}

.ui-datepicker .ui-state-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #212529;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ui-datepicker .ui-state-hover {
    background: #f1f3f5;
}

.ui-datepicker .ui-state-active {
    background: var(--ostbpa-primary, #0d6efd);
    color: #ffffff;
    border-color: var(--ostbpa-primary, #0d6efd);
}

.ui-datepicker .ui-state-highlight {
    border-color: var(--ostbpa-primary, #0d6efd);
    background: rgba(13, 110, 253, 0.08);
}

.ui-datepicker .ui-datepicker-unselectable .ui-state-default,
.ui-datepicker .ui-state-disabled .ui-state-default {
    color: #adb5bd;
    background: #f8f9fa;
    cursor: not-allowed;
}

.ostbpa-is-ios .ostbpa-date-input {
    font-size: 16px;
}

.ostbpa-is-ios .ui-datepicker {
    width: min(360px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 20px;
    font-size: 16px;
    box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.4);
}

.ostbpa-is-ios .ui-datepicker .ui-datepicker-header {
    margin-bottom: 14px;
}

.ostbpa-is-ios .ui-datepicker .ui-datepicker-prev,
.ostbpa-is-ios .ui-datepicker .ui-datepicker-next {
    width: 40px;
    height: 40px;
}

.ostbpa-is-ios .ui-datepicker th {
    padding: 8px 0 6px 0;
}

.ostbpa-is-ios .ui-datepicker .ui-state-default {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.ostbpa-field input,
.ostbpa-field textarea,
.ostbpa-wrapper select {
    width: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 14px;
    color: #212529;
    background-color: #ffffff;
    box-shadow: 0 1px 0 rgba(33, 37, 41, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ostbpa-field textarea {
    min-height: 120px;
    resize: vertical;
}

.ostbpa-field input:focus,
.ostbpa-field textarea:focus,
.ostbpa-wrapper select:focus {
    border-color: var(--ostbpa-primary, #be9b3f);
    box-shadow: 0 0 0 4px rgba(190, 155, 63, 0.25);
    outline: none;
}

.ostbpa-field.is-error input,
.ostbpa-field.is-error textarea,
.ostbpa-field input.is-invalid,
.ostbpa-field textarea.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.15);
}

.ostbpa-service-gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 640px) {
    .ostbpa-service-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ostbpa-service-empty {
    margin: 0;
    padding: 24px;
    border-radius: 18px;
    background: #f3f3f3;
    color: #545454;
    font-weight: 500;
    text-align: center;
}

.ostbpa-service-option {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e3e3e3;
    background: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: left;
}

.ostbpa-service-option.is-coming-soon {
    cursor: not-allowed;
    opacity: 0.75;
    background: #f8f8f8;
    box-shadow: none;
}

.ostbpa-service-option.is-coming-soon:hover,
.ostbpa-service-option.is-coming-soon:focus-visible {
    transform: none;
    border-color: #e3e3e3;
    outline: none;
}

.ostbpa-service-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #f2efe7;
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ostbpa-service-option:hover {
    border-color: var(--ostbpa-primary, #be9b3f);
    box-shadow: 0 24px 56px -34px rgba(190, 155, 63, 0.45);
    transform: translateY(-2px);
}

.ostbpa-service-option:focus-visible {
    outline: 3px solid rgba(190, 155, 63, 0.35);
    outline-offset: 3px;
}

.ostbpa-service-option.is-selected {
    border-color: transparent;
    box-shadow: 0 28px 70px -40px rgba(190, 155, 63, 0.5);
    background: linear-gradient(135deg, rgba(190, 155, 63, 0.12), rgba(84, 84, 84, 0.08));
}

.ostbpa-service-thumb {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #e3e3e3 center/cover no-repeat;
    flex-shrink: 0;
}

.ostbpa-service-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ostbpa-service-name {
    font-weight: 600;
    color: #212529;
    font-size: 16px;
}

.ostbpa-service-rate {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 600;
    color: var(--ostbpa-primary, #be9b3f);
    font-size: 14px;
}

.ostbpa-service-rate-unit {
    font-weight: 500;
    color: #545454;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ostbpa-service-excerpt {
    color: #545454;
    font-size: 13px;
    line-height: 1.5;
}

.ostbpa-collapsible-excerpt__text {
    display: inline;
}

.ostbpa-collapsible-excerpt__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    padding: 0;
    background: none;
    border: none;
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 640px) {
    .ostbpa-collapsible-excerpt__toggle {
        margin-left: 0;
        font-size: 10px !important;
    }
}

.ostbpa-collapsible-excerpt.is-empty .ostbpa-collapsible-excerpt__toggle {
    display: none;
}

.ostbpa-slot-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ostbpa-slot-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.ostbpa-slot {
    border-radius: 14px;
    border: 1px solid #d6d6d6;
    padding: 12px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #212529;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ostbpa-slot:hover {
    border-color: var(--ostbpa-primary, #be9b3f);
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-slot.is-selected {
    background: var(--ostbpa-primary, #be9b3f);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 24px 60px -34px rgba(190, 155, 63, 0.45);
}

.ostbpa-slot.is-reserved {
    background: #f7f7f7;
    color: #a1a1a1;
    border-style: dashed;
    cursor: not-allowed;
}

.ostbpa-slot.is-reserved:hover {
    color: #a1a1a1;
    border-color: #d6d6d6;
}

.ostbpa-slot-tag {
    display: inline-block;
    background: #ececec;
    color: #5f6368;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 500;
    align-self: center;
}

.ostbpa-slot-note {
    border: 1px solid #ededed;
    border-radius: 14px;
    background: #faf9f7;
    padding: 12px 14px;
}

.ostbpa-slot-note-list {
    list-style: disc;
    margin: 0;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #444;
    font-size: 13px;
    line-height: 1.5;
}

.ostbpa-slot-note .is-hidden {
    display: none;
}

.ostbpa-policy-card {
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 5px;
    margin-top: 18px;
    background: #ffffff;
    box-shadow: 0 12px 35px -20px rgba(33, 37, 41, 0.18);
}

input[type="checkbox"] {
    -webkit-appearance: none;
    height: 1.2em;
    min-height: 18px;
    position: relative;
    background-color: transparent;
    border: 2px solid currentColor;
    width: 1.7em;
    min-width: 18px;
    border-radius: 3px;
    outline: none;
    font-size: 15px;
    vertical-align: text-bottom;
    margin-right: 0.6em;
}

.ostbpa-policy-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ostbpa-policy-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #212529;
}

.ostbpa-policy-link {
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
    text-decoration: none;
}

.ostbpa-policy-link:hover,
.ostbpa-policy-link:focus {
    text-decoration: underline;
}

.ostbpa-service-gated {
    display: none;
}

.ostbpa-wrapper[data-services-ready="true"] .ostbpa-service-gated {
    display: block;
    opacity: 0;
    transform: translateY(6px);
    animation: ostbpaFadeSlideIn 200ms ease-out forwards;
    animation-fill-mode: forwards;
    pointer-events: none;
}

.ostbpa-wrapper[data-services-ready="true"] .ostbpa-service-gated.is-services-ready {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ostbpa-wrapper[data-services-ready="true"] .ostbpa-summary-card.ostbpa-service-gated {
    display: flex;
}

@keyframes ostbpaFadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ostbpa-wrapper[data-services-ready="true"] .ostbpa-service-gated {
        animation: none;
        transform: none;
    }
}

.ostbpa-policy-intro {
    margin: 12px 0 8px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.ostbpa-policy-list {
    margin: 0 0 10px 18px;
    padding: 0;
    display: grid;
    gap: 6px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.ostbpa-policy-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-weight: 600;
    color: #222;
}

.ostbpa-policy-checkbox span {
    font-size: 9px;
}

.ostbpa-policy-checkbox .ostbpa-policy-link {
    margin-left: 10px;
}

.ostbpa-summary-panel {
    position: sticky;
    top: 24px;
}

.ostbpa-summary-card {
    background: #212529;
    color: #f8f5ed;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 45px 90px -55px rgba(33, 37, 41, 0.65);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ostbpa-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.ostbpa-summary-total-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 60px;
}

.ostbpa-summary-overline {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.ostbpa-summary-title {
    margin: 4px 0 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-summary-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--ostbpa-primary, #be9b3f);
    max-width: 100%;
    flex-shrink: 1;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-align: right;
}

.ostbpa-summary-vat {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    min-height: 18px;
}

.ostbpa-summary-meta {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ostbpa-summary-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.ostbpa-summary-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.68);
}

.ostbpa-summary-value {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.ostbpa-summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ostbpa-summary-heading {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.ostbpa-summary-lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ostbpa-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.ostbpa-summary-line.is-accent {
    font-weight: 600;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-summary-line.is-empty {
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
}

.ostbpa-summary-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.6;
}


.ostbpa-actions {
    margin-top: 32px;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 20;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--ostbpa-card-bg, #ffffff) 38%, var(--ostbpa-card-bg, #ffffff) 100%);
    pointer-events: none;
}

.ostbpa-actions__bar {
    position: static;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 18px;
    background: var(--ostbpa-card-bg, #ffffff);
    border-radius: 18px;
    border: 1px solid rgba(33, 37, 41, 0.08);
    box-shadow: 0 18px 48px -28px rgba(33, 37, 41, 0.4);
    width: min(1120px, calc(100% - 32px));
    pointer-events: auto;
}

.ostbpa-actions__total {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-actions__total-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: currentColor;
}

.ostbpa-actions__total-value {
    font-size: 20px;
    color: currentColor;
}

.ostbpa-actions__buttons {
    display: flex;
    gap: 12px;
    flex: 1 1 65px;
}

.ostbpa-actions__buttons .button {
    flex: 1 1 0;
    width: 100%;
}

.ostbpa-wrapper .button {
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ostbpa-wrapper .button.button-primary {
    background: var(--ostbpa-primary, #be9b3f);
    color: #ffffff;
    box-shadow: 0 28px 70px -40px rgba(190, 155, 63, 0.5);
}

.ostbpa-wrapper .button.button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 38px 80px -45px rgba(190, 155, 63, 0.55);
}

.ostbpa-wrapper .button:not(.button-primary) {
    background: rgba(190, 155, 63, 0.12);
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-wrapper .button:not(.button-primary):hover {
    background: rgba(190, 155, 63, 0.2);
}

.ostbpa-addon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .ostbpa-addon-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.ostbpa-addon-option {
    display: grid;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e3e3e3;
    background: #faf7f0;
    cursor: pointer;
    height: 100%;
}

.ostbpa-addon-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ostbpa-addon-thumb {
    width: 56px;
    height: 56px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.ostbpa-addon-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ostbpa-addon-thumb-placeholder {
    width: 22px;
    height: 22px;
    border: 2px dashed #dcdcdc;
    border-radius: 8px;
}

.ostbpa-addon-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    align-self: center;
}

.ostbpa-addon-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ostbpa-addon-name {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
    word-break: break-word;
}

.ostbpa-addon-description {
    font-size: 13px;
    color: #4f4f4f;
    line-height: 1.4;
    word-break: break-word;
}

.ostbpa-addon-description.ostbpa-collapsible-excerpt {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.ostbpa-addon-description.ostbpa-collapsible-excerpt:not(.is-expanded)
    .ostbpa-collapsible-excerpt__text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ostbpa-addon-price {
    font-size: 13px;
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
}

.ostbpa-addon-empty {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 640px) {
    .ostbpa-addon-option {
        display: grid;
        grid-template-columns: 64px 1fr;
        grid-auto-rows: min-content;
        align-items: start;
        gap: 10px 12px;
    }

    .ostbpa-addon-header {
        width: 100%;
        justify-content: flex-start;
        grid-column: 1 / -1;
        min-height: 38px !important;
    }

    .ostbpa-addon-thumb {
        grid-row: 2;
        grid-column: 1;
        align-self: flex-start;
    }

    .ostbpa-addon-details {
        grid-row: 2;
        grid-column: 2;
        display: grid;
        grid-template-columns: 1fr;
        gap: 6px 10px;
        width: 100%;
    }

    .ostbpa-addon-price {
        justify-self: end;
    }

    .ostbpa-addon-description {
        grid-column: 1 / -1;
    }

    .ostbpa-addon-name {
        font-size: 10px;
    }
}

.ostbpa-employee-list {
    display: grid;
    gap: 16px;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .ostbpa-employee-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .ostbpa-employee-list {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

.ostbpa-employee-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(84, 84, 84, 0.16);
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
    width: 100%;
    box-shadow: 0 0 0 transparent;
    appearance: none;
    color: inherit;
}

@media (max-width: 640px) {
    .ostbpa-employee-card {
        display: grid;
        grid-template-columns: 52px 1fr;
        grid-template-rows: auto auto auto;
        align-items: start;
        gap: 8px 12px;
    }
}

.ostbpa-employee-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px -32px rgba(33, 37, 41, 0.25);
}

.ostbpa-employee-card.is-active {
    border-color: var(--ostbpa-primary, #be9b3f);
    background: rgba(190, 155, 63, 0.08);
    box-shadow: 0 24px 50px -30px rgba(190, 155, 63, 0.45);
}

.ostbpa-employee-card.is-active .ostbpa-employee-name,
.ostbpa-employee-card.is-active .ostbpa-employee-meta {
    color: #ffffff;
}

.ostbpa-employee-card:focus-visible {
    outline: 2px solid var(--ostbpa-primary, #be9b3f);
    outline-offset: 3px;
}

.ostbpa-employee-card--none {
    background: #f8f5ee;
}

.ostbpa-employee-avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: #f1f3f5;
    color: #495057;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ostbpa-employee-avatar.has-image {
    background-size: cover;
    background-position: center;
    color: transparent;
}

.ostbpa-employee-avatar.is-placeholder {
    color: #adb5bd;
}

.ostbpa-employee-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.ostbpa-employee-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
}

@media (max-width: 640px) {
    .ostbpa-employee-info {
        display: contents;
    }
}

@media (max-width: 640px) {
    .ostbpa-employee-header {
        gap: 4px;
    }
}

@media (max-width: 640px) {
    .ostbpa-employee-header {
        grid-column: 2;
        grid-row: 1;
        width: 100%;
    }
}

.ostbpa-employee-name {
    font-weight: 600;
    font-size: 15px;
    color: #212529;
}

@media (max-width: 640px) {
    .ostbpa-employee-name {
        grid-column: 2;
        grid-row: 1;
        font-size: 10px;
    }
}

.ostbpa-employee-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6c757d;
}

@media (max-width: 640px) {
    .ostbpa-employee-meta {
        grid-column: 2;
        grid-row: 2;
        font-size: 10px;
        gap: 6px;
    }
}

.ostbpa-employee-bio {
    font-size: 13px;
    color: #495057;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .ostbpa-employee-bio {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 12px;
    }
}

.ostbpa-employee-feedback {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ostbpa-employee-feedback__title {
    font-weight: 600;
    font-size: 13px;
    color: #212529;
}

.ostbpa-employee-feedback__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ostbpa-employee-feedback__item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px 12px;
    width: 100%;
}

.ostbpa-employee-feedback__comment {
    margin: 0 0 6px;
    font-size: 13px;
    color: #495057;
    line-height: 1.5;
}

.ostbpa-employee-feedback__meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #6c757d;
}

.ostbpa-employee-feedback__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #212529;
}

.ostbpa-employee-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

@media (max-width: 640px) {
    .ostbpa-employee-actions {
        grid-column: 1 / -1;
        grid-row: 3;
        font-size: 10px;
    }
}

.ostbpa-employee-link {
    color: var(--ostbpa-primary, #be9b3f);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 0;
}

.ostbpa-employee-link:hover,
.ostbpa-employee-link:focus-visible {
    text-decoration: underline;
    outline: none;
}

.ostbpa-employee-rate {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 600;
    color: #212529;
}

.ostbpa-employee-rate-amount {
    color: inherit;
}

.ostbpa-employee-rate-unit {
    font-weight: 500;
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ostbpa-employee-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #212529;
}

.ostbpa-employee-rating span[aria-hidden="true"] {
    color: #f5b301;
    font-size: 14px;
}

.ostbpa-employee-reviews {
    font-weight: 500;
}

.ostbpa-employee-empty {
    font-size: 13px;
    color: #6c757d;
    margin: 4px 0 0;
}

.ostbpa-reset-link {
    background: none;
    border: none;
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 0;
}

.ostbpa-actions .ostbpa-reset-link {
    margin-right: auto;
    align-self: center;
}

.ostbpa-reset-link:hover {
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-payment-block .ostbpa-card-element {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 14px 12px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ostbpa-payment-block.is-error .ostbpa-card-element {
    border-color: #dc3545;
}

.ostbpa-wallet-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ostbpa-wallet-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.ostbpa-wallet-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    background: #f2f4f7;
    color: #1f2933;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
}

.ostbpa-wallet-badge.is-inactive {
    opacity: 0.5;
    filter: grayscale(0.25);
}

.ostbpa-wallet-badge--apple {
    background: #0d0d0d;
    color: #fff;
}

.ostbpa-wallet-badge--google {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
}

[data-payment-feedback].is-error {
    color: #dc3545;
}

.ostbpa-confirm-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
    max-width: 100%;
}

.ostbpa-confirm-card {
    width: 100%;
}

.ostbpa-card-block {
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 35px 70px -55px rgba(33, 37, 41, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ostbpa-shell--two .ostbpa-card-block:last-child {
    background: linear-gradient(135deg, rgba(190, 155, 63, 0.12), rgba(84, 84, 84, 0.08));
}

.ostbpa-map {
    height: 478px;
    border-radius: 20px;
    overflow: hidden;
    background: #e3e3e3;
    position: relative;
}

.ostbpa-map__canvas {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
}

.ostbpa-map__control,
.ostbpa-map__search {
    position: absolute;
    top: 12px;
    left: 12px;
    right: auto;
    width: 190px;
    max-width: calc(100% - 24px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    box-shadow: 0 14px 28px -18px rgba(33, 37, 41, 0.65);
    z-index: 2;
}

.ostbpa-map__search-label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    margin: 0;
}

.ostbpa-map__search-input {
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
    background: #ffffff;
}

.ostbpa-map__place-picker {
    display: block;
    width: 100%;
    --gmpx-color-surface: #ffffff;
    --gmpx-color-outline: #ced4da;
    --gmpx-color-on-surface: #212529;
    --gmpx-color-primary: var(--ostbpa-primary, #be9b3f);
    --gmpx-border-radius: 10px;
    --gmpx-font-family: inherit;
}

.ostbpa-map__search-input:focus {
    outline: none;
    border-color: var(--ostbpa-primary, #be9b3f);
    box-shadow: 0 0 0 3px rgba(190, 155, 63, 0.2);
}

@media (max-width: 1024px) {
    .ostbpa-wrapper {
        padding: 0 0 calc(190px + env(safe-area-inset-bottom));
    }

    .ostbpa-content-card {
        padding: 28px 24px 32px;
    }

    .ostbpa-shell {
        grid-template-columns: 1fr;
    }

    .ostbpa-summary-panel {
        position: relative;
    }
}

@media (max-width: 640px) {
    .ostbpa-page-title {
        font-size: 26px;
    }

    .ostbpa-hero-title {
        font-size: 26px;
    }

    .ostbpa-service-hero {
        padding: 20px;
    }

    .ostbpa-hero-media {
        flex: 1 1 100%;
        min-height: 200px;
    }

    .ostbpa-summary-card {
        padding: 28px 22px;
    }

    .ostbpa-summary-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ostbpa-wrapper .button {
        width: 100%;
        text-align: center;
        margin-bottom: 2.25em;
        font-size: 12px;
        padding: 0 !important;
    }

    .ostbpa-actions {
        padding-bottom: 0px;
    }

    .ostbpa-actions__bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: calc(100% - 24px);
        padding: 1px 18px;
    }

    .ostbpa-actions__total {
        width: 100%;
        justify-content: space-between;
    }

    .ostbpa-actions__buttons {
        width: 100%;
        flex-direction: row;
    }

    .ostbpa-addon-option {
        flex-direction: column;
        align-items: center;
        gap: 7px;
        padding: 6px;
    }

    .ostbpa-material-panel .ostbpa-addon-option {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 4px;
        padding: 12px;
    }

    .ostbpa-material-panel .ostbpa-addon-option input[type="checkbox"] {
        display: none;
    }

    .ostbpa-material-panel .ostbpa-addon-option .ostbpa-addon-details {
        grid-column: 1;
        grid-row: 1 / span 2;
        display: grid;
        grid-template-rows: auto auto;
        gap: 4px;
        width: 100%;
    }

    .ostbpa-material-panel .ostbpa-addon-option .ostbpa-addon-name {
        grid-row: 1;
    }

    .ostbpa-material-panel .ostbpa-addon-option .ostbpa-addon-price {
        grid-row: 2;
        justify-self: start;
    }
}

.ostbpa-callback {
    max-width: 720px;
    margin: 48px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 30px 70px -45px rgba(33, 37, 41, 0.35);
    border: 1px solid rgba(173, 181, 189, 0.18);
    color: #212529;
}

.ostbpa-callback__header {
    text-align: center;
    margin-bottom: 28px;
}

.ostbpa-callback__title {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 700;
}

.ostbpa-callback__subtitle {
    margin: 0;
    color: #6c757d;
    font-size: 15px;
}

.ostbpa-callback__summary ul,
.ostbpa-callback__breakdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ostbpa-callback__summary ul li,
.ostbpa-callback__breakdown ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(190, 155, 63, 0.08);
    font-size: 15px;
}

.ostbpa-callback__summary ul span,
.ostbpa-callback__breakdown ul span {
    color: #495057;
}

.ostbpa-callback__summary ul strong,
.ostbpa-callback__breakdown ul strong {
    color: #212529;
    font-weight: 600;
}

.ostbpa-callback__actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.ostbpa-callback__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--ostbpa-primary, #be9b3f);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px -12px rgba(190, 155, 63, 0.75);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ostbpa-callback__button:hover,
.ostbpa-callback__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px -20px rgba(190, 155, 63, 0.8);
    color: #ffffff;
}

.ostbpa-callback__notice {
    margin: 0;
    color: #495057;
    font-size: 14px;
}

.ostbpa-callback__notice--warn {
    color: #d9480f;
}

.ostbpa-callback__suggestions {
    margin-top: 40px;
}

.ostbpa-callback__suggestions-title {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    color: #212529;
}

.ostbpa-callback__suggestions-subtitle {
    margin: 0 0 22px;
    color: #495057;
    font-size: 15px;
}

.ostbpa-callback--error {
    border: 1px solid rgba(220, 53, 69, 0.3);
    background: rgba(220, 53, 69, 0.08);
    padding: 24px;
    border-radius: 16px;
    max-width: 640px;
    margin: 36px auto;
}

.ostbpa-callback--notice {
    border: 1px solid rgba(33, 37, 41, 0.12);
    background: rgba(33, 37, 41, 0.04);
    padding: 24px;
    border-radius: 16px;
    max-width: 640px;
    margin: 36px auto;
}

.ostbpa-callback--error p,
.ostbpa-callback--notice p {
    margin: 0;
    color: #212529;
    font-size: 15px;
}

@media (max-width: 640px) {
    .ostbpa-callback {
        padding: 28px 22px;
        margin: 32px auto;
    }

    .ostbpa-callback__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ostbpa-callback__button {
        width: 100%;
    }
}

.ostbpa-service-list {
    display: grid;
    gap: 28px;
    margin: 32px 0;
}

.ostbpa-service-list--cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.ostbpa-service-list--cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ostbpa-service-list--cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ostbpa-service-list--cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 640px) {
    .ostbpa-service-list,
    .ostbpa-service-list--cols-1,
    .ostbpa-service-list--cols-2,
    .ostbpa-service-list--cols-3,
    .ostbpa-service-list--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    /* Force two-up grids for service cards on mobile so more options stay in view */
    .ostbpa-service-list,
    .ostbpa-service-showcase__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .ostbpa-service-card,
    .ostbpa-service-showcase__card {
        min-width: 0;
    }
}

.ostbpa-service-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 48px -36px rgba(33, 37, 41, 0.45);
    overflow: hidden;
    border: 1px solid rgba(33, 37, 41, 0.08);
    min-height: 100%;
}

.ostbpa-service-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ostbpa-service-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ostbpa-service-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

.ostbpa-service-card__taxonomy {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ostbpa-primary, #be9b3f);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ostbpa-service-card__sep {
    color: rgba(33, 37, 41, 0.35);
}

.ostbpa-service-card__title {
    margin: 0;
    font-size: 22px;
    color: #212529;
    font-weight: 700;
}

.ostbpa-service-card__excerpt {
    margin: 0;
    color: #495057;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ostbpa-service-card__excerpt-text {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}

.ostbpa-service-card__excerpt.is-expanded .ostbpa-service-card__excerpt-text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.ostbpa-service-card__excerpt-link {
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
    text-decoration: none;
    flex: 0 0 auto;
    font-size: 14px;
}

.ostbpa-service-card__excerpt-link:hover,
.ostbpa-service-card__excerpt-link:focus {
    text-decoration: underline;
}

.ostbpa-service-card__action {
    margin: 8px 0 0;
}

.ostbpa-service-card__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.ostbpa-service-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--ostbpa-service-button-bg, var(--ostbpa-primary, #be9b3f));
    color: #ffffff;
    font-weight: 600;
    font-size: var(--ostbpa-service-button-font-size, 14px);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ostbpa-service-card__button:hover,
.ostbpa-service-card__button:focus {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -30px rgba(190, 155, 63, 0.65);
    color: #ffffff;
}

.ostbpa-service-card__button--ghost {
    background: transparent;
    color: #212529;
    border: 1px solid rgba(33, 37, 41, 0.12);
}

.ostbpa-service-list__empty {
    margin: 0;
    color: #495057;
    font-size: 15px;
    grid-column: 1 / -1;
}

.ostbpa-service-browser {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ostbpa-service-browser__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.ostbpa-service-showcase__grid {
    min-width: 0;
}

.ostbpa-service-crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    color: #212529;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.ostbpa-service-crumb:hover {
    border-color: var(--ostbpa-primary, #be9b3f);
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-service-crumb.is-active {
    background: var(--ostbpa-primary, #be9b3f);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 20px 50px -28px rgba(190, 155, 63, 0.55);
}

.ostbpa-service-crumb:focus-visible {
    outline: 3px solid rgba(190, 155, 63, 0.35);
    outline-offset: 2px;
}


.ostbpa-service-showcase {
    margin: 48px 0;
    padding: 48px;
    border-radius: 40px;
    background: radial-gradient(circle at top right, rgba(190, 155, 63, 0.2), transparent 60%),
        linear-gradient(135deg, rgba(33, 37, 41, 0.05), rgba(33, 37, 41, 0.02));
    border: 1px solid rgba(33, 37, 41, 0.08);
    box-shadow: 0 30px 60px -40px rgba(33, 37, 41, 0.35);
}

.ostbpa-service-showcase__intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-service-showcase__eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    color: inherit;
}

.ostbpa-service-showcase__spotlight {
    max-width: 840px;
    margin: 0 auto 24px;
    text-align: left;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-service-showcase__spotlight.is-hidden {
    display: none;
}

.ostbpa-service-showcase__spotlight-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ostbpa-service-showcase__spotlight.is-loading .ostbpa-service-showcase__spotlight-media {
    width: 100%;
    max-width: 420px;
    height: 220px;
    padding-top: 0;
}

.ostbpa-service-showcase__spotlight-media {
    width: 50%;
    aspect-ratio: 1;
    border-radius: 18px;
    background-color: rgba(33, 37, 41, 0.08);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(33, 37, 41, 0.05);
}

.ostbpa-service-showcase__spotlight-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.ostbpa-service-showcase__spotlight-text-content {
    display: inline;
}

.ostbpa-service-showcase__spotlight-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding: 0;
    background: none;
    border: none;
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.ostbpa-service-showcase__spotlight-copy {
    color: inherit;
}

.ostbpa-service-showcase__heading {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: inherit;
}

.ostbpa-service-showcase__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: inherit;
}

.ostbpa-service-showcase.is-loading {
    pointer-events: none;
    opacity: 0.9;
}

.ostbpa-service-showcase__grid {
    display: grid;
    gap: 13px;
}

.ostbpa-service-showcase__grid--cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.ostbpa-service-showcase__grid--cols-2 {
    /* Force an exact two-column layout on larger screens instead of auto-fitting more cards */
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.ostbpa-service-showcase__grid--cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ostbpa-service-showcase__grid--cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.ostbpa-service-showcase__card {
    display: flex;
    flex-direction: column;
    background: #000000;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid gold;
    min-height: 100%;
    box-shadow: 0 25px 60px -45px rgba(33, 37, 41, 0.5);
}

.ostbpa-service-showcase__card.is-skeleton {
    background: #0f0f0f;
    border-color: rgba(190, 155, 63, 0.35);
    box-shadow: none;
}

.ostbpa-service-showcase__card.is-skeleton .ostbpa-service-showcase__content {
    gap: 10px;
}

.ostbpa-service-showcase__card.is-skeleton .ostbpa-service-showcase__media {
    padding-top: 0;
    height: 220px;
}

.ostbpa-service-showcase__card.is-skeleton .ostbpa-service-showcase__actions {
    min-height: 0;
    justify-content: flex-start;
}

.ostbpa-service-showcase__media {
    padding-top: 60%;
    background-size: cover;
    background-position: center;
}

.ostbpa-service-showcase__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px;
}

.ostbpa-service-showcase__taxonomy {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(33, 37, 41, 0.55);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.ostbpa-service-showcase__sep {
    color: rgba(33, 37, 41, 0.3);
}

.ostbpa-service-showcase__title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #be9b3f;
}

.ostbpa-service-showcase__excerpt {
    margin: 0;
    color: #be9b3f;
    font-size: 15px;
    line-height: 1.6;
}

.ostbpa-service-showcase__price {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-service-showcase__cta {
    margin-top: auto;
}

.ostbpa-service-showcase__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--ostbpa-service-button-bg, var(--ostbpa-primary, #be9b3f));
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: var(--ostbpa-service-button-font-size, 14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ostbpa-service-showcase__button span {
    transition: transform 0.2s ease;
}

.ostbpa-service-showcase__button:hover,
.ostbpa-service-showcase__button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px -35px rgba(190, 155, 63, 0.65);
    color: #ffffff;
}

.ostbpa-service-showcase__button:hover span,
.ostbpa-service-showcase__button:focus-visible span {
    transform: translateX(4px);
}

.ostbpa-service-showcase__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.ostbpa-service-showcase__button--ghost {
    background: transparent;
    color: #212529;
}

.ostbpa-offer-section {
    margin-top: 16px;
}

.ostbpa-offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.ostbpa-offer-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px -18px rgba(0, 0, 0, 0.12);
}

.ostbpa-offer-card__media {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    min-height: 140px;
}

.ostbpa-offer-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
}

.ostbpa-offer-card__title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.ostbpa-offer-card__excerpt {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.ostbpa-offer-card__price {
    margin: 0;
    font-weight: 700;
    color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-offer-card__actions {
    margin-top: auto;
}

.ostbpa-offer-card__actions .button {
    width: fit-content;
    background-color: var(--ostbpa-primary, #be9b3f);
    border-color: var(--ostbpa-primary, #be9b3f);
}

.ostbpa-offer-card__actions .button:hover,
.ostbpa-offer-card__actions .button:focus-visible {
    filter: brightness(0.96);
    transform: translateY(-1px);
}

.ostbpa-offer-empty {
    margin: 0;
    color: #6c757d;
}

@media (max-width: 640px) {
    .ostbpa-service-card__media,
    .ostbpa-service-showcase__media {
        height: 140px;
        padding-top: 0;
    }

    .ostbpa-service-card__title,
    .ostbpa-service-showcase__title {
        min-height: 44px;
        display: flex;
        align-items: flex-start;
    }

    .ostbpa-service-card__excerpt,
    .ostbpa-service-showcase__excerpt {
        min-height: 24px;
    }

    .ostbpa-service-card__actions,
    .ostbpa-service-showcase__actions {
        min-height: 48px;
        align-items: center;
    }

    .ostbpa-service-card__actions.is-placeholder::before,
.ostbpa-service-showcase__actions.is-placeholder::before {
        content: '';
        display: block;
        width: 100%;
        height: 32px;
    }

    .ostbpa-service-card__button,
    .ostbpa-service-showcase__button {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .ostbpa-service-showcase {
        padding: 4px;
        border-radius: 28px;
        background: #000000;
        border: none;
    }

    .ostbpa-service-showcase__grid--cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ostbpa-service-showcase__content {
        padding: 10px;
        gap: 0;
    }

    .ostbpa-offer-card {
        grid-template-columns: 1fr;
    }
}


.ostbpa-review-wrapper {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 3rem 1.25rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Only pages with the review form */
body:has(.ostbpa-review-card) {
    min-height: 100vh;
}

/* Center all content only for the review page */
body:has(.ostbpa-review-card) main,
body:has(.ostbpa-review-card) .site,
body:has(.ostbpa-review-card) .site-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ostbpa-review-card {
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid #d4b55c;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    color: #d4b55c;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.ostbpa-review-title {
    margin: 0 0 10px;
    font-size: 26px;
    color: #d4b55c;
}

.ostbpa-review-intro {
    color: #d4b55c;
    margin: 0 0 20px;
    font-weight: 600;
}

.ostbpa-review-field {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    color: #d4b55c;
}

.ostbpa-review-field label {
    font-weight: 700;
    color: #d4b55c;
}

.ostbpa-review-field select,
.ostbpa-review-field textarea {
    width: 100%;
    border: 1px solid #d4b55c;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    background: rgba(0, 0, 0, 0.35);
    color: #f4d47c;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.ostbpa-review-field select option {
    color: #d4b55c;
    background: #000;
}

.ostbpa-review-field textarea::placeholder {
    color: rgba(212, 181, 92, 0.8);
}

.ostbpa-review-field textarea {
    resize: vertical;
}

.ostbpa-review-field select:focus,
.ostbpa-review-field textarea:focus {
    outline: none;
    border-color: #f4d47c;
    box-shadow: 0 0 0 3px rgba(244, 212, 124, 0.25);
}

.ostbpa-review-button {
    background: transparent;
    color: #f4d47c;
    border: 2px solid #d4b55c;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.15s ease;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.ostbpa-review-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    filter: brightness(1.05);
}

.ostbpa-review-message {
    max-width: 640px;
    margin: 0 auto 16px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.ostbpa-review-message--success {
    background: #f0fdf4;
    border-color: #16a34a;
    color: #166534;
}

.ostbpa-review-message--error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.ostbpa-payment-options {
    display: grid;
    gap: 12px;
}

.ostbpa-payment-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ostbpa-payment-option input {
    margin-top: 4px;
}

.ostbpa-payment-option__title {
    font-weight: 600;
    color: #1f2933;
    display: block;
}

.ostbpa-payment-option__hint {
    display: block;
    color: #52606d;
    font-size: 10px;
    margin-top: 2px;
}

.ostbpa-payment-option:hover {
    border-color: var(--ostbpa-primary, #be9b3f);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.ostbpa-thankyou-redirect__actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 0 0 14px;
}

.ostbpa-thankyou-redirect__actions .ostbpa-callback__button {
    width: 100%;
}

.ostbpa-thankyou-redirect__continue {
    margin: 0;
    text-align: left;
}

.ostbpa-thankyou-redirect__continue a {
    color: var(--ostbpa-primary, #be9b3f);
    font-weight: 600;
    text-decoration: none;
}

.ostbpa-thankyou-redirect__continue a:hover,
.ostbpa-thankyou-redirect__continue a:focus {
    text-decoration: underline;
}
