.booking-page {
    min-height: 100vh;
    padding: 128px 0 110px;
    background: #f8f4f1;
}

.booking-shell {
    max-width: 1180px;
    margin: auto;
    padding: 34px;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 32px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 30px 90px rgba(72,51,45,.08);
}

.booking-top {
    margin-bottom: 48px;
}

.booking-step-text {
    display: inline-block;
    margin-bottom: 16px;
    color: #7a6a66;
    font-size: 13px;
}

.booking-progress {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0,0,0,.06);
}

.booking-progress-bar {
    width: 33%;
    height: 100%;
    border-radius: inherit;
    background: var(--color-primary);
    transition: width .3s ease;
}

.booking-step {
    display: none;
}

.active-step {
    display: block;
}

.booking-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.booking-header-left {
    margin-inline: 0;
    text-align: left;
}

.booking-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.booking-title {
    margin-bottom: 20px;
    color: #2f2f2f;
    font-size: 56px;
    line-height: 1;
}

.booking-description {
    color: #6f625f;
    font-size: 15px;
    line-height: 1.8;
}

.booking-service-picker {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 26px;
}

.booking-category-panel {
    display: grid;
    align-content: start;
    gap: 10px;
}

.booking-category-panel button,
.booking-service-card {
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.82);
    color: #453936;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.booking-category-panel button {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 18px;
}

.booking-category-panel button:hover,
.booking-category-panel button.active {
    border-color: rgba(199,119,112,.28);
    background: rgba(199,119,112,.1);
}

.booking-category-panel span {
    font-size: 16px;
    font-weight: 500;
}

.booking-category-panel strong {
    color: #8a7771;
    font-size: 12px;
    font-weight: 400;
}

.booking-service-list {
    max-height: 690px;
    overflow: auto;
    padding-right: 6px;
}

.booking-service-section {
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 20px;
    background: rgba(255,255,255,.56);
}

.booking-subcategory-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: #2f2f2f;
    cursor: pointer;
    text-align: left;
}

.booking-subcategory-toggle::after {
    content: '+';
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(199,119,112,.1);
    color: var(--color-primary);
    font-size: 18px;
}

.booking-service-section.open .booking-subcategory-toggle::after {
    content: '-';
}

.booking-subcategory-toggle span {
    font-size: 17px;
    font-weight: 500;
}

.booking-subcategory-toggle strong {
    margin-left: auto;
    color: #8a7771;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.booking-service-section-list {
    padding: 0 14px 14px;
}

.booking-service-section:not(.open) .booking-service-section-list {
    display: none;
}

.booking-service-card {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
    padding: 18px 20px;
    border-radius: 18px;
}

.booking-service-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(72,51,45,.06);
}

.booking-service-card.active {
    border-color: var(--color-primary);
    background: rgba(199,119,112,.12);
    box-shadow: 0 16px 38px rgba(199,119,112,.12);
}

.booking-service-copy {
    display: grid;
    gap: 7px;
}

.booking-service-copy strong {
    color: #2f2f2f;
    font-size: 16px;
}

.booking-service-copy em {
    width: fit-content;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(199, 119, 112, .11);
    color: var(--color-primary);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-service-copy small {
    display: -webkit-box;
    overflow: hidden;
    color: #6f625f;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.booking-service-meta {
    display: grid;
    gap: 6px;
    justify-items: end;
}

.booking-service-meta small {
    color: #8a7771;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-service-meta strong {
    color: #2f2f2f;
    font-size: 24px;
    font-weight: 500;
}

.booking-service-section[hidden] {
    display: none;
}

.booking-selection-summary {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, .6fr) minmax(160px, .6fr);
    gap: 12px;
    max-width: 760px;
    margin: -22px auto 34px;
    padding: 14px;
    border: 1px solid rgba(199,119,112,.18);
    border-radius: 18px;
    background: rgba(199,119,112,.08);
    text-align: left;
}

.booking-selection-summary:empty {
    display: none;
}

.booking-selection-summary div {
    min-width: 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.66);
}

