
    /* =========================================================
       CUSTOMIZE PAGE
    ========================================================= */

    .option-card img {
        width: 100%;
        height: 100%;
    }
    .customize-page {
        background: #f7f9fc;
        padding: 35px 20px 70px;
        min-height: 70vh;
    }

    .customize-page .container {
        max-width: 1180px;
    }


    /* =========================================================
       BREADCRUMB
    ========================================================= */

    .breadcrumb {
        display: flex;
        align-items: center;
        gap: 9px;
        margin-bottom: 25px;
        font-size: 13px;
    }

    .breadcrumb a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    .breadcrumb span {
        color: var(--text-muted);
    }


    /* =========================================================
       WIZARD
    ========================================================= */

    .wizard-steps {
        background: #ffffff;
        border: 1px solid #e7edf3;
        border-radius: 14px;
        padding: 17px 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(20, 50, 80, .04);
    }

    .wizard-step {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #9aa6b2;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

    .step-num {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #eef2f6;
        color: #7b8794;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
    }

    .wizard-step.active {
        color: #FFFF
    }

    .wizard-step.active .step-num {
        /* background:  #FFFF; */
        color: #fff;
        box-shadow: 0 5px 14px rgba(255, 90, 0, .22);
    }

    .wizard-step.completed {
        color:  #FFFF;
    }

    .wizard-step.completed .step-num {
        background: var(--navy);
        color: #fff;
    }

    .wizard-line {
        width: 55px;
        height: 1px;
        background: #dfe6ed;
        margin: 0 16px;
    }


    /* =========================================================
       MAIN LAYOUT
    ========================================================= */

    .detail-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
        align-items: start;
    }


    /* =========================================================
       STEP HEADING
    ========================================================= */

    .customize-heading {
        margin-bottom: 22px;
    }

    .customize-heading .eyebrow {
        display: inline-block;
        color: var(--primary);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.8px;
        margin-bottom: 7px;
    }

    .customize-heading h2 {
        color: var(--navy);
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 7px;
        font-weight: 700;
    }

    .customize-heading p {
        color: var(--text-muted);
        font-size: 13px;
        margin: 0;
        line-height: 1.7;
    }


    /* =========================================================
       HOTEL CARD
    ========================================================= */

    .option-card {
        position: relative;
        display: grid;
        grid-template-columns: 310px minmax(0, 1fr);

        background: #fff;

        border: 1px solid #e2e8ef;
        border-radius: 15px;

        margin-bottom: 18px;
        overflow: hidden;

        cursor: pointer;

        transition: .25s ease;
    }

    .option-card:hover {
        border-color: var(--primary);
        box-shadow: 0 12px 30px rgba(15, 40, 65, .08);
        transform: translateY(-2px);
    }

    .option-card.selected {
        border: 2px solid var(--primary);
        box-shadow: 0 10px 28px rgba(255, 90, 0, .10);
    }


    /* =========================================================
       SELECTED CHECK
    ========================================================= */

    .option-card:before {
        content: "";
        position: absolute;
        top: 12px;
        left: 12px;

        width: 25px;
        height: 25px;

        border-radius: 50%;

        background: rgba(255,255,255,.95);

        border: 1px solid #dce3ea;

        z-index: 5;
    }

    .option-card.selected:before {
        background: var(--primary);
        border-color: var(--primary);
    }

    .option-card:after {
        content: "";
        position: absolute;
        top: 19px;
        left: 19px;

        width: 10px;
        height: 6px;

        border-left: 2px solid transparent;
        border-bottom: 2px solid transparent;

        transform: rotate(-45deg);

        z-index: 6;
    }

    .option-card.selected:after {
        border-color: #fff;
    }


    /* =========================================================
       HOTEL IMAGE AREA
    ========================================================= */

    .hotel-image-area {
        padding: 12px;
        background: #fff;
    }

    .hotel-main-image-wrapper {
        position: relative;
        width: 100%;
        height: 205px;
        overflow: hidden;
        border-radius: 10px;
        background: #edf1f5;
    }

    .hotel-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;

        transition: transform .4s ease;
    }

    .option-card:hover .hotel-main-image {
        transform: scale(1.035);
    }




    .hotel-main-image {
    cursor: zoom-in;
}

.hotel-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.85);
    padding: 20px;
}

.hotel-image-modal.active {
    display: flex;
}

.hotel-image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 6px;
}

