h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;

    text-align: center;
}

#cart-items {
    margin: 1rem 0;
    outline: 1px solid gray;
    border-radius: 0.5rem;
    padding: 0.5rem 0.25rem;

    min-height: 406px;
}

#cart-items > .cart-item:not(:first-child) {
    margin-top: 10px;
}

.cart-item {
    width: 100%;
    display: flex;
    font-size: 0.875rem;
    line-height: 1.25rem;

    gap: 0.5rem;

    align-items: center;
}

.cart-item > img {
    width: 70px;
    height: 70px;
}

.item-name {
    flex: 1 1 0%;
}

.item-brand {
    display: none;
    text-align: center;
}

.item-price {
    color: rgb(220, 38, 38);
    font-weight: 600;

    width: 90px;
    text-align: right;
}

.item-delete {
    width: 20px;

    text-align: center;
}

#cart-action {
    display: flex;
    flex-direction: column;

    gap: 0.25rem;
}

#total-price {
    text-align: right;
}

#total-price span {
    color: rgb(220, 38, 38);
    font-weight: 700;
}

#pay-btn {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: white;
    font-weight: 600;

    background-color: rgb(220, 38, 38);
}

/* RESPONSIVE */

@media (min-width: 768px) {
    .item-brand {
        display: block;
        width: 10%;
    }

    #cart-action {
        align-items: flex-end;
    }

    #pay-btn {
        width: 180px;
    }
}
