/* Index page – Online bordbooking */

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.main-flex-container {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 28px;
    padding: 0 24px 40px;
    margin: 0 auto;
}

.booking-container {
    flex: 2;
    max-width: 720px;
    width: 100%;
    background: var(--bg-panel);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    overflow: hidden;
}

/* Desktop (række-layout): strækker til samme højde som booking via flex align-items: stretch */
.opening-hours-sidebar {
    flex: 0.8;
    min-width: 260px;
    background: var(--bg-panel);
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 28px;
    position: sticky;
    top: 24px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.hours-list {
    /* Hvis en række bliver ekstra lang (mange intervaller), rul vandret */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ét grid: kolonne 1 = præcis bredden af længste ugenavn (max-content), kolonne 2 = tider lige efter */
.hours-list--aligned {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 0.28rem;
    row-gap: 0.35rem;
    align-items: baseline;
    text-align: left;
    font-size: 0.95rem;
}

.hours-list--aligned .hours-sidebar__title {
    grid-column: 1 / -1;
    margin: 0 0 8px 0;
}

.hours-list--aligned .help-text {
    grid-column: 1 / -1;
}

/* Rækker: barnene lægges direkte i grid'et (dag, tid, dag, tid, …) */
.hours-list--aligned .hours-item {
    display: contents;
}

.hours-sep {
    height: 12px;
    border-bottom: 1px dashed var(--border);
    margin: 8px 0 12px 0;
}

.hours-sep--looser {
    margin: 12px 0;
}

.panel-empty {
    text-align: center;
    padding: 20px;
    color: var(--text-light);
}

.load-error {
    color: #e74c3c;
    padding: 20px;
    text-align: center;
}

.hours-item__day {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.hours-item__times {
    text-align: left;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
    min-width: 0;
}

.hours-sidebar__title {
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.hours-sidebar__season {
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.hours-sidebar__season strong {
    font-weight: 600;
}

.day {
    font-weight: 600;
    color: var(--primary);
}

.time {
    color: var(--accent);
    font-weight: 600;
}

.closed {
    color: #c0392b;
    font-weight: 600;
}

.booking-max-notice {
    margin-top: 20px;
    padding: 14px 16px;
    background: #fef6f0;
    border: 1px solid rgba(196, 122, 81, 0.3);
    border-radius: 12px;
}

/* Sæson-info under "Book bord" (ikke i sidebaren) */
.booking-season-notice-panel {
    margin-top: 0;
    margin-bottom: 20px;
}

.booking-max-notice__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--primary);
}

.booking-max-notice__text a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.booking-max-notice__text a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.social-links {
    margin-top: 16px;
    display: flex;
    gap: 14px;
}

.social-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent);
}

.booking-header {
    background: linear-gradient(to bottom, #fafbfc 0%, #fff 100%);
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.booking-login-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    min-height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
}

.booking-login-indicator--clickable {
    cursor: pointer;
    border-radius: 10px;
    padding: 6px 10px;
    margin: -6px -10px;
    transition: var(--transition);
}

.booking-login-indicator--clickable:hover {
    background: #f8f9fa;
}

.booking-login-indicator--clickable:active {
    transform: translateY(1px);
}

.booking-login-indicator strong {
    color: var(--primary);
    font-weight: 600;
}

.booking-login-indicator__icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    background: #f8f9fa;
    color: var(--primary);
}

.booking-login-indicator--logged-in .booking-login-indicator__icon {
    border-color: rgba(46, 125, 50, 0.25);
    background: rgba(46, 125, 50, 0.08);
    color: #2e7d32;
}

.booking-login-indicator--logged-out .booking-login-indicator__icon {
    border-color: rgba(127, 140, 141, 0.35);
    background: rgba(127, 140, 141, 0.08);
    color: var(--text-light);
}

.total-display {
    background: #f0f4f8;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
}

.panel {
    padding: 32px 28px;
    border-bottom: 1px solid var(--border);
}

.panel:last-child {
    border-bottom: none;
}

.panel-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.panel-header-row h3 {
    margin: 0;
    flex: 0 1 auto;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.step-btn {
    flex-shrink: 0;
}

.panel h3,
.opening-hours-sidebar h3,
.contact-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.opening-hours-sidebar h3,
.contact-info h3 {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.panel-header-row + .category-tabs,
.panel-header-row + div {
    margin-top: 0;
}

/* Trin 1: to kolonner — dropdowns venstre, billede højre (50/50 når billede er sat) */
.location-panel-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
}

.location-panel-forms {
    flex: 1 1 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.booking-container .location-panel-forms .form-group {
    margin-bottom: 0;
}

.booking-container .location-panel-forms .form-group + .form-group {
    margin-top: 1rem;
}

.location-panel-forms .location-panel-select {
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
    height: 52px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.2;
}

.location-panel-forms .location-panel-cta {
    width: 100%;
    margin-top: 1.25rem;
    box-sizing: border-box;
}

.location-panel-visual {
    flex: 1 1 100%;
    min-width: 0;
    min-height: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f4f5f7;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.booking-panel-slider {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.booking-panel-slider__viewport {
    position: relative;
    flex: 1;
    min-height: 200px;
    overflow: hidden;
}

/* Swipe mellem billeder (touch + mus); lodret scroll på siden kan stadig ske */
.booking-panel-slider__viewport--swipeable {
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.booking-panel-slider__viewport--swipeable:active {
    cursor: grabbing;
}

.booking-panel-slider__slides {
    position: absolute;
    inset: 0;
}

.booking-panel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.55s ease;
    pointer-events: none;
}

.booking-panel-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.booking-panel-slider__dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 8px 6px 2px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.booking-panel-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.22);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.booking-panel-slider__dot.is-active {
    background: var(--accent, #c47a51);
}

.booking-panel-slider__dot:focus-visible {
    outline: 2px solid var(--accent, #c47a51);
    outline-offset: 2px;
}

.location-panel-visual.hidden {
    display: none !important;
}

.location-panel-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

@media (min-width: 640px) {
    .location-panel--has-image .location-panel-row {
        flex-direction: row;
        align-items: stretch;
    }

    .location-panel--has-image .location-panel-forms,
    .location-panel--has-image .location-panel-visual {
        flex: 1 1 calc(50% - 0.625rem);
        max-width: calc(50% - 0.625rem);
    }

    /* Ikke min-height: 0 her — det gjorde billedhøjde 0 (100% af intet). */
    .location-panel--has-image .location-panel-visual {
        min-height: 220px;
        align-self: stretch;
    }

    .location-panel--has-image .location-panel-img,
    .location-panel--has-image .booking-panel-slide {
        min-height: 220px;
        height: 100%;
        max-height: 420px;
        object-fit: cover;
    }

    .location-panel--has-image .booking-panel-slider,
    .location-panel--has-image .booking-panel-slider__viewport {
        min-height: 220px;
    }
}

.panel h3::before {
    content: "◌";
    opacity: 0;
    width: 1.2rem;
    display: inline-block;
    font-size: 1.1rem;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.category-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    min-height: 40px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.category-btn:hover {
    background: #f8f9fa;
    border-color: #dde0e3;
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.service-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-btn__row {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.service-btn__check {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    flex: 0 0 24px;
    line-height: 1.2;
    font-size: 1.15rem;
}

.service-btn__check--selected {
    color: var(--accent);
    font-weight: 700;
}

.service-btn__body {
    flex: 1;
    min-width: 0;
}

.service-btn__title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    width: 100%;
}

.service-btn__title {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}

.service-btn__meta {
    display: inline-flex;
    gap: 12px;
    white-space: nowrap;
    flex: 0 0 auto;
}

.service-btn__price {
    color: var(--accent);
    font-weight: 500;
}

.service-btn__duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-btn__desc {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    border-top: 1px dashed var(--border);
    padding-top: 8px;
}

.services-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

.service-btn:hover {
    background: #f8f9fa;
    border-color: #d0d4d8;
}

.service-btn.selected {
    background: #fef6f0;
    border-color: var(--accent);
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(196, 122, 81, 0.1);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.staff-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 12px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.95rem;
}

.staff-btn:hover {
    background: #f8f9fa;
    border-color: #d0d4d8;
}

.staff-btn.selected {
    background: #fef6f0;
    border-color: var(--accent);
    border-width: 2px;
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(196, 122, 81, 0.1);
}

.auto-staff-btn {
    width: 100%;
    background: white;
    border: 1px dashed var(--border);
    border-radius: 10px;
    padding: 14px;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
    font-weight: 500;
}

.auto-staff-btn:hover {
    background: #f8f9fa;
    border-color: var(--accent);
    color: var(--accent);
}

.date-selector {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.calendar-wrap {
    position: relative;
}

.calendar-btn {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.95rem;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.calendar-btn:hover {
    background: #f8f9fa;
    border-color: var(--accent);
}

.selected-date {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.calendar-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.03);
    display: none;
    z-index: 1000;
    width: 340px;
}

.calendar-popup.show {
    display: block;
    animation: calendarFadeIn 0.2s ease-out;
}

@keyframes calendarFadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.96); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.calendar-nav {
    background: #f8f9fa;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--primary);
}

.calendar-nav:hover {
    background: #eef1f4;
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-month {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day {
    aspect-ratio: 1;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    color: var(--primary);
}

.calendar-day:hover:not(.disabled) {
    background: #f8f9fa;
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-day.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.calendar-day.disabled {
    background: #f8f9fa;
    color: #bdc3c7;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-day.today {
    font-weight: 700;
    border-color: var(--accent);
    border-width: 2px;
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.time-slot {
    background: #fafbfc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    font-size: 1rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.time-slot:hover:not(.disabled) {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent);
}

.time-slot.selected-time {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(196, 122, 81, 0.35);
}

.time-slot.disabled {
    background: #f8f9fa;
    color: #ccd1d5;
    cursor: not-allowed;
    border-color: var(--border);
    opacity: 0.7;
}

.no-times {
    grid-column: 1/-1;
    text-align: center;
    padding: 30px;
    color: var(--text-light);
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
}

.confirm-btn {
    width: 100%;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    padding: 18px;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.confirm-btn:hover:not(.disabled) {
    background: var(--accent-light);
    box-shadow: 0 4px 16px rgba(196, 122, 81, 0.35);
}

.confirm-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.confirm-bar {
    margin-top: 12px;
}

@media (max-width: 600px) {
    .confirm-bar {
        position: sticky;
        bottom: 0;
        z-index: 50;
        padding: 12px 0 4px;
        background: linear-gradient(to bottom, rgba(248,249,250,0), rgba(248,249,250,0.92) 35%, rgba(248,249,250,1));
        backdrop-filter: blur(6px);
    }

    .confirm-btn {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
}

.modal-services {
    background: #f0f4f8;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 28px;
}

.modal-services .service-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-services .total {
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.modal-summary {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 10px;
}

.modal-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.modal-summary__label {
    color: var(--text-light);
}

.modal-summary__value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
}

/* Kontaktmodal – index */
#contactModal .modal-content {
    border-radius: 20px;
    padding: 36px;
    max-width: 480px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}

#contactModal .modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

#contactModal .form-group input {
    padding: 14px 18px;
    border-radius: 12px;
}

#contactModal .modal-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
}

#contactModal .modal-btn.primary {
    padding: 16px 28px;
}

/* Checkbox label – børnestol */
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* No-times besked */
.no-times {
    padding: 40px 24px;
    border-radius: 14px;
    font-size: 1rem;
}

.forgot-password-link {
    text-align: right;
    margin-top: -10px;
    margin-bottom: 15px;
}

.forgot-password-link a {
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: none;
}

.forgot-password-link a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {
    .main-flex-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .opening-hours-sidebar {
        width: 100%;
        position: static;
        margin-top: 20px;
        /* Mobil: kun indholdets højde — ikke tvunget til booking-højde */
        height: auto;
        align-self: stretch;
        min-height: unset;
    }

    .calendar-popup {
        width: 280px;
    }
}

@media (max-width: 600px) {
    .booking-container { border-radius: 0; }
    .service-grid { grid-template-columns: 1fr; }
    .timeslots-grid { grid-template-columns: repeat(3, 1fr); }
    .staff-grid { grid-template-columns: 1fr; }

    /* Kategoriknapper: 2 kolonner på mobil, samme størrelse */
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-btn {
        min-height: 48px;
        padding: 12px 10px;
    }
}

@media (max-width: 400px) {
    .timeslots-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Index-specifik form & knap styling ========== */
.booking-container .form-group {
    margin-bottom: 24px;
}

.booking-container .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.booking-container .form-group input,
.booking-container .form-group select,
.booking-container .input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 1rem;
    background: #fafbfc;
    transition: all 0.2s ease;
}

.booking-container .form-group input:hover,
.booking-container .form-group select:hover {
    background: #fff;
}

.booking-container .form-group input:focus,
.booking-container .form-group select:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 122, 81, 0.15);
}

.booking-container .step-btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 8px;
}

.booking-container .btn.step-btn:not(.primary) {
    background: #f0f4f8;
    border-color: #e2e8f0;
}

.booking-container .btn.step-btn:not(.primary):hover {
    background: #e8eef4;
    border-color: var(--accent);
    color: var(--accent);
}

.booking-container .btn.primary.step-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}
