/* Página wizard de agendamento — temas via booking-page-tema-overrides.php */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-fundo: #ffffff;
    --cor-texto: #2d3436;
    --cor-texto-secundario: #6c757d;
    --cor-texto-muted: #666;
    --cor-texto-light: #555;
    --cor-borda: #ddd;
    --cor-borda-light: #ccc;
    --cor-gold: #d4af37;
    --cor-gold-light: #e6c547;
    --cor-gold-dark: #b8941f;
    --cor-fundo-escuro: #2c3e50;
    --cor-fundo-escuro-light: #34495e;
    --cor-fundo-cinza: #f8f9fa;
    --cor-fundo-cinza-light: #e9ecef;
    --cor-fundo-cinza-lighter: #f1f3f4;
    --cor-fundo-hero: #0a0a0a;
    --cor-fundo-hero-light: #1a1a1a;
    --cor-fundo-footer: #1c1c1c;
    --cor-fundo-footer-light: #2c2c2c;
    --gradient-gold: linear-gradient(135deg, var(--cor-gold), var(--cor-gold-light));
    --gradient-gold-dark: linear-gradient(135deg, var(--cor-gold-dark), var(--cor-gold));
    --gradient-section: linear-gradient(135deg, var(--cor-fundo-cinza) 0%, var(--cor-fundo) 50%, var(--cor-fundo-cinza-light) 100%);
    --gradient-luxury: linear-gradient(135deg, var(--cor-fundo-escuro) 0%, var(--cor-fundo-escuro-light) 50%, var(--cor-gold) 100%);
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(212, 175, 55, 0.1);
    --cor-texto-dark: #333;
    --cor-borda-gold: #d4af37;
    --cor-bg-gold-transparent: rgba(212, 175, 55, 0.1);
    --booking-wizard-max: 920px;
}

.booking-page-body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: var(--gradient-section) !important;
    background-color: var(--cor-fundo-cinza) !important;
    color: var(--cor-texto) !important;
    min-height: 100vh;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
}

.booking-page-body h1,
.booking-page-body h2,
.booking-page-body h3,
.booking-page-body h4 {
    font-family: 'Playfair Display', serif;
}

/* ——— Topbar ——— */
.booking-page-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.98) !important;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.booking-page-topbar .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
}

.booking-page-topbar .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-page-topbar .logo img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.booking-topbar-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none !important;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.booking-topbar-back:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

/* ——— Wizard shell (full usable area) ——— */
.booking-page-wizard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 64px);
}

.booking-wizard {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--booking-wizard-max);
    margin: 0 auto;
    padding: 1.25rem 1.25rem 2rem;
}

/* Progress */
.booking-wizard-progress {
    flex-shrink: 0;
    margin-bottom: 1.5rem;
    padding: 1rem 0.5rem;
}

.booking-wizard-progress-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-top: 8px;
}

.booking-wizard-progress-track {
    position: absolute;
    left: 12%;
    right: 12%;
    top: 28px;
    height: 4px;
    background: var(--cor-borda);
    border-radius: 4px;
    z-index: 0;
}

.booking-wizard-progress-fill {
    position: absolute;
    left: 12%;
    top: 28px;
    height: 4px;
    width: 0;
    background: var(--gradient-gold);
    border-radius: 4px;
    z-index: 0;
    transition: width 0.45s ease;
}

.booking-wizard-step-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-width: 0;
    z-index: 1;
}

.booking-wizard-step-indicator-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-fundo-cinza-light);
    border: 2px solid var(--cor-borda);
    color: var(--cor-texto-muted);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.booking-wizard-step-icon {
    display: none !important;
    font-size: 1rem;
    color: var(--cor-gold) !important;
}

.booking-wizard-node-check {
    display: none !important;
    font-size: 1rem;
    color: #fff !important;
}

.booking-wizard-step-label {
    margin-top: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--cor-texto-muted);
    line-height: 1.2;
    max-width: 88px;
}

@media (min-width: 520px) {
    .booking-wizard-step-label {
        font-size: 0.75rem;
        max-width: none;
    }
    .booking-wizard-step-indicator-node {
        width: 48px;
        height: 48px;
    }
}

.booking-wizard-step-indicator.is-active .booking-wizard-step-indicator-node {
    background: var(--gradient-gold);
    border-color: var(--cor-gold-dark);
    color: #fff;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    transform: scale(1.06);
}

.booking-wizard-step-indicator.is-active .booking-wizard-step-num {
    color: #fff;
}

.booking-wizard-step-indicator.is-active .booking-wizard-step-label {
    color: var(--cor-gold-dark);
}

.booking-wizard-step-indicator.is-complete .booking-wizard-step-indicator-node {
    background: var(--cor-gold-dark);
    border-color: var(--cor-gold-dark);
    color: #fff;
}

.booking-wizard-step-indicator.is-complete .booking-wizard-step-num,
.booking-wizard-step-indicator.is-complete .booking-wizard-step-icon {
    display: none !important;
}

