/* =========================================
RENTAL SWIPER MAIN
========================================= */

.rs-rental-swiper-wrap{

    position:relative;

    width:100%;

    overflow:hidden;

}

/* =========================================
SWIPER
========================================= */

.rsRentalSwiper{

    width:100% !important;

    overflow:hidden !important;

    position:relative;

    padding:10px 5px 60px;

}

/* WRAPPER */

.rsRentalSwiper .swiper-wrapper{

    display:flex !important;

    align-items:stretch;

}

/* SLIDE */

.rsRentalSwiper .swiper-slide{

    height:auto !important;

    display:flex !important;

    flex-shrink:0 !important;

}

/* CARD WIDTH */

.rsRentalSwiper .rs-package-card{

    width:100%;

    height:100%;

}

/* GLOBAL */

.swiper{

    overflow:hidden;

}

.swiper-slide{

    width:auto;

}


/* =========================================
ULTRA MODERN SWIPER PAGINATION 2026
========================================= */

.rsRentalSwiper .swiper-pagination{

    position:relative;

    margin-top:34px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;
}

/* bullets */

.rsRentalSwiper .swiper-pagination-bullet{

    width:12px !important;
    height:12px !important;

    border-radius:999px;

    background:
        rgba(15,23,42,0.16) !important;

    opacity:1 !important;

    transition:
        all .4s cubic-bezier(.4,0,.2,1);

    position:relative;

    overflow:hidden;
}

/* active */

.rsRentalSwiper
.swiper-pagination-bullet-active{

    width:48px !important;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            #ff4d00
        ) !important;

    box-shadow:
        0 10px 30px rgba(255,102,0,.35);
}

/* shine effect */

.rsRentalSwiper
.swiper-pagination-bullet-active::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transform:translateX(-100%);

    animation:
        rsPaginationShine 2.2s infinite;
}

@keyframes rsPaginationShine{

    100%{
        transform:translateX(100%);
    }
}

/* hover */

.rsRentalSwiper
.swiper-pagination-bullet:hover{

    transform:scale(1.12);
}


/* =========================================
NAVIGATION BUTTONS
========================================= */

/* =========================================
ULTRA MODERN SWIPER NAVIGATION 2026
========================================= */

.rs-rental-swiper-prev,
.rs-rental-swiper-next{

    position:absolute;

    top:42%;

    transform:translateY(-50%);

    width:42px;
    height:42px;

    border-radius:20px;

    background:
        rgba(255,255,255,0.22);

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

    border:
        1px solid rgba(255,255,255,0.25);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:50;

    cursor:pointer;

    transition:
        all .35s cubic-bezier(.4,0,.2,1);

    box-shadow:
        0 12px 35px rgba(0,0,0,0.12);

    overflow:hidden;
}

/* glow */

.rs-rental-swiper-prev::before,
.rs-rental-swiper-next::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.25),
            transparent
        );

    opacity:.7;
}

/* icons */

.rs-rental-swiper-prev i,
.rs-rental-swiper-next i{

    font-size:12px;

    color:#111827;

    position:relative;

    z-index:2;

    transition:.3s;
}

/* left */

.rs-rental-swiper-prev{

    left:4px;
}

/* right */

.rs-rental-swiper-next{

    right:4px;
}

/* hover */

.rs-rental-swiper-prev:hover,
.rs-rental-swiper-next:hover{

    transform:
        translateY(-50%)
        scale(1.08);

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            #ff4d00
        );

    box-shadow:
        0 18px 40px rgba(255,102,0,.35);
}

/* icon hover */

.rs-rental-swiper-prev:hover i,
.rs-rental-swiper-next:hover i{

    color:#fff;

    transform:scale(1.1);
}

/* mobile */

@media(max-width:768px){

    .rs-rental-swiper-prev,
    .rs-rental-swiper-next{

        width:46px;
        height:46px;

        border-radius:16px;
    }

    .rs-rental-swiper-prev i,
    .rs-rental-swiper-next i{

        font-size:15px;
    }
}

/* =========================================
PREMIUM RENTAL CARD
========================================= */

.rs-package-card{

    background:#fff;

    border-radius:28px;

    overflow:visible;


    box-shadow:
        0 10px 40px rgba(0,0,0,0.08);

    transition:0.45s;

    position:relative;

    height:100%;

}

/* HOVER */

.rs-package-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.14);

}

/* =========================================
IMAGE
========================================= */

.rs-package-image-wrap{

    position:relative;

    height:260px;

    overflow:hidden;

}

/* IMAGE */

.rs-package-image-wrap img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:0.6s;

}

/* IMAGE HOVER */

.rs-package-card:hover
.rs-package-image-wrap img{

    transform:scale(1.08);

}

/* GRADIENT */

.rs-package-image-wrap::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.15)
        );

}

/* =========================================
BADGE
========================================= */

.rs-package-badge{

    position:absolute;

    top:18px;
    left:18px;

    z-index:5;

    background:var(--cardGradient);

    color:#fff;

    padding:8px 16px;

    border-radius:40px;

    font-size:12px;
    font-weight:700;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.2);

}

/* =========================================
BODY
========================================= */

.rs-card-body-v3{

    padding:24px;

}

/* =========================================
TITLE
========================================= */

.rs-package-title{

    font-size:24px;

    font-weight:800;

    color:#111;

    margin-bottom:10px;

    line-height:1.3;

}

/* =========================================
LOCATION
========================================= */

.rs-package-location{

    color:#666;

    font-size:14px;

    font-weight:600;

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

    flex-wrap:wrap;

}

.rs-location-dot{

    color:#bbb;

}

/* =========================================
META ROW
========================================= */

.rs-meta-row{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:18px;

}

.rs-theme-pill,
.rs-mini-duration{

    background:#f4f4f4;

    border-radius:40px;

    padding:10px 14px;

    font-size:13px;

    font-weight:700;

    color:#333;

}

.rs-night{

    background:#fff5ed;

    color:#ff6600;

}

/* =========================================
FEATURE SUMMARY
========================================= */

.rs-ai-summary-line{

    background:#fafafa;

    border:1px solid #eee;

    border-radius:18px;

    padding:14px;

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:22px;

}

.rs-ai-icon{

    font-size:18px;

}

.rs-ai-text{

    color:#555;

    font-size:14px;

    line-height:1.6;

    font-weight:500;

}

/* =========================================
PRICE BOX
========================================= */

.rs-glass-price-box{

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.95),
            rgba(255,255,255,0.82)
        );

    border:1px solid rgba(255,255,255,0.5);

    border-radius:24px;

    padding:20px;

    margin-bottom:22px;

    backdrop-filter:blur(12px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.06);

}

.rs-card-price-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:16px;

}

.rs-card-price-pill{

    display:flex;

    align-items:center;

    gap:10px;

}

/* ICON */

.rs-price-icon{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--cardGradient);

    color:#fff;

    font-size:18px;

}

/* PRICE */

.rs-card-price{

    font-size:28px;

    font-weight:800;

    color:#111;

}

/* =========================================
LIVE STATUS
========================================= */

.rs-live-status{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:13px;

    font-weight:700;

    color:#00a86b;

}

.rs-live-dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#00c853;

    animation:rsPulse 1.5s infinite;

}

@keyframes rsPulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.5);
        opacity:0.4;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* =========================================
BUTTON ROW
========================================= */

.rs-package-btn-row{

    display:flex;

    gap:14px;

}

/* =========================================
BUTTONS
========================================= */

.rs-modern-btn{

    flex:1;

    border:none;

    border-radius:18px;

    padding:16px;

    cursor:pointer;

    font-size:15px;

    font-weight:700;

    transition:0.35s;

}

/* VIEW */

.rs-view-btn{

    background:#111;

    color:#fff;

}

.rs-view-btn:hover{

    background:#000;

    transform:translateY(-3px);

}

/* WHATSAPP */

.rs-wa-btn{

    background:
        linear-gradient(
            135deg,
            #25d366,
            #16a34a
        );

    color:#fff;

}

.rs-wa-btn:hover{

    transform:translateY(-3px);

}

/* =========================================
EMPTY STATE
========================================= */

.rs-rental-empty{

    background:#fff;

    padding:50px;

    border-radius:28px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#888;

}

/* =========================================
LOADING
========================================= */

.rs-loading-v3{

    width:100%;

    min-height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    border-radius:24px;

    font-size:18px;

    font-weight:800;

    color:#ff6600;

    position:relative;

    overflow:hidden;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

}

.rs-loading-v3::after{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:120%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.7),
            transparent
        );

    animation:rsShimmer 1.6s infinite;

}

@keyframes rsShimmer{

    100%{

        left:130%;

    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-package-title{

        font-size:20px;

    }

    .rs-package-btn-row{

        flex-direction:column;

    }

    .rs-rental-swiper-prev,
    .rs-rental-swiper-next{

        width:42px;
        height:42px;

        font-size:18px;

    }

    .rs-rental-swiper-prev{

        left:8px;

    }

    .rs-rental-swiper-next{

        right:8px;

    }

}

/* =========================================
RENTAL TOP BAR
========================================= */

.rs-rental-topbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    margin-bottom:24px;

    flex-wrap:wrap;

}

/* =========================================
SEARCH WRAP
========================================= */

.rs-rental-search-wrap{

    flex:1;

    min-width:260px;

}

/* SEARCH INPUT */

#rsRentalSearch{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    border-radius:18px;

    padding:0 22px;

    background:#fff;

    font-size:15px;

    font-weight:600;

    color:#111;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

    transition:0.35s;

}

/* FOCUS */

#rsRentalSearch:focus{

    box-shadow:
        0 10px 35px rgba(255,102,0,0.18);

}

/* PLACEHOLDER */

#rsRentalSearch::placeholder{

    color:#999;

    font-weight:500;

}

/* =========================================
SLIDER BUTTONS
========================================= */

.rs-rental-slider-btns{

    display:flex;

    align-items:center;

    gap:12px;

}

/* BUTTON */

.rs-rental-slider-btns button{

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

    font-size:22px;

    font-weight:800;

    color:#111;

    transition:0.35s;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.08);

}

/* HOVER */

.rs-rental-slider-btns button:hover{

    background:#ff6600;

    color:#fff;

    transform:
        translateY(-3px)
        scale(1.05);

}

/* =========================================
FILTER WRAP
========================================= */

.rs-rental-filter-wrap{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

/* FILTER BUTTON */

.rs-rental-filter-btn{

    border:none;

    background:#fff;

    padding:12px 20px;

    border-radius:40px;

    cursor:pointer;

    font-size:14px;

    font-weight:700;

    color:#333;

    transition:0.35s;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

}

/* ACTIVE */

.rs-rental-filter-btn.active{

    background:
        linear-gradient(
            135deg,
            #ff6600,
            #ff8533
        );

    color:#fff;

    box-shadow:
        0 10px 30px rgba(255,102,0,0.25);

}

/* HOVER */

.rs-rental-filter-btn:hover{

    transform:translateY(-2px);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-rental-topbar{

        flex-direction:column;

        align-items:stretch;

    }

    .rs-rental-slider-btns{

        justify-content:center;

    }

    .rs-rental-filter-wrap{

        justify-content:center;

    }

    .rs-rental-filter-btn{

        font-size:13px;

        padding:10px 16px;

    }

}

/* =========================================
RENTAL MODAL FIX
========================================= */

/* =========================================
RENTAL MODAL
========================================= */

.rs-premium-modal{

    position:fixed;

    inset:0;

    width:100%;

    height:100vh;

    z-index:999999;

    background:rgba(0,0,0,.65);

    overflow-y:auto;

    overflow-x:hidden;

    display:none;

}

/* ACTIVE */

.rs-premium-modal.active{

    display:block;

}

/* =========================================
MODAL WRAP
========================================= */

.rs-premium-modal-wrap{

    position:relative;

    width:100%;

    min-height:100vh;

    background:#fff;

}

/* =========================================
BODY
========================================= */

.rs-modal-main-body{

    max-width:1200px;

    margin:auto;

    padding:50px 40px 180px;

}


/* =========================================
ANIMATION
========================================= */

@keyframes rsRentalModalFade{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/* =========================================
CLOSE BUTTON
========================================= */

.rs-close-modal{

    position:fixed;

    top:24px;
    right:24px;

    width:56px;
    height:56px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#111;

    font-size:24px;
    font-weight:800;

    cursor:pointer;

    z-index:99999;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.2);

}

/* =========================================
HERO WRAP
========================================= */

.rs-modal-hero-wrap{

    position:relative;

    width:100%;
    height:520px;

    overflow:hidden;

}

/* IMAGE */

.rs-modal-hero{

    width:100%;
    height:100%;

    object-fit:cover;

}

/* OVERLAY */

.rs-modal-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.82),
            rgba(0,0,0,0.25)
        );

}

