.shop_table.cart{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart-totals-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart_total {
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.genai-checkout-button {
    width: 100%;
    margin-top: 15px;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}
.cart-column {
    gap: 15px;
    align-items: center;
}
.product-thumbnail {
    width: 50px;
    overflow: hidden;
}
.product-thumbnail img {
    max-width: 100%;
}
.product-name a {
    text-decoration: none;
}
.product-name>.price {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1;
}
.product-price {
    width: 180px;
    text-align: center;
}
.product-quantity {
    width: 120px;
}
.product-quantity .quantity {
    border-radius: var(--gen-border-radius);
}
.product-remove svg {
    max-width: 18px;
    max-height: 18px;
    fill: var(--gen-body-color);
}
.product-remove:hover svg {
    fill: #e6f85e;
}
.cart-actions {
    margin-top: 15px;
    padding-top: 25px;
    border-top: var(--gen-border-width) var(--gen-border-style) var(--gen-border-color);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.cart-coupon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
input#coupon_code {
    max-width: 200px;
}
.genai-cart-empty-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.genai-cart-empty-wrapper>svg {
    height: 100px;
    width: 100px;
}
.genai-hidden:not(.active) .cart-update-btn,
.woocommerce-notices-wrapper:empty{
    display: none;
}
.genai-hidden.active {
    display: block;
}
.nt-genai-content .woocommerce-notices-wrapper .woocommerce-message {
    margin-bottom: 40px;
    text-align: center;
}
form.woocommerce-cart-form.genai-woocommerce-cart-form {
    overflow: hidden;
    position: relative;
}
[data-bs-theme=light] .bg-dark-blue-4 {
    background-color: rgba(var(--gen-white-rgb),var(--gen-bg-opacity));
}
@media(max-width:768px){
    .cart-actions {
        flex-wrap: wrap;
    }
    .cart-actions>* {
        width: 100%;
    }
    .cart-coupon,
    .cart-update .btn {
        width: 100%;
    }
    .cart-coupon>* {
        flex: 1;
        width: 100%;
    }
    .cart-coupon input#coupon_code {
        max-width: 100%;
    }
}
@media(max-width:992px){
    .cart-row {
        gap: 40px;
    }
    .cart-row.cart-actions {
        gap: 15px;
    }
}
@media(max-width:576px){
    .shop_table.cart {
        gap: 30px;
    }
    .cart-column {
        width: 100%;
    }
    .cart-item {
        flex-direction: column;
    }
    .cart-actions {
        margin-top: 0;
    }
}