.booking-selection-summary span,
.booking-selection-summary strong {
    display: block;
}

.booking-selection-summary span {
    margin-bottom: 5px;
    color: #a56a64;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.booking-selection-summary strong {
    overflow-wrap: anywhere;
    color: #4f403b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.booking-specialist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.booking-specialist-card {
    min-height: 152px;
    padding: 22px;
    border: 1px solid rgba(117, 92, 77, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
    color: #332c28;
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(82, 58, 48, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-specialist-card:hover,
.booking-specialist-card.active {
    border-color: rgba(199, 119, 112, 0.42);
    box-shadow: 0 22px 50px rgba(199, 119, 112, 0.14);
    transform: translateY(-2px);
}

.booking-specialist-card.active {
    background: linear-gradient(135deg, rgba(255, 248, 245, 0.95), rgba(248, 226, 219, 0.72));
}

.booking-specialist-avatar {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), rgba(247, 224, 216, 0.78)),
        linear-gradient(135deg, rgba(189, 112, 107, 0.18), rgba(255, 255, 255, 0.72));
    color: #bd706b;
    box-shadow: inset 0 0 0 1px rgba(189, 112, 107, 0.18);
}

.booking-specialist-avatar svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-specialist-avatar svg circle {
    fill: rgba(255, 248, 245, 0.92);
    stroke: rgba(189, 112, 107, 0.28);
}

.booking-specialist-card strong,
.booking-specialist-card small {
    display: block;
    min-width: 0;
}

.booking-specialist-card strong {
    font-size: 18px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.booking-specialist-card small {
    margin-top: 6px;
    color: #7a6c65;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.booking-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    margin-bottom: 34px;
}

.booking-day-card,
.booking-hour-card {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.82);
    color: #2f2f2f;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-day-card {
    height: 94px;
    flex-direction: column;
    gap: 8px;
    border-radius: 20px;
}

.booking-day-card span {
    color: #8a7771;
    font-size: 11px;
    letter-spacing: 2px;
}

.booking-day-card h3 {
    font-size: 28px;
}

.booking-hours-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.booking-hours-grid.loading {
    opacity: .62;
    pointer-events: none;
}

.booking-hour-card {
    position: relative;
    min-height: 56px;
    border-radius: 16px;
    font-size: 15px;
}

.booking-hour-card.unavailable {
    border-color: rgba(117, 92, 77, .08);
    background: rgba(117, 92, 77, .05);
    color: rgba(97, 82, 78, .48);
    cursor: not-allowed;
    box-shadow: none;
}

.booking-hour-card.unavailable::after {
    content: attr(data-reason);
    position: absolute;
    left: 50%;
    bottom: -9px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 252, 249, .96);
    color: #a55f58;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translate(-50%, 5px);
    transition: opacity .18s ease, transform .18s ease;
    white-space: nowrap;
}

.booking-hour-card.unavailable:hover::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.booking-day-card.active,
.booking-hour-card.active {
    border-color: var(--color-primary);
    background: rgba(199,119,112,.1);
    box-shadow: 0 12px 30px rgba(199,119,112,.12);
}

.booking-form {
    max-width: 760px;
    margin: auto;
}

.booking-input-group {
    margin-bottom: 24px;
}

.booking-input-group label {
    display: block;
    margin-bottom: 10px;
    color: #61524e;
    font-size: 14px;
}

.booking-input-group input,
.booking-input-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    color: #2f2f2f;
    font-size: 15px;
    outline: none;
}

.booking-input-group textarea {
    resize: none;
}

.booking-input-group input:focus,
.booking-input-group textarea:focus {
    border-color: rgba(199,119,112,.42);
    box-shadow: 0 14px 34px rgba(199,119,112,.1);
}

.booking-client-lookup {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    color: #8a7771;
    font-size: 12px;
    line-height: 1.5;
}

.booking-client-lookup[data-status="success"] {
    color: #6f8b5c;
}

.booking-client-lookup[data-status="error"] {
    color: #a74f48;
}

.booking-client-lookup[data-status="loading"] {
    color: var(--color-primary);
}

