/* =========================
   MODAL
========================= */
body.rush-qv-open {
    overflow: hidden;
}

.rush-qv-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.rush-qv-modal.active {
    opacity: 1;
    visibility: visible;
}


/* =========================
   OVERLAY
========================= */

.rush-qv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(4px);
}


/* =========================
   WRAPPER
========================= */

.rush-qv-wrap {
    position: relative;
    width: 95%;
    max-width: 1150px;
    margin: 40px auto;
    z-index: 2;
}


/* =========================
   CONTENT
========================= */

.rush-qv-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}


/* =========================
   CLOSE BUTTON
========================= */

.rush-qv-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow: 0 5px 20px rgba(0,0,0,.15);

    transition: .3s ease;
}

.rush-qv-close:hover {
    transform: rotate(90deg);
}


/* =========================
   LOADER
========================= */

.rush-qv-loader {
    padding: 100px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}


/* =========================
   PRODUCT LAYOUT
========================= */

.rush-qv-product {
    display: flex;
    gap: 60px;
    padding: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}


/* =========================
   LEFT SIDE
========================= */

.rush-qv-left {
    flex: 1;
    min-width: 320px;
}

.rush-qv-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}


/* =========================
   RIGHT SIDE
========================= */

.rush-qv-right {
    flex: 1;
    min-width: 320px;
}


/* =========================
   TITLE
========================= */

.rush-qv-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
}



/* =========================
   DESCRIPTION
========================= */

.rush-qv-description {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}



/* =========================
   CTA BUTTONS
========================= */

.rush-qv-cta-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rush-qv-cta {
    flex: 1;
    min-width: 180px;

    text-align: center;
    text-decoration: none;

    padding: 16px 20px;

    border-radius: 10px;

    font-weight: 700;

    transition: .3s ease;
}

.rush-qv-whatsapp {
    background: #25D366;
    color: #fff;
}

.rush-qv-call {
    background: #111;
    color: #fff;
}

.rush-qv-cta:hover {
    transform: translateY(-2px);
    opacity: .95;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .rush-qv-wrap {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .rush-qv-product {
        padding: 20px;
        gap: 35px;
    }

    .rush-qv-title {
        font-size: 26px;
    }

    .rush-qv-close {
        top: 10px;
        right: 10px;
    }

}