.booking-page {
    background:
        radial-gradient(circle at top left, rgba(227, 196, 155, 0.35), transparent 32%),
        linear-gradient(180deg, #f6efe7 0%, #efe4d7 100%);
    color: #2f2419;
}

.booking-page .container {
    max-width: 1400px;
}

.booking-page section {
    background: none;
    height: auto;
    color: inherit;
}

.booking-page .booking-shell {
    padding: 44px 0 72px;
}

.booking-page .booking-hero {
    margin-bottom: 28px;
    padding: 34px 38px;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(111, 69, 25, 0.94), rgba(160, 102, 42, 0.88)),
        url("../image/image 4.png") center/cover;
    box-shadow: 0 28px 60px rgba(83, 50, 22, 0.18);
    color: #fff8f1;
}

.booking-page .booking-hero__eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 244, 232, 0.18);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-page .booking-title {
    margin: 16px 0 14px;
    max-width: 900px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.98;
    color: #ffffff;
}

.booking-page .booking-subtitle {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 248, 241, 0.9);
}

.booking-page .booking-alert {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 18px;
    font-size: 16px;
}

.booking-page .booking-alert--error {
    background: #fbeceb;
    color: #8d2d2d;
    border: 1px solid rgba(141, 45, 45, 0.15);
}

.booking-page .booking-card {
    background: rgba(255, 251, 246, 0.94);
    border: 1px solid rgba(171, 131, 90, 0.2);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(90, 60, 31, 0.12);
    backdrop-filter: blur(8px);
    padding: 30px;
}

.booking-page .booking-card--success {
    padding: 40px;
}

.booking-page .booking-success {
    max-width: 760px;
}

.booking-page .booking-success-step {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eadfd3;
    color: #5e4325;
    font-weight: 700;
    margin-bottom: 14px;
}

.booking-page .booking-success-title {
    margin: 0 0 12px;
    font-size: 36px;
}

.booking-page .booking-success-text {
    margin: 0 0 20px;
    color: #5e5347;
    line-height: 1.6;
}

.booking-page .booking-success-summary {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    background: #f8f1e9;
    border: 1px solid #e5d5c5;
}

.booking-page .booking-constructor {
    display: block;
}

