/**
 * Custom Cart Popup CSS - Only popup styles
 */

/* Popup overlay styles */
.custom-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0,0,0,0.7) !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.custom-popup-content {
    background: white !important;
    padding: 40px 50px !important;
    border-radius: 10px !important;
    max-width: 600px !important;
    width: 80% !important;
    min-height: 300px !important;
    text-align: center !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

.popup-close-btn {
    position: relative !important;
    box-shadow: none !important;
    width: 200px !important;
    height: 3rem !important;
    overflow: hidden !important;
    background: #fff !important;
    color: #323232 !important;
    border: 1px solid #323232 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: auto !important;
}

.popup-close-btn:hover {
    background: #f0f0f0 !important;
}

.popup-close-btn:focus {
    
    outline-offset: 2px !important;
}