/* ==========================================================================
   Wish The Brand — Public Booking Wizard
   ========================================================================== */

.lux-body--booking {
    background: #f3ece3;
}

.lux-body--booking .lux-header {
    position: sticky;
}

.lux-booking {
    padding: calc(var(--header-h) + 32px) 0 80px;
    min-height: 100vh;
    min-height: 100dvh;
    background: #dda9661a;
}

.lux-booking__container {
    max-width: 1060px;
}

/* Progress bar */
.lux-booking__progress {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.lux-booking__progress-seg {
    flex: 1;
    height: 5px;
    background: rgba(26, 26, 26, 0.12);
    border-radius: 999px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.lux-booking__progress-seg.is-active {
    background: linear-gradient(90deg, #c4a574, #ddb87a);
    transform: scaleY(1.2);
}

.lux-booking__progress-seg.is-done {
    background: #c4a574;
}

/* Step panels */
.lux-booking__step[hidden] {
    display: none !important;
}

.lux-booking__step.is-active {
    animation: luxBookingFade 0.4s ease;
}

@keyframes luxBookingFade {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.lux-booking__head {
    text-align: center;
    margin-bottom: 32px;
}

.lux-booking__title {
    font-family: 'Baby Giviona', var(--font-heading);
    font-size: clamp(2.2rem, 6vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--black);
    margin: 0 0 10px;
}

.lux-booking__subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

/* Catalog — categories, subcategories, services */
.lux-booking__catalog {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lux-booking__catalog-section {
    position: relative;
    background: var(--white);
    border-radius: 14px;
    padding: 18px 18px 20px;
    box-shadow: 0 8px 28px rgba(13, 13, 13, 0.05);
    border: 1px solid rgba(196, 165, 116, 0.12);
}

.lux-booking__catalog-title {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--black);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(196, 165, 116, 0.2);
    letter-spacing: 0.02em;
}

.lux-booking__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 160px));
    gap: 12px;
    justify-content: center;
}

.lux-booking__subcats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
    gap: 12px;
    justify-content: flex-start;
    min-height: 36px;
    position: relative;
}

.lux-booking__catalog-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--white);
    border: 2px solid rgba(13, 13, 13, 0.06);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 4px 14px rgba(13, 13, 13, 0.05);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    max-width: 160px;
}

.lux-booking__catalog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 13, 13, 0.08);
    border-color: rgba(196, 165, 116, 0.45);
}

.lux-booking__catalog-card.is-active {
    border-color: #c4a574;
    box-shadow: 0 8px 22px rgba(196, 165, 116, 0.22);
}

.lux-booking__catalog-card__media {
    position: relative;
    height: 72px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3ece3 0%, #e8dcc8 100%);
}

.lux-booking__catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    padding: 2px;
    transition: transform 0.45s ease;
}

.lux-booking__catalog-card:hover .lux-booking__catalog-card__media img {
    transform: scale(1.05);
}

.lux-booking__catalog-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 30%, rgba(196, 165, 116, 0.35), transparent 55%),
        linear-gradient(145deg, #f0e6d8, #dcc9ad);
}

.lux-booking__catalog-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 13, 13, 0.45) 100%);
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.lux-booking__catalog-card.is-active .lux-booking__catalog-card__overlay {
    opacity: 0.75;
    background: linear-gradient(180deg, rgba(196, 165, 116, 0.08) 0%, rgba(13, 13, 13, 0.5) 100%);
}

.lux-booking__catalog-card__label {
    display: block;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    line-height: 1.3;
    background: #faf8f5;
}

.lux-booking__catalog-card.is-active .lux-booking__catalog-card__label {
    color: #8a6d3f;
    background: rgba(196, 165, 116, 0.1);
}

.lux-booking__catalog-card--sub {
    max-width: 150px;
    border: 0.5px solid #c1beb9;
}

.lux-booking__catalog-card--sub .lux-booking__catalog-card__media {
    height: 68px;
}