.booking-page .booking-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.booking-page .booking-step-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 247, 240, 0.88);
    border: 1px solid rgba(160, 122, 83, 0.16);
    color: #5b4635;
    box-shadow: 0 12px 30px rgba(121, 88, 53, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.booking-page .booking-step-pill.is-active {
    background: linear-gradient(135deg, #9c5e19, #bc7b2d);
    color: #fff;
}

.booking-page .booking-step-pill.is-complete {
    background: linear-gradient(135deg, #e8d4bc, #f3e7d8);
    color: #4f3723;
}

.booking-page .booking-step-pill.is-clickable {
    cursor: pointer;
}

.booking-page .booking-step-pill.is-clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(121, 88, 53, 0.12);
}

.booking-page .booking-step-pill__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #6d4316;
    font-weight: 800;
}

.booking-page .booking-step-pill.is-active .booking-step-pill__num {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.booking-page .booking-step-pill__text {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.booking-page .booking-stage {
    display: none;
}

.booking-page .booking-stage.is-active {
    display: block;
}

.booking-page .booking-stage.is-entering-forward {
    animation: bookingStageInForward 0.34s ease;
}

.booking-page .booking-stage.is-entering-back {
    animation: bookingStageInBack 0.34s ease;
}

.booking-page .booking-stage-head {
    margin-bottom: 26px;
}

.booking-page .booking-stage-label {
    font-size: 14px;
    font-weight: 800;
    color: #9a692f;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-page .booking-stage-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    color: #2e241c;
}

.booking-page .booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.booking-page .booking-form-grid--wide {
    align-items: start;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.booking-page .booking-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.booking-page .booking-group {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(177, 144, 112, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.booking-page .booking-program-banner {
    display: grid;
    gap: 12px;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff8ef 0%, #f4e8da 100%);
    border: 1px solid rgba(177, 144, 112, 0.28);
    box-shadow: 0 14px 34px rgba(90, 60, 31, 0.08);
}

.booking-page .booking-program-banner__badge {
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(156, 94, 25, 0.1);
    color: #8a5518;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.booking-page .booking-program-banner__title {
    margin: 0;
    color: #2e241c;
    font-size: 20px;
    line-height: 1.25;
}

.booking-page .booking-program-banner__subtitle {
    margin: 0;
    color: #6a5745;
    line-height: 1.5;
}

.booking-page .booking-program-banner__list {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 18px;
    color: #4f3d2d;
    line-height: 1.45;
}

.booking-page .booking-program-banner__chooser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.booking-page .booking-program-banner__option {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #d9c7b6;
    background: rgba(255, 253, 249, 0.9);
    color: #5b4635;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.booking-page .booking-program-banner__option.is-active {
    border-color: rgba(156, 94, 25, 0.38);
    background: #ead9c5;
    color: #4c3218;
    box-shadow: 0 0 0 3px rgba(184, 107, 69, 0.1);
}

.booking-page .booking-program-banner__button {
    width: fit-content;
}

.booking-page .booking-group-note {
    margin: -4px 0 16px;
    color: #6e5c4a;
    line-height: 1.5;
}

.booking-page .booking-group label,
.booking-page .booking-group-title {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #2e241c;
}

.booking-page .booking-input,
.booking-page .booking-select,
.booking-page .booking-textarea,
.booking-page .booking-number {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #d9c7b6;
    border-radius: 18px;
    background: #fffdf9;
    font-size: 16px;
    line-height: 1.3;
    color: #2e241c;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-page .booking-input:focus,
.booking-page .booking-select:focus,
.booking-page .booking-textarea:focus,
.booking-page .booking-number:focus {
    border-color: #b8772b;
    box-shadow: 0 0 0 4px rgba(184, 119, 43, 0.12);
    background: #fff;
}

.booking-page .input-error,
.booking-page .booking-program-list.input-error,
.booking-page .booking-policy.input-error {
    border-color: #b86b45;
    box-shadow: 0 0 0 3px rgba(184, 107, 69, 0.15);
}

.booking-page .booking-textarea {
    min-height: 136px;
    resize: vertical;
}

.booking-page .booking-datetime,
.booking-page .booking-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-page .booking-summary-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdf9 0%, #f6efe7 100%);
    border: 1px solid rgba(177, 144, 112, 0.18);
}

.booking-page .booking-summary-card--tall {
    display: grid;
    gap: 12px;
}

.booking-page .booking-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #5c4a39;
}

.booking-page .booking-summary-line strong {
    color: #2c2118;
}

.booking-page .booking-summary-line--total {
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid #e4d5c6;
}

.booking-page .booking-summary-subtitle {
    margin-top: 10px;
    font-weight: 700;
    color: #3b2d22;
}

.booking-page .booking-select-stack,
.booking-page .booking-extra-stack,
.booking-page .booking-program-list {
    display: grid;
    gap: 14px;
}

.booking-page .booking-form-grid--constructor {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: start;
}

.booking-page .booking-group--selects {
    padding: 24px;
}

.booking-page .booking-select-shell {
    position: relative;
}

.booking-page .booking-select--constructor {
    min-height: 60px;
    padding-right: 52px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffdf9 0%, #f8f1e8 100%);
    font-size: 17px;
}

.booking-page .booking-select-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: start;
}

.booking-page .booking-select-line.is-filled {
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(252, 246, 239, 0.96), rgba(244, 233, 220, 0.8));
    border: 1px solid rgba(177, 144, 112, 0.18);
}

.booking-page .booking-service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 16px;
    border-radius: 16px;
    background: #efe3d4;
    color: #5b432b;
    font-size: 14px;
    font-weight: 700;
    white-space: normal;
    text-align: center;
}

.booking-page .booking-remove-btn,
.booking-page .booking-add-btn,
.booking-page .booking-nav-btn,
.booking-page .booking-submit,
.booking-page .booking-program-item__remove {
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.booking-page .booking-remove-btn:hover,
.booking-page .booking-add-btn:hover,
.booking-page .booking-nav-btn:hover,
.booking-page .booking-submit:hover,
.booking-page .booking-program-item__remove:hover,
.booking-page .booking-service-link:hover,
.booking-page .booking-menu-link:hover {
    transform: translateY(-1px);
}

.booking-page .booking-remove-btn {
    width: 54px;
    height: 54px;
    background: #eadfd3;
    color: #5d4733;
    font-size: 24px;
}

.booking-page .booking-add-btn {
    width: 100%;
    padding: 15px 18px;
    background: linear-gradient(180deg, #efe3d5 0%, #e6d5c3 100%);
    color: #4d3827;
    text-align: left;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-page .booking-add-btn:disabled,
.booking-page .booking-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.booking-page .booking-inline-config {
    grid-column: 1 / -1;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f7f1ea;
    border: 1px solid #eaded1;
}

.booking-page .booking-inline-config[hidden] {
    display: none !important;
}

.booking-page .booking-help,
.booking-page .booking-side-note,
.booking-page .booking-program-item__meta,
.booking-page .booking-extra-option__text span,
.booking-page .field-error {
    font-size: 14px;
    line-height: 1.55;
}

.booking-page .booking-help,
.booking-page .booking-side-note,
.booking-page .booking-program-item__meta,
.booking-page .booking-extra-option__text span {
    color: #63584d;
}

.booking-page .field-error {
    color: #a53737;
}

.booking-page .booking-group--captcha img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid rgba(78, 55, 34, 0.14);
}

.booking-page .booking-group--captcha input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(78, 55, 34, 0.16);
    background: #fffaf4;
    color: #2f2419;
}

.booking-page .booking-toggle {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: #3b2d22;
}

.booking-page .booking-group--menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.booking-page .booking-menu-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.booking-page .booking-program-summary {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(243, 233, 222, 0.84));
    border: 1px solid rgba(177, 144, 112, 0.16);
}

.booking-page .booking-program-summary--constructor {
    position: sticky;
    top: 18px;
}

.booking-page .booking-program-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(177, 144, 112, 0.16);
}

.booking-page .booking-program-item__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
}