/* =========================================
HERO CONTENT
========================================= */

.rs-modal-hero-content{

    position:absolute;

    left:50px;
    bottom:50px;

    z-index:10;

    color:#fff;

}

/* TITLE */

#rsRentalModalTitle{

    font-size:52px;
    font-weight:900;

    line-height:1.1;

    margin-bottom:16px;

}

/* META */

#rsRentalModalMeta{

    font-size:18px;
    font-weight:600;

    opacity:0.95;

}

/* =========================================
BODY
========================================= */

.rs-modal-main-body{

    max-width:1200px;

    margin:auto;

    padding:50px 40px 180px;

}

/* =========================================
DESCRIPTION CARD
========================================= */

.rsx-description-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

    box-shadow:
        0 12px 40px rgba(0,0,0,0.08);

}

/* TITLE */

.rsx-description-title{

    font-size:32px;
    font-weight:800;

    color:#111;

    margin-bottom:24px;

}

/* TEXT */

.rsx-description-text{

    font-size:17px;

    line-height:1.9;

    color:#555;

}

/* =========================================
STICKY BOOK BAR
========================================= */

.rs-sticky-book-bar{

    position:sticky;

    bottom:0;

    background:#fff;

    border-top:1px solid #eee;

    padding:24px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    z-index:999;

    box-shadow:
        0 -10px 30px rgba(0,0,0,0.06);

}

/* PRICE */

#rsRentalStickyPrice{

    font-size:38px;
    font-weight:900;

    color:#111;

}

/* BUTTON */

#rsRentalStickyWhatsapp{

    border:none;

    border-radius:18px;

    padding:18px 34px;

    cursor:pointer;

    font-size:18px;
    font-weight:800;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #25d366,
            #16a34a
        );

    transition:0.35s;

}

#rsRentalStickyWhatsapp:hover{

    transform:translateY(-3px);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-modal-hero-wrap{

        height:320px;

    }

    .rs-modal-hero-content{

        left:24px;
        bottom:24px;

    }

    #rsRentalModalTitle{

        font-size:30px;

    }

    #rsRentalModalMeta{

        font-size:14px;

    }

.rs-modal-main-body{

    padding:24px 24px 140px;

}

    .rsx-description-card{

        padding:24px;

    }

    .rs-sticky-book-bar{

        flex-direction:column;

        gap:18px;

        padding:20px;

    }

    #rsRentalStickyWhatsapp{

        width:100%;

    }

}

/* =========================================
2026 MODERN RENTAL CARD
========================================= */

.rs-rental-modern-card{

    background: var(--cardGradient);

    box-shadow: var(--cardGlow);

    border: 1px solid rgba(255,255,255,0.7);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    transition: all 0.35s ease;

    overflow: hidden;

    position: relative;
}

.rs-rental-modern-card:hover{

    transform: translateY(-6px);

    box-shadow:
        0 20px 40px rgba(15,23,42,0.12);

}

/* =========================================
IMAGE
========================================= */

.rs-rental-modern-image-wrap{

    position:relative;

    height:220px;

    overflow:hidden;

}

.rs-rental-modern-image{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;

}

.rs-rental-modern-card:hover
.rs-rental-modern-image{

    transform:scale(1.06);

}

/* OVERLAY */

.rs-rental-image-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.65),
            rgba(0,0,0,0.05)
        );

}

.rs-rental-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* =========================================
BADGE
========================================= */

.rs-rental-modern-badge{

    position:absolute;

    top:16px;
    left:16px;

    z-index:12;

    display:flex;
    align-items:center;
    gap:6px;

    padding:10px 16px;

    border-radius:999px;

    background:
        rgba(15,23,42,0.72);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:
        1px solid rgba(255,255,255,0.14);

    color:#ffffff;

    font-size:11px;
    font-weight:800;

    letter-spacing:.7px;

    text-transform:uppercase;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);

    overflow:hidden;
}

/* glow line */

.rs-rental-modern-badge::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.12),
            transparent
        );

    transform:translateX(-100%);

    animation:rsBadgeShine 3s infinite;
}

@keyframes rsBadgeShine{

    100%{
        transform:translateX(100%);
    }
}

/* =========================================
FLOATING PRICE
========================================= */

.rs-rental-floating-price{

    position:absolute;

    bottom:16px;
    right:16px;

    z-index:5;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    color:#111;

    padding:10px 16px;

    border-radius:16px;

    font-size:18px;
    font-weight:900;

}

/* =========================================
BODY
========================================= */

.rs-rental-modern-body{

    padding:18px;

}

/* TOP */

.rs-rental-top-row{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:12px;

    margin-bottom:14px;

}

/* TITLE */

.rs-rental-modern-title{

    font-size:20px;
    font-weight:800;

    color:#111;

    margin-bottom:4px;

    line-height:1.2;

}

/* SUB */

.rs-rental-modern-sub{

    font-size:13px;
    font-weight:600;

    color:#666;

}

/* RATING */

.rs-rental-rating{

    background:#fff5ed;

    color:#ff6600;

    padding:8px 12px;

    border-radius:14px;

    font-size:13px;
    font-weight:800;

}

/* =========================================
META
========================================= */

.rs-rental-modern-meta{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:14px;

}

.rs-rental-meta-pill{

    background:#f5f5f5;

    border-radius:40px;

    padding:9px 12px;

    font-size:12px;
    font-weight:700;

    color:#333;

}

/* =========================================
FEATURE
========================================= */

.rs-rental-feature-box{

    background:#fafafa;

    border:1px solid #eee;

    border-radius:16px;

    padding:12px 14px;

    font-size:13px;

    line-height:1.6;

    color:#555;

    margin-bottom:16px;

}

/* =========================================
FOOTER
========================================= */

.rs-rental-modern-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:12px;

}

/* STATUS */

.rs-rental-live{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;
    font-weight:700;

    color:#00a86b;

}

/* =========================================
BUTTON ROW
========================================= */

.rs-rental-action-row{

    display:flex;

    gap:10px;

}

/* BUTTONS */

.rs-rental-view-btn,
.rs-rental-wa-btn{

    border:none;

    padding:12px 16px;

    border-radius:14px;

    cursor:pointer;

    font-size:13px;
    font-weight:800;

    transition:0.35s;

}

/* VIEW */

.rs-rental-view-btn{

    background:#111;

    color:#fff;

}

/* WA */

.rs-rental-wa-btn{

    background:
        linear-gradient(
            135deg,
            #25d366,
            #16a34a
        );

    color:#fff;

}

/* HOVER */

.rs-rental-view-btn:hover,
.rs-rental-wa-btn:hover{

    transform:translateY(-2px);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-rental-modern-image-wrap{

        height:200px;

    }

    .rs-rental-modern-title{

        font-size:18px;

    }

    .rs-rental-modern-footer{

        flex-direction:column;
        align-items:stretch;

    }

    .rs-rental-action-row{

        width:100%;

    }

    .rs-rental-view-btn,
    .rs-rental-wa-btn{

        flex:1;

    }

}

/* =========================================
AI AVAILABILITY INDICATOR
2026 PREMIUM UI
========================================= */

.rs-ai-availability-wrap{

    display:flex;
    align-items:center;
    gap:14px;

    width:100%;

    padding:16px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );

    border:1px solid #edf2f7;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.04);

}

/* =========================================
DOT
========================================= */

.rs-live-dot{

    width:14px;
    height:14px;

    border-radius:50%;

    position:relative;

    flex-shrink:0;

}

/* PULSE */

.rs-live-dot::after{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    animation:
        rsPulseRing 1.8s infinite;

}

/* =========================================
GREEN
========================================= */

.rs-status-green{

    background:#10b981;

}

.rs-status-green::after{

    border:2px solid
    rgba(16,185,129,0.25);

}

/* =========================================
ORANGE
========================================= */

.rs-status-orange{

    background:#f59e0b;

}

.rs-status-orange::after{

    border:2px solid
    rgba(245,158,11,0.25);

}

/* =========================================
RED
========================================= */

.rs-status-red{

    background:#ef4444;

}

.rs-status-red::after{

    border:2px solid
    rgba(239,68,68,0.25);

}

/* =========================================
CONTENT
========================================= */

.rs-ai-availability-content{

    flex:1;

}

/* TITLE */

.rs-ai-availability-title{

    font-size:14px;
    font-weight:800;

    color:#111;

    line-height:1.5;

    margin-bottom:4px;

}

/* SUBTEXT */

.rs-ai-availability-sub{

    font-size:13px;
    font-weight:600;

    color:#666;

    line-height:1.5;

}

/* =========================================
PULSE ANIMATION
========================================= */

@keyframes rsPulseRing{

    0%{

        transform:scale(0.7);
        opacity:1;

    }

    70%{

        transform:scale(1.8);
        opacity:0;

    }

    100%{

        transform:scale(1.8);
        opacity:0;

    }

}

/* =========================================
2026 FLOATING ACTION BAR
========================================= */

.rs-floating-action-bar{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:20px;

}

/* =========================================
BUTTON
========================================= */

.rs-action-btn{

    flex:1;

    position:relative;

    height:40px;

    width: 90px;

    border:none;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    cursor:pointer;

    overflow:visible;

    transition:0.35s;

    font-weight:800;

    backdrop-filter:blur(18px);

}

/* =========================================
ICON
========================================= */

.rs-btn-icon{

    font-size:18px;

    flex-shrink:0;

}

/* =========================================
TEXT
========================================= */

.rs-btn-text{

    font-size:14px;

    white-space:nowrap;

}

/* =========================================
WHATSAPP
========================================= */

.rs-action-wa{

    background:
        linear-gradient(
            135deg,
            #22c55e,
            #16a34a
        );

    color:#fff;

    box-shadow:
        0 10px 30px rgba(34,197,94,0.25);

}

/* =========================================
BOOK
========================================= */

.rs-action-book{

    background:
        linear-gradient(
            135deg,
            #ff6600,
            #ff8533
        );

    color:#fff;

    box-shadow:
        0 10px 30px rgba(255,102,0,0.25);

}

/* =========================================
DETAILS
========================================= */

