/* ── Compact modal header ───────────────────────────────────────────────── */
#singleStepBookingModal .modal-header--compact {
    padding: 0.3rem 0.65rem;
    min-height: 0;
}
#singleStepBookingModal .modal-header--compact .modal-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.25;
}
#singleStepBookingModal .modal-header--compact .btn-close-sm {
    width: 1rem;
    height: 1rem;
    font-size: 0.7rem;
}

/* ── 3-zone mobile-first modal footer ───────────────────────────────────── */
.wizard-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}
.wizard-footer__back {
    flex: 0 0 auto;
    white-space: nowrap;
}
.wizard-footer__continue {
    flex: 1 1 0;
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .wizard-footer__back {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }
    .wizard-footer__continue {
        font-size: 1rem;
        padding: 0.65rem 0.75rem;
    }
}

/* ── Kiosk Step 1: equipment tile image ─────────────────────────────────── */
.kiosk-equip-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}
.kiosk-equip-pricebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #198754;
    background: #d1e7dd;
    padding: 3px 8px;
    overflow: hidden;
}
.kiosk-equip-dur {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}
.kiosk-equip-price {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Per-tile cart +/− controls ─────────────────────────────────────────── */
.kiosk-tile-cart-box {
    margin: 0.35rem 0.5rem 0.5rem;
    border: 1.5px solid #c7d8f8;
    border-radius: 0.5rem;
    background: #f0f5ff;
    overflow: hidden;
}
.kiosk-tile-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.4rem;
}
.kiosk-tile-minus,
.kiosk-tile-plus {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
}
.kiosk-tile-minus {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: #fff;
}
.kiosk-tile-minus:hover, .kiosk-tile-minus:active {
    background: #dc3545;
    color: #fff;
}
.kiosk-tile-plus {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: #fff;
}
.kiosk-tile-plus:hover, .kiosk-tile-plus:active {
    background: #0d6efd;
    color: #fff;
}
.kiosk-tile-qty {
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 1.5rem;
    text-align: center;
}
/* Shrink stepper on very small phones (< 380px) */
@media (max-width: 379px) {
    .kiosk-tile-minus,
    .kiosk-tile-plus {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 1rem;
    }
    .kiosk-tile-qty {
        font-size: 1rem;
    }
    .kiosk-equip-pricebar {
        font-size: 0.72rem;
        padding: 2px 5px;
    }
}
/* Highlight tiles that are in the cart */
.kiosk-equip-card.in-cart {
    border: 2px solid #0d6efd;
    background: #eaf1ff;
}

/* ── Sticky cart tray ────────────────────────────────────────────────────── */
.kiosk-cart-tray {
    position: sticky;
    bottom: 0;
    z-index: 100;
    background: #fff;
    border-top: 2px solid #0d6efd;
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
    padding: 0.6rem 0.75rem 0.5rem;
    border-radius: .75rem .75rem 0 0;
    margin-top: 1rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
}
/* Row 1: equipment chips + secondary links */
.kiosk-cart-tray-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}
.kiosk-cart-items {
    flex: 1 1 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    min-width: 0;
}
.kiosk-cart-tray-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    white-space: nowrap;
}
/* Row 2: duration chips left, Continue button pinned right */
.kiosk-cart-tray-bottom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Duration chips row inside the tray */
.kiosk-tray-durations {
    flex: 1 1 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    min-width: 0;
}
.kiosk-tray-dur-chip {
    background: #f1f5f9;
    color: #334155;
    border: 1.5px solid #cbd5e1;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.22rem 0.8rem;
    white-space: nowrap;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.kiosk-tray-dur-chip:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1d4ed8;
}
.kiosk-tray-dur-chip.selected {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}
.kiosk-tray-dur-price {
    font-weight: 400;
    opacity: 0.85;
    font-size: 0.78rem;
}
.kiosk-cart-chip {
    background: #dbeafe;
    color: #1d4ed8;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    white-space: nowrap;
}
.kiosk-cart-proceed {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
}
/* .kiosk-cart-tray-secondary removed — links moved into tray-top row */

/* Desktop: give the modal body scroll since we removed modal-dialog-scrollable */
#singleStepBookingModal .modal-content {
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    min-height: 520px; /* ensure body always has room to show equipment list */
}
#singleStepBookingModal .modal-body {
    flex: 1 1 auto;       /* fill all remaining space between header and footer */
    min-height: 350px;    /* enough room to show equipment cards */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.6rem 1rem; /* tighter top/bottom padding to reclaim vertical space */
}
#singleStepBookingModal .modal-footer {
    flex-shrink: 0;       /* footer is always fully visible — never compressed */
}

