/* ------------------------------------------------- */
/*                List product start                 */
/* ------------------------------------------------- */
.list__product .item__wrapper,
.list__product .summary {
    background-color: var(--light);
    border: 1px solid var(--grey);
    border-radius: var(--border-radius-light);
}
.list__product .item:not(:last-child) {
    border-bottom: 1px solid var(--grey);
    margin-bottom: 1.5rem;
}
.list__product .image {
    flex-basis: 100%;
}
.list__product .description {
    flex-basis: 100%;
}
.list__product .item .image {
    max-width: 300px;
    height: 180px;
}
.item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.list__product .amount button,
.amount input,
.list__product .icon {
    text-align: center;
    height: 36px;
    width: 36px;
    border: 1px solid var(--grey);
    background-color: white;
    border-radius: var(--border-radius-light);
}
.list__product .amount button:focus {
    border-color: var(--blue);
}
.list__product .icon {
    border-color: #ffbcc7;
    background-color: #ffbcc7;
    color: #f95863;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* ------------------------------------------------- */
/*                 List product end                  */
/* ------------------------------------------------- */

/* ------------------------------------------------- */
/*                  Responsive start                 */
/* ------------------------------------------------- */
/* Tablet start */
@media only screen and (min-width: 768px) {
    .list__product .image {
        flex-basis: 90%;
    }
    .list__product .amount button,
    .amount input,
    .list__product .icon {
        height: 46px;
        width: 46px;
    }
}
/* Tablet end */
/* Tablet start */
@media only screen and (min-width: 992px) {
    .list__product .image {
        flex-basis: 50%;
    }
}
/* Tablet end */
/* ------------------------------------------------- */
/*                   Responsive end                  */
/* ------------------------------------------------- */