.booking-page .booking-program-item__content {
    display: grid;
    gap: 10px;
}

.booking-page .booking-program-item__title {
    font-weight: 700;
    color: #2c2118;
}

.booking-page .booking-program-item__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.booking-page .booking-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(156, 94, 25, 0.12);
    color: #8b5519;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-page .booking-badge--light {
    background: rgba(224, 188, 123, 0.18);
    color: #7d5a1c;
}

.booking-page .booking-badge--muted {
    background: rgba(111, 69, 25, 0.08);
    color: #6b4d31;
}

.booking-page .booking-program-item__values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: normal;
    text-align: right;
    color: #9a5d19;
    font-weight: 700;
}

.booking-page .booking-program-item__children {
    margin: 10px 0 0 18px;
    padding: 0;
    color: #5d5246;
}

.booking-page .booking-program-item__children li {
    margin-bottom: 5px;
}

.booking-page .booking-program-item__config {
    display: grid;
    gap: 10px;
    margin-top: 6px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(247, 241, 234, 0.9);
    border: 1px solid #eaded1;
}

.booking-page .booking-select--mini {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
}

.booking-page .booking-program-item__remove {
    margin-top: 12px;
    padding: 10px 12px;
    background: #efe3d4;
    color: #5b432b;
}

.booking-page .booking-empty-state {
    padding: 22px 18px;
    border: 1px dashed rgba(156, 94, 25, 0.28);
    border-radius: 20px;
    background: rgba(255, 251, 246, 0.86);
    color: #6a5847;
    line-height: 1.55;
}

