
.woocommerce-page .cart-collaterals {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.woocommerce-page .actions .button[name="update_cart"] {
    display: none;
}

.woocommerce-cart__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 50px 0;
}

.woocommerce-cart__header .woocommerce-cart__title {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
}

.woocommerce-cart__header .btn-products {
    color: var(--color-black);
    text-decoration: underline;
    flex: 0 0 auto;
}

.woocommerce-cart-form__contents {
    width: 100%;
}

.woocommerce-cart-form__contents thead th {
    border: 1px solid var(--color-black);
    border-left: none;
    border-right: none;
    padding: 14px 5px;
    text-transform: uppercase;
}

.woocommerce-cart-form__contents tbody td {
    padding: 20px 5px;
}

.woocommerce-cart-form__contents thead th.product-name {
    text-align: left;
    font-size: 18px;
}

.woocommerce-cart-form__contents thead th.product-price {
    text-align: center;
    font-size: 18px;
    width: 150px;
}

.woocommerce-cart-form__contents thead th.product-subtotal {
    text-align: center;
    font-size: 18px;
    width: 150px;
}

.woocommerce-cart-form__contents tbody td.product-name {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3%;
}

.woocommerce-cart-form__contents tbody td.product-price {
    text-align: center;
}

.woocommerce-cart-form__contents tbody td.product-subtotal {
    text-align: center;
}

.woocommerce-cart-form__contents tbody td.product-price .amount bdi,
.woocommerce-cart-form__contents tbody td.product-subtotal .amount bdi {
    font-size: 15px;
    font-weight: 700;
}

.woocommerce-cart-form__contents tbody td.product-price small,
.woocommerce-cart-form__contents tbody td.product-price small *,
.woocommerce-cart-form__contents tbody td.product-subtotal small,
.woocommerce-cart-form__contents tbody td.product-subtotal small * {
    font-weight: 400 !important;
    font-size: 12px !important;
}

.woocommerce-cart-form__contents tbody tr:not(:last-child):not(:nth-last-child(2)) td {
    border-bottom: 1px solid rgba(128, 128, 128, 1);
}

.woocommerce-cart table.cart .wp-post-thumbnail {
    width: clamp(100px, 25%, 200px);
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    border: 1px solid rgba(189, 189, 189, 1);
    overflow: hidden;
    background: var(--color-white);
}

.woocommerce-cart table.cart .wp-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woocommerce-cart-form__contents .wp-post-content {
    flex: 1;
    min-width: 0;
    padding: 20px 0 0 0;
}

.woocommerce-cart-form__contents .wp-post-title {
    color: var(--color-black);
    font-size: 15px;
    font-weight: 700;
}

.woocommerce-cart-form__contents .wp-post-sku {
    font-size: 15px;
    margin: 20px 0 0 0;
}

.woocommerce-cart-form__contents .wp-post-quantity {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
}

.woocommerce-cart-form__contents .wp-post-quantity .quantity {
    margin-left: 10px;
}

.woocommerce-cart-form__contents .wp-post-quantity .quantity input {
    padding: 0 5px;
    font-size: 15px;
}

.woocommerce-cart-form__contents .wp-post-remove {
    margin: 20px 0 0 0;
}

.woocommerce-cart-form__contents .wp-post-remove a {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--color-black);
    text-decoration: underline;
}

.woocommerce-cart-form__contents .wp-post-remove a:hover {
    color: var(--color-red);
}

.woocommerce-cart-form__contents .wp-post-content .variation {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    margin: 0;
}

.woocommerce-cart-form__contents .wp-post-content .variation dt {
    grid-column: 1;
    margin: 0;
    font-size: 15px;
}

.woocommerce-cart-form__contents .wp-post-content .variation dd {
    grid-column: 2;
    margin: 0;
}

.woocommerce-cart-form__contents .wp-post-content .variation dd p {
    margin: 0;
    display: inline;
    font-size: 15px;
}

.woocommerce-cart-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 73px 0 46px 0;
}

.woocommerce-cart-actions .btn-validate {
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 10px;
    font-size: 16px;
    line-height: 44px;
    padding: 0 40px;
    text-transform: uppercase;
}