.booking-wizard-step-indicator.is-complete .booking-wizard-node-check {
    display: block !important;
}

.booking-wizard-step-indicator.is-complete .booking-wizard-step-label {
    color: var(--cor-texto-secundario);
}

/* Form + panels */
.booking-wizard-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--cor-fundo) !important;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.12);
    overflow: hidden;
    position: relative;
}

.booking-wizard-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 1;
}

.booking-wizard-panels {
    flex: 1;
    padding: 1.75rem 1.5rem 1.25rem;
    min-height: min(52vh, 480px);
}

@media (min-width: 768px) {
    .booking-wizard-panels {
        padding: 2rem 2.5rem 1.5rem;
        min-height: min(50vh, 520px);
    }
}

.booking-wizard-step-panel[hidden] {
    display: none !important;
}

.booking-wizard-step-panel.is-active {
    animation: bookingPanelIn 0.4s ease;
}

@keyframes bookingPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-wizard-panel-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-wizard-panel-title {
    font-size: clamp(1.35rem, 3.5vw, 1.75rem);
    font-weight: 700;
    color: var(--cor-texto) !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.5rem 0;
}

.booking-wizard-panel-title i {
    color: var(--cor-gold) !important;
}

.booking-wizard-panel-desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--cor-texto-muted) !important;
    max-width: 560px;
}

.booking-wizard-form-section {
    position: relative;
    margin-bottom: 0;
    padding-left: 0;
}

.booking-wizard-form-section::before {
    display: none;
}

.form-section {
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.booking-wizard-date-row {
    align-items: start;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    color: var(--cor-texto) !important;
    font-weight: 600;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: var(--cor-fundo) !important;
    color: var(--cor-texto) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cor-gold);
    box-shadow: 0 0 0 4px var(--cor-bg-gold-transparent), 0 4px 20px rgba(212, 175, 55, 0.12);
}

/* Hint box (dias de funcionamento) */
.booking-wizard-hint-box {
    margin-top: 10px;
    padding: 12px 14px;
    background: var(--gradient-section) !important;
    border-radius: 10px;
    border-left: 4px solid var(--cor-gold);
}

.booking-wizard-hint-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--cor-texto-dark) !important;
}

.booking-wizard-hint-title i {
    color: var(--cor-gold) !important;
}

.booking-wizard-days-list {
    color: var(--cor-texto-muted) !important;
    font-size: 12px;
    line-height: 1.45;
}

.booking-wizard-hint-tip {
    margin-top: 8px;
    padding: 8px 10px;
    background: var(--cor-bg-gold-transparent);
    border-radius: 6px;
    font-size: 11px;
    color: var(--cor-texto-muted) !important;
}

.booking-wizard-hint-tip i {
    color: var(--cor-gold) !important;
    margin-right: 4px;
}

/* Etapa data/hora: badges + “Ver com detalhes” expansível */
.booking-wizard-schedule-panel {
    margin-top: 1.75rem;
    padding: 1.35rem 1.25rem 1.5rem;
    background: linear-gradient(165deg, var(--cor-fundo-cinza) 0%, var(--cor-fundo) 55%, var(--cor-fundo-cinza-light) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.booking-wizard-schedule-panel--compact {
    padding: 1.15rem 1.15rem 1.25rem;
}

.booking-wizard-badges-block {
    margin: 0;
}

.booking-wizard-badges-block .booking-wizard-online-title {
    margin-bottom: 0.65rem;
}

.booking-wizard-days-badges {
    line-height: 1.75;
    min-height: 1.5rem;
    margin-bottom: 0.35rem;
}

.booking-wizard-schedule-details {
    margin-top: 0.75rem;
    border-top: 1px dashed rgba(212, 175, 55, 0.35);
    padding-top: 0.85rem;
}

.booking-wizard-schedule-details summary::-webkit-details-marker {
    display: none;
}

.booking-wizard-details-summary {
    list-style: none;
    list-style-type: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cor-gold-dark) !important;
    padding: 0.35rem 0;
    user-select: none;
    transition: color 0.2s;
}

.booking-wizard-details-summary:hover {
    color: var(--cor-gold) !important;
}

.booking-wizard-details-summary span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking-wizard-details-chevron {
    font-size: 0.72rem;
    transition: transform 0.25s ease;
    color: var(--cor-gold) !important;
}

.booking-wizard-schedule-details[open] .booking-wizard-details-chevron {
    transform: rotate(180deg);
}

.booking-wizard-schedule-details-body {
    margin-top: 1rem;
    padding-top: 0.25rem;
}

.booking-wizard-schedule-details-body .booking-wizard-schedule-intro {
    margin: 0 0 0.85rem 0;
}

.booking-wizard-schedule-intro {
    font-size: 0.88rem;
    color: var(--cor-texto-muted) !important;
}

.booking-wizard-schedule-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.booking-wizard-schedule-item {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 1rem;
    padding: 0.75rem 1rem;
    background: var(--cor-fundo) !important;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.booking-wizard-schedule-day {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--cor-gold-dark) !important;
    min-width: 8.5rem;
}

.booking-wizard-schedule-hours {
    flex: 1;
    min-width: 200px;
    font-size: 0.9rem;
    color: var(--cor-texto) !important;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-wizard-schedule-pause {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cor-texto-muted) !important;
}

.booking-wizard-online-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cor-texto) !important;
    margin: 0 0 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.booking-wizard-online-title i {
    color: var(--cor-gold) !important;
}