.booking-page .booking-program-list {
    min-height: 260px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(245, 235, 224, 0.75));
    border: 1px solid rgba(177, 144, 112, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.booking-page .booking-summary-card--constructor {
    gap: 10px;
}

.booking-page .booking-group .booking-empty-state {
    background: rgba(255, 253, 249, 0.92);
}

.booking-page [hidden] {
    display: none !important;
}

.booking-page .booking-summary-card .booking-program-item {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.booking-page .booking-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.booking-page .booking-group-title::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-left: 14px;
    background: linear-gradient(90deg, rgba(188, 123, 45, 0.26), transparent);
}

.booking-page .booking-tabs {
    display: inline-flex;
    padding: 6px;
    border-radius: 18px;
    background: #efe3d4;
}

.booking-page .booking-tabs--compact {
    margin-bottom: 0;
}

.booking-page .booking-tab {
    border: none;
    background: transparent;
    color: #5f4a35;
    padding: 14px 22px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.booking-page .booking-tab.active {
    background: linear-gradient(135deg, #9c5e19, #bc7b2d);
    color: #fff;
}

.booking-page .booking-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 18px;
    background: #ead9c5;
    color: #4c3218;
    font-weight: 700;
}

.booking-page button.booking-menu-link {
    border: none;
    cursor: pointer;
}

.booking-page .booking-policy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: #5b4a3a;
    line-height: 1.55;
}

.booking-page .booking-policy a {
    color: #8f5417;
    text-decoration: underline;
}

.booking-page .booking-stage-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
}

.booking-page .booking-nav-btn,
.booking-page .booking-submit {
    padding: 16px 26px;
    background: linear-gradient(135deg, #9c5e19, #bc7b2d);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 14px 28px rgba(156, 94, 25, 0.18);
}

.booking-page .booking-nav-btn--ghost {
    background: #eadfd3;
    color: #4d3827;
    box-shadow: none;
}

.booking-page .booking-submit--link {
    display: inline-flex;
    justify-content: center;
    margin-top: 24px;
    text-decoration: none;
}

.booking-page .booking-step-message {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff4e7;
    border: 1px solid rgba(186, 117, 38, 0.24);
    color: #8a5518;
    line-height: 1.5;
}

.booking-page .booking-step-message.is-visible {
    display: block;
}

.booking-page .booking-step-message.is-highlighted {
    animation: bookingMessageShake 0.32s ease, bookingMessagePulse 1.8s ease;
    border-color: rgba(184, 107, 69, 0.58);
    box-shadow: 0 0 0 4px rgba(184, 107, 69, 0.14), 0 14px 32px rgba(90, 60, 31, 0.1);
}

.booking-page .booking-input--mini {
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
}

.booking-page .booking-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
}

.booking-page .booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 6, 0.55);
}

.booking-page .booking-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 22px;
    background: #fffaf4;
    border: 1px solid rgba(177, 144, 112, 0.24);
    box-shadow: 0 20px 50px rgba(74, 48, 26, 0.35);
}

.booking-page .booking-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 22px;
    border-bottom: 1px solid #e7d8c8;
}

.booking-page .booking-modal__header h3 {
    margin: 0;
}

.booking-page .booking-modal__body {
    display: grid;
    gap: 14px;
    padding: 18px 22px;
}