/* Service selection — compact horizontal cards */
.lux-booking__services {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lux-booking__service-card {
    position: relative;
    display: flex;
    background: #faf8f5;
    border: 1px solid rgba(13, 13, 13, 0.06);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lux-booking__service-card:hover {
    border-color: rgba(196, 165, 116, 0.55);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(196, 165, 116, 0.12);
}

.lux-booking__service-card.is-selected {
    border-color: #c4a574;
    background: var(--white);
    box-shadow: 0 10px 28px rgba(196, 165, 116, 0.2);
}

.lux-booking__service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lux-booking__service-card--row {
    flex-direction: row;
    align-items: stretch;
    min-height: 76px;
}

.lux-booking__service-card__media {
    position: relative;
    flex: 0 0 88px;
    width: 88px;
    height: 76px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3ece3 0%, #e8dcc8 100%);
}

.lux-booking__service-card__media img,
.lux-booking__service-card__media .lux-booking__catalog-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 76px;
    object-fit: cover;
    border-radius: 10px;
    padding: 5px;
}

.lux-booking__service-card__body {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.lux-booking__service-card__body strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.lux-booking__service-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.lux-booking__service-card__meta small {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gray-500);
}

.lux-booking__service-card__meta small i {
    color: #c4a574;
    font-size: 11px;
}

.lux-booking__service-card__price {
    font-size: 14px;
    font-weight: 700;
    color: #c4a574;
    white-space: nowrap;
}

.lux-booking__service-card__check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(13, 13, 13, 0.08);
    color: transparent;
    font-size: 9px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lux-booking__service-card.is-selected .lux-booking__service-card__check {
    background: #c4a574;
    border-color: #c4a574;
    color: var(--white);
}

/* Step 1 footer — summary + CTA */
.lux-booking__step-footer {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lux-booking__summary-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid rgba(196, 165, 116, 0.25);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(196, 165, 116, 0.12);
}

.lux-booking__summary-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lux-booking__summary-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.lux-booking__summary-bar strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.lux-booking__nav--step1 {
    margin-top: 0;
}

.lux-booking__nav--step1 .lux-booking__btn--primary {
    min-width: 240px;
    padding: 16px 32px;
    font-size: 13px;
}

/* Legacy — unused, kept minimal */
.lux-booking__gender-toggle {
    display: inline-flex;
    align-items: stretch;
    margin: 0 auto 36px;
    background: var(--white);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 8px 32px rgba(13, 13, 13, 0.08);
    width: fit-content;
    max-width: 100%;
}

.lux-booking__container .lux-booking__gender-toggle {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.lux-booking__gender-btn {
    flex: 1;
    min-width: 120px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    border-radius: 999px;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.lux-booking__gender-btn.is-active {
    background: #c4a574;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196, 165, 116, 0.45);
}

.lux-booking__selection-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a574;
    margin: 0 0 16px;
}

/* Staff grid */
.lux-booking__staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.lux-booking__staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: var(--white);
    border: 1px solid rgba(13, 13, 13, 0.06);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lux-booking__staff-card:hover,
.lux-booking__staff-card.is-selected {
    border-color: #c4a574;
    box-shadow: 0 6px 24px rgba(196, 165, 116, 0.2);
}

.lux-booking__staff-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #c4a574;
}

.lux-booking__staff-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

/* Date & time layout */
.lux-booking__schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.lux-booking__calendar-panel,
.lux-booking__slots-panel {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(13, 13, 13, 0.06);
    min-height: 380px;
}

.lux-booking__calendar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lux-booking__calendar-head strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
}

.lux-booking__cal-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black);
    border: 1px solid rgba(13, 13, 13, 0.1);
    border-radius: 50%;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lux-booking__cal-nav:hover {
    border-color: #c4a574;
    color: #c4a574;
}

.lux-booking__cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.lux-booking__cal-weekdays span {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    padding: 6px 0;
}

.lux-booking__cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.lux-booking__cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.lux-booking__cal-day.is-muted {
    color: rgba(13, 13, 13, 0.25);
    cursor: default;
}

.lux-booking__cal-day.is-disabled {
    color: rgba(13, 13, 13, 0.2);
    cursor: not-allowed;
    text-decoration: line-through;
}

.lux-booking__cal-day:not(.is-muted):not(.is-disabled):hover {
    background: rgba(196, 165, 116, 0.15);
}

.lux-booking__cal-day.is-selected {
    background: #c4a574;
    color: var(--white);
}

.lux-booking__cal-day.is-today:not(.is-selected) {
    border: 1px solid #c4a574;
}

.lux-booking__slots-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 0 20px;
}

.lux-booking__slots-panel {
    position: relative;
}

.lux-booking__slots-body {
    max-height: 320px;
    overflow-y: auto;
}

.lux-booking__slots-placeholder {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
    padding: 40px 16px;
}

.lux-booking__slot-group {
    margin-bottom: 20px;
}

.lux-booking__slot-group-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.lux-booking__slot-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 8px;
    background: var(--white);
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lux-booking__slot-btn:hover {
    border-color: #c4a574;
}

.lux-booking__slot-btn.is-selected {
    background: rgba(196, 165, 116, 0.12);
    border-color: #c4a574;
}

.lux-booking__slot-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c4a574;
}

.lux-booking__slots-empty {
    text-align: center;
    padding: 32px 16px;
    color: var(--gray-500);
    font-size: 14px;
}

/* Form */
.lux-booking__form {
    max-width: 560px;
    margin: 0 auto 32px;
}

.lux-booking__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lux-booking__field {
    margin-bottom: 18px;
}

.lux-booking__field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.lux-booking__field input,
.lux-booking__field select,
.lux-booking__field textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1px solid rgba(13, 13, 13, 0.1);
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.lux-booking__field input:focus,
.lux-booking__field select:focus,
.lux-booking__field textarea:focus {
    outline: none;
    border-color: #c4a574;
    box-shadow: 0 0 0 3px rgba(196, 165, 116, 0.15);
}

.lux-booking__field input.is-invalid,
.lux-booking__field select.is-invalid {
    border-color: #dc3545;
}

.lux-booking__field-error {
    display: block;
    font-size: 12px;
    color: #dc3545;
    margin-top: 6px;
    min-height: 16px;
}

