/* Add to cart toast */
.px-toast {
    background-color: #323232;
    color: #fff;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: fadeIn 0.3s ease, fadeOut 0.3s ease 3s;
    font-size: 14px;
    font-weight: 500;
    min-width: 220px;
    max-width: 320px;
    word-wrap: break-word;
    position: relative;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.remove-from-cart {
    border: 0px;
    background-color: transparent;
    color: #b25607;
    font-size: 14px;
}
.remove-from-cart:hover {
    border: 0px;
    background-color: transparent;
    color: #ffca9b;
    font-size: 14px;
}
.mini-cart__box{
    border: 1px solid #f2f2f2;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
}
.span-label__product{
    background-color: #ffca9b;
    color:rgb(68, 68, 68);
    border-radius: 10px;
    font-size: 12px;
    padding: 3px 10px;
    margin-right: 10px;
}
.span-label__productsubtitle{
    font-size: 12px;
    color: #4b4848;
}
.product-text {
    margin: 0px;
    padding: 0px;
}