/* ==========================================
   Overlay
========================================== */

#wowrsvp-upsell-popup{
    position:fixed;
    inset:0;
    z-index:999999;
}

.wowrsvp-popup-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.wowrsvp-popup-window{
    position:relative;
    width:760px;
    max-width:95%;
    max-height:85vh;
    margin:4vh auto;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
}

/* ==========================================
   Header
========================================== */

.wowrsvp-popup-header{
    padding:35px 40px 20px;
    text-align:center;
    border-bottom:1px solid #f0f0f0;
}

.wowrsvp-popup-header h2{
    margin:0 0 12px;
    font-size:44px;
    line-height:1.1;
}

.wowrsvp-popup-header p{
    margin:0;
    color:#666;
    font-size:17px;
}

/* ==========================================
   Products Area
========================================== */

.wowrsvp-products{
    flex:1;
    overflow-y:auto;
    padding:25px;
}

/* ==========================================
   Product Card
========================================== */

#wowrsvp-upsell-popup .wowrsvp-product-card{
    display:grid;
    grid-template-columns:70px 1fr 150px;
    align-items:center;
    gap:20px;

    padding:14px 18px;
    margin-bottom:14px;

    border:1px solid #ececec;
    border-radius:12px;

    background:#fff;
}

.wowrsvp-product-left{
    display:flex;
    align-items:center;
    gap:16px;
    flex:1;
}

.wowrsvp-product-image{
    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.wowrsvp-product-image img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    display:block;
}

.wowrsvp-product-details{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.wowrsvp-product-info{
    flex:1;
    min-width:0;
}

.wowrsvp-product-actions{

    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;

}

.wowrsvp-product-details h3{
    margin:0 0 4px;
    font-size:20px;
    line-height:1.3;
}

.wowrsvp-product-price{
    margin:0;
    font-size:18px;
    color:#777;
}

.wowrsvp-add-to-cart{
    width:140px;

    height:44px;

    background:#000;
    color:#fff;

    border:none;
    border-radius:8px;

    cursor:pointer;

    font-weight:600;

    transition:.2s;
}

.wowrsvp-add-to-cart:hover{
    opacity:.85;
}

.wowrsvp-add-to-cart:hover{
    opacity:.85;
}

/* ==========================================
   Footer
========================================== */

.wowrsvp-popup-footer{
    padding:24px 30px;
    text-align:center;
    border-top:1px solid #ececec;
}

.wowrsvp-skip{
    background:none;
    border:none;
    color:#000;
    font-size:16px;
    cursor:pointer;
    text-decoration:underline;
    display:inline-block;
}

.wowrsvp-skip:hover{
    opacity:.7;
}

/* ==========================================
   When the upsell product added to the cart
========================================== */

.wowrsvp-added{

    background:#4CAF50 !important;
    color:#fff !important;
    cursor:default;

}

.wowrsvp-checkout-ready{

    background:#000 !important;
    color:#fff !important;
    border:1px solid #000 !important;

}

.wowrsvp-checkout-ready:hover{

    background:#222 !important;
    border-color:#222 !important;
    color:#fff !important;

}

.wowrsvp-envelope-note{

    margin-top:8px;

    font-size:14px;

    line-height:1.35;

    color:#666;

}

.wowrsvp-envelope-note br{

    display:block;

    content:"";

    margin-top:3px;

}

.wowrsvp-popup-close{

    position:absolute !important;

    top:16px;
    right:16px;
    left:auto !important;

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    margin:0;

    border:none;
    border-radius:8px;

    background:#000 !important;
    color:#fff !important;

    font-size:18px;
    font-weight:600;
    line-height:1;

    cursor:pointer;

    transition:all .2s ease;

    z-index:999999;

}

.wowrsvp-popup-close:hover{

    background:#222 !important;

    transform:scale(1.05);

}

.wowrsvp-envelope-total{

    margin-top:8px;

    font-size:15px;

    line-height:1.4;

    color:#222;

    font-weight:600;

}

.wowrsvp-envelope-total strong{

    color:#222;

    font-weight:700;

}

/* ==========================================
   Mobile Layout
========================================== */

@media (max-width:768px){

    #wowrsvp-upsell-popup .wowrsvp-product-card{

        display:flex;
        flex-direction:column;

        align-items:center;
        text-align:center;

        gap:15px;

        padding:20px;

    }

    .wowrsvp-product-image{

        margin:0;

    }

    .wowrsvp-product-image img{

        width:70px;
        height:70px;

    }

    .wowrsvp-product-details{

        width:100%;

    }

    .wowrsvp-product-details h3{

        font-size:24px;
        margin-bottom:8px;

    }

    .wowrsvp-product-price{

        margin-bottom:12px;

    }

    .wowrsvp-envelope-note{

        font-size:14px;
        line-height:1.5;

    }

    .wowrsvp-envelope-total{

        font-size:15px;

    }

    .wowrsvp-product-actions{

        width:100%;

        margin-top:10px;

    }

    .wowrsvp-add-to-cart{

        width:100%;

    }

}