.lux-booking__coupon-hint {
    font-size: 12px;
    color: #c4a574;
    margin-top: 6px;
}

.lux-booking__coupon-hint.is-error {
    color: #dc3545;
}

.lux-booking__req {
    color: #c4a574;
}

.lux-booking__auth-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    background: rgba(196, 165, 116, 0.12);
    border: 1px solid rgba(196, 165, 116, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: var(--black);
}

.lux-booking__auth-banner[hidden] {
    display: none !important;
}

.lux-booking__auth-banner i {
    color: #c4a574;
    font-size: 18px;
}

.lux-booking__panel-note {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0 0 14px;
    padding: 10px 14px;
    background: rgba(196, 165, 116, 0.08);
    border-radius: 6px;
}

.lux-booking__field input:read-only,
.lux-booking__field textarea:read-only {
    background: #f8f6f2;
    color: var(--gray-500);
}

/* Review CTAs */
.lux-booking__review-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 28px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(13, 13, 13, 0.05);
}

.lux-booking__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: #c4a574;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lux-booking__cta-btn:hover {
    background: #b89560;
    transform: translateY(-1px);
}

.lux-booking__cta-link {
    font-size: 13px;
    font-weight: 600;
    color: #c4a574;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 6px 0;
}

.lux-booking__cta-link:hover {
    color: #a88445;
}

/* Review */
.lux-booking__review {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(13, 13, 13, 0.06);
    margin-bottom: 32px;
}

.lux-booking__review-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 13, 13, 0.06);
    font-size: 14px;
}

.lux-booking__review-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 16px;
    padding-top: 16px;
}

.lux-booking__review-row span:first-child {
    color: var(--gray-500);
    flex-shrink: 0;
}

.lux-booking__review-row span:last-child {
    text-align: right;
    color: var(--black);
}

/* Success */
.lux-booking__success {
    text-align: center;
    padding: 48px 20px;
}

.lux-booking__success-icon {
    font-size: 64px;
    color: #c4a574;
    margin-bottom: 24px;
}

.lux-booking__success-ref {
    font-size: 15px;
    color: var(--gray-500);
    margin: 16px 0 32px;
}

/* Navigation buttons */
.lux-booking__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.lux-booking__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lux-booking__btn--primary {
    background: #c4a574;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(196, 165, 116, 0.35);
}

.lux-booking__btn--primary:hover:not(:disabled) {
    background: #b89560;
    transform: translateY(-1px);
}

.lux-booking__btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.lux-booking__btn--outline {
    background: transparent;
    border: 1px solid #c4a574;
    color: var(--black);
}

.lux-booking__btn--outline:hover {
    background: rgba(196, 165, 116, 0.1);
}

/* Loaders & errors */
.lux-booking__inline-loader {
    display: flex;
    justify-content: center;
    padding: 24px;
}

.lux-booking__inline-loader[hidden] {
    display: none !important;
}

.lux-booking__inline-loader--slots {
    position: absolute;
    inset: 0;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
}

.lux-booking__error {
    text-align: center;
    color: #dc3545;
    font-size: 14px;
    margin-bottom: 16px;
}

.lux-booking__error[hidden] {
    display: none !important;
}

.lux-booking__empty {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    padding: 20px;
}

@media (max-width: 767px) {
    .lux-booking {
        padding-top: calc(var(--header-h) + 20px);
    }

    .lux-booking__catalog-section {
        padding: 14px 14px 16px;
        border-radius: 12px;
    }

    .lux-booking__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 140px));
        gap: 10px;
    }

    .lux-booking__subcats {
        grid-template-columns: repeat(auto-fit, minmax(105px, 135px));
        gap: 10px;
    }

    .lux-booking__catalog-card {
        max-width: 140px;
    }

    .lux-booking__catalog-card--sub {
        max-width: 135px;
    }

    .lux-booking__catalog-card__media {
        height: 64px;
    }

    .lux-booking__catalog-card--sub .lux-booking__catalog-card__media {
        height: 60px;
    }

    .lux-booking__service-card--row {
        flex-direction: row;
        min-height: 72px;
    }

    .lux-booking__service-card__media {
        flex: 0 0 80px;
        width: 80px;
        height: 72px;
    }

    .lux-booking__service-card__media img,
    .lux-booking__service-card__media .lux-booking__catalog-card__placeholder {
        min-height: 72px;
    }

    .lux-booking__summary-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .lux-booking__summary-stat {
        align-items: center;
    }

    .lux-booking__nav--step1 .lux-booking__btn--primary {
        width: 100%;
        min-width: 0;
    }

    .lux-booking__catalog {
        gap: 20px;
    }

    .lux-booking__schedule {
        grid-template-columns: 1fr;
    }

    .lux-booking__form-row {
        grid-template-columns: 1fr;
    }

    .lux-booking__gender-btn {
        min-width: 100px;
        padding: 12px 20px;
        font-size: 11px;
    }

    .lux-booking__catalog-card__label {
        font-size: 10px;
        padding: 8px 6px;
    }

    .lux-booking__nav {
        flex-direction: column-reverse;
    }

    .lux-booking__nav .lux-booking__btn {
        width: 100%;
    }
}
