/* Hide default WooCommerce messages on shop pages */
.woocommerce-message,
.woocommerce-info {
    display: none !important;
}

/* Add to Cart Popup Overlay */
.evl-cart-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.evl-cart-popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Container */
.evl-cart-popup-modal {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

/* Close Button */
.evl-cart-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    transition: color 0.2s;
}

.evl-cart-popup-close:hover {
    color: #333;
}

/* Content */
.evl-cart-popup-content {
    text-align: center;
}

/* Success Icon */
.evl-cart-popup-icon {
    width: 60px;
    height: 60px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    font-weight: bold;
}

.evl-cart-popup-content h3 {
    margin: 0 0 20px;
    font-size: 22px;
    color: #333;
}

/* Product Display */
.evl-cart-popup-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: left;
}

.evl-cart-popup-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.evl-cart-popup-details {
    flex: 1;
}

.evl-cart-popup-name {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.evl-cart-popup-price {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Buttons */
.evl-cart-popup-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.evl-cart-popup-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s;
}

.evl-cart-popup-btn-primary {
    background: #7b2cbf;
    color: #fff;
}

.evl-cart-popup-btn-primary:hover {
    background: #6a24a8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 44, 191, 0.3);
}

.evl-cart-popup-btn-secondary {
    background: #fff;
    color: #7b2cbf;
    border: 2px solid #7b2cbf;
}

.evl-cart-popup-btn-secondary:hover {
    background: #f3e5ff;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 480px) {
    .evl-cart-popup-modal {
        padding: 20px;
        max-width: 95%;
    }

    .evl-cart-popup-product {
        flex-direction: column;
        text-align: center;
    }

    .evl-cart-popup-image {
        width: 100px;
        height: 100px;
    }
}
