* {
    --primary: #ffbb36;
    --primary-dark: #0086ba;
    --primary-light: #e0f4ff;
    --white: #ffffff;
    box-sizing: border-box;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.site-content {
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.input-error {
    border-color: #e63946 !important;
    background: #ffe5e5 !important;
}


.error-text {
    color: #e63946;
    font-size: 13px;
    margin-top: -8px;
    margin-bottom: 10px;
}

.payment-section.input-error .card-errors {
    display: block;
}

.card-errors {
    display: none;
    color: #e63946;
    font-size: 13px;
}

.disable-click {
    pointer-events: none !important;
    opacity: 0.55 !important;
}

.lds-dual-ring {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 32px;
    height: 32px;
    margin: 1px;
    border-radius: 50%;
    border: 4px solid #666;
    border-color: #666 transparent #666 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =====================================
   TOP PROGRESS STEPS (3-STEP BAR ONLY)
===================================== */

.steps-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 10px auto;
    padding: 10px 15px;
}

.steps-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 28px;
    height: 29px;
    border-radius: 50%;
    background: #3d3732;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-item.active .step-number {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
    font-weight: 800;
}

.step-label {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.step-divider {
    width: 40px;
    height: 2px;
    background: #ccc;
    opacity: 0.7;
}

/* MOBILE */
@media(max-width: 767px) {
    .steps-inner {
        gap: 10px;
    }

    .step-divider {
        width: 25px;
    }

    .step-label {
        font-size: 13px;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }
}

/* ================================================
   MOBILE — EXACT MIRAI BEHAVIOR
================================================ */

.mobile-paynow-bar {
    display: none;
}

/* ================================================
   MOBILE — SIDEBAR ON TOP + MIRAI BEHAVIOR
================================================ */

@media (max-width: 768px) {
    .booking-container {
        display: flex;
        flex-direction: column;
        padding: 0 12px;
        gap: 0;
    }

    .right-column {
        order: -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 20px !important;
        margin-top: 10px !important;
        position: relative !important;
        top: 0 !important;
        background: #fff;
        padding: 16px !important;
        border-radius: 6px;
        box-shadow: none;
    }

    .left-column {
        width: 100%;
    }

    .section-card {
        padding: 16px !important;
        margin-bottom: 18px !important;
    }

    .input-box {
        width: 100%;
        font-size: 15px;
        padding: 12px;
    }

    .booking-details {
        margin-top: 20px;
        padding: 16px !important;
    }

    .right-column button {
        display: none;
    }

    .mobile-paynow-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--primary);
        color: #fff;
        padding: 16px;
        text-align: center;
        font-size: 17px;
        font-weight: 600;
        border-radius: 0;
        z-index: 9999;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* ========================================
   MAIN LAYOUT
======================================== */

.booking-container {
    max-width: 1200px;
    margin: 20px auto 80px auto;
    display: flex;
    gap: 30px;
}

.left-column {
    flex: 2;
}

.right-column {
    flex: 1;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
    height: max-content;
    position: sticky;
    top: 20px;
    background: #fafafa;
}

/* SECTION CARD */
.section-card {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    background: #fff;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

/* INPUT STYLING */
.input-box {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

/* PHONE FIELD */
.phone-row {
    display: flex;
    gap: 10px;
}

.select-prefix {
    width: 90px;
}

/* CHECKBOXES */
.checkbox-row {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 8px;
    font-size: 14px;
}

/* RIGHT SIDEBAR */
.right-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.right-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.right-total {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
}

.pay-btn {
    width: 100%;
    background: #4c3f36;
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* BOOKING DETAILS TABLE */
.booking-details {
    margin-top: 25px;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.details-row:last-child {
    border-bottom: none;
}

/* POLICIES */
.policies {
    margin-top: 25px;
    font-size: 13px;
    line-height: 1.5;
}

.policies-title {
    font-weight: 700;
    margin-top: 18px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #aaa !important;
    border-radius: 0 !important;
    color: #666666 !important;
    background-color: #fafafa !important;
    border-color: #cccccc !important;
    height: 44px !important;
    padding-top: 8px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 5px !important;
}

/* ===========================
   RESERVATION CARD
=========================== */

.reservation-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 14px;
}

.reservation-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.reservation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reservation-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.reservation-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.reservation-meta {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.reservation-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.reservation-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    padding-top: 8px;
    border-top: 1px dashed #e5e5e5;
    margin-top: 10px;
}

.reservation-rate {
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 600px) {
    .reservation-card {
        padding: 14px;
    }

    .reservation-image {
        width: 72px;
        height: 72px;
    }

    .reservation-title {
        font-size: 15px;
    }

    .reservation-price {
        font-size: 15px;
    }
}

/* Inline style classes */

.label-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.checkbox-row {
    margin-bottom: 10px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.coupon-input {
    margin-bottom: 0;
    flex: 1;
}

.coupon-btn {
    padding: 12px 18px;
    font-size: 14px;
    width: auto;
    margin: 0;
}

.info-text {
    font-size: 14px;
    margin-bottom: 12px;
}

.card-fields {
    display: flex;
    gap: 10px;
}

.arrival-time-select {
    margin-top: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-details {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
    margin-top: 25px;
}

.policies {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 4px;
    margin-top: 25px;
    background: #fff;
}

.policies-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.policies-text {
    font-size: 14px;
    margin-bottom: 18px;
}

.policies-text-multiline {
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.45;
}

.policies-text-last {
    font-size: 14px;
    line-height: 1.45;
}

.right-column {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
    background: #fafafa;
    max-width: 380px;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-label {
    font-weight: 700;
}

.reservation-heading {
    font-weight: 700;
    margin-top: 14px;
}

.reservation-property {
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.reservation-guests {
    font-size: 13px;
    color: #555;
    margin-left: 10px;
}

.divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.price-summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.discount-text {
    color: #c00;
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0;
}

.warning-box {
    font-size: 13px;
    color: #7a5f2a;
    background: #fff6e5;
    border-left: 3px solid #e0b86c;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 18px;
    line-height: 1.4;
}

.paynow-desktop-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    padding: 1.25rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-weight: 800;
    margin-bottom: 14px;
    transition: all 0.2s;
    box-shadow: 0 8px 15px rgba(0, 168, 232, 0.2);
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.paynow-desktop-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(0, 168, 232, 0.3);
}

.paynow-desktop-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 168, 232, 0.2);
}

.ssl-text {
    font-size: 12px;
    text-align: center;
    color: #777;
}

.payment-loader {
    display: none;
    margin-top: 15px;
    text-align: center;
}

.loader-text {
    margin-top: 8px;
    font-size: 15px;
    color: #444;
}