.cart-section {
    flex-direction: row;
    align-items: start;
    gap: 20px;
}

.cart-section .carrito {
    height: 100%;
    width: 60%;
    background: white;
    padding: 10px;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.07); 
    border-radius: 5px;
}

.c-table {
    border: none;
}

.c-t-head th, .c-t-body tr td, .s-t-head th, .s-t-body tr td {
    border: none;
}

.c-t-head th {
    border-bottom: .5px solid var(--text-gray-2);
}

.c-t-head th:first-child {
    text-align: left;
}

.c-t-r-c-product-information {
    display: flex;
    justify-content: start;
    align-items: center;
}

.pi-image {
    width: 90px;
    height: 90px;
}

.pi-data {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.pi-data .pi-d-sku, .c-t-r-c-product-subtotal .woocommerce-Price-amount {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
}

.pi-data .woocommerce-Price-amount {
    color: var(--text-gray-4);
    font-size: .9rem;
    margin-bottom: .4rem;
}

.pi-data .pi-d-remove {
    text-decoration: underline;
    color: var(--main-color);
    font-size: .9rem;
}

.c-t-r-c-product-subtotal .woocommerce-Price-amount {
    font-size: 1.1rem;
    font-weight: 700;
}

.total-container {
    background: white;
    height: 100%;
    width: 40%;
    padding: 10px;
    box-shadow: 0 2px 14px 0 rgba(0,0,0,0.07);
    border-radius: 5px;
}

.summary-table {
    border: none;
}

.s-t-head th {
    border-bottom: .5px solid var(--text-gray-2)
}

.s-t-head th:first-child {
    text-align: left;
}

.s-t-head th:last-child {
    text-align: right;
}

.s-t-body .s-t-b-name {
    text-align: left;
} 

.s-t-body .s-t-b-quantity {
    text-align: right;
}

.s-c-total {
    text-align: left;
}

.s-c-total h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
}

.s-c-total p {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.s-c-total hr {
    margin: 0;
    margin-bottom: .2rem;
}

.subtotal-container a {
    width: 100%;
    background-color: var(--main-color) !important;
    transition: all 300ms ease-in-out;
    border-radius: 5px;
}

.subtotal-container a:hover {
    background-color: var(--main-color-hover) !important;
}

@media screen and (max-width: 1100px) {
    .cart-section {
        flex-direction: column;
    }

    .cart-section .carrito {
        width: 100%;
        overflow-x: scroll;

    }

    .total-container {
        width: 100%;
    }

    .pi-data .pi-d-sku {
        text-align: start;
    }
}