.woocommerce {
    max-width: unset !important;
}

.woocommerce-products-header {
    margin-bottom: var(--wp--preset--spacing--xxx-large);
    text-align: center;
}
.woocommerce-products-header h1{
    margin-bottom: var(--wp--preset--spacing--medium);
}

.white-bg-card {
    background: #fff;
    border: 0.5px solid var(--wp--preset--color--border-grey);
    border-radius: 8px;
    margin: 0 0 16px 0;
}

.white-bg-card:last-child {
    margin-bottom: 0;
}

.white-bg-card-header {
    padding: 16px;
}

.white-bg-card-header h2 {
    font-size: 20px;
}

.white-bg-card-body {
    display: flex;
    flex-wrap: wrap;
    /* gap: 10px; */
    justify-content: space-between;
    padding: 6px 16px 16px;
}

.cart-item-wrap {
    padding: 16px;
    border-bottom: 1px solid var(--wp--preset--color--border-grey);
}

.cart-item-wrap:last-of-type {
    border: none;
}

.cart-item-wrap .cart-item-img {
    width: 25%;
    background-color: var(--wp--preset--color--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5px solid var(--wp--preset--color--accent);
    border-radius: 8px;
    padding: 14px 0;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-data {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp--preset--color--light-grey);
}

.cart-item-actions-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-subtotal .amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--wp--preset--color--primary);
}

.cart-item-quantity {
    padding: 8px 0;
    display: flex;
    border: 0.5px solid var(--wp--preset--color--border-grey);
    border-radius: 8px;
}

.cart-item-quantity .change-quantity {
    cursor: pointer;
    font-weight: 400;
    padding: 0 16px;
}

.cart-item-quantity .disabled.change-quantity[data-event="decrement"] {
    color: var(--wp--preset--color--placeholder-text);
    cursor: not-allowed;
}

.cart-item-actions {
    display: flex;
    gap: 12px;
    /* font-size: 14px; */
    font-weight: 700;
    text-align: right;
}

.cart-item-actions div {
    cursor: pointer;
}

.cart-totals-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.coupon-container {
    display: flex;
    gap: 8px;
}

.coupon-container input {
    width: 100%;
    padding: 0 16px;
    border: 1px solid var(--wp--preset--color--border-grey);
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    height: 100%;
}

.coupon-container input:focus,
.coupon-container .coupon-applied input:focus {
    border-color: var(--wp--preset--color--primary);
}

.coupon-container .coupon-applied input {
    border-color: #e4e4e7;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}

/* Empty cart */
body.woocommerce-empty-cart main {
    background-color: var(--wp--preset--color--white) !important;
    padding: var(--wp--preset--spacing--larger) 0 var(--wp--preset--spacing--xxx-large) !important;
}

body.woocommerce-empty-cart main .entry-content {
    max-width: unset;
}


@media only screen and (max-width: 599px) {
    .cart-item-wrap .cart-item-img {
        width: 40%;
    }

    .cart-item-name-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
}