/*
 * ============================================================
 * Master One Booking
 * Public Booking Styles
 * ============================================================
 *
 * File:
 * includes/booking/assets/css/booking.css
 *
 * Extracted and cleaned from the original inline shortcode CSS.
 * JavaScript behavior lives in:
 * includes/booking/assets/js/booking.js
 */

.m1-booking-wrapper {
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0A0A0A, #111);
    color: #F5F2EA;
    max-width: 1040px;
    margin: 0 auto;
    padding: 56px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.m1-booking-wrapper *,
.m1-booking-wrapper *::before,
.m1-booking-wrapper *::after {
    box-sizing: border-box;
}

.m1-reservation-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0;
    background: none;
    border: none;
}

.m1-reservation-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C8A24D;
    margin: 0 0 8px;
}

.m1-reservation-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #F5F2EA;
    margin: 0;
}

.m1-reservation-line {
    width: 60px;
    height: 1px;
    background: #D81E24;
    margin: 20px auto 0;
}

.m1-progress-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 50px;
    width: 100%;
}

.m1-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    position: relative;
    z-index: 2;
}

.m1-progress-step span {
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    margin-top: 10px;
    color: rgba(245, 242, 234, 0.45);
}

.m1-progress-step.active span,
.m1-progress-step.completed span {
    color: rgba(245, 242, 234, 0.75);
}

.m1-progress-circle {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(200, 162, 77, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #C8A24D;
    background: transparent;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

.m1-progress-step.completed .m1-progress-circle {
    background: #C8A24D;
    border-color: #C8A24D;
    color: #0A0A0A;
    font-weight: 700;
}

.m1-progress-step.active .m1-progress-circle {
    box-shadow: 0 0 12px rgba(200, 162, 77, 0.3), inset 0 0 8px rgba(200, 162, 77, 0.2);
    background: rgba(200, 162, 77, 0.15);
    border-color: #C8A24D;
}

.m1-progress-line {
    flex: 1;
    height: 1px;
    background: rgba(217, 217, 217, 0.15);
    margin-top: 16px;
    max-width: 100px;
}

.m1-progress-step.completed + .m1-progress-line {
    background: #C8A24D;
}

.m1-step {
    display: none;
    padding-top: 8px;
    max-width: 980px;
    margin: auto;
    animation: m1-fade-in 0.3s ease;
}

.m1-step.active {
    display: block;
}

@keyframes m1-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.m1-step-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 242, 234, 0.38);
    margin-bottom: 14px;
}

.m1-service-grid,
.m1-barber-grid {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.m1-service-card,
.m1-barber-card {
    appearance: none;
    width: 100%;
    font: inherit;
    color: inherit;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.m1-service-card {
    min-height: 158px;
    padding: 20px;
}

.m1-barber-card {
    min-height: 152px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.m1-service-card:hover,
.m1-barber-card:hover {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15), rgba(200, 162, 77, 0.10));
    border-color: #C8A24D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 162, 77, 0.15);
}

.m1-service-card:focus-visible,
.m1-barber-card:focus-visible,
.m1-calendar-nav:focus-visible,
.m1-day:focus-visible,
.m1-times-slot:focus-visible,
.m1-referral-card:focus-visible,
.m1-back-btn:focus-visible {
    outline: 2px solid #C8A24D;
    outline-offset: 2px;
}

.m1-service-card.selected,
.m1-barber-card.selected {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.25), rgba(200, 162, 77, 0.20));
    border-color: #C8A24D;
    border-width: 2px;
}

.m1-service-card::before,
.m1-barber-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.m1-service-card::before {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.10) 0%, transparent 40%);
}

.m1-barber-card::before {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.10) 48%, transparent 48%);
}

.m1-service-card.selected::before,
.m1-service-card:hover::before,
.m1-barber-card:hover::before {
    opacity: 1;
}

.m1-barber-card.selected::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.20) 0%, rgba(200, 162, 77, 0.08) 40%, transparent 41%);
}

.m1-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 31px;
    letter-spacing: 0.05em;
    color: #F5F2EA;
    margin: 0;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.m1-card-description {
    font-size: 12px;
    color: rgba(245, 242, 234, 0.55);
    margin: 8px 0 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.m1-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
    position: relative;
    z-index: 1;
}

.m1-card-duration,
.m1-card-price {
    font-size: 12px;
    font-weight: 600;
}

.m1-card-duration {
    color: rgba(245, 242, 234, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.m1-card-duration svg {
    width: 12px;
    height: 12px;
    color: #C8A24D;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m1-card-price {
    color: #C8A24D;
    font-size: 16px;
}

.m1-card-overlay,
.m1-barber-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.30) 0%, transparent 30%);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.m1-service-card:hover .m1-card-overlay,
.m1-barber-card:hover .m1-barber-overlay {
    opacity: 1;
}

.m1-barber-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .06);
    margin-bottom: 18px;
    color: #FFB703;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.m1-barber-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m1-barber-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 17px;
    letter-spacing: .05em;
    line-height: 1;
    margin: 0 0 8px;
    color: #F5F2EA;
    position: relative;
    z-index: 1;
}

