/* =========================================
   CUSTOM AJAX CART POPUP
========================================= */
.hph-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.hph-popup-content {
    background: #151515;
    color: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: popupSlideIn 0.3s ease-out;
}

.hph-popup-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.hph-popup-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hph-popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hph-btn-continue {
    background: #fff;
    color: #111;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hph-btn-cart {
    background: #bd002a;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hph-btn-cart:hover {
    background: #960022;
    color: #fff;
}

.hph-btn-continue:hover {
    background: #e5e5e5;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}