/* ==========================================
   QUICK VIEW OVERLAY
========================================== */

#quick-view-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    z-index:9998;
}

/* ==========================================
   MODAL
========================================== */

#quick-view-modal{

    display:none;

    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90%;
    max-width:950px;

    background:#fff;

    border-radius:15px;

    overflow:hidden;

    z-index:9999;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.qv-close{

    position:absolute;

    top:15px;
    right:20px;

    font-size:34px;
    cursor:pointer;

    line-height:1;

    z-index:10;

}

.qv-loader{

    text-align:center;

    padding:80px;

    font-size:18px;

}

/* ==========================================
   CONTENT
========================================== */

.qv-wrapper{

    display:flex;

    align-items:flex-start;

}

.qv-image{

    width:45%;

    background:#fafafa;

    padding:30px;

}

.qv-image img{

    width:100%;
    height:auto;

}

.qv-content{

    width:55%;

    padding:40px;

}

.qv-content h2{

    margin-bottom:15px;

    font-size:30px;

}

.qv-content .price{

    font-size:26px;

    font-weight:700;

    color:#173B6D;

    margin-bottom:20px;

}

.qv-content .desc{

    line-height:1.7;

    margin-bottom:25px;

}

.qv-content .button{

    display:inline-block;

    background:#173B6D;

    color:#fff;

    padding:14px 35px;

    border-radius:8px;

    text-decoration:none;

}

.qv-content .button:hover{

    background:#0d2d56;

}

/* ==========================================
   QUICK VIEW BUTTON
========================================== */

.custom-quick-view-btn{

    display:block;

    width:100%;

    text-align:center;

    background:#fff;

    color:#173B6D;

    border:2px solid #173B6D;

    padding:12px;

    margin-top:10px;

    border-radius:8px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.custom-quick-view-btn:hover{

    background:#173B6D;

    color:#fff;

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.qv-wrapper{

flex-direction:column;

}

.qv-image,
.qv-content{

width:100%;

}

.qv-content{

padding:25px;

}

}