@keyframes bookingStageInForward {
    from {
        opacity: 0;
        transform: translateX(20px) translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes bookingStageInBack {
    from {
        opacity: 0;
        transform: translateX(-20px) translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes bookingMessageShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-3px);
    }
}

@keyframes bookingMessagePulse {
    0% {
        background: #fff4e7;
    }
    35% {
        background: #fbe4d9;
    }
    100% {
        background: #fff4e7;
    }
}

@media (max-width: 1024px) {
    .booking-page .booking-shell {
        padding: 34px 0 58px;
    }

    .booking-page .booking-hero {
        padding: 28px;
    }

    .booking-page .booking-card {
        padding: 24px;
    }

    .booking-page .booking-steps,
    .booking-page .booking-form-grid,
    .booking-page .booking-form-grid--constructor,
    .booking-page .booking-form-grid--wide,
    .booking-page .booking-program-summary {
        grid-template-columns: 1fr;
    }

    .booking-page .booking-program-summary--constructor {
        position: static;
        top: auto;
    }

    .booking-page .booking-step-pill {
        min-height: auto;
    }

    .booking-page .booking-summary-card--tall {
        min-height: unset;
    }
}

@media (max-width: 768px) {
    .booking-page .booking-shell {
        padding: 28px 0 48px;
    }

    .booking-page .booking-hero,
    .booking-page .booking-card,
    .booking-page .booking-group,
    .booking-page .booking-summary-card {
        border-radius: 22px;
    }

    .booking-page .booking-hero {
        padding: 24px 22px;
    }

    .booking-page .booking-title {
        line-height: 1.05;
    }

    .booking-page .booking-subtitle {
        font-size: 17px;
    }

    .booking-page .booking-steps {
        gap: 10px;
    }

    .booking-page .booking-datetime,
    .booking-page .booking-summary-grid,
    .booking-page .booking-select-line,
    .booking-page .booking-program-banner__chooser,
    .booking-page .booking-group--menu {
        grid-template-columns: 1fr;
        display: grid;
    }

    .booking-page .booking-group--menu {
        align-items: stretch;
    }

    .booking-page .booking-menu-link,
    .booking-page .booking-nav-btn,
    .booking-page .booking-submit,
    .booking-page .booking-service-link,
    .booking-page .booking-program-banner__button {
        min-height: 48px;
        width: 100%;
    }

    .booking-page .booking-menu-actions {
        justify-content: stretch;
        width: 100%;
    }

    .booking-page .booking-menu-actions > * {
        width: 100%;
    }

    .booking-page .booking-service-card__head {
        flex-direction: column;
    }

    .booking-page .booking-stage-actions {
        flex-direction: column;
    }

    .booking-page .booking-stage-actions > * {
        width: 100%;
    }

    .booking-page .booking-tabs {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        background: transparent;
        padding: 0;
    }

    .booking-page .booking-tab {
        background: #efe3d4;
    }

    .booking-page .booking-program-list {
        min-height: 200px;
    }

    .booking-page .booking-modal {
        padding: 12px;
    }

    .booking-page .booking-modal__dialog {
        max-height: calc(100vh - 24px);
        border-radius: 18px;
    }

    .booking-page .booking-modal__header {
        padding: 14px;
        flex-wrap: wrap;
    }

    .booking-page .booking-modal__body {
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .booking-page .booking-card,
    .booking-page .booking-card--success {
        padding: 16px;
    }

    .booking-page .booking-step-pill {
        padding: 12px;
        gap: 10px;
    }

    .booking-page .booking-step-pill__num {
        width: 32px;
        height: 32px;
    }

    .booking-page .booking-group {
        padding: 16px;
        border-radius: 18px;
    }

    .booking-page .booking-group label,
    .booking-page .booking-group-title {
        font-size: 16px;
    }

    .booking-page .booking-input,
    .booking-page .booking-select,
    .booking-page .booking-textarea,
    .booking-page .booking-number {
        padding: 12px 14px;
        border-radius: 14px;
        font-size: 15px;
    }

    .booking-page .booking-stage-title {
        font-size: clamp(22px, 7vw, 30px);
    }

    .booking-page .booking-success-title {
        font-size: 28px;
    }

    .booking-page .booking-summary-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .booking-page .booking-program-item__head {
        grid-template-columns: 1fr;
    }

    .booking-page .booking-program-item__values {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 400px) {
    .booking-page .booking-shell {
        padding: 20px 0 34px;
    }

    .booking-page .booking-hero {
        padding: 16px;
    }

    .booking-page .booking-title {
        font-size: clamp(30px, 11vw, 38px);
    }

    .booking-page .booking-subtitle {
        font-size: 15px;
    }

    .booking-page .booking-step-pill__text {
        font-size: 13px;
    }
}
