/* Afbeelding in cart */
.cart-image {
    width: 10rem;
    height: 10rem;
    background-color: white;
}

/* Toast types */
.quote-toast-success {
    background: #198754; /* Bootstrap success green */
}
.quote-toast-danger {
    background: #dc3545; /* Bootstrap danger red */
}
.quote-toast-info {
    background: #0d6efd; /* Bootstrap primary blauw */
}

/* Basis toast */
.quote-toast {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    color: #fff;
    font-weight: 500;
    padding: 12px 24px !important;
    border-radius: 5px;
    position: fixed;
    font-family: inherit;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    pointer-events: none;
}

/* Actieve staat (fade in) */
.quote-toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Uitgaande staat (fade out) */
.quote-toast.hide {
    opacity: 0;
    transform: translateY(10px);
}


@media (max-width: 767.98px) {
    .cart-image {
        width: 8rem;
        height: 8rem;
    }
}