.rs-action-view{

    background:
        rgba(255,255,255,0.88);

    color:#111;

    border:
        1px solid rgba(0,0,0,0.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

}

/* =========================================
2026 HOVER
========================================= */

.rs-action-btn:hover{

    transform:
        translateY(-4px)
        scale(1.03);

}

/* =========================================
MODERN TOOLTIP
========================================= */

.rs-action-btn::after{

    content:attr(data-title);

    position:absolute;

    bottom:76px;

    left:50%;

    transform:
        translateX(-50%)
        translateY(8px);

    background:#111;

    color:#fff;

    padding:10px 16px;

    border-radius:14px;

    font-size:13px;

    font-weight:700;

    white-space:nowrap;

    opacity:0;

    visibility:hidden;

    transition:0.3s ease;

    pointer-events:none;

    z-index:99999;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);

}

/* SHOW TOOLTIP */

.rs-action-btn:hover::after{

    opacity:1;

    visibility:visible;

    transform:
        translateX(-50%)
        translateY(0);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-floating-action-bar{

        gap:8px;

    }

    .rs-action-btn{

        height:50px;

        border-radius:16px;

        gap:6px;

    }

    .rs-btn-text{

        display:none;

    }

    .rs-btn-icon{

        font-size:18px;

    }

    /* TOOLTIP OFF */

    .rs-action-btn::after{

        display:none;

    }

}

/* =========================================
COMPARE CHECKBOX
========================================= */

/* =========================================
MODERN COMPARE CHIP
========================================= */

/* =========================================
MODERN COMPARE CHIP 2026
========================================= */

.rs-compare-check{

    position:absolute;

    top:68px;
    right:14px;

    z-index:20;

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 14px;

    border-radius:999px;

    background:
        rgba(15,23,42,0.72);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    border:
        1px solid rgba(255,255,255,0.12);

    color:#fff;

    font-size:12px;
    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);
}

/* hover */

.rs-compare-check:hover{

    transform:translateY(-2px);

    background:
        rgba(255,102,0,0.92);
}

/* checkbox */

.rs-compare-check input{

    accent-color:#ff6600;

    width:15px;
    height:15px;

    cursor:pointer;
}

/* =========================================
COMPARE BAR
========================================= */

.rs-compare-bar{

    position:fixed;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    z-index:99999;

    background:
        rgba(255,255,255,0.78);

    backdrop-filter:blur(18px);

    border:
        1px solid rgba(255,255,255,0.3);

    border-radius:24px;

    padding:16px 20px;

    display:none;

    align-items:center;

    gap:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);

}

.rs-compare-bar.active{

    display:flex;

}

.rs-compare-count{

    font-size:15px;

    font-weight:800;

    color:#111;

}

.rs-compare-bar button{

    border:none;

    background:
        linear-gradient(
            135deg,
            #ff6600,
            #ff8533
        );

    color:#fff;

    padding:14px 22px;

    border-radius:16px;

    font-size:14px;

    font-weight:800;

    cursor:pointer;

    transition:0.3s;

}

.rs-compare-bar button:hover{

    transform:translateY(-3px);

}

/* =========================================
COMPARE MODAL
========================================= */

.rs-compare-modal{

    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,0.72);

    z-index:999999;

    display:none;

    overflow:auto;

    padding:40px;

    backdrop-filter:blur(10px);

}

.rs-compare-modal.active{

    display:block;

}

/* CONTENT */

.rs-compare-modal-content{

    background:#fff;

    border-radius:32px;

    max-width:1200px;

    margin:auto;

    padding:40px;

    position:relative;

    animation:rsCompareFade 0.4s ease;

}

@keyframes rsCompareFade{

    from{

        transform:translateY(50px);

        opacity:0;

    }

    to{

        transform:translateY(0);

        opacity:1;

    }

}

/* CLOSE */

.rs-compare-close{

    position:absolute;

    top:20px;

    right:20px;

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    cursor:pointer;

    font-size:20px;

}

/* TITLE */

.rs-compare-title{

    font-size:36px;

    font-weight:900;

    margin-bottom:30px;

    color:#111;

}

/* TABLE */

.rs-compare-table-wrap{

    overflow:auto;

}

.rs-compare-table{

    width:100%;

    border-collapse:collapse;

    min-width:700px;

}

.rs-compare-table th{

    background:#111;

    color:#fff;

    padding:18px;

    text-align:left;

    font-size:15px;

}

.rs-compare-table td{

    padding:18px;

    border-bottom:
        1px solid #eee;

    font-size:15px;

    font-weight:600;

    color:#444;

}

.rs-compare-table tr:nth-child(even){

    background:#fafafa;

}

/* MOBILE */

@media(max-width:768px){

    .rs-compare-modal{

        padding:20px;

    }

    .rs-compare-modal-content{

        padding:24px;

    }

    .rs-compare-title{

        font-size:26px;

    }

}

/* =========================================
QUICK SPECS OVERLAY 2026
========================================= */

.rs-rental-spec-overlay{

    position:absolute;

    left:14px;
    right:14px;
    bottom:14px;

    z-index:12;

    display:flex;
    flex-wrap:wrap;

    gap:8px;

    align-items:center;
}

/* spec chip */

.rs-rental-spec-overlay span{

    display:flex;
    align-items:center;
    gap:5px;

    padding:7px 10px;

    border-radius:999px;

    background:
        rgba(15,23,42,0.58);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    border:
        1px solid rgba(255,255,255,0.08);

    color:#fff;

    font-size:10px;
    font-weight:700;

    letter-spacing:.3px;

    box-shadow:
        0 6px 18px rgba(0,0,0,0.14);
}

.rs-rental-price-row-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 14px;
}

/* 🌈 SOFT GRADIENT PRICE (LIKE YOUR IMAGE) */
.rs-price-gradient-pill {
    background: linear-gradient(135deg, #ffe7d1, #fff3e6);
    border: 1px solid #ffd2a6;

    padding: 10px 14px;
    border-radius: 16px;

    font-weight: 800;
    font-size: 18px;
    color: #111;

    display: flex;
    align-items: center;
    gap: 6px;
}

.rs-price-gradient-pill span {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.7;
}

/* ⭐ CLEAN MODERN RATING */
.rs-rating-pill-modern {
    background: #f4f4f5;
    color:#ff6600;
    padding: 6px 10px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
}

.rs-ai-trust-badge {
    position: absolute;
    top: 44px;
    left: 12px;

    background: rgba(0, 200, 120, 0.15);
    color: #00c878;

    padding: 5px 10px;
    border-radius: 999px;

    font-size: 11px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}

.rs-ai-ribbon{
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg,#10b981,#2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-bottom-left-radius: 12px;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rs-ai-ribbon::after{
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-20deg);
    animation: shine 2.5s infinite;
}

@keyframes shine{
    0% { left: -50%; }
    100% { left: 150%; }
}


.rs-price-animated{
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.rs-price-label{
    font-size: 12px;
    color: #888;
}

.rs-price-value{
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.rs-price-unit{
    font-size: 12px;
    color: #666;
}

.rs-price-pill-2026{
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 14px;
    border-radius: 999px;

    background: linear-gradient(135deg,#ff7a18,#af002d 60%,#319197);

    color: #fff;

    font-weight: 700;

    box-shadow: 0 12px 25px rgba(255, 122, 24, 0.25);
}

.rs-price-pill-2026::before{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );

    transform: translateX(-100%);
    animation: shine 2.8s infinite;
}

@keyframes shine{
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rs-price-label{
    font-size: 11px;
    opacity: 0.8;
    color: #e5e7eb;
}

.rs-price-value{
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.rs-price-unit{
    font-size: 11px;
    opacity: 0.85;
    color: #cbd5e1;
}

.rs-rental-price-row-modern{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.rs-live-feed{
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 10px;

    padding: 9px 12px;

    /* 🔥 DARK GLASS BASE (FIX FOR WHITE BACKGROUND ISSUE) */
    background: rgba(17, 24, 39, 0.65);
    backdrop-filter: blur(14px);

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,0.18);

    box-shadow: 0 10px 25px rgba(0,0,0,0.35);

    font-size: 12px;
    color: #f3f4f6;

    position: relative;
    overflow: hidden;
}

.rs-skeleton-wrapper{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.rs-skeleton-card{
    background: #0f172a;
    border-radius: 16px;
    padding: 12px;

    overflow: hidden;

    position: relative;
}

.rs-skeleton-image{
    width: 100%;
    height: 160px;
    border-radius: 12px;

    background: linear-gradient(
        90deg,
        #1f2937 25%,
        #374151 50%,
        #1f2937 75%
    );

    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.rs-skeleton-line{
    height: 10px;
    margin-top: 10px;
    border-radius: 6px;

    background: linear-gradient(
        90deg,
        #1f2937 25%,
        #374151 50%,
        #1f2937 75%
    );

    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.rs-w-70{ width: 70%; }
.rs-w-50{ width: 50%; }

.rs-skeleton-pill{
    width: 120px;
    height: 28px;

    margin-top: 12px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #1f2937 25%,
        #374151 50%,
        #1f2937 75%
    );

    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.rs-skeleton-buttons{
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.rs-skeleton-buttons div{
    flex: 1;
    height: 32px;
    border-radius: 8px;

    background: linear-gradient(
        90deg,
        #1f2937 25%,
        #374151 50%,
        #1f2937 75%
    );

    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer{
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.rs-theme-luxury .rs-rental-modern-badge{
    background: rgba(255,215,0,0.18);
    color: #fff7cc;
}

.rs-theme-family .rs-rental-modern-badge{
    background: rgba(16,185,129,0.18);
    color: #d1fae5;
}

.rs-theme-vip .rs-rental-modern-badge{
    background: rgba(255,255,255,0.12);
    color: #fff;
}

.rs-theme-budget .rs-rental-modern-badge{
    background: rgba(168,85,247,0.18);
    color: #f3e8ff;
}

/* =========================================
FLOATING FAVORITE BUTTON
========================================= */

.rs-favorite-btn{

    position:absolute;

    top:14px;
    right:14px;

    width:44px;
    height:44px;

    border-radius:50%;

    border:none;

    background:
        rgba(15,23,42,0.72);

    backdrop-filter:blur(14px);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:20;

    transition:all .3s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.2);
}

/* HEART */

.rs-favorite-icon{

    font-size: 22px;

    color: #fff;

    transition: all 0.25s ease;

}

/* HOVER */

.rs-favorite-btn:hover{

    transform:
        scale(1.08);

    background:
        rgba(255,255,255,0.28);

}

/* ACTIVE */

.rs-favorite-btn.active{

    background:
        linear-gradient(
            135deg,
            #ff4d6d,
            #ff758f
        );

    color: #fff;

}

/* ACTIVE HEART */

.rs-favorite-btn.active .rs-favorite-icon{

    color: #fff;

    content: "♥";

}

/* MOBILE */

@media(max-width:768px){

    .rs-favorite-btn{

        width: 38px;
        height: 38px;

        top: 10px;
        right: 10px;

    }

}

/* =========================================
RECENTLY VIEWED
========================================= */

.rs-recently-viewed-wrap{

    margin: 24px 0 30px;

}

/* HEADER */

.rs-recent-header{

    margin-bottom: 14px;

}

.rs-recent-header h3{

    font-size: 20px;
    font-weight: 700;

    color: #111827;

}

/* SCROLL */

.rs-recent-scroll{

    display: flex;

    gap: 14px;

    overflow-x: auto;

    padding-bottom: 6px;

    scrollbar-width: none;

}

.rs-recent-scroll::-webkit-scrollbar{
    display:none;
}

/* CARD */

.rs-recent-card{

    min-width: 220px;

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.7);

    border-radius: 22px;

    overflow: hidden;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 10px 30px rgba(15,23,42,0.08);

}

/* HOVER */

.rs-recent-card:hover{

    transform: translateY(-4px);

}

/* IMAGE */

.rs-recent-card img{

    width: 100%;
    height: 120px;

    object-fit: cover;

}

/* BODY */

.rs-recent-body{

    padding: 14px;

}

/* TITLE */

.rs-recent-title{

    font-size: 15px;
    font-weight: 700;

    color: #111827;

    margin-bottom: 6px;

}

/* SUB */

.rs-recent-sub{

    font-size: 13px;

    color: #6b7280;

}

.rs-recent-header{

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 14px;

}

.rs-clear-recent-btn{

    border: none;

    background: rgba(255,255,255,0.7);

    padding: 8px 14px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: all 0.25s ease;

}

.rs-clear-recent-btn:hover{

    transform: translateY(-2px);

    background: #fff;

}


/* =========================================
OFFER COUNTDOWN
========================================= */

.rs-offer-countdown{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 18px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    border:
        1px solid rgba(249,115,22,.15);

    box-shadow:
        0 8px 25px rgba(249,115,22,.08);

    overflow:hidden;

    position:relative;
}

/* =========================================
SHINE EFFECT
========================================= */

.rs-offer-countdown::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.4),
            transparent
        );

    transform:translateX(-100%);

    animation:
        rsOfferShine 3s infinite;
}

@keyframes rsOfferShine{

    100%{

        transform:
            translateX(100%);
    }
}

/* =========================================
ICON
========================================= */

.rs-offer-icon{

    font-size:18px;

    animation:
        rsOfferPulse 1.5s infinite;

    flex-shrink:0;
}

@keyframes rsOfferPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }
}

/* =========================================
TIMER WRAP
========================================= */

.rs-offer-timer{

    display:flex;

    flex-wrap:wrap;

    align-items:center;

    gap:8px;

    line-height:1.4;

    position:relative;

    z-index:2;
}

/* =========================================
ROTATING TEXT
========================================= */

.rs-offer-text{

    font-size:14px;

    font-weight:700;

    color:#9a3412;

    animation:
        rsOfferFade .4s ease;
}

/* =========================================
TIME
========================================= */

.rs-offer-time{

    font-size:14px;

    font-weight:800;

    color:#ea580c;

    letter-spacing:.5px;

    font-variant-numeric:
        tabular-nums;
}

/* =========================================
FADE ANIMATION
========================================= */

@keyframes rsOfferFade{

    from{

        opacity:0;

        transform:
            translateY(4px);
    }

    to{

        opacity:1;

        transform:
            translateY(0);
    }
}

/* =========================================
DYNAMIC OFFER COLORS
========================================= */

.rs-offer-green{

    background:
        linear-gradient(
            135deg,
            #ecfdf5,
            #d1fae5
        );

    border:
        1px solid rgba(16,185,129,.2);
}

.rs-offer-green .rs-offer-text{

    color:#047857;
}

.rs-offer-green .rs-offer-time{

    color:#10b981;
}

/* ========================================= */

.rs-offer-yellow{

    background:
        linear-gradient(
            135deg,
            #fffbeb,
            #fef3c7
        );

    border:
        1px solid rgba(245,158,11,.25);
}

.rs-offer-yellow .rs-offer-text{

    color:#b45309;
}

.rs-offer-yellow .rs-offer-time{

    color:#f59e0b;
}

/* ========================================= */

.rs-offer-red{

    background:
        linear-gradient(
            135deg,
            #fef2f2,
            #fee2e2
        );

    border:
        1px solid rgba(239,68,68,.25);

    animation:
        rsUrgentPulse 1.5s infinite;
}

.rs-offer-red .rs-offer-text{

    color:#b91c1c;
}

.rs-offer-red .rs-offer-time{

    color:#ef4444;
}

/* =========================================
URGENT PULSE
========================================= */

@keyframes rsUrgentPulse{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.02);
    }

    100%{

        transform:scale(1);
    }
}

/* =========================================
CRITICAL OFFER
========================================= */

.rs-offer-critical{

    animation:
        rsCriticalPulse .8s infinite;

    border:
        1px solid rgba(239,68,68,.45);

    box-shadow:
        0 0 25px rgba(239,68,68,.25);
}

@keyframes rsCriticalPulse{

    0%{

        transform:scale(1);
    }

    50%{

        transform:scale(1.03);
    }

    100%{

        transform:scale(1);
    }
}

/* =========================================
MODAL 2026 UI
========================================= */

.rsx-ai-recommendation{

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );

    color:#1d4ed8;

    padding:14px 18px;

    border-radius:18px;

    font-weight:700;

    margin-bottom:14px;

    font-size:14px;

    border:
        1px solid rgba(59,130,246,.12);
}

