
.shantala-popup {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    width: 60%;
    max-width: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 20px;
    font-family: Arial, sans-serif;
}
.shantala-popup .popup-content { position: relative; }
.shantala-popup .close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.popup-product { display: flex; gap: 15px; }
.popup-product img { width: 100px; height: 100px; object-fit: cover; border-radius: 8px; }
.popup-info h3 { margin: 0; font-size: 16px; font-weight: bold; }
.popup-info p { color: red; font-weight: bold; }
.popup-btn {
    margin-top: 10px;
    background: red;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
.popup-qty button {
    background: #ccc;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
}