/* Minus button: always visually distinct regardless of screen size.
   btn-outline-secondary gives a grey sign; override to red so it's readable. */
.quick-minus {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
    background: #fff !important;
}
.quick-minus:hover,
.quick-minus:active {
    background: #dc3545 !important;
    color: #fff !important;
    border-color: #dc3545 !important;
}

.equipment-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 0.65rem;
    max-height: 58vh;
    overflow-y: auto;
    padding: 0.25rem;
}

.equipment-quick-card {
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.6rem;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.equipment-quick-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.equipment-quick-card.selected {
    border-color: #0d6efd;
    background-color: #f0f7ff;
}

.equipment-quick-image,
.equipment-quick-image-placeholder {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.equipment-quick-image-placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #dee2e6;
}

.equipment-quick-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
    font-size: 0.92rem;
    line-height: 1.2;
}

.equipment-quick-price {
    color: #198754;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.price-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.price-unit {
    font-size: 0.85rem;
    color: #6c757d;
}


/* Quantity column in the duration+quantity row must never shrink */
.equipment-quick-card .d-flex > div:last-child {
    flex-shrink: 0;
}

/* Duration select row (no quantity here anymore) */
.equip-dur-qty-row {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.equip-dur-qty-row .quick-duration-select {
    flex: 1 1 auto;
    min-width: 5rem;
    max-width: 100%;
    font-size: 0.78rem;
    padding: 0.2rem 0.4rem;
}

/* Tap-to-select: Add button + stepper */
.equip-qty-selector {
    width: 100%;
}

/* Add button: full-width, clean outline */
.quick-add-btn {
    width: 100%;
    font-size: 0.82rem;
    padding: 0.3rem 0;
    border-radius: 0.375rem;
}

/* Stepper: three-cell row, fully contained inside the card */
.equip-stepper {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #0d6efd;
    border-radius: 0.375rem;
    overflow: hidden;
}

.equip-stepper .quick-minus,
.equip-stepper .quick-plus {
    flex: 0 0 auto;
    width: 2.4rem;
    border: none;
    border-radius: 0;
    padding: 0.3rem 0;
    font-size: 1rem;
    line-height: 1;
}

.equip-stepper .quick-minus {
    border-right: 1px solid #cce0ff;
    background: #e8f0fe;
    color: #0d6efd;
}

.equip-stepper .quick-minus:hover:not(:disabled) {
    background: #c8d8f8;
}

.equip-stepper .quick-plus {
    border-left: 1px solid #cce0ff;
    background: #0d6efd;
    color: #fff;
}

.equip-stepper .quick-plus:hover:not(:disabled) {
    background: #0b5ed7;
}

.equip-stepper .quick-quantity {
    flex: 1 1 auto;
    text-align: center;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    background: #fff;
    box-shadow: none;
    min-width: 0;
}

.selected-quick-summary {
    border: 2px solid #0d6efd;
}

#quickSelectedItemsList .summary-item {
    display: flex;
    justify-content: between;
    padding: 0.5rem;
    background: white;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.section-header {
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.availability-badge.unavailable {
    background-color: #f8d7da;
    color: #842029;
}

.next-available-info {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    padding: 0.25rem 0.5rem;
    background-color: #fff3cd;
    border-radius: 0.25rem;
}

.duration-select {
    font-size: 0.9rem;
}

/* Tab Indicators */
.wizard-tab-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.wizard-tab-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-number {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.78rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.indicator-label {
    font-size: 0.68rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.wizard-tab-indicator.active .indicator-number {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.wizard-tab-indicator.active .indicator-label {
    color: #0d6efd;
    font-weight: 600;
}

.wizard-tab-indicator.completed .indicator-number {
    background: #198754;
    border-color: #198754;
    color: white;
}

.wizard-tab-indicator.completed .indicator-number::before {
    content: '\2713'; /* Unicode checkmark character */
    font-size: 0.9rem;
}

/* Completed indicators are clickable — highlight on hover */
.wizard-tab-indicator.completed:hover .indicator-number {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: scale(1.12);
}

.wizard-tab-indicator.completed:hover .indicator-label {
    color: #0d6efd;
    font-weight: 600;
}

.wizard-tab-indicator.completed .indicator-label {
    color: #198754;
    font-weight: 500;
}

/* Edit link inside payment summary cards */
.summary-edit-btn {
    font-size: 0.78rem;
    color: #0d6efd;
    text-decoration: none;
    white-space: nowrap;
    opacity: 0.75;
    transition: opacity 0.15s;
}

.summary-edit-btn:hover {
    opacity: 1;
    text-decoration: underline;
}

.wizard-tab-separator {
    flex: 1;
    height: 1px;
    background: #dee2e6;
    max-width: 60px;
    margin: 0 0.25rem;
}

/* Tab Content */
.wizard-tab-content {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Payment Summary */
.order-summary {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-line:last-child {
    border-bottom: none;
}

.total-line {
    font-size: 1.25rem;
    padding-top: 1rem;
    border-top: 2px solid #0d6efd;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .equipment-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        max-height: none;
        padding: 0;
        gap: 0.75rem;
    }

    .equipment-quick-card {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        border-radius: 0.625rem;
        overflow: visible; /* Must not clip — quantity +/- buttons extend to card edge */
    }

    .equipment-quick-image,
    .equipment-quick-image-placeholder {
        width: 100% !important;
        min-width: unset;
        height: 130px;
        object-fit: cover;
        margin-bottom: 0;
        flex-shrink: 0;
        /* Round only the top corners to match the card border — card no longer uses overflow:hidden */
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .equipment-quick-info {
        flex: 1;
        padding: 0.6rem 0.75rem 0.75rem;
        min-width: 0; /* Prevent flex child from overflowing its card */
        overflow: visible; /* Let quantity button breathe — don't clip it */
    }
    
    .wizard-tab-indicators {
        padding: 1rem 0.5rem;
    }
    
    .indicator-label {
        font-size: 0.7rem;
    }
    
    .indicator-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .wizard-tab-separator {
        max-width: 30px;
        margin: 0 0.25rem;
    }
    
    /* Full-width modal on mobile */
    #singleStepBookingModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        /* 100dvh = dynamic viewport height (excludes browser chrome on mobile).
           100vh fallback for older browsers that don't support dvh. */
        height: 100vh;
        height: 100dvh;
    }

    #singleStepBookingModal .modal-content {
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
        display: flex;
        flex-direction: column; /* header / body / footer stack properly */
    }

    #singleStepBookingModal .modal-body {
        flex: 1 1 0;       /* fill all space between header and footer */
        min-height: 0;     /* allow shrink so footer is never pushed off-screen */
        padding: 0.75rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #singleStepBookingModal .modal-footer {
        flex-shrink: 0;    /* footer never compresses — always fully visible */
    }
    
    /* Larger touch targets — but tighter padding so they fit within the card */
    .quick-plus,
    .quick-minus {
        min-width: 34px !important;
        min-height: 42px !important;
        width: 34px !important;       /* slightly narrower to prevent right-side clip */
        font-size: 1.1rem;
        padding: 0 !important;        /* let width/height control the size */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .quick-quantity {
        width: 50px !important;
        font-size: 1.1rem !important;
    }
    
    /* Duration + Quantity stack full-width on mobile — no horizontal overflow */
    .equip-dur-qty-stack {
        gap: 0.4rem;
    }

    .equip-qty-row {
        padding: 0.35rem 0.5rem;
    }
    
    /* Larger form inputs */
    .form-control,
    .form-select {
        font-size: 16px !important; /* Prevents iOS zoom */
        padding: 0.75rem;
        min-height: 44px;
    }
    
    /* Larger buttons */
    .btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    #wizardNextBtn,
    #wizardBackBtn {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
    
    /* Improve accordion spacing */
    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Better summary display */
    .selected-quick-summary {
        font-size: 0.95rem;
    }
    
    #quickSelectedItemsList .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .wizard-tab-indicators {
        padding: 0.5rem;
    }

    .indicator-label {
        display: none; /* Hide labels in landscape to save space */
    }

    .equipment-quick-image,
    .equipment-quick-image-placeholder {
        height: 80px;
    }

    #singleStepBookingModal .modal-header {
        padding: 0.75rem;
    }

    #singleStepBookingModal .modal-footer {
        padding: 0.75rem;
    }
}

/* Small phones (< 375px) */
@media (max-width: 374px) {
    .equipment-quick-image,
    .equipment-quick-image-placeholder {
        height: 100px;
    }

    .equipment-quick-name {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 1rem;
    }

    .quick-quantity {
        width: 40px !important;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .equipment-quick-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .equipment-quick-image,
    .equipment-quick-image-placeholder {
        height: 100px;
    }
}

/* Large tablets and small desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .equipment-quick-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Improve touch targets for all devices with coarse pointers (touchscreens) */
@media (pointer: coarse) {
    button,
    .btn,
    .form-check-input,
    .quantity-quick-controls button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Larger checkboxes on touch devices */
    .form-check-input {
        width: 1.5rem;
        height: 1.5rem;
        min-width: 1.5rem;
    }

    .form-check-input[type="checkbox"]:checked::after {
        left: 0.3rem;
        top: 0.06rem;
        width: 0.55rem;
        height: 0.85rem;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
        font-size: 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .equipment-quick-card {
        background: #212529;
        border-color: #495057;
        color: #f8f9fa;
    }

    .equipment-quick-card:hover,
    .equipment-quick-card.selected {
        background-color: #1a3a52;
    }

    .wizard-tab-indicators {
        background: #343a40;
        border-bottom-color: #495057;
    }

    .selected-quick-summary {
        background: #343a40 !important;
        color: #f8f9fa;
    }
}

/* Custom Year Picker for Modals */
.year-picker-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.25rem;
    background: white;
    border: 2px solid #0d6efd;
    border-radius: 0.375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1060; /* Above modal */
    max-height: 280px;
    overflow: hidden;
}

#guestDOBYearDisplay {
    cursor: pointer !important;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    pointer-events: auto !important;
    background-color: white !important;
    touch-action: manipulation; /* Prevent double-tap zoom on mobile */
    min-height: 44px; /* iOS minimum touch target */
}

#guestDOBYearDisplay:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

#guestDOBYearDisplay:active {
    background-color: #e9ecef !important;
}

.year-picker-header {
    padding: 0.75rem;
    background: #0d6efd;
    color: white;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #0a58ca;
}

.year-picker-list {
    max-height: 240px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.year-picker-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
    font-size: 1rem;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(13, 110, 253, 0.2);
    touch-action: manipulation;
}

.year-picker-item:hover,
.year-picker-item:active {
    background-color: #e7f1ff;
}

.year-picker-item.selected {
    background-color: #0d6efd;
    color: white;
    font-weight: 600;
}

.year-picker-item:last-child {
    border-bottom: none;
}

/* Mobile optimizations for year picker */
@media (max-width: 768px) {
    .year-picker-dropdown {
        max-height: 240px;
    }

    .year-picker-list {
        max-height: 200px;
    }

    .year-picker-item {
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 48px; /* Touch-friendly */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Ensure year picker is always on top */
    .year-picker-dropdown {
        position: fixed;
        left: 1rem;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        max-height: 400px;
    }

    .year-picker-list {
        max-height: 340px;
    }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .year-picker-dropdown {
        max-height: 200px;
    }

    .year-picker-list {
        max-height: 160px;
    }
}

/* DOB field validation styling */
.dob-field-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25) !important;
}

.dob-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Print styles (hide unnecessary elements when printing receipts) */
@media print {
    .wizard-tab-indicators,
    .modal-footer,
    .btn,
    .equipment-quick-grid {
        display: none !important;
    }
}

/* -- Kiosk duration picker cards (Step 1) --------------------------- */
.kiosk-duration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    border: 2px solid #dee2e6;
    border-radius: 0.75rem;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .1s;
    text-align: center;
}
.kiosk-duration-card:hover {
    border-color: #0d6efd;
    background: #f0f6ff;
    transform: translateY(-2px);
}
.kiosk-duration-card.selected {
    border-color: #0d6efd;
    background: #e8f0fe;
    box-shadow: 0 0 0 3px rgba(13,110,253,.25);
}
.kiosk-duration-name {
    font-weight: 600;
    font-size: 1.1rem;
}
.kiosk-duration-price {
    font-size: 1rem;
    color: #198754;
    font-weight: 700;
    margin-top: 0.25rem;
}

/* -- Step 2 selection summary --------------------------------------- */
.kiosk-step-summary {
    font-size: 0.95rem;
}

/* -- Kiosk tile availability badge ---------------------------------- */
.kiosk-avail-badge {
    min-height: 1.4rem;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    text-align: center;
}
