.product-cart-item {
    display: flex;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
}

.product-cart-item a {
    text-decoration: none;
    color: inherit;
}

.product-cart-item-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 150px;
    padding: 1rem;
}

.product-cart-item-image img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-cart-item-content {
    display: flex;
    width: 100%;
    height: 160px;
}

/* A */
.product-cart-item-a:hover {
    color: inherit;
}

/* INFO */
.product-cart-item-info {
    flex: 1 1 auto;
    padding: 1rem;

    overflow: hidden;
}

.product-cart-item-title {
    font-weight: bold;
}

.product-cart-item-title:hover {
    text-decoration: underline;
}

.product-cart-item-author {
    color: var(--inactive-color);
}

.product-cart-item-description {
    margin-top: 1rem;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* interact */
.product-cart-item-details {
    display: flex;
    padding: 0 1rem;
}

/* AMOUNT */
.product-cart-item-amount {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amount-button-sub, .amount-button-add {
    margin: 0;
}

.amount-button-remove {
    margin: 0 0.5rem 0 0;
}

.amount-counter {
    width: 4rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}

/* PRICE */
.product-cart-item-price {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    min-width: 8rem;
}

/* cart minimal */
.product-cart-item.minimal {
    border: unset;
}

.product-cart-item.minimal .product-cart-item-image {
    height: 100%;
    width: 80px;
    padding: 1rem;
}

.product-cart-item.minimal .product-cart-item-content {
    display: flex;
    width: 100%;
    height: 80px;
}

.product-cart-item.minimal .amount-counter {
    font-weight: bold;
    font-size: 1rem;
}

/* Responsiveness */
/* lg screen */
@media only screen and (max-width: 1200px) {

}

/* md screen */
@media only screen and (max-width: 992px) {

}

/* sm screen */
@media only screen and (max-width: 768px) {
    .product-cart-item {
        flex-direction: column;
    }

    .product-cart-item-details {
        justify-content: left;
        padding: 1rem;
    }

    .product-cart-item-price {
        margin-left: auto;
        align-items: end;
        min-width: unset;
        padding-left: 0.5rem;
    }

    .amount-counter {
        width: 3rem;
    }

    /* minimal */
    .product-cart-item.minimal {
        flex-direction: row;
    }
}

/* xs screen */
@media only screen and (max-width: 576px) {

}

/* xxs screen */
@media only screen and (max-width: 384px) {
    /* minimal */
    .product-cart-item.minimal {
        flex-direction: column;
    }
}