.booking-footer {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.booking-footer-between {
    justify-content: space-between;
}

.booking-error-message {
    display: none;
    margin-bottom: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(199,119,112,.18);
    border-radius: 16px;
    background: rgba(199,119,112,.08);
    color: #a74f48;
    font-size: 14px;
}

.booking-error-popup {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.booking-error-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.booking-error-popup-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(46, 34, 30, .28);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.booking-error-popup-card {
    position: relative;
    width: min(100%, 430px);
    padding: 34px 30px 28px;
    border: 1px solid rgba(199, 119, 112, .16);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(199, 119, 112, .12), transparent 34%),
        rgba(255, 252, 249, .96);
    box-shadow: 0 30px 80px rgba(72, 51, 45, .22);
    text-align: center;
    transform: translateY(18px) scale(.96);
    transition: transform .2s ease;
}

.booking-error-popup.is-visible .booking-error-popup-card {
    transform: translateY(0) scale(1);
}

.booking-error-popup.is-bouncing .booking-error-popup-card {
    animation: bookingErrorBounce .46s cubic-bezier(.2, .9, .24, 1.18);
}

.booking-variant-modal {
    position: fixed;
    inset: 0;
    z-index: 82;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.booking-variant-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.booking-variant-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 36, 31, .32);
    backdrop-filter: blur(4px);
}

.booking-variant-panel {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    padding: 34px 30px 28px;
    overflow-y: auto;
    border: 1px solid rgba(199, 119, 112, .16);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(199, 119, 112, .11), transparent 34%),
        rgba(255, 252, 249, .96);
    box-shadow: 0 30px 80px rgba(72, 51, 45, .22);
}

.booking-variant-modal.is-bouncing .booking-variant-panel {
    animation: bookingErrorBounce .46s cubic-bezier(.2, .9, .24, 1.18);
}

.booking-variant-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(199, 119, 112, .16);
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    color: #9e5c55;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.booking-variant-panel > span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.booking-variant-panel h2 {
    color: #2d2926;
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
}

.booking-variant-panel p {
    margin-top: 10px;
    color: #786b65;
    font-size: 14px;
    line-height: 1.7;
}

.booking-variant-options {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.booking-variant-option {
    min-height: 72px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    border: 1px solid rgba(199, 119, 112, .15);
    border-radius: 16px;
    background: rgba(255, 248, 245, .72);
    color: #332c28;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.booking-variant-option strong {
    font-size: 15px;
}

.booking-variant-option span {
    color: #756963;
    font-size: 13px;
}

.booking-variant-option em {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 22px;
    font-style: normal;
}

.booking-error-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(199, 119, 112, .16);
    border-radius: 50%;
    background: rgba(255,255,255,.74);
    color: #9e5c55;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.booking-error-popup-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(199,119,112,.12);
    color: var(--color-primary);
}

.booking-error-popup-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-error-popup-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.booking-error-popup h2 {
    margin: 0 0 12px;
    color: #302421;
    font-size: 32px;
    line-height: 1;
}

.booking-error-popup p {
    margin: 0 auto 24px;
    color: #6f625f;
    font-size: 15px;
    line-height: 1.7;
}