.m1-barber-title {
    font-size: 14px;
    color: rgba(245, 242, 234, .45);
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.m1-calendar-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 72px;
    align-items: start;
}

.m1-calendar-column {
    width: 100%;
    max-width: 330px;
}

.m1-times-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.m1-calendar {
    background: #1B1B1B;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    padding: 20px;
    width: 295px;
    max-width: 100%;
}

.m1-calendar-header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    margin-bottom: 24px;
    color: #F5F2EA;
}

.m1-calendar-header span {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #F5F2EA;
}

.m1-calendar-nav {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #111;
    border: 1px solid rgba(217, 217, 217, 0.10);
    padding: 2px;
    border-radius: 6px;
    color: rgba(245, 242, 234, 0.45);
    cursor: pointer;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, opacity .22s ease;
}

.m1-calendar-nav:hover {
    border-color: rgba(200, 162, 77, 0.40);
    color: #C8A24D;
}

.m1-calendar-nav:disabled {
    opacity: .25;
    cursor: default;
}

.m1-calendar-nav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m1-calendar-days,
.m1-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.m1-calendar-days {
    margin-bottom: 14px;
    color: rgba(245, 242, 234, 0.38);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.m1-calendar-grid {
    gap: 3px;
}

.m1-day {
    appearance: none;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    color: #F5F2EA;
    font-size: 13px;
    font-weight: 500;
    border-radius: 2px;
    background: #171717;
    padding: 0;
    font-family: inherit;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, opacity .22s ease;
}

.m1-day:hover:not(:disabled):not(.disabled) {
    border-color: rgba(200, 162, 77, .55);
    background: rgba(200, 162, 77, .08);
}

.m1-day.selected {
    background: #C8A24D;
    color: #111;
    font-weight: 700;
    border-color: #C8A24D;
}

.m1-day.disabled,
.m1-day:disabled {
    opacity: 0.18;
    cursor: default;
    color: #555;
}

.m1-day-other-month {
    opacity: .22;
    color: rgba(245, 242, 234, .28);
    pointer-events: none;
}

.m1-day-empty {
    height: 33px;
}

.m1-times-grid {
    display: grid;
    grid-template-columns: repeat(3, 150px);
    column-gap: 10px;
    row-gap: 8px;
    max-width: 520px;
}

.m1-times-slot {
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
    padding: 0 12px;
    margin: 0;
    width: 100%;
    color: #F5F2EA;
    font-family: inherit;
    font-size: 16px;
    min-height: 44px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.m1-times-slot:hover {
    background: rgba(200, 162, 77, 0.15);
    border-color: #C8A24D;
}

.m1-times-slot.selected {
    background: rgba(200, 162, 77, .14);
    border-color: #C8A24D;
    color: #F5F2EA;
    font-weight: 600;
}

.m1-times-placeholder {
    grid-column: 1 / -1;
    display: grid;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    color: rgba(245, 242, 234, 0.38);
    text-align: center;
}

.m1-times-placeholder svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    margin: 0 auto 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m1-times-placeholder p {
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

.m1-contact-layout {
    max-width: 490px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.m1-contact-wrapper {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
}

.m1-contact-field {
    display: block;
    margin-bottom: 22px;
}

.m1-contact-field:last-child {
    margin-bottom: 0;
}

.m1-contact-field span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(245, 242, 234, .45);
}

.m1-contact-field input,
.m1-contact-field textarea {
    width: 100%;
    background: #181818;
    border: 1px solid rgba(217, 217, 217, .10);
    color: #F5F2EA;
    padding: 10px 14px;
    min-height: 48px;
    font-size: 15px;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.m1-contact-field textarea {
    height: 110px;
    resize: vertical;
}

.m1-contact-field input:focus,
.m1-contact-field textarea:focus {
    border-color: #C8A24D;
    background: rgba(200, 162, 77, 0.08);
}

.m1-contact-field input::placeholder,
.m1-contact-field textarea::placeholder {
    color: rgba(245, 242, 234, .35);
}

.m1-booking-summary-panel {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    background: rgba(200, 162, 77, .05);
    border: 1px solid rgba(200, 162, 77, .08);
    border-radius: 6px;
    padding: 14px 18px;
}

.m1-booking-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(200, 162, 77, 0.10);
}

.m1-booking-summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.m1-booking-summary-item span:first-child {
    color: rgba(245, 242, 234, 0.45);
    font-size: 12px;
    font-weight: 600;
}

.m1-booking-summary-item span:last-child {
    color: #F5F2EA;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.m1-referral-grid {
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.m1-referral-label {
    grid-column: 1 / -1;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 242, 234, 0.45);
    display: block;
    margin-bottom: -4px;
}

.m1-referral-card {
    appearance: none;
    display: block;
    background: rgba(200, 162, 77, 0.08);
    border: 1px solid rgba(200, 162, 77, 0.20);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-family: inherit;
    font-size: 12px;
    color: #F5F2EA;
    cursor: pointer;
    font-weight: 500;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.m1-referral-card:hover {
    background: rgba(200, 162, 77, 0.15);
    border-color: #C8A24D;
}

.m1-referral-card.selected {
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.20), rgba(200, 162, 77, 0.10));
    border-color: #C8A24D;
    color: #C8A24D;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(200, 162, 77, 0.15);
}

.m1-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.m1-action-btn {
    appearance: none;
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    background: #C8A24D;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    min-height: 64px;
    letter-spacing: 0.08em;
    color: #0A0A0A;
    cursor: pointer;
    display: block;
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

.m1-action-btn:hover {
    background: #D4AD55;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 162, 77, 0.25);
}

.m1-action-btn:focus-visible {
    outline: 2px solid #F5F2EA;
    outline-offset: 3px;
}

.m1-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.m1-back-btn {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(217, 217, 217, .20);
    color: #F5F2EA;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    min-width: 80px;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.m1-back-btn:hover {
    background: rgba(217, 217, 217, 0.10);
    border-color: #D8D8D8;
}

.m1-booking-result {
    display: none;
    width: 100%;
    max-width: 490px;
    margin: 0 auto;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.5;
}

.m1-booking-result.is-visible {
    display: block;
}

.m1-booking-result.is-error {
    color: #FFD7D8;
    background: rgba(216, 30, 36, .12);
    border: 1px solid rgba(216, 30, 36, .38);
}

.m1-booking-result.is-success {
    color: #E7D7A9;
    background: rgba(200, 162, 77, .08);
    border: 1px solid rgba(200, 162, 77, .28);
}

.m1-confirmation-content {
    text-align: center;
    margin-bottom: 34px;
}

.m1-confirmation-content svg {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto 22px;
    fill: none;
    stroke: #C8A24D;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m1-confirmation-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 54px;
    letter-spacing: .04em;
    color: #C8A24D;
    margin: 0 0 18px;
}

.m1-confirmation-content p {
    color: #F5F2EA;
    font-size: 17px;
    line-height: 1.8;
    margin: 6px 0;
}

.m1-confirm-card {
    max-width: 520px;
    width: 100%;
    margin: 40px auto;
    background: linear-gradient(135deg, rgba(200, 162, 77, .05), rgba(200, 162, 77, .02));
    border: 1px solid rgba(200, 162, 77, .12);
    border-radius: 6px;
    padding: 34px;
}

.m1-confirm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 90px;
}

.m1-confirm-grid span {
    display: block;
    font-size: 14px;
    color: rgba(245, 242, 234, .45);
    margin-bottom: 8px;
}

.m1-confirm-grid strong {
    display: block;
    color: #F5F2EA;
    font-size: 20px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.m1-confirm-divider {
    margin: 30px 0;
    border-top: 1px solid rgba(200, 162, 77, .12);
}

.m1-confirm-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 18px;
}

.m1-confirm-check {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, .08);
    color: #C8A24D;
    font-weight: 700;
}

.m1-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(245, 242, 234, 0.25);
    border-top-color: #C8A24D;
    border-radius: 50%;
    animation: m1-spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes m1-spin {
    to { transform: rotate(360deg); }
}

.m1-booking-empty {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #171717;
    color: rgba(245, 242, 234, .60);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .m1-service-grid,
    .m1-barber-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .m1-calendar-layout {
        grid-template-columns: 280px 1fr;
        gap: 36px;
    }

    .m1-times-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        max-width: none;
    }
}

