/* Cart Notification Styles */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: slideInUp 0.3s ease-out;
    max-width: 400px;
}

.cart-notification.hiding {
    animation: slideOutDown 0.3s ease-out;
}

.cart-notification-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.notification-icon {
    color: #82ce29;
    font-size: 24px;
    text-align: center;
}

.notification-icon i {
    animation: scaleIn 0.3s ease-out;
}

.notification-text {
    text-align: center;
    color: #333;
    font-size: 14px;
}

.notification-text strong {
    color: #000;
    display: block;
    margin-bottom: 4px;
}

.notification-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notification-actions .btn {
    flex: 1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    line-height: 1;
}

.notification-close:hover {
    color: #333;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .cart-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