@keyframes bookingErrorBounce {
    0% {
        transform: translateY(24px) scale(.9);
    }

    58% {
        transform: translateY(-8px) scale(1.025);
    }

    78% {
        transform: translateY(3px) scale(.992);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.booking-success-wrapper {
    max-width: 880px;
    margin: auto;
    text-align: center;
}

.booking-transition-wrapper {
    max-width: 760px;
    margin: auto;
    padding: 72px 34px;
    border: 1px solid rgba(199,119,112,.14);
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(199,119,112,.12), transparent 34%),
        rgba(255,255,255,.62);
    box-shadow: 0 26px 80px rgba(72,51,45,.08);
    text-align: center;
    animation: bookingTransitionIn .42s cubic-bezier(.2, .9, .24, 1.18);
}

.booking-transition-loader {
    width: 108px;
    height: 108px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    border-radius: 50%;
    background: rgba(199,119,112,.1);
}

.booking-transition-loader::before,
.booking-transition-loader::after {
    content: "";
    position: absolute;
    border-radius: inherit;
}

.booking-transition-loader::before {
    inset: 13px;
    border: 1px solid rgba(199,119,112,.22);
}

.booking-transition-loader::after {
    width: 74px;
    height: 74px;
    border: 2px solid rgba(199,119,112,.14);
    border-top-color: var(--color-primary);
    animation: bookingLoaderSpin 1s linear infinite;
}

.booking-transition-loader span {
    width: 8px;
    height: 8px;
    z-index: 1;
    border-radius: 50%;
    background: var(--color-primary);
    animation: bookingLoaderPulse .9s ease-in-out infinite;
}

.booking-transition-loader span:nth-child(2) {
    animation-delay: .15s;
}

.booking-transition-loader span:nth-child(3) {
    animation-delay: .3s;
}

.booking-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 104px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(199,119,112,.12);
    color: var(--color-primary);
    box-shadow: 0 18px 48px rgba(199,119,112,.12);
}

.booking-success-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.booking-success-subtitle {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.booking-success-title {
    margin-bottom: 22px;
    color: #2f2f2f;
    font-size: 58px;
    line-height: 1;
}

.booking-success-description {
    max-width: 620px;
    margin: 0 auto 34px;
    color: #6f625f;
    font-size: 15px;
    line-height: 1.8;
}

.booking-success-summary {
    max-width: 880px;
    margin: 0 auto 24px;
    text-align: left;
}

.booking-receipt-card {
    padding: 28px;
    border: 1px solid rgba(199,119,112,.14);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.92), rgba(250,241,236,.88));
    box-shadow: 0 24px 70px rgba(72,51,45,.08);
    animation: bookingTransitionIn .38s ease both;
}

.booking-receipt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.booking-receipt-head span,
.booking-receipt-service span,
.booking-receipt-price span,
.booking-summary-notes span {
    display: inline-block;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-receipt-head h2 {
    margin-top: 8px;
    color: #2f2f2f;
    font-size: 40px;
    line-height: 1;
}

.booking-receipt-head > strong {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(126, 156, 103, .16);
    color: #557149;
    font-size: 12px;
}

.booking-receipt-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 22px;
    margin-bottom: 18px;
}

.booking-receipt-service,
.booking-receipt-price {
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 22px;
    background: rgba(255,255,255,.68);
}

.booking-receipt-service {
    padding: 28px;
}

.booking-receipt-service h3 {
    margin: 14px 0 12px;
    color: #2f2f2f;
    font-size: 34px;
    line-height: 1.05;
}

.booking-receipt-service p {
    color: #6f625f;
    font-size: 15px;
    line-height: 1.7;
}

.booking-receipt-price {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 24px;
}

.booking-receipt-price strong {
    margin-top: 12px;
    color: #2f2f2f;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
}

.booking-receipt-price small {
    margin-top: 8px;
    color: #8a7771;
    font-size: 13px;
}

.booking-summary-head span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.booking-summary-head strong {
    min-height: 28px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(199,119,112,.11);
    color: #a75f58;
    font-size: 12px;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.booking-summary-grid div {
    min-height: 86px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,.05);
    border-radius: 16px;
    background: rgba(255,255,255,.58);
}

.booking-summary-grid span,
.booking-summary-contact span {
    display: block;
    color: #8a7771;
    font-size: 11px;
    text-transform: uppercase;
}

.booking-summary-grid strong {
    display: block;
    margin-top: 7px;
    color: #2f2f2f;
    font-size: 13px;
    line-height: 1.35;
    word-break: break-word;
}

.booking-summary-notes {
    margin-top: 12px;
    padding: 18px;
    border: 1px solid rgba(199,119,112,.12);
    border-radius: 18px;
    background: rgba(240,212,193,.22);
}

.booking-summary-notes p {
    margin-top: 8px;
    color: #6f625f;
    font-size: 13px;
    line-height: 1.7;
}

.booking-next-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.booking-next-steps article {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(199,119,112,.08);
}