@media (max-width: 767px) {
    .m1-booking-wrapper {
        padding: 40px 18px;
        border-radius: 8px;
    }

    .m1-reservation-title {
        font-size: 42px;
        line-height: 1;
    }

    .m1-progress-wrapper {
        margin-bottom: 36px;
    }

    .m1-progress-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .m1-progress-step {
        min-width: auto;
        flex: 0 0 auto;
    }

    .m1-progress-step span {
        font-size: 11px;
    }

    .m1-progress-line {
        max-width: 30px;
        margin-top: 14px;
    }

    .m1-service-grid,
    .m1-barber-grid {
        grid-template-columns: 1fr;
    }

    .m1-service-card {
        padding: 18px;
        min-height: 145px;
    }

    .m1-card-name {
        font-size: 24px;
        line-height: 1.15;
    }

    .m1-card-description,
    .m1-card-duration {
        font-size: 11px;
    }

    .m1-card-price {
        font-size: 15px;
    }

    .m1-calendar-layout {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .m1-calendar-column,
    .m1-calendar {
        max-width: none;
        width: 100%;
    }

    .m1-calendar-grid {
        gap: 6px;
    }

    .m1-day {
        width: 100%;
        aspect-ratio: 1;
        height: auto;
        min-height: 36px;
    }

    .m1-times-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: none;
        width: 100%;
    }

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

    .m1-confirm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .m1-confirm-card {
        padding: 24px 20px;
    }

    .m1-confirmation-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 480px) {
    .m1-booking-wrapper {
        padding: 32px 14px;
    }

    .m1-reservation-title {
        font-size: 36px;
    }

    .m1-progress-step span {
        font-size: 9px;
    }

    .m1-progress-line {
        max-width: 18px;
    }

    .m1-times-grid,
    .m1-referral-grid {
        grid-template-columns: 1fr 1fr;
    }

    .m1-action-btn {
        font-size: 20px;
    }
}