/* live demand */

.rsx-live-demand{

    margin-bottom:16px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    color:#ea580c;

    padding:12px 16px;

    border-radius:16px;

    font-size:13px;

    font-weight:700;
}

/* card */

.rsx-description-card-modern{

    background:#fff;

    border-radius:24px;

    padding:22px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

/* top */

.rsx-modal-top-row{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;
}

/* sub */

.rsx-description-sub{

    font-size:13px;

    color:#64748b;

    margin-top:4px;
}

/* features */

.rsx-features-grid{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;
}

/* feature pill */

.rsx-feature-pill{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 14px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #f1f5f9
        );

    font-size:13px;

    font-weight:600;

    color:#0f172a;

    border:
        1px solid rgba(148,163,184,.15);
}

/* =========================================
MODERN 2026 RENTAL MODAL UI
========================================= */

.rsx-modal-modern-wrap{

    display:flex;
    flex-direction:column;
    gap:18px;

    padding:10px 0;
}

/* =========================================
AI RECOMMENDATION STRIP
========================================= */

.rsx-ai-recommendation{

    position:relative;

    overflow:hidden;

    padding:14px 18px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    color:#fff;

    font-size:14px;
    font-weight:700;

    letter-spacing:.3px;

    box-shadow:
        0 12px 35px rgba(15,23,42,.25);

    border:
        1px solid rgba(255,255,255,.08);
}

/* animated shine */

.rsx-ai-recommendation::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transform:translateX(-100%);

    animation:
        rsxAiShine 4s linear infinite;
}

@keyframes rsxAiShine{

    100%{
        transform:translateX(100%);
    }
}

/* =========================================
LIVE DEMAND
========================================= */

.rsx-live-demand{

    display:inline-flex;
    align-items:center;
    gap:10px;

    width:max-content;

    padding:10px 16px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #fef2f2,
            #fee2e2
        );

    color:#dc2626;

    font-size:13px;
    font-weight:700;

    border:
        1px solid rgba(220,38,38,.15);

    box-shadow:
        0 8px 20px rgba(220,38,38,.08);
}

/* =========================================
MODERN CARD
========================================= */

.rsx-description-card-modern{

    position:relative;

    overflow:hidden;

    padding:26px;

    border-radius:28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.92),
            rgba(248,250,252,.96)
        );

    backdrop-filter:
        blur(18px);

    border:
        1px solid rgba(255,255,255,.65);

    box-shadow:
        0 25px 60px rgba(15,23,42,.12);

    display:flex;
    flex-direction:column;
    gap:22px;
}

/* glow bg */

.rsx-description-card-modern::before{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    background:
        radial-gradient(
            circle,
            rgba(255,153,0,.15),
            transparent
        );

    pointer-events:none;
}

/* =========================================
TOP ROW
========================================= */

.rsx-modal-top-row{

    display:flex;
    align-items:center;
    gap:16px;
}

/* icon */

.rsx-description-icon{

    width:68px;
    height:68px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            #ff4d00
        );

    color:#fff;

    box-shadow:
        0 15px 35px rgba(255,102,0,.25);
}

/* title */

.rsx-description-title{

    font-size:22px;
    font-weight:800;

    color:#0f172a;

    letter-spacing:-0.4px;
}

.rsx-description-sub{

    margin-top:4px;

    font-size:13px;
    font-weight:600;

    color:#64748b;
}

/* =========================================
STATUS PILLS
========================================= */

.rsx-ai-summary-wrap{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.rsx-ai-summary-chip{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 16px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #eef2ff
        );

    border:
        1px solid rgba(99,102,241,.08);

    color:#334155;

    font-size:13px;
    font-weight:700;

    box-shadow:
        0 6px 18px rgba(15,23,42,.05);

    transition:.3s;
}

.rsx-ai-summary-chip:hover{

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 24px rgba(15,23,42,.08);
}

/* =========================================
FEATURE GRID
========================================= */

.rsx-features-grid{

    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* feature pill */

.rsx-feature-pill{

    display:flex;
    align-items:center;
    gap:10px;

    padding:12px 18px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );

    border:
        1px solid rgba(226,232,240,.8);

    color:#0f172a;

    font-size:13px;
    font-weight:700;

    box-shadow:
        0 10px 25px rgba(15,23,42,.05);

    transition:.35s;
}

/* hover */

.rsx-feature-pill:hover{

    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    box-shadow:
        0 16px 35px rgba(255,102,0,.12);
}

/* emoji */

.rsx-feature-pill span{

    font-size:18px;
}





/* =========================================
RENTAL MODAL 2026 UI
========================================= */

.rsr-modal-wrap{

    display:flex;
    flex-direction:column;
    gap:20px;
}

/* AI STRIP */

.rsr-ai-strip{

    padding:14px 18px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );

    color:#fff;

    font-size:14px;
    font-weight:800;

    box-shadow:
        0 12px 35px rgba(15,23,42,.2);
}

/* DEMAND */

.rsr-demand-pill{

    width:max-content;

    padding:10px 16px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    color:#ea580c;

    font-size:13px;
    font-weight:700;
}

/* MAIN CARD */

.rsr-main-card{

    padding:24px;

    border-radius:28px;

    background:#fff;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);

    display:flex;
    flex-direction:column;
    gap:20px;
}

/* TOP */

.rsr-top-row{

    display:flex;
    align-items:center;
    gap:18px;
}

.rsr-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    background:
        linear-gradient(
            135deg,
            #ff7a18,
            #ff4d00
        );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    color:#fff;
}

.rsr-title{

    font-size:22px;
    font-weight:800;

    color:#0f172a;
}

.rsr-sub{

    font-size:13px;

    color:#64748b;
}

/* STATUS */

.rsr-status-wrap{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.rsr-status-pill{

    padding:10px 16px;

    border-radius:999px;

    background:#f8fafc;

    font-size:13px;
    font-weight:700;
}

/* FEATURES */

.rsr-feature-grid{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.rsr-feature-pill{

    padding:12px 16px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    font-size:13px;
    font-weight:700;
}

/* SCORE */

.rsr-ai-score-card{

    display:flex;
    align-items:center;
    gap:20px;

    padding:22px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );
}

.rsr-score-ring{

    width:90px;
    height:90px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;
    font-weight:900;
}

.rsr-score-title{

    font-size:18px;
    font-weight:800;
}

.rsr-score-sub{

    margin-top:6px;

    font-size:14px;

    color:#475569;
}

/* LIVE FEED */

.rsr-live-feed-wrap{

    display:flex;
    flex-direction:column;
    gap:14px;
}

.rsr-live-feed-card{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:16px;

    padding:16px 18px;

    border-radius:20px;

    background:#fff;

    box-shadow:
        0 12px 30px rgba(15,23,42,.05);
}

.rsr-live-feed-left{

    width:52px;
    height:52px;

    border-radius:16px;

    background:#fff7ed;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.rsr-live-feed-title{

    font-size:14px;
    font-weight:700;
}

.rsr-live-feed-sub{

    margin-top:4px;

    font-size:12px;

    color:#64748b;
}

.rsr-live-feed-live{

    font-size:12px;
    font-weight:800;

    color:#16a34a;
}

.rsr-live-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#16a34a;

    display:inline-block;

    margin-right:6px;
}



