h1 {
    text-align: center;
    margin-bottom: 46px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 28px 0 28px 0;
}

.item-info {
    display: flex;
    align-items: center;
}

.item-image {
    width: 130px;
    height: 130px;
    background: #ccc;
    margin-right: 20px;
}


.item-description {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 24px;
}

/* Styles for the product name */
.item-description>.product-name {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

/* Styles for the product details like type and size */
.item-description>.product-details {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Styles for the price */
.item-description>.product-price {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.trash-icon {
    cursor: pointer;
    font-size: 24px;
}

hr {
    border: none;
    height: 1px;
    background-color: black;
}

.totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    line-height: 28px;
}

.totals-left,
.totals-right {
    text-align: left;
}

.totals-right {
    text-align: right;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 16px;
    margin-bottom: 30px;
}

.continue {
    padding: 20px 0;
    text-decoration: none;
    color: black;
    background: none;
    border: none;
    white-space: nowrap;
}

.checkoutbtn {
    padding: 0 120px;
    max-width: 50%;
    height: 56px;
    background-color: #005180;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media (max-width: 500px) {
    .buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .checkoutbtn {
        width: 100%;
        padding: 0px;
        max-width: none;
    }

    .continue {
        text-align: center;
        width: 100%;
        padding: 5px;
    }
}