.booking-layout{max-width:1200px;margin:auto}
.full-width-calendar{width:100%}

.person-tabs{display:flex;gap:12px;margin-bottom:12px}
.person-tab{
    flex:1;border:2px solid #e5e7eb;border-radius:10px;
    padding:12px 10px 5px 10px;display:flex;justify-content:space-between;
    cursor:pointer;
}
.person-tab.active{border-color:#2563eb;background:#eff6ff}
.person-tab select{border: none;margin-top: -6px;}
.person-tab select:focus{outline:none;border:none;box-shadow: none;}
.person-tab.active select {
    background: #eff6ff;
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.calendar-header-big{display:flex;justify-content:space-between;margin:12px 0}

.calendar-week-big{
    display:grid;grid-template-columns:repeat(7,1fr);
    text-align:center;font-weight:600;color:#6b7280;
}

.calendar-grid-big{
    display:grid;grid-template-columns:repeat(7,1fr);
    border:1px solid #e5e7eb;
}

.calendar-cell{
    min-height:100px;border:1px solid #e5e7eb;
    padding:8px;cursor:pointer;
        text-align: center;
    align-content: center;
}
.calendar-cell.selected{
    background:#3b82f6;color:#fff;
}

.cell-price{margin-top:10px;font-weight:700}

.calendar-footer{
    margin-top:16px;display:flex;justify-content:space-between;
}

/* ===== SLIDER ===== */
.side-panel-overlay{
    position:fixed;top:0;right:-100%;
    width:420px;max-width:100%;
    height:100vh;background:#fff;
    z-index:9999;transition:.35s;
    box-shadow:-10px 0 40px rgba(0,0,0,.2);
}
.side-panel-overlay.open{right:0}

@media(max-width:768px){
    .side-panel-overlay{
        width:100%;height:85vh;
        bottom:-100%;top:auto;right:0;
        border-radius:18px 18px 0 0;
    }
    .side-panel-overlay.open{bottom:0}
}

.side-panel-inner{padding:20px;height:100%;overflow:auto}

.side-header{display:flex;justify-content:space-between;align-items:center}

.card{border:1px solid #e5e7eb;padding:12px;border-radius:10px;margin:10px 0}

.card-row{display:flex;justify-content:space-between}

.option-card{
    border:1px solid #e5e7eb;padding:12px;
    border-radius:10px;margin:10px 0;
    display:flex;justify-content:space-between;
}
.option-card.selected{border-color:#3b82f6;background:#eff6ff}

.total-row{
    display:flex;justify-content:space-between;
    font-size:18px;font-weight:700;margin:14px 0;
}
.btn-primary:hover{
   color: #ffffff;
    border: 1px solid #1e2d5a;
    background: #1a3a99f0;
}
/* Buttons */
.btn-primary{background:#002b5c;color:#fff;padding:10px 16px;border:none;border-radius:8px}
.btn-pink{background:#002b5c;color:#fff;padding:14px;border:none;border-radius:10px}
.btn-outline{border:1px solid #e5e7eb;padding:8px 12px;background:#fff;border-radius:8px}
.full{width:100%}

.badge-free{background:#22c55e;color:#fff;padding:2px 6px;border-radius:6px;font-size:12px}
.red{color:red}
.green{color:green}
/* ===== SLIDER UI ===== */
.slider-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
}
.slider-date{
    color:#2563eb;
    font-weight:700;
    font-size:16px;
}
.slider-close{
    color:#6b7280;
    cursor:pointer;
}

.slider-subtitle{
    color:#6b7280;
    font-weight:600;
    margin-bottom:10px;
}

.slider-card{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:12px;
    margin-bottom:10px;
}

.slider-card-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.slider-muted{
    color:#6b7280;
    font-size:13px;
    margin:4px 0 8px;
}

.slider-outline-btn{
    width:100%;
    border:1px solid #d1d5db;
    background:#fff;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
}

.slider-info-bar{
    background:#fde9b4;
    padding:10px;
    border-radius:8px;
    font-size:13px;
    margin-bottom:12px;
}

.slider-section-title{
    font-weight:700;
    margin:12px 0 8px;
}

.slider-option{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.slider-option.selected{
    border-color:#3b82f6;
    background:#eff6ff;
}

.slider-option-left{
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.slider-option-title{
    font-weight:700;
}

.slider-option-sub{
    font-size:12px;
    color:#6b7280;
}

.slider-option-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.radio-circle{
    width:20px;
    height:20px;
    border-radius:50%;
    border:2px solid #9ca3af;
}

.radio-circle.checked{
    border-color:#3b82f6;
    background:#3b82f6;
    box-shadow: inset 0 0 0 4px #fff;
}

.price-red{color:red;font-weight:700}
.price-green{color:green;font-weight:700}

.slider-total-row{
    display:flex;
    justify-content:space-between;
    font-weight:700;
    margin:12px 0 6px;
}

.slider-total-price{
    color:#2563eb;
}

.slider-link{
    text-align:center;
    color:#2563eb;
    font-size:13px;
    margin-bottom:10px;
    cursor:pointer;
}

.slider-cta{
    width:100%;
    background:#002b5c;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:14px;
    font-size:16px;
    font-weight:700;
}
/* ===== TIME SLOT DROPDOWN ===== */
.time-slot-box {
    margin-top: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.time-slot-box input {
    display: none;
}

.time-slot-options {
    display: none;
    background: #fff;
}

.time-slot-box input:checked + .time-slot-options {
    display: block;
}

.time-slot-option {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 14px;
}

.time-slot-option:last-child {
    border-bottom: none;
}

.time-slot-option:hover {
    background: #f1f5f9;
}

.time-slot-option.active {
    background: #ff8d00;
    color: #fff;
    border-color: #ff8d00;
}
/* ===== ADDON CARDS ===== */

.addon-card{
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    cursor:pointer;
    transition:.2s;
    background:#fff;
}

.addon-card:hover{
    border-color:#3b82f6;
    background:#f8fbff;
}

/* Hide real checkbox */
.addon-checkbox{
    display:none;
}

/* When checked -> highlight card */
.addon-card:has(.addon-checkbox:checked){
    border-color:#3b82f6;
    background:#eff6ff;
}

/* Right side layout */
.addon-right{
    display:flex;
    align-items:center;
    gap:14px;
}

/* Custom checkbox UI */
.addon-check-ui{
    width:22px;
    height:22px;
    border-radius:6px;
    border:2px solid #cbd5e1;
    position:relative;
    transition:.2s;
}

/* Checkmark */
.addon-check-ui::after{
    content:"";
    position:absolute;
    left:5px;
    top:1px;
    width:6px;
    height:12px;
    border:solid white;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
    opacity:0;
}

/* Checked state */
.addon-card:has(.addon-checkbox:checked) .addon-check-ui{
    background:#3b82f6;
    border-color:#3b82f6;
}

.addon-card:has(.addon-checkbox:checked) .addon-check-ui::after{
    opacity:1;
}
.checkout-contact-step{
    background:#f8fafc;
    padding:40px 16px;
}

/* Center wrapper */
.checkout-simple-wrap{
    max-width:900px;
    margin:auto;
}

/* Main card */
.checkout-simple-card{
    background:#fff;
    border-radius:14px;
    padding:36px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}

/* Header */
.checkout-simple-header{
    margin-bottom:24px;
}

.checkout-simple-header h2{
    font-size:26px;
    margin-bottom:6px;
}

.checkout-simple-header p{
    color:#64748b;
}

/* Grid */
.checkout-simple-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-field.full{
    grid-column:1 / -1;
}

/* Inputs */
.form-field label{
    display:block;
    font-weight:600;
    margin-bottom:6px;
    font-size:14px;
}

.form-field input{
    width:100%;
    padding:14px 14px;
    border-radius:10px;
    border:1px solid #e5e7eb;
    font-size:15px;
}

.form-field input:focus{
    outline:none;
    border-color:#002b5c;
    box-shadow:0 0 0 2px rgba(0,43,92,.1);
}

/* Terms */
.terms-row{
    margin-top:20px;
}

.terms-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

/* Button */
.checkout-simple-btn{
    margin-top:24px;
    width:100%;
    background:#002b5c;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:16px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.checkout-simple-btn.loading{
    opacity:.7;
    cursor:not-allowed;
}

/* Footer note */
.checkout-simple-note{
    text-align:center;
    margin-top:14px;
    font-size:13px;
    color:#64748b;
}

/* Mobile */
@media(max-width:700px){
    .checkout-simple-grid{
        grid-template-columns:1fr;
    }
}

/* Fix huge checkboxes */
.summary-section input[type="checkbox"],
.summary-section input[type="radio"] {
    width: 14px;
    height: 14px;
    transform: scale(1);
    vertical-align: middle;
}
.checkbox-inline,
.radio-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
}
/* ==============================
   BOOKING STEP 4 UI
============================== */

.booking-step4-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

.booking-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom:15px;
}

.booking-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 8px;
}

/* Quote box */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quote-item {
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.q-move { background: #ecfdf3; color:#166534; }
.q-pack { background: #fefce8; color:#92400e; }
.q-mat { background: #eff6ff; color:#1d4ed8; }
.q-addon { background: #fff7ed; color:#7c2d12; }

.quote-total {
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    background: #ecfdf3;
    border: 2px solid #86efac;
}

.quote-total strong {
    font-size: 24px;
}

/* Packing list */
.packing-list .row-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

/* Inputs */
.booking-card input,
.booking-card textarea,
.booking-card select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.services-grid label {
    font-size: 14px;
}

/* Mobile */
@media(max-width: 992px) {
    .booking-step4-grid {
        grid-template-columns: 1fr;
    }
}
/* Fix giant checkbox / radio */
.booking-card input[type="checkbox"],
.booking-card input[type="radio"] {
    transform: scale(1) !important;
    width: 16px !important;
    height: 16px !important;
    margin-right: 8px;
    accent-color: #2563eb;
    cursor: pointer;
}

/* Align rows */
.booking-card label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    line-height: 1.4;
}

/* Services grid fix */
.services-grid label {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

.services-grid label:hover {
    background: #f8fafc;
    border-color: #c7d2fe;
}
.booking-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.booking-card h4 {
    margin-bottom: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
}

.packing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field.full {
    grid-column: span 2;
}

.field label {
    font-size: 13px;
    font-weight: 500;
    color: #334155;
}

.field input {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: 0.2s;
}

.field input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.1);
}

/* Mobile */
@media (max-width: 768px) {
    .packing-grid {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }
}
.mt-20 {
    margin-top: 20px;
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.addon-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 10px rgba(37,99,235,0.08);
}

.addon-card input {
    display: none;
}

/* Checked state */
.addon-card:has(input:checked) {
    border-color: #22c55e;
    background: #f0fdf4;
}

.addon-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.addon-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.addon-desc {
    font-size: 12px;
    color: #64748b;
}

.addon-right {
    text-align: right;
}

.addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.addon-per {
    font-size: 11px;
    color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
    .addon-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .addon-right {
        text-align: left;
    }
}
.checkout-contact-step {
    display: flex;
    justify-content: center;
    padding: 40px 12px;
}

.checkout-contact-container {
    width: 100%;
    max-width: 520px;
}

.checkout-contact-header {
    text-align: left;
    margin-bottom: 16px;
}

.checkout-contact-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
}

.checkout-contact-header p {
    color: #64748b;
    margin-top: 4px;
}

.checkout-contact-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.checkout-contact-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #0f172a;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 13px;
    color: #475569;
    margin-bottom: 6px;
}

.form-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.form-field input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,.08);
}

.terms-row {
    margin: 16px 0;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #2563eb; /* modern browsers */
    transform: scale(1); /* prevents giant checkbox */
}

.terms-text {
    font-size: 14px;
    color: #334155;
}

.terms-text a {
    color: #2563eb;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

.checkout-submit-btn {
    width: 100%;
    margin-top: 10px;
    background: #ff7a18;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-submit-btn:hover {
    background: #ff8c2b;
}

.checkout-privacy {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.field-error {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: #dc2626;
}

.calendar-cell.disabled-day {
    background-color: rgb(243, 244, 246);
    color: rgb(156, 163, 175);
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

.calendar-cell.empty {
    background: transparent;
    border: none;
    pointer-events: none;
}

.side-panel-overlay.open,
.side-panel-overlay.show {
    display: block;
}
.floor-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.floor-option {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s ease;
    font-size: 13px;
}

.floor-option i {
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
    color: #64748b;
}

.floor-option:hover {
    border-color: #ff7f00;
    background: #fff7ed;
}

.floor-option.active {
    border-color: #ff7f00;
    background: #fff7ed;
    box-shadow: 0 0 0 2px rgba(255,127,0,0.15);
}

.floor-option.active i {
    color: #ff7f00;
}

.floor-hidden-select {
    display: none;
}
.price-toggle-box {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.price-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    background: #ffffff;
}

.price-toggle-header:hover {
    background: #f3f4f6;
}

.price-toggle-header .chevron {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.price-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9fafb;
}

#priceToggle:checked ~ .price-toggle-header .chevron {
    transform: rotate(180deg);
}

#priceToggle:checked ~ .price-toggle-content {
    max-height: 600px; /* enough for animation */
}

/* Price card inside */

.price-card {
    padding: 14px 16px 16px;
    font-size: 13px;
    color: #374151;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.price-row.strong {
    font-weight: 600;
}

.price-row.final {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

.price-row.discount {
    color: #dc2626;
    font-weight: 600;
}

.price-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 0;
}

.price-meta {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}