.wc-coupon {
    width: 100%;
    margin: 30px 0 0 0;
}

.wc-coupon .wc-coupon__header {
    width: 100%;
    border-bottom: 1px solid rgba(128, 128, 128, 1);
    padding: 25px 0;
}

.wc-coupon .wc-coupon__header .wc-coupon__title {
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-blue);
}

.wc-coupon .wc-coupon__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.wc-coupon .wc-coupon__content p {
    width: 100%;
    margin: 28px 0 10px 0;
    font-size: 16px;
}

.wc-coupon .wc-coupon__content input {
    border: 1px solid rgba(128, 128, 128, 1);
    border-radius: 10px 0 0 10px;
    line-height: 44px;
    padding: 0 10px;
    width: calc(100% - 120px);
}

.wc-coupon .wc-coupon__content button {
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 0 10px 10px 0;
    width: 120px;
    line-height: 44Px;
    border: 1px solid var(--color-blue);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
}

.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
    margin: 28px 0 0 0;
    border-top: 1px solid rgba(128, 128, 128, 1);
}

.woocommerce-page .cart-collaterals .cart_totals h2 {
    width: 100%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    padding: 25px 0;
    color: var(--color-blue);
}

.woocommerce-cart .cart-collaterals .cart_totals table {
    width: 100%;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr {
}

.woocommerce-cart .cart-collaterals .cart_totals table th {
    border: none;
    text-align: left;
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.3;
}

.woocommerce-cart .cart-collaterals .cart_totals table td {
    border: none;
    text-align: right!important;
    padding: 5px 0;
    font-size: 16px;
    line-height: 1.3;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 56px;
    padding: 0;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

@media all and (max-width: 1150px) {
    .woocommerce-cart-form__contents thead th.product-price {
        width: 100px;
        font-size: 16px;
    }

    .woocommerce-cart-form__contents thead th.product-subtotal {
        width: 110px;
        font-size: 16px;
    }

    .woocommerce-cart-form__contents tbody td.product-name {
        font-size: 16px;
        flex-direction: column;
    }
}

@media all and (max-width: 1080px) {
    .wc-checkout-grid {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .wc-left {
        width: 100%;
        padding: 0 clamp(15px, 2.5vw, 20px);
    }

    .wc-right {
        width: 100%;
        padding: 0 clamp(15px, 2.5vw, 20px);
    }

    .woocommerce-page table.shop_table_responsive tr td {
        text-align: left !important;
    }
    .woocommerce-cart-actions {
        display: none!important;
    }
}

@media all and (max-width: 768px) {
    .woocommerce-page table.shop_table_responsive tbody tr td:first-child {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .woocommerce-page table.shop_table_responsive tr td.product-name::before{
        margin: 0 0 16px 0;
    }
    .woocommerce-page table.shop_table_responsive tr:not(:first-child) {
        margin-top:32px;
    }
    .woocommerce-cart-form__contents tbody td {
        padding: 5px;
    }

    .woocommerce-page table.shop_table_responsive tr td.product-price {
        margin: 24px 0 0 0;
    }

    .woocommerce-page table.shop_table_responsive tr td bdi {
        margin: 0 0 0 10px;
    }

    .woocommerce-page table.shop_table_responsive tr td.actions {
        display: none!important;
    }

    .woocommerce-cart-form__contents tbody tr:not(:last-child):not(:nth-last-child(2)) td{
        border-bottom:none;
    }
    .woocommerce-cart-form__contents tbody tr:not(:last-child):not(:nth-last-child(2)) td:last-child{
        border-bottom: 1px solid rgba(128, 128, 128, 1);
        padding-bottom:16px;
    }
    .woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background:none;
    }
}

@media all and (max-width: 500px) {
    .woocommerce-cart__header {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
    }
    .wc-tabs::after {
        height: 4px;
        top:calc(50px / 2 - (4px / 2));
    }
    .wc-tablink .wc-tablink__icon{
        width: 50px;
        height: 50px;
    }
    .wc-tablink .wc-tablink__icon svg {
        transform-origin: center center;
        transform: scale(.8);
    }
    .wc-tablink span {
        font-size:13px;
    }
}