.rsr-price-label{

    font-size:12px;

    color:#94a3b8;
}

.rsr-price-main{

    font-size:28px;
    font-weight:900;

    color:#fff;
}

/* =========================================
HERO
========================================= */

.rsr-hero-wrap{

    position:relative;
}

.rsr-hero-overlay{

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.7),
            rgba(0,0,0,.1)
        );
}

/* badge */

.rsr-floating-badge{

    position:absolute;

    top:20px;
    left:20px;

    padding:10px 18px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #7c3aed
        );

    color:#fff;

    font-weight:700;

    z-index:5;

    box-shadow:
        0 10px 30px rgba(124,58,237,.35);
}

/* =========================================
SECTION TITLE
========================================= */

.rsr-section-title{

    font-size:28px;
    font-weight:800;

    margin:40px 0 24px;
}

/* =========================================
OVERVIEW
========================================= */

.rsr-overview-card{

    background:#fff;

    border-radius:28px;

    padding:28px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}

.rsr-overview-top{

    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:24px;
}

.rsr-overview-icon{

    width:70px;
    height:70px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    background:
        linear-gradient(
            135deg,
            #ffedd5,
            #fed7aa
        );
}

.rsr-overview-title{

    font-size:24px;
    font-weight:800;
}

.rsr-overview-sub{

    color:#64748b;
}

/* =====================================
PREMIUM COLORED CHIPS
===================================== */

.rsr-chip-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:22px;
}

/* BASE */

.rsr-chip{
    padding:10px 16px !important;

    border-radius:999px !important;

    font-size:13px !important;
    font-weight:700 !important;

    display:flex !important;
    align-items:center !important;
    gap:6px !important;

    width:max-content !important;

    transition:0.25s ease !important;

    box-shadow:
        0 2px 8px rgba(0,0,0,0.05) !important;
}

/* HOVER */

.rsr-chip:hover{
    transform:translateY(-2px);
}

/* HOT */

.rsr-chip-hot{
    background:#ffe5e5 !important;
    color:#d93025 !important;
}

/* PREMIUM */

.rsr-chip-premium{
    background:#fff4d6 !important;
    color:#f57c00 !important;
}

/* STATUS */

.rsr-chip-status{
    background:#dcfce7 !important;
    color:#15803d !important;
}

/* DRIVE */

.rsr-chip-drive{
    background:#dbeafe !important;
    color:#2563eb !important;
}

/* FUEL */

.rsr-chip-fuel{
    background:#f3e8ff !important;
    color:#9333ea !important;
}

/* SEATS */

.rsr-chip-seat{
    background:#cffafe !important;
    color:#0891b2 !important;
}

/* =========================================
FEATURES
========================================= */

.rsr-feature-grid{

    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* =========================================
PREMIUM FEATURE PILLS
========================================= */

.rsr-feature-pill{

    padding:12px 18px;

    border-radius:16px;

    font-weight:700;

    font-size:14px;

    transition:0.25s ease;

    box-shadow:
        0 2px 10px rgba(0,0,0,0.05);

    width:max-content;
}

/* HOVER */

.rsr-feature-pill:hover{

    transform:
        translateY(-2px)
        scale(1.02);

}

/* =====================================
AUTO COLORS
===================================== */

/* 1 */

.rsr-feature-pill:nth-child(6n+1){

    background:#dbeafe;
    color:#1d4ed8;

}

/* 2 */

.rsr-feature-pill:nth-child(6n+2){

    background:#dcfce7;
    color:#15803d;

}

/* 3 */

.rsr-feature-pill:nth-child(6n+3){

    background:#fff4d6;
    color:#f57c00;

}

/* 4 */

.rsr-feature-pill:nth-child(6n+4){

    background:#f3e8ff;
    color:#9333ea;

}

/* 5 */

.rsr-feature-pill:nth-child(6n+5){

    background:#ffe4e6;
    color:#e11d48;

}

/* 6 */

.rsr-feature-pill:nth-child(6n){

    background:#cffafe;
    color:#0891b2;

}

/* =========================================
AI HIGHLIGHTS
========================================= */

.rsr-ai-wrap{

    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.rsr-ai-chip{

    padding:14px 22px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #ede9fe,
            #ddd6fe
        );

    font-weight:700;
}

/* =========================================
2026 AI MATCH CARD
========================================= */

.rsr-ai-match-card{

    position:relative;

    display:flex;

    align-items:center;

    gap:26px;

    padding:28px;

    border-radius:32px;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(15,23,42,.96),
            rgba(30,41,59,.95)
        );

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        0 18px 50px rgba(0,0,0,.35);

    margin-top:20px;
}

/* =========================================
GLOW
========================================= */

.rsr-ai-glow{

    position:absolute;

    top:-100px;
    right:-100px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(99,102,241,.35),
            transparent 70%
        );

    pointer-events:none;
}

/* =========================================
LEFT
========================================= */

.rsr-ai-left{

    flex-shrink:0;
}

/* =========================================
ROTATING RING
========================================= */

.rsr-ai-ring{

    width:120px;
    height:120px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:6px;

    background:
        conic-gradient(
            #8b5cf6,
            #ec4899,
            #06b6d4,
            #10b981,
            #8b5cf6
        );

    animation:
        rsrSpinRing 8s linear infinite;
}

/* INNER */

.rsr-ai-ring-inner{

    width:100%;
    height:100%;

    border-radius:50%;

    background:#0f172a;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    color:#fff;

    font-size:38px;

    font-weight:900;
}

.rsr-ai-ring-inner span{

    font-size:16px;

    opacity:.7;
}

/* =========================================
RIGHT
========================================= */

.rsr-ai-right{

    flex:1;
}

/* TITLE */


/* SUB */

.rsr-ai-sub{
    width:max-content;

    padding:
        8px
        14px;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,0.12),
            rgba(124,58,237,0.12)
        );

    color:#1e40af;

    font-size:20px;

    font-weight:800;

    line-height:1.4;

    margin-bottom:16px;
}

/* TAGS */

.rsr-ai-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;
}

.rsr-ai-tags span{

    padding:10px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    color:#fff;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    transition:.3s;
}

/* HOVER */

.rsr-ai-tags span:hover{

    transform:
        translateY(-2px);

    background:
        rgba(255,255,255,.14);
}

/* =========================================
RING ANIMATION
========================================= */

@keyframes rsrSpinRing{

    from{

        transform:rotate(0deg);
    }

    to{

        transform:rotate(360deg);
    }
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rsr-ai-match-card{

        flex-direction:column;

        text-align:center;
    }

    .rsr-ai-tags{

        justify-content:center;
    }

    .rsr-ai-ring{

        width:100px;
        height:100px;
    }

    .rsr-ai-ring-inner{

        font-size:32px;
    }

}

/* =========================================
LIVE FEED
========================================= */

.rsr-feed-wrap{

    display:flex;
    flex-direction:column;
    gap:16px;
}

.rsr-feed-card{

    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 22px;

    border-radius:24px;

    background:#fff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.rsr-feed-icon{

    width:54px;
    height:54px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff7ed;

    font-size:24px;
}

/* =========================================
GALLERY
========================================= */

.rsr-gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(180px,1fr)
        );

    gap:18px;
}

.rsr-gallery-image{

    width:100%;
    height:180px;

    object-fit:cover;

    border-radius:24px;

    transition:.4s;
}

.rsr-gallery-image:hover{

    transform:scale(1.04);
}

/* =========================================
PRICE
========================================= */

.rsr-price-box{

    font-size:36px;
    font-weight:900;

    color:#ff6600;
}

/* =========================================
2026 PREMIUM HERO OVERLAY
========================================= */

/* =========================================
FULL WIDTH HERO
========================================= */

.rsr-modal-hero{

    position:relative;

    width:100%;

    height:420px;

    overflow:hidden;

    border-radius:
        0 0 38px 38px;

}

/* IMAGE */

#rsRentalModalImage{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transform:scale(1.04);

    filter:
        saturate(1.08)
        contrast(1.03);

}

/* CONTENT */

.rsr-modal-hero-content{

    position:absolute;

    left:40px;

    right:40px;

    bottom:40px;

    z-index:5;

    color:#fff;

}

/* MOBILE */

@media(max-width:768px){

    .rsr-modal-hero{

        height:320px;

        border-radius:
            0 0 28px 28px;
    }

    .rsr-modal-hero-content{

        left:22px;

        right:22px;

        bottom:24px;
    }
}

/* =========================================
PREMIUM BADGE
========================================= */

.rsr-modal-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 22px;

    margin-bottom:18px;

    border-radius:999px;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #9333ea
        );

    color:#fff;

    font-size:14px;

    font-weight:800;

    letter-spacing:.3px;

    box-shadow:
        0 10px 35px rgba(124,58,237,.35);

    backdrop-filter:
        blur(10px);

}

/* =========================================
TITLE
========================================= */

.rsr-modal-title-main{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

    font-size:68px;

    font-weight:900;

    line-height:1.05;

    letter-spacing:-2px;

    color:#fff;

    text-shadow:
        0 10px 30px rgba(0,0,0,.35);

}

/* ICON */

.rsr-title-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:78px;

    height:78px;

    border-radius:24px;

    background:
        rgba(255,255,255,.12);

    backdrop-filter:
        blur(18px);

    font-size:38px;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.18),
        0 10px 30px rgba(0,0,0,.22);

}

/* MOBILE */

@media(max-width:768px){

    .rsr-modal-title-main{

        font-size:42px;

        gap:12px;
    }

    .rsr-title-icon{

        width:58px;

        height:58px;

        font-size:28px;

        border-radius:18px;
    }
}

/* =========================================
CATEGORY BASED ICON COLORS
========================================= */

.rsr-title-icon{

    color:#fff;
}

/* SEDAN */

.rsr-title-icon.sedan{

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );
}

/* SUV */

.rsr-title-icon.suv{

    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );
}

/* LUXURY */

.rsr-title-icon.luxury{

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ea580c
        );
}

/* TEMPO */

.rsr-title-icon.tempo{

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #6d28d9
        );
}

/* =========================================
MODAL META
========================================= */

#rsRentalModalMeta{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:18px;

}

/* item */

.rsr-modal-meta-item{

    display:flex;

    align-items:center;

    gap:8px;

    color:
        rgba(255,255,255,.92);

    font-size:18px;

    font-weight:700;

    letter-spacing:.2px;

}

/* dot */

.rsr-modal-meta-dot{

    width:6px;

    height:6px;

    border-radius:999px;

    background:
        rgba(255,255,255,.45);

}

/* rating */

.rsr-rating{

    color:#facc15;

    text-shadow:
        0 0 20px rgba(250,204,21,.35);

}

/* mobile */

@media(max-width:768px){

    #rsRentalModalMeta{

        gap:10px;
    }

    .rsr-modal-meta-item{

        font-size:15px;
    }

    .rsr-modal-meta-dot{

        width:5px;
        height:5px;
    }
}

/* =========================================
SMART VEHICLE HIGHLIGHTS
========================================= */

.rsr-highlights-wrap{

    margin-top:26px;
}

/* title */

.rsr-section-title{

    font-size:18px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

    display:flex;

    align-items:center;

    gap:10px;
}

/* grid */

.rsr-highlights-grid{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}

/* pill */

.rsr-highlight-pill{

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 18px;

    border-radius:18px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );

    border:
        1px solid rgba(148,163,184,.15);

    box-shadow:
        0 10px 30px rgba(15,23,42,.06);

    font-size:14px;

    font-weight:700;

    color:#334155;

    transition:.35s;
}

/* hover */

