/**
 * Custom styling for WooCommerce Cart SweetAlert Notifications
 * Simple, clean auto-closing notification
 */

/* Main popup styling */
.cart-sweetalert-popup {
    border-radius: 15px !important;
    padding: 30px 40px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Success icon animation */
.swal2-icon.swal2-success {
    animation: scaleIn 0.5s ease-in-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title styling */
.cart-sweetalert-popup .swal2-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-sweetalert-popup {
        padding: 25px 30px !important;
    }
    
    .cart-sweetalert-popup .swal2-title {
        font-size: 20px !important;
    }
}
