.pg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}
/* Drawer */
#pgCartDrawer {
    position: fixed;
    right: -400px;
    top: 0;
    width: 380px;
    height: 100vh;
    background: #fff;
    transition: 0.3s;
    z-index: 99999;
    overflow-y: auto;
}
#pgCartDrawer.open {
    right: 0;
}
.pg-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Item card */
.pg-drawer-item {
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.drawer-thumb {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

/* Quantity buttons */
.pg-qty-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-minus, .pg-plus {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8;
    cursor: pointer;
    border-radius: 6px;
    font-size: 20px;
}

.pg-minus:hover, .pg-plus:hover {
    background: #eee;
}

.pg-qty-box {
    width: 45px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
}



.cart-image-drawer{
    width: 50px;
    height: 50px;
    object-fit: cover;
}