.rsr-highlight-pill:hover{

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px rgba(15,23,42,.12);
}

/* =========================================
PREMIUM HIGHLIGHT COLORS
========================================= */

/* BLUE */

.rsr-highlight-blue{

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );

    color:#1d4ed8;

    border:
        1px solid rgba(37,99,235,.12);
}

/* GREEN */

.rsr-highlight-green{

    background:
        linear-gradient(
            135deg,
            #ecfdf5,
            #d1fae5
        );

    color:#047857;

    border:
        1px solid rgba(5,150,105,.12);
}

/* ORANGE */

.rsr-highlight-orange{

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    color:#ea580c;

    border:
        1px solid rgba(249,115,22,.12);
}

/* PURPLE */

.rsr-highlight-purple{

    background:
        linear-gradient(
            135deg,
            #f5f3ff,
            #ede9fe
        );

    color:#7c3aed;

    border:
        1px solid rgba(124,58,237,.12);
}

/* PINK */

.rsr-highlight-pink{

    background:
        linear-gradient(
            135deg,
            #fdf2f8,
            #fce7f3
        );

    color:#db2777;

    border:
        1px solid rgba(219,39,119,.12);
}

/* DARK */

.rsr-highlight-dark{

    background:
        linear-gradient(
            135deg,
            #1e293b,
            #0f172a
        );

    color:#fff;

    border:
        1px solid rgba(255,255,255,.08);
}

/* =========================================
SECTION HEADER
========================================= */

.rsr-section-header{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:24px;
}

/* =========================================
ICON
========================================= */

.rsr-section-icon{

    width:58px;
    height:58px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #ffedd5
        );

    box-shadow:
        0 12px 30px rgba(249,115,22,.18);

    flex-shrink:0;
}

/* =========================================
CONTENT
========================================= */

.rsr-section-content{

    flex:1;
}

/* =========================================
TITLE
========================================= */

.rsr-section-title{

    font-size:22px;

    font-weight:900;

    color:#0f172a;

    letter-spacing:-0.4px;

    line-height:1.1;
}

/* =========================================
SUBTITLE
========================================= */

.rsr-section-subtitle{

    margin-top:6px;

    font-size:14px;

    font-weight:600;

    color:#64748b;

    letter-spacing:.2px;
}

/* =========================================
GRID
========================================= */

.rsr-highlights-grid{

    display:flex;

    flex-wrap:wrap;

    gap:14px;
}


/* =========================================
MODAL BODY SCROLL
========================================= */

.rs-modal-main-body{

    max-width:1200px;

    margin:auto;

    padding:50px 40px 180px;

    height:100vh;

    overflow-y:auto;

    overflow-x:hidden;

    scroll-behavior:smooth;
}

/* =====================================================
2026 ULTRA PREMIUM RENTAL STICKY BAR
===================================================== */

.rsr-sticky-bar {

    position: fixed;

    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 99999;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 20px 24px;

    border-radius: 28px;

    backdrop-filter: blur(24px);

    -webkit-backdrop-filter: blur(24px);

    background:
        rgba(15, 23, 42, .82);

    border:
        1px solid rgba(255, 255, 255, .08);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .28);

    overflow: hidden;

    transition:
        transform .35s ease,
        padding .35s ease,
        backdrop-filter .35s ease,
        background .35s ease;

}

/* =========================================
ANIMATED BORDER
========================================= */

.rsr-sticky-bar:before {

    content: "";

    position: absolute;

    inset: -2px;

    background:
        linear-gradient(90deg,
            #2563eb,
            #7c3aed,
            #ec4899,
            #f59e0b,
            #2563eb);

    background-size: 300% 300%;

    animation: rsBorderMove 6s linear infinite;

    z-index: -2;

}

.rsr-sticky-bar:after {

    content: "";

    position: absolute;

    inset: 1px;

    border-radius: 26px;

    background:
        rgba(255, 255, 255, .85);

    z-index: -1;

}

@keyframes rsrBorderMove {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }

}

/* =========================================
AUTO HIDE
========================================= */

.rsr-sticky-hide {

    transform:
        translateY(140%);

}

/* =========================================
SHRINK
========================================= */

.rsr-sticky-small {

    padding:12px 18px !important;

    backdrop-filter:blur(24px);

}

.rsr-sticky-small .rsr-new-price {

    font-size: 30px !important;

}

.rsr-sticky-small .rsr-whatsapp-btn {

    padding:12px 18px !important;

    font-size:14px;

}

/* =========================================
PRICE BOX
========================================= */

.rsr-price-box {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

/* GLOW */

.rsr-price-box:before {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    background:
        radial-gradient(
            circle,
            rgba(245, 158, 11, .25),
            transparent 70%
        );

    top: -40px;

    left: -20px;

    z-index: -1;

    filter: blur(28px);

    animation: rsrFloatGlow 5s ease-in-out infinite;

}

@keyframes rsrFloatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* =========================================
TOP ROW
========================================= */

.rsr-price-top {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

}

/* =========================================
SAVE BADGE
========================================= */

.rsr-save-badge {

    background:
        linear-gradient(135deg,
            #ef4444,
            #dc2626);

    color: #fff;

    padding: 8px 16px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 900;

    animation: rspPulse 2s infinite;

    box-shadow:
        0 8px 24px rgba(239, 68, 68, .35);

}

/* SHIMMER */

.rsr-save-badge:before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.7),
            transparent
        );

    transform: skewX(-20deg);

    animation: rsrShimmer 2.5s infinite;

}

@keyframes rsrShimmer {

    100% {
        left: 140%;
    }

}

/* =========================================
OLD PRICE
========================================= */

.rsr-old-price {

    font-size: 16px;

    color: #9ca3af;

    text-decoration: line-through;

    font-weight: 700;

}

/* =========================================
MAIN PRICE
========================================= */

.rsr-new-price {

    font-size: 52px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -2px;

    background:
        linear-gradient(135deg,
            #f59e0b,
            #ea580c);

    background-clip: text;

    -webkit-background-clip: text;

    color: transparent;

}

/* =========================================
SUBTEXT
========================================= */

.rsr-price-sub {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    align-items: center;

}

/* =========================================
PILLS
========================================= */

.rsr-info-pill {

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 800;

    display: flex;

    align-items: center;

    gap: 8px;

}

/* COLORS */

.rsr-pill-red {

    background:
        linear-gradient(
            135deg,
            #fecaca,
            #fca5a5
        );

    color: #b91c1c;

}

.rsr-pill-orange {

    background:
        linear-gradient(
            135deg,
            #fed7aa,
            #fdba74
        );

    color: #c2410c;

}

.rsr-pill-green {

    background:
        linear-gradient(
            135deg,
            #dcfce7,
            #bbf7d0
        );

    color: #15803d;

}

.rsr-pill-blue {

    background:
        linear-gradient(
            135deg,
            #dbeafe,
            #bfdbfe
        );

    color: #1d4ed8;

}

.rsr-pill-yellow {

    background:
        linear-gradient(
            135deg,
            #fef3c7,
            #fde68a
        );

    color: #b45309;

}

/* =========================================
EXPIRED OFFER
========================================= */

.rsr-pill-expired{

    background:
    linear-gradient(
        135deg,
        #111827,
        #1f2937
    );

    color:#fff;

    animation:
    rsrExpiredPulse 1.5s infinite;

}

/* =========================================
EXPIRED PULSE
========================================= */

@keyframes rsrExpiredPulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.04);
        opacity:.85;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* =========================================
WHATSAPP BUTTON
========================================= */

.rsr-whatsapp-btn {

    border: none;

    padding: 18px 30px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #22c55e,
            #16a34a);

    color: #fff;

    font-size: 15px;

    font-weight: 900;

    cursor: pointer;

    white-space: nowrap;

    box-shadow:
        0 12px 30px rgba(34, 197, 94, .3);

}

.rsr-whatsapp-btn:hover {

    transform:
        translateY(-2px)
        scale(1.03);

}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px) {

    .rsr-sticky-bar {

        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 16px;

        flex-direction: column;

        align-items: flex-start;

    }

    .rsr-new-price {

        font-size: 38px;

    }

    .rsr-whatsapp-btn {

        width: 100%;

    }

}

/* =====================================
LIVE FEED WRAPPER
===================================== */

.rs-rental-live-wrapper{
    width:100%;
    margin-top:24px;
}

/* =====================================
HEADING
===================================== */

.rs-rental-feed-heading{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:30px;
    font-weight:800;
    color:#111;
    margin-bottom:18px;
    padding-left:4px;
    line-height:1;
}

/* RED DOT */

.rs-rental-feed-heading-dot{
    width:12px;
    height:12px;
    min-width:12px;
    border-radius:50%;
    background:#ff3b30;
    position:relative;
    animation:rsHeadingPulse 1.2s infinite;
}

/* GLOW */

.rs-rental-feed-heading-dot::after{
    content:"";
    position:absolute;
    inset:-5px;
    border-radius:50%;
    background:rgba(255,59,48,0.2);
    z-index:-1;
}

/* =====================================
FEED CONTAINER
===================================== */

#rsRentalLiveFeed{
    display:flex;
    flex-direction:column;
    gap:14px;
}

/* =====================================
CARD
===================================== */

.rs-rental-feed-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    width:100%;
    background:#fff;
    border-radius:22px;
    padding:16px;
    box-sizing:border-box;

    border:1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 4px 16px rgba(0,0,0,0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* HOVER */

.rs-rental-feed-card:hover{
    transform:translateY(-2px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.1);
}

/* =====================================
LEFT ICON
===================================== */

.rs-rental-feed-left{
    width:54px;
    height:54px;
    min-width:54px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    background:
        linear-gradient(
            135deg,
            #ff7b00,
            #ffb700
        );

    color:#fff;

    box-shadow:
        0 6px 16px rgba(255,123,0,0.3);
}

/* =====================================
CONTENT
===================================== */

.rs-rental-feed-content{
    flex:1;
    min-width:0;
}

.rs-rental-feed-title{
    font-size:15px;
    font-weight:700;
    color:#111;
    line-height:1.5;
    margin-bottom:4px;
}

.rs-rental-feed-sub{
    font-size:13px;
    color:#777;
    line-height:1.4;
}

/* =====================================
LIVE BADGE
===================================== */

.rs-rental-feed-live{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    padding:
        8px
        12px;

    border-radius:999px;

    background:
        rgba(255,59,48,0.08);

    color:#ff3b30;

    font-size:11px;
    font-weight:700;

    white-space:nowrap;
}

/* LIVE DOT */

.rs-rental-feed-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ff3b30;

    animation:rsFeedPulse 1s infinite;
}

/* =====================================
ANIMATION
===================================== */

.rs-rental-feed-animate{
    animation:rsFeedSlide 0.35s ease;
}

@keyframes rsFeedSlide{

    from{
        opacity:0;
        transform:
            translateY(-14px)
            scale(0.97);
    }

    to{
        opacity:1;
        transform:
            translateY(0)
            scale(1);
    }

}

/* PULSE */

@keyframes rsFeedPulse{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.5);
        opacity:0.5;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* HEADING PULSE */

@keyframes rsHeadingPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.25);
    }

    100%{
        transform:scale(1);
    }

}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

    .rs-rental-feed-card{
        padding:14px;
        border-radius:18px;
    }

    .rs-rental-feed-left{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:22px;
    }

    .rs-rental-feed-title{
        font-size:14px;
    }

    .rs-rental-feed-sub{
        font-size:12px;
    }

    .rs-rental-feed-live{
        padding:7px 10px;
        font-size:10px;
    }

    .rs-rental-feed-heading{
        font-size:18px;
    }

}

