/* ==========================================
   CART NOTIFICATION
   ========================================== */
.cart-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cart-notification svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cart-notification.success {
    border-left: 4px solid #10b981;
}

.cart-notification.success svg {
    color: #10b981;
}

.cart-notification.error {
    border-left: 4px solid #ef4444;
}

.cart-notification.error svg {
    color: #ef4444;
}

.cart-notification span {
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cart-notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