.booking-next-steps article span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.booking-next-steps article p {
    color: #6f625f;
    font-size: 12px;
    line-height: 1.55;
}

@keyframes bookingTransitionIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bookingLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bookingLoaderPulse {
    0%,
    100% {
        opacity: .36;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.booking-payment-box {
    max-width: 760px;
    margin: 0 auto 34px;
    padding: 24px;
    display: grid;
    gap: 12px;
    border: 1px solid rgba(199,119,112,.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.9), rgba(240,212,193,.24));
    box-shadow: 0 20px 58px rgba(72,51,45,.08);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.booking-payment-box::before {
    content: '';
    width: 5px;
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--color-primary);
}

.booking-payment-box[data-status="available"]::before {
    background: #6f8b5c;
}

.booking-payment-box[data-status="pending"]::before {
    background: #c77970;
}

.booking-payment-box span {
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-payment-box strong {
    color: #2f2f2f;
    font-size: 24px;
    line-height: 1.2;
}

.booking-payment-box p {
    color: #6f625f;
    font-size: 13px;
    line-height: 1.75;
}

.booking-payment-amounts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.booking-payment-amounts div {
    padding: 14px;
    border: 1px solid rgba(199,119,112,.13);
    border-radius: 8px;
    background: rgba(255,255,255,.68);
}

.booking-payment-amounts span {
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1.4px;
}

.booking-payment-amounts strong {
    font-family: var(--font-display);
    font-size: 24px;
}

.booking-payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.booking-payment-box a,
.booking-payment-box button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.booking-payment-box a[hidden],
.booking-payment-box button[hidden] {
    display: none;
}

.booking-payment-box a {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.booking-payment-box button {
    cursor: pointer;
}

.booking-payment-box button:not(:disabled) {
    border: 1px solid rgba(199,119,112,.22);
    background: rgba(255,255,255,.86);
    color: #9d5b55;
}

.booking-payment-box button:disabled {
    border: 1px solid rgba(199,119,112,.18);
    background: rgba(255,255,255,.82);
    color: #9d5b55;
    cursor: not-allowed;
}

.booking-bank-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.booking-bank-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-bank-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(43, 34, 29, .34);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.booking-bank-card {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100dvh - 44px);
    overflow-y: auto;
    padding: 34px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 10px;
    background: rgba(255, 251, 248, .97);
    box-shadow: 0 28px 90px rgba(72,51,45,.18);
    transform: translateY(16px) scale(.96);
    transition: transform .22s ease;
}

.booking-bank-modal.open .booking-bank-card {
    transform: translateY(0) scale(1);
}

.booking-bank-modal.bounce .booking-bank-card {
    animation: bookingErrorBounce .42s ease both;
}

.booking-bank-close {
    width: 38px;
    height: 38px;
    position: absolute;
    top: 16px;
    right: 16px;
    border: 1px solid rgba(199,119,112,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #9d5b55;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.booking-bank-card > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
}

.booking-bank-card h2 {
    max-width: 460px;
    margin-bottom: 12px;
    color: #2f2f2f;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
}

.booking-bank-card p {
    max-width: 520px;
    margin-bottom: 18px;
    color: #6f625f;
    font-size: 14px;
    line-height: 1.75;
}

.booking-bank-list {
    max-height: 240px;
    margin: 0 0 20px;
    padding-right: 4px;
    display: grid;
    gap: 10px;
    overflow-y: auto;
}

.booking-bank-account {
    padding: 15px;
    border: 1px solid rgba(199,119,112,.14);
    border-radius: 10px;
    background: rgba(255,255,255,.72);
}

.booking-bank-account > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.booking-bank-account strong {
    min-width: 0;
    color: #2f2925;
    font-size: 15px;
    overflow-wrap: anywhere;
}

.booking-bank-account span {
    flex: 0 0 auto;
    max-width: 46%;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(246, 226, 216, .88);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.booking-bank-account dl {
    margin: 13px 0 0;
    display: grid;
    gap: 8px;
}

.booking-bank-account dl div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
}

.booking-bank-account .wide {
    align-items: start;
}

.booking-bank-account dt {
    color: #9a8b84;
    font-size: 12px;
}

.booking-bank-account dd,
.booking-bank-account p {
    margin: 0;
    min-width: 0;
    color: #3b302b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.booking-bank-card a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.booking-success-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 980px) {
    .booking-service-picker {
        grid-template-columns: 1fr;
    }

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

    .booking-category-panel {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .booking-category-panel button {
        min-width: 210px;
    }

    .booking-hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .booking-page {
        padding-top: 104px;
    }

    .booking-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .booking-title,
    .booking-success-title {
        font-size: 42px;
    }

    .booking-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .booking-payment-amounts,
    .booking-payment-actions {
        grid-template-columns: 1fr;
    }

    .booking-payment-actions {
        display: grid;
    }

    .booking-payment-actions a,
    .booking-payment-actions button,
    .booking-bank-card a {
        width: 100%;
    }

    .booking-bank-card {
        padding: 30px 20px 22px;
    }

    .booking-bank-card h2 {
        font-size: 34px;
    }

    .booking-bank-account > div {
        display: grid;
    }

    .booking-bank-account span {
        max-width: 100%;
        justify-self: start;
        text-align: left;
    }

    .booking-bank-account dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .booking-service-card,
    .booking-specialist-card,
    .booking-days-grid,
    .booking-receipt-main,
    .booking-summary-grid,
    .booking-next-steps {
        grid-template-columns: 1fr;
    }

    .booking-specialist-card {
        min-height: auto;
        padding: 18px;
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
    }

    .booking-specialist-avatar {
        width: 52px;
        height: 52px;
    }

    .booking-specialist-card strong {
        font-size: 16px;
        line-height: 1.25;
    }

    .booking-specialist-card small {
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.35;
    }

    .booking-receipt-card {
        padding: 20px;
        border-radius: 22px;
    }

    .booking-receipt-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-receipt-head h2,
    .booking-receipt-service h3,
    .booking-receipt-price strong {
        font-size: 32px;
    }

    .booking-service-meta {
        justify-items: start;
    }

    .booking-days-grid,
    .booking-hours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 22px;
    }

    .booking-hour-card {
        min-height: 52px;
        padding: 8px;
        border-radius: 14px;
        font-size: 14px;
        line-height: 1.2;
    }

    .booking-hour-card.unavailable::after {
        display: none;
    }

    .booking-footer-between,
    .booking-success-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .booking-error-popup {
        align-items: flex-end;
        padding: 16px;
    }

    .booking-error-popup-card {
        padding: 30px 22px 24px;
        border-radius: 24px;
    }

    .booking-error-popup h2 {
        font-size: 28px;
    }
}

@media (max-width: 520px) {
    .booking-page {
        padding-top: 96px;
        padding-bottom: 56px;
    }

    .booking-shell {
        padding: 16px;
        border-radius: 20px;
    }

    .booking-top {
        margin-bottom: 28px;
    }

    .booking-header {
        margin-bottom: 28px;
    }

    .booking-title,
    .booking-success-title {
        font-size: 34px;
        line-height: 1.04;
    }

    .booking-selection-summary {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
        padding: 12px;
    }

    .booking-specialist-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .booking-specialist-card {
        min-width: 0;
        padding: 14px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        border-radius: 16px;
    }

    .booking-specialist-avatar {
        width: 46px;
        height: 46px;
    }

    .booking-specialist-card strong {
        font-size: 15px;
    }

    .booking-days-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .booking-day-card {
        height: 76px;
        gap: 5px;
        border-radius: 14px;
    }

    .booking-day-card span {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .booking-day-card h3 {
        font-size: 23px;
    }

    .booking-hours-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .booking-hour-card {
        min-width: 0;
        min-height: 48px;
        padding: 7px;
        border-radius: 12px;
        font-size: 13px;
    }

    .booking-footer-between {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .booking-days-grid,
    .booking-hours-grid {
        grid-template-columns: 1fr;
    }
}