/* =====================================
RENTAL FULLSCREEN GALLERY
===================================== */

.rsr-fullscreen-gallery{
    position:fixed;
    inset:0;

    width:100%;
    height:100vh;

    background:rgba(0,0,0,0.96);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;

    z-index:999999;

    transition:0.3s ease;
}

/* ACTIVE */

.rsr-fullscreen-gallery.active{
    opacity:1;
    visibility:visible;
}

/* IMAGE */

.rsr-fullscreen-gallery img{
    max-width:92%;
    max-height:88vh;
    object-fit:contain;
    border-radius:14px;
}

/* CLOSE */

.rsr-fullscreen-close{
    position:absolute;
    top:24px;
    right:24px;

    width:44px;
    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    cursor:pointer;
}

/* COUNTER */

.rsr-fullscreen-counter{
    position:absolute;
    top:24px;
    left:24px;

    background:rgba(255,255,255,0.12);

    color:#fff;

    padding:10px 14px;

    border-radius:999px;

    font-size:14px;
    font-weight:700;
}

/* NAV */

.rsr-fullscreen-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:54px;
    height:54px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    cursor:pointer;
}

.rsr-prev{
    left:24px;
}

.rsr-next{
    right:24px;
}

/* =====================================
GALLERY IMAGE HOVER
===================================== */

.rsr-gallery-image{
    cursor:pointer;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

/* HOVER EFFECT */

.rsr-gallery-image:hover{
    transform:scale(1.03);
    opacity:0.95;
}

/* =====================================
MODERN EXPERIENCE OVERVIEW
===================================== */

.rsr-overview-card{
    position:relative;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.98),
            rgba(255,255,255,0.94)
        );

    border-radius:28px;

    padding:24px;

    margin-top:22px;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.06);

    overflow:hidden;

    backdrop-filter:blur(14px);
}

/* TOP */

.rsr-overview-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:22px;
}

/* ICON */

.rsr-overview-icon{
    width:72px;
    height:72px;

    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    background:
        linear-gradient(
            135deg,
            #111,
            #2b2b2b
        );

    color:#fff;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.18);
}

/* TITLE */

.rsr-overview-title{
    font-size:24px;
    font-weight:800;
    color:#111;
    margin-bottom:6px;
    line-height:1.2;
}

/* SUBTITLE */

.rsr-overview-sub{
    font-size:14px;
    color:#666;
    line-height:1.5;
}

/* CHIPS */

.rsr-chip-wrap{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:22px;
}

.rsr-chip{
    padding:
        10px
        16px;

    border-radius:999px;

    background:
        rgba(0,0,0,0.05);

    font-size:13px;
    font-weight:700;
    color:#111;

    backdrop-filter:blur(10px);
}

/* EXPERIENCE TAGS */

.rsr-experience-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:24px;
}

.rsr-exp-tag{
    padding:
        10px
        14px;

    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #f7f8ff,
            #ffffff
        );

    border:
        1px solid rgba(0,0,0,0.04);

    font-size:13px;
    font-weight:600;

    color:#333;
}

/* MOBILE */

@media(max-width:768px){

    .rsr-overview-card{
        padding:20px;
        border-radius:24px;
    }

    .rsr-overview-icon{
        width:60px;
        height:60px;
        font-size:28px;
    }

    .rsr-overview-title{
        font-size:20px;
    }

    .rsr-chip{
        font-size:12px;
        padding:9px 14px;
    }

}

/* =====================================
WHY CHOOSE VEHICLE
===================================== */

.rsr-why-wrapper{
    margin-top:28px;
}

/* HEADING */

.rsr-why-heading{
    font-size:22px;
    font-weight:800;
    color:#111;

    margin-bottom:18px;

    display:flex;
    align-items:center;
    gap:10px;
}

/* GRID */

.rsr-why-grid{
    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap:14px;
}

/* CARD */

.rsr-why-card{
    display:flex;
    align-items:center;
    gap:14px;

    background:#fff;

    border-radius:22px;

    padding:18px;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 4px 16px rgba(0,0,0,0.05);

    transition:0.25s ease;
}

/* HOVER */

.rsr-why-card:hover{

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.08);

}

/* ICON */

.rsr-why-icon{
    width:52px;
    height:52px;

    min-width:52px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    background:
        linear-gradient(
            135deg,
            #111,
            #2d2d2d
        );

    color:#fff;
}

/* TITLE */

.rsr-why-title{
    font-size:15px;
    font-weight:700;
    color:#111;

    line-height:1.5;
}

/* MOBILE */

@media(max-width:768px){

    .rsr-why-heading{
        font-size:20px;
    }

    .rsr-why-card{
        padding:16px;
        border-radius:18px;
    }

    .rsr-why-icon{
        width:46px;
        height:46px;
        min-width:46px;

        font-size:20px;
    }

    .rsr-why-title{
        font-size:14px;
    }

}

/* =====================================
DIFFERENT COLORS
===================================== */

.rsr-why-color-0{

    background:#eff6ff;

}

.rsr-why-color-0 .rsr-why-icon{

    background:#2563eb;

}

/* 1 */

.rsr-why-color-1{

    background:#f0fdf4;

}

.rsr-why-color-1 .rsr-why-icon{

    background:#16a34a;

}

/* 2 */

.rsr-why-color-2{

    background:#fff7ed;

}

.rsr-why-color-2 .rsr-why-icon{

    background:#ea580c;

}

/* 3 */

.rsr-why-color-3{

    background:#faf5ff;

}

.rsr-why-color-3 .rsr-why-icon{

    background:#9333ea;

}

/* 4 */

.rsr-why-color-4{

    background:#fdf2f8;

}

.rsr-why-color-4 .rsr-why-icon{

    background:#db2777;

}

/* 5 */

.rsr-why-color-5{

    background:#ecfeff;

}

.rsr-why-color-5 .rsr-why-icon{

    background:#0891b2;

}

/* =====================================
DEMAND TREND CARD
===================================== */

.rsr-demand-card{

    display:flex;

    align-items:center;

    gap:16px;

    margin-top:20px;

    padding:22px;

    border-radius:24px;

    background:#fff;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06);
}

/* =====================================
ICON
===================================== */

.rsr-demand-icon{

    width:56px;

    height:56px;

    min-width:56px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #ef4444
        );

    color:#fff;

    box-shadow:
        0 8px 20px rgba(245,158,11,0.28);
}

/* =====================================
CONTENT
===================================== */

.rsr-demand-content{

    flex:1;
}

/* SMALL LABEL */

.rsr-demand-heading{

    font-size:13px;

    font-weight:700;

    letter-spacing:0.4px;

    text-transform:uppercase;

    color:#64748b;

    margin-bottom:8px;
}

/* MAIN TEXT */

.rsr-demand-title{

    font-size:20px;

    font-weight:800;

    line-height:1.4;

    color:#111827;

    margin-bottom:10px;
}

/* SUBTEXT */

.rsr-demand-sub{

    font-size:13px;

    line-height:1.6;

    color:#64748b;
}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

    .rsr-demand-card{

        padding:18px;

        border-radius:20px;
    }

    .rsr-demand-icon{

        width:48px;

        height:48px;

        min-width:48px;

        font-size:22px;
    }

    .rsr-demand-title{

        font-size:17px;
    }

}

/* =====================================
AVAILABILITY METER
===================================== */

.rsr-availability-card{

    margin-top:20px;

    padding:22px;

    border-radius:24px;

    background:#fff;

    border:
        1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 8px 24px rgba(0,0,0,0.06);
}

.rsr-availability-heading{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;
}

.rsr-availability-icon{

    width:52px;

    height:52px;

    min-width:52px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #7c3aed
        );

    color:#fff;

    box-shadow:
        0 6px 18px rgba(37,99,235,0.25);
}

.rsr-availability-heading-title{

    font-size:18px;

    font-weight:800;

    color:#111827;

    margin-bottom:4px;
}

.rsr-availability-heading-sub{

    font-size:13px;

    color:#64748b;

    line-height:1.5;
}




/* TOP */

.rsr-availability-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:14px;
}

/* TITLE */

.rsr-availability-title{

    font-size:15px;

    font-weight:700;

    color:#111827;
}

/* PERCENT */

.rsr-availability-percent{

    padding:
        8px
        14px;

    border-radius:999px;

    font-size:13px;

    font-weight:800;
}

/* BAR */

.rsr-availability-bar{

    width:100%;

    height:14px;

    border-radius:999px;

    overflow:hidden;

    background:#edf2f7;

    margin-bottom:14px;
}

/* FILL */

.rsr-availability-fill{
    height:100%;

    border-radius:999px;

    background:
        linear-gradient(
            90deg,
            #22c55e,
            #3b82f6
        );

    transition:
        width 1.2s ease;
}

/* SUB */

.rsr-availability-sub{

    font-size:13px;

    color:#64748b;

    line-height:1.6;
}

/* =====================================
SECTION HEADING
===================================== */

.rsr-section-heading{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:20px;
    font-weight:800;

    color:#111;

    margin-bottom:16px;
    margin-top:16px;
}

.rsr-section-heading-icon{
    width:42px;
    height:42px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #dbeafe
        );

    font-size:30px;
}

/* =====================================
AI TITLE
===================================== */

.rsr-ai-title{

    font-size:13px;

    font-weight:700;

    letter-spacing:0.5px;

    text-transform:uppercase;

    color:#64748b;

    margin-bottom:8px;
}

/* =====================================
BADGE COLORS
===================================== */

.rsr-badge-green{

    background:#dcfce7;

    color:#16a34a;
}

.rsr-badge-blue{

    background:#dbeafe;

    color:#2563eb;
}

.rsr-badge-orange{

    background:#fef3c7;

    color:#d97706;
}

.rsr-badge-red{

    background:#fee2e2;

    color:#dc2626;
}

/* =====================================
BAR COLORS
===================================== */

.rsr-bar-green{

    background:
        linear-gradient(
            90deg,
            #10b981,
            #34d399
        );
}

.rsr-bar-blue{

    background:
        linear-gradient(
            90deg,
            #2563eb,
            #60a5fa
        );
}

.rsr-bar-orange{

    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #fbbf24
        );
}

.rsr-bar-red{

    background:
        linear-gradient(
            90deg,
            #ef4444,
            #f87171
        );
}

/* =====================================
MOBILE
===================================== */

@media(max-width:768px){

    .rsr-availability-card{

        padding:18px;
    }

    .rsr-availability-icon{

        width:46px;

        height:46px;

        min-width:46px;

        font-size:22px;
    }

    .rsr-availability-heading-title{

        font-size:16px;
    }

    .rsr-availability-heading-sub{

        font-size:12px;
    }

    .rsr-availability-percent{

        font-size:12px;

        padding:
            7px
            12px;
    }

}

.rsr-demand-critical {
    background: linear-gradient(135deg, #fff1f1, #ffe5e5);
    border-left: 4px solid #ff3b30;
}

.rsr-demand-high {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-left: 4px solid #f97316;
}

.rsr-demand-medium {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-left: 4px solid #facc15;
}

.rsr-demand-low {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-left: 4px solid #22c55e;
}

.rsr-demand-new {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-left: 4px solid #3b82f6;
}

/* =========================================
2026 SMART BOOKING UI
========================================= */

.rs-booking-overlay{

    position:fixed;
    inset:0;

    display:none;
    align-items:center;
    justify-content:center;

    padding:24px;

    background:
    radial-gradient(
        circle at top right,
        rgba(59,130,246,0.25),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom left,
        rgba(16,185,129,0.25),
        transparent 30%
    ),
    rgba(3,7,18,0.75);

    backdrop-filter:blur(18px);

    z-index:999999;
}

.rs-booking-overlay.active{

    display:flex;
}

/* =========================================
MODAL
========================================= */

.rs-booking-card-modern{

    width:min(1150px,95vw);

    max-height:92vh;

    overflow-y:auto;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.96),
        rgba(248,250,252,0.92)
    );

    border:1px solid rgba(255,255,255,0.5);

    border-radius:34px;

    padding:30px;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.35);

    animation:rsBookingPop .28s ease;

    position:relative;

    scrollbar-width:none;
}