.hotel-image-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}




    /* =========================================================
       THUMBNAILS
    ========================================================= */

    .hotel-thumbnails {
        display: flex;
        gap: 6px;
        margin-top: 7px;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .hotel-thumbnail {
        flex: 0 0 53px;
        width: 53px;
        height: 43px;

        padding: 0;

        border: 2px solid transparent;
        border-radius: 6px;

        overflow: hidden;
        background: #edf1f5;

        cursor: pointer;
    }

    .hotel-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .hotel-thumbnail.active {
        border-color: var(--primary);
    }

    .hotel-photo-count {
        margin-top: 7px;

        color: var(--text-muted);
        font-size: 10px;
        font-weight: 600;
    }

    .hotel-photo-count i {
        color: var(--primary);
        margin-right: 4px;
    }


    /* =========================================================
       HOTEL DETAILS
    ========================================================= */

    .option-card-body {
        padding: 22px 22px 18px;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .hotel-heading {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }

    .hotel-heading h4 {
        color: var(--navy);
        font-size: 19px;
        margin: 0 0 5px;
        font-weight: 700;
    }

    .hotel-address {
        color: var(--text-muted);
        font-size: 11px;
        margin: 0;
        line-height: 1.5;
    }

    .hotel-address i {
        color: var(--primary);
        margin-right: 4px;
    }


    /* =========================================================
       RATING
    ========================================================= */

    .hotel-rating {
        flex-shrink: 0;

        background: #fff6ed;
        color: #f59e0b;

        padding: 6px 9px;

        border-radius: 6px;

        font-size: 11px;
        font-weight: 700;
    }


    /* =========================================================
       PRICE
    ========================================================= */

    .hotel-price {
        display: flex;
        align-items: baseline;
        gap: 4px;

        margin: 15px 0 17px;
    }

    .hotel-price strong {
        color: var(--navy);
        font-size: 23px;
        font-weight: 750;
    }

    .hotel-price span {
        color: var(--text-muted);
        font-size: 11px;
    }


    /* =========================================================
       INFO GROUP
    ========================================================= */

    .hotel-info-group {
        margin-bottom: 12px;
    }

    .hotel-info-title {
        color: #475569;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .hotel-facilities,
    .hotel-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .hotel-facilities span,
    .hotel-amenities span {
        background: #f5f7f9;
        border: 1px solid #edf1f4;

        color: #64748b;

        border-radius: 5px;

        padding: 5px 8px;

        font-size: 9px;
        line-height: 1;
    }

    .hotel-facilities i {
        color: var(--primary);
        margin-right: 3px;
    }


    /* =========================================================
       CARD BOTTOM
    ========================================================= */

    .hotel-card-bottom {
        display: flex;
   
        justify-content: flex-end;
        align-items: center;

        border-top: 1px solid #edf0f3;

        margin-top: auto;
        padding-top: 13px;
    }

    .hotel-select-text {
        color: #8a96a3;
        font-size: 10px;
        font-weight: 700;
    }

    .hotel-select-text i {
        color: var(--primary);
        margin-right: 4px;
    }

    .hotel-arrow {
        width: 30px;
        height: 30px;

        border-radius: 50%;

        background: #f2f5f8;
        color: var(--navy);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 10px;

        transition: .2s ease;
    }

    .option-card:hover .hotel-arrow,
    .option-card.selected .hotel-arrow {
        background: var(--primary);
        color: #fff;
    }


    /* =========================================================
       EMPTY HOTEL
    ========================================================= */

    .empty-hotels {
        background: #fff;
        border: 1px solid #e3e9ef;
        border-radius: 14px;
        padding: 50px 20px;
        text-align: center;
    }

    .empty-hotels i {
        font-size: 35px;
        color: #cbd5df;
        margin-bottom: 12px;
    }

    .empty-hotels h3 {
        color: var(--navy);
        font-size: 18px;
        margin: 0 0 5px;
    }

    .empty-hotels p {
        color: var(--text-muted);
        font-size: 12px;
        margin: 0;
    }


    /* =========================================================
       MEAL OPTIONS
    ========================================================= */

    .meal-option {
        display: flex;
        align-items: center;
        gap: 14px;

        padding: 17px 18px;

        background: #fff;

        border: 1px solid #e1e8ee;
        border-radius: 12px;

        margin-bottom: 12px;

        cursor: pointer;

        transition: .2s ease;
    }

    .meal-option:hover {
        border-color: var(--primary);
        box-shadow: 0 7px 20px rgba(20,50,80,.05);
    }

    .meal-option.selected {
        border: 2px solid var(--primary);
        background: #fffaf7;
    }

    .meal-option input[type="radio"] {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        accent-color: var(--primary);
    }

    .meal-icon {
        width: 42px;
        height: 42px;

        flex-shrink: 0;

        border-radius: 9px;

        background: #fff1e9;
        color: var(--primary);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .meal-content {
        flex: 1;
    }

    .meal-content strong {
        color: var(--navy);
        font-size: 14px;
    }

    .meal-content p {
        color: var(--text-muted);
        font-size: 11px;
        margin: 4px 0 0;
        line-height: 1.5;
    }

    .meal-price {
        color: var(--navy);
        font-size: 13px;
        font-weight: 700;
        white-space: nowrap;
    }

    .meal-price small {
        color: var(--text-muted);
        font-size: 9px;
        font-weight: 500;
    }

    .meal-recommended {
        display: inline-block;

        background: #eaf5ee;
        color: #25824a;

        padding: 4px 7px;

        border-radius: 4px;

        font-size: 8px;
        font-weight: 700;

        margin-left: 6px;
    }


    /* =========================================================
       PRICE SIDEBAR
    ========================================================= */

    .price-sidebar {
        position: sticky;
        top: 90px;
    }

    .price-sidebar-header {
        background: var(--navy);
        color: #fff;

        padding: 19px 21px;

        border-radius: 13px 13px 0 0;
    }

    .price-sidebar-header span {
        display: block;

        color: var(--primary);

        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1.7px;

        margin-bottom: 5px;
    }

    .price-sidebar-header h3 {
        color: #fff;
        margin: 0 0 3px;
        font-size: 19px;
    }

    .price-sidebar-header small {
        color: rgba(255,255,255,.62);
        font-size: 10px;
    }


    /* =========================================================
       PRICE CARD
    ========================================================= */

    .price-card {
        background: #fff;

        border: 1px solid #e2e8ef;
        border-top: 0;

        border-radius: 0 0 13px 13px;

        padding: 18px 20px;

        box-shadow: 0 8px 25px rgba(20,50,80,.06);
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 11px 0;

        border-bottom: 1px solid #edf1f4;

        color: var(--text-muted);

        font-size: 11px;
    }

    .price-row span:last-child {
        color: #334155;
        font-weight: 600;
    }

    .price-total-row {
        border: 0;

        margin-top: 9px;
        padding: 14px;

        background: #f0f6fb;

        border-radius: 9px;
    }

    .price-total-row span {
        color: var(--navy) !important;
        font-weight: 700;
    }

    .price-total-row span:last-child {
        font-size: 21px;
    }

    .price-per-person {
        color: var(--text-muted);
        font-size: 9px;
        text-align: center;
        margin: 11px 0 18px;
    }


    /* =========================================================
       TRAVELERS
    ========================================================= */

    .traveler-box {
        background: #fafbfc;

        border: 1px solid #e4e9ee;
        border-radius: 8px;

        padding: 13px;
    }

    .traveler-label {
        display: block;

        color: #475569;

        font-size: 10px;
        font-weight: 700;

        margin-bottom: 6px;
    }

    .traveler-select {
        height: 40px;

        border-radius: 6px;

        border-color: #dce3e9;

        font-size: 11px;
        background: #fff;
    }

    .traveler-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(255,90,0,.08);
    }

    .price-note {
        display: flex;
        align-items: flex-start;
        gap: 8px;

        margin-top: 14px;

        color: var(--text-muted);

        font-size: 9px;
        line-height: 1.6;
    }

    .price-note i {
        color: var(--primary);
        margin-top: 2px;
    }


    /* =========================================================
       ACTIONS
    ========================================================= */

    .customize-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 24px;
    }

    .customize-actions .btn {
        min-height: 42px;

        padding: 0 18px;

        border-radius: 7px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;

        font-size: 11px;
        font-weight: 700;
    }

@media (max-width: 700px) {
    .option-card {
        display: block;
        width: 100%;
    }

    .hotel-image-area {
        padding: 10px;
    }

    .hotel-main-image-wrapper {
        height: 190px;
    }

    .option-card-body {
        padding: 16px;
    }

    .hotel-heading {
        gap: 8px;
    }

    .hotel-heading h4 {
        font-size: 17px;
    }

    .hotel-price {
        margin: 12px 0;
    }

    .hotel-price strong {
        font-size: 22px;
    }

    .hotel-facilities span,
    .hotel-amenities span {
        padding: 5px 7px;
        font-size: 9px;
    }

    .hotel-card-bottom {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .customize-page {
        padding: 15px 10px 40px;
    }

    .hotel-main-image-wrapper {
        height: 170px;
    }

    .option-card-body {
        padding: 14px;
    }

    .hotel-heading h4 {
        font-size: 16px;
    }
}