﻿


/* PRODUTOS */
.cart-items {
    flex: 3;
    background: white;
    font-family: Roboto;
}

    .cart-items h2 {
        margin-block-start: 0.83em;
        margin-block-end: 0.83em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        unicode-bidi: isolate;
        font-size: 22px;
        color: #007dc3;
        font-family: 'League Spartan';
    }

.cart-item {
    display: flex;
    border-bottom: 1px solid #DDD;
    padding: 20px 0;
}

    .cart-item img {
        width: 180px;
        object-fit: contain;
        height: 110px;
    }



.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #007dc3;
}

.item-stock {
    color: #007600;
    font-size: 14px;
}

.item-price {
    font-size: 20px;
    font-weight: bold;
    text-align: right;
}

/* QUANTIDADE */
.quantity {
    margin-top: 10px;
    font-size: 1.5em;
}

    .quantity select {
        padding: 5px;
    }



.total {
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}

.cart-controls {
    display: flex;
    gap: 13px;
    font-family: Roboto;
}

.quantity {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}

/* botões gerais */
.btn {
    border: none;
    width: 40px;
    height: 25px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: bold;
    /* font-weight: bold; */
    min-width: 4em;
}

/* botão + */
.plus {
    background: #e0e0e0;
}

    .plus:hover {
        background: #cfcfcf;
    }

/* botão - */
.minus {
    background: #e0e0e0;
}

    .minus:hover {
        background: #cfcfcf;
    }

/* botão excluir */
.delete {
    background: #ff4d4d;
    color: white;
}

    .delete:hover {
        background: #d93636;
    }