/* Modal de confirmação final */
body.booking-confirm-modal-open {
    overflow: hidden;
}

.booking-confirm-modal[hidden] {
    display: none !important;
}

.booking-confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 25000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.booking-confirm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.booking-confirm-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 2.5rem);
    overflow-y: auto;
    background: var(--cor-fundo) !important;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.12);
    animation: bookingModalIn 0.35s ease;
}

@keyframes bookingModalIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-confirm-modal-dialog::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 18px 18px 0 0;
}

.booking-confirm-modal-header {
    padding: 1.35rem 1.35rem 0.75rem;
    text-align: center;
}

.booking-confirm-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cor-texto) !important;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-confirm-modal-title i {
    color: var(--cor-gold) !important;
}

.booking-confirm-modal-lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--cor-texto-muted) !important;
}

.booking-confirm-modal-body {
    padding: 0.5rem 1.35rem 1.25rem;
}

.booking-confirm-modal-body .booking-wizard-summary-list {
    background: var(--cor-fundo-cinza);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-confirm-modal-body .booking-wizard-summary-list li:last-child,
.booking-confirm-modal-body .booking-wizard-summary-list li:nth-last-child(2) {
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.booking-confirm-modal-body .booking-wizard-summary-list li:last-child {
    border-bottom: none;
}

.booking-confirm-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 1rem 1.35rem 1.35rem;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-confirm-modal-actions .btn-primary,
.booking-confirm-modal-actions .btn-wizard-secondary {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

/* Summary */
.booking-wizard-summary {
    background: var(--cor-fundo-cinza);
    border-radius: 14px;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.booking-wizard-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.booking-wizard-summary-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--cor-texto) !important;
}

.booking-wizard-summary-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.booking-wizard-summary-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cor-texto-muted) !important;
}

.booking-wizard-summary-value {
    font-size: 1rem;
    font-weight: 600;
    word-break: break-word;
}

.booking-wizard-summary-meta {
    font-weight: 500;
    color: var(--cor-texto-muted) !important;
}

/* Footer actions */
.booking-wizard-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    background: linear-gradient(180deg, rgba(248,249,250,0.5) 0%, var(--cor-fundo) 100%);
}

@media (min-width: 768px) {
    .booking-wizard-actions {
        padding: 1.35rem 2.5rem 1.75rem;
    }
}

.booking-wizard-actions-spacer {
    flex: 1;
    min-width: 8px;
}

/* [hidden] no wizard: .btn-primary força display:inline-flex e anulava o hidden nativo */
.booking-wizard-actions #wizardBtnNext[hidden],
.booking-wizard-actions #wizardBtnSubmit[hidden] {
    display: none !important;
}

.booking-wizard-actions #wizardBtnNext:not([hidden]),
.booking-wizard-actions #wizardBtnSubmit:not([hidden]) {
    display: inline-flex !important;
}

.booking-page-body .btn-primary {
    background: linear-gradient(135deg, var(--cor-gold), var(--cor-gold-light)) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    padding: 14px 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
}

.booking-page-body .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 215, 0, 0.45);
}

.booking-page-body .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.booking-page-body .btn-wizard-secondary {
    background: transparent !important;
    border: 2px solid var(--cor-gold) !important;
    color: var(--cor-gold-dark) !important;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 12px 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 48px;
    transition: background 0.25s, color 0.25s;
}

.booking-page-body .btn-wizard-secondary:hover {
    background: var(--cor-bg-gold-transparent) !important;
    color: var(--cor-gold-dark) !important;
}

/* Empty state */
.booking-wizard-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem;
    min-height: calc(100vh - 64px);
}

.booking-wizard-empty-card {
    max-width: 480px;
    text-align: center;
    background: var(--cor-fundo);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.booking-wizard-empty-card h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--cor-texto) !important;
}

.booking-wizard-empty-card p {
    color: var(--cor-texto-muted) !important;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.booking-wizard-empty-back {
    text-decoration: none !important;
}

/* Loading */
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 20000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-overlay.is-visible {
    display: flex;
}

.loading-content {
    text-align: center;
    color: #fff;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--cor-gold);
    border-radius: 50%;
    animation: booking-spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes booking-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-wizard-progress-inner {
        padding: 0 0.25rem;
    }

    .booking-wizard-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .booking-wizard-actions-spacer {
        display: none;
    }

    .booking-page-body .btn-primary,
    .booking-page-body .btn-wizard-secondary {
        width: 100%;
        justify-content: center;
    }
}
