/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
 Description:  A custom child theme for Astra
 Author:       Your Name
 Author URI:   https://yourwebsite.com
 License:      GPL2
 License URI:  https://www.gnu.org
 Tags:         light, responsive, flexbox
 Text Domain:  astra-child
*/



.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9999;
}
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

/* Hide quantity selector on single product pages */
.single-product .quantity {
    display: none !important;
}