.rs-booking-card-modern::-webkit-scrollbar{

    display:none;
}

/* =========================================
ANIMATION
========================================= */

@keyframes rsBookingPop{

    from{

        opacity:0;
        transform:
        translateY(20px)
        scale(.96);
    }

    to{

        opacity:1;
        transform:
        translateY(0)
        scale(1);
    }
}

/* =========================================
TOP BAR
========================================= */

.rs-booking-top{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:20px;

    margin-bottom:28px;

    position:sticky;
    top:-30px;

    padding-bottom:14px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.75)
    );

    backdrop-filter:blur(12px);

    z-index:50;
}

/* =========================================
TITLE AREA
========================================= */

.rs-booking-mini{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4
    );

    color:#fff;

    font-size:13px;
    font-weight:700;

    letter-spacing:0.5px;

    white-space:nowrap;

    box-shadow:
    0 10px 25px rgba(37,99,235,0.25);
}

.rs-booking-top h2{

    margin-top:14px;

    font-size:34px;
    line-height:1.2;

    color:#0f172a;

    font-weight:900;

    max-width:600px;
}

/* =========================================
CLOSE BUTTON
========================================= */

.rs-booking-close{

    min-width:52px;
    height:52px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #f1f5f9
    );

    color:#111827;

    font-size:22px;
    font-weight:700;

    cursor:pointer;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.08);

    transition:0.25s;
}

.rs-booking-close:hover{

    transform:rotate(90deg);

    background:#ef4444;

    color:#fff;
}

/* =========================================
GRID
========================================= */

.rs-modern-booking-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;
}

/* =========================================
LEFT CARD
========================================= */

.rs-booking-vehicle-card{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,0.6);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* =========================================
IMAGE
========================================= */

.rs-booking-image{

    width:100%;
    height:320px;

    object-fit:cover;
}

/* =========================================
CONTENT
========================================= */

.rs-booking-content{

    padding:28px;
}

.rs-booking-content h2{

    font-size:34px;
    font-weight:900;

    color:#0f172a;

    margin-bottom:20px;
}

/* =========================================
TAGS
========================================= */

.rs-booking-tags{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.rs-booking-tags span{

    padding:10px 16px;

    border-radius:999px;

    font-size:13px;
    font-weight:700;

    color:#fff;
}

/* CATEGORY */

.rs-booking-tags span:nth-child(1){

    background:
    linear-gradient(
        135deg,
        #8b5cf6,
        #7c3aed
    );
}

/* SEATS */

.rs-booking-tags span:nth-child(2){

    background:
    linear-gradient(
        135deg,
        #06b6d4,
        #0891b2
    );
}

/* TRANSMISSION */

.rs-booking-tags span:nth-child(3){

    background:
    linear-gradient(
        135deg,
        #f59e0b,
        #ea580c
    );
}

/* =========================================
PRICE
========================================= */

.rs-booking-price{

    margin-top:28px;

    font-size:42px;
    font-weight:900;

    color:#10b981;

    text-shadow:
    0 10px 30px rgba(16,185,129,0.25);
}

/* =========================================
RIGHT FORM
========================================= */

.rs-booking-form-card{

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.95),
        rgba(248,250,252,0.95)
    );

    border-radius:30px;

    padding:30px;

    border:1px solid rgba(255,255,255,0.7);

    box-shadow:
    0 20px 50px rgba(0,0,0,0.08);
}

/* =========================================
FIELDS
========================================= */

.rs-field{

    margin-bottom:22px;
}

.rs-field label{

    display:block;

    margin-bottom:10px;

    font-size:14px;
    font-weight:800;

    color:#334155;
}

.rs-field input{

    width:100%;

    padding:18px 20px;

    border-radius:20px;

    border:1px solid #dbe4ee;

    background:#fff;

    font-size:15px;

    transition:0.25s;

    outline:none;
}

.rs-field input:focus{

    border-color:#3b82f6;

    box-shadow:
    0 0 0 5px rgba(59,130,246,0.12);

    transform:translateY(-1px);
}

/* =========================================
CALCULATE BUTTON
========================================= */

.rs-calculate-btn{

    width:100%;

    padding:18px;

    border:none;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    font-size:16px;
    font-weight:800;

    cursor:pointer;

    transition:0.3s;

    box-shadow:
    0 18px 40px rgba(37,99,235,0.28);
}

.rs-calculate-btn:hover{

    transform:
    translateY(-3px)
    scale(1.01);

    box-shadow:
    0 24px 50px rgba(37,99,235,0.35);
}

/* =========================================
ESTIMATE BOX
========================================= */

.rs-estimate-box{

    margin-top:24px;

    padding:26px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #111827
    );

    color:#fff;

    display:none;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.25);
}

.rs-estimate-box.active{

    display:block;
}

/* =========================================
MODERN FARE PILLS
========================================= */

.rs-fare-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:16px;

    margin-bottom:24px;
}

/* =========================================
PILL CARD
========================================= */

.rs-fare-pill{

    position:relative;

    overflow:hidden;

    padding:20px;

    border-radius:24px;

    background:#ffffff;

    border:1px solid #e2e8f0;

    box-shadow:
    0 10px 30px rgba(15,23,42,0.08);

    transition:0.3s;
}

.rs-fare-pill:hover{

    transform:translateY(-3px);

    box-shadow:
    0 20px 40px rgba(15,23,42,0.12);
}

/* =========================================
TOP ICON BADGE
========================================= */

.rs-fare-pill::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:5px;

    background:
    linear-gradient(
        90deg,
        #3b82f6,
        #06b6d4
    );
}

/* =========================================
LABEL
========================================= */

.rs-fare-pill-label{

    display:flex;
    align-items:center;
    gap:8px;

    font-size:13px;

    font-weight:700;

    color:#64748b;

    margin-bottom:12px;

    letter-spacing:0.3px;
}

/* =========================================
VALUE
========================================= */

.rs-fare-pill-value{

    font-size:28px;

    font-weight:900;

    color:#0f172a;

    line-height:1.2;
}

/* =========================================
INDIVIDUAL COLORS
========================================= */

/* DISTANCE */

.rs-fare-pill.distance::before{

    background:
    linear-gradient(
        90deg,
        #ec4899,
        #f43f5e
    );
}

/* BASE FARE */

.rs-fare-pill.fare::before{

    background:
    linear-gradient(
        90deg,
        #3b82f6,
        #2563eb
    );
}

/* TOLL */

.rs-fare-pill.toll::before{

    background:
    linear-gradient(
        90deg,
        #f59e0b,
        #ea580c
    );
}

/* DRIVER */

.rs-fare-pill.driver::before{

    background:
    linear-gradient(
        90deg,
        #8b5cf6,
        #7c3aed
    );
}

/* =========================================
TOTAL BOX
========================================= */

.rs-total-box{

    margin-top:10px;

    padding:24px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #10b981,
        #059669
    );

    box-shadow:
    0 15px 40px rgba(16,185,129,0.28);

    text-align:center;
}

.rs-total-label{

    font-size:14px;

    font-weight:700;

    color:
    rgba(255,255,255,0.85);

    margin-bottom:10px;

    letter-spacing:.5px;
}

.rs-total-price{

    font-size:40px;

    font-weight:900;

    color:#fff;

    line-height:1;
}

/* =========================================
NOTE
========================================= */

.rs-fare-note{

    margin-top:18px;

    text-align:center;

    font-size:12px;

    color:
    rgba(255,255,255,0.65);

    line-height:1.7;
}

/* =========================================
PREMIUM BOOKING BUTTON
========================================= */

.rs-booking-btn-modern{

    width:100%;

    margin-top:28px;

    padding:20px 24px;

    border:none;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #10b981 0%,
        #06b6d4 50%,
        #2563eb 100%
    );

    color:#fff;

    font-size:17px;
    font-weight:800;

    letter-spacing:0.3px;

    cursor:pointer;

    position:relative;

    overflow:hidden;

    transition:
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;

    box-shadow:
    0 20px 50px rgba(16,185,129,0.28);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

/* =========================================
GLOW EFFECT
========================================= */

.rs-booking-btn-modern::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:120%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition:0.7s;
}

/* =========================================
HOVER
========================================= */

.rs-booking-btn-modern:hover{

    transform:
    translateY(-3px)
    scale(1.01);

    box-shadow:
    0 28px 60px rgba(16,185,129,0.38);
}

.rs-booking-btn-modern:hover::before{

    left:120%;
}

/* =========================================
ACTIVE CLICK
========================================= */

.rs-booking-btn-modern:active{

    transform:scale(.98);
}

/* =========================================
DISABLED
========================================= */

.rs-booking-btn-modern:disabled{

    cursor:not-allowed;

    opacity:0.7;

    transform:none;

    box-shadow:none;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .rs-booking-btn-modern{

        padding:18px;

        font-size:16px;

        border-radius:20px;
    }
}

/* =========================================
MOBILE
========================================= */

@media(max-width:900px){

    .rs-modern-booking-grid{

        grid-template-columns:1fr;
    }

    .rs-booking-card-modern{

        padding:18px;

        border-radius:24px;

        max-height:95vh;
    }

    .rs-booking-top{

        top:-18px;
    }

    .rs-booking-top h2{

        font-size:24px;
    }

    .rs-booking-content h2{

        font-size:26px;
    }

    .rs-booking-image{

        height:240px;
    }

    .rs-booking-price{

        font-size:34px;
    }

    .rs-field input{

        padding:16px;
    }

    .rs-booking-form-card{

        padding:22px;
    }
}

@media(max-width:768px){

    .rs-fare-grid{

        grid-template-columns:1fr;
    }

    .rs-total-price{

        font-size:32px;
    }
}

/* =========================================
DAY RENT BUTTON
========================================= */

.rs-day-btn{

    margin-top:8px;

    background:
    linear-gradient(
        135deg,
        #ec4899,
        #7c3aed
    );

    box-shadow:
    0 18px 40px rgba(236,72,153,0.28);
}

.rs-day-btn:hover{

    box-shadow:
    0 24px 50px rgba(236,72,153,0.38);
}

/* =========================================
BUTTON LOADING STATE
========================================= */

.rs-calculate-btn:disabled{

    opacity:0.75;

    cursor:not-allowed;

    transform:none !important;

    filter:grayscale(.1);
}

/* =========================================
JOURNEY TOGGLE
========================================= */

.rs-journey-toggle{

    display:flex;

    gap:12px;

    margin-top:10px;
}

.rs-journey-btn{

    flex:1;

    padding:16px;

    border:none;

    border-radius:18px;

    background:#f1f5f9;

    color:#334155;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:0.25s;
}

.rs-journey-btn.active{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    color:#fff;

    box-shadow:
    0 12px 30px rgba(37,99,235,0.25);
}

.rs-journey-btn:hover{

    transform:translateY(-2px);
}

.rs-journey-btn.active{

    animation:
    rsGlow 2s infinite alternate;
}

@keyframes rsGlow{

    from{

        box-shadow:
        0 10px 25px rgba(37,99,235,0.25);
    }

    to{

        box-shadow:
        0 20px 40px rgba(124,58,237,0.35);
    }
}