Woocommerce Styles
/* 

A couple things to note...
1. This code was written very specifically for my base child threme so it might not work out of the box with every threme.
   I have it here mostly to share with anyone who might be looking to do the same thing I was.
2. I generally add my WooCommerce CSS overrides to a custom-woo.css file then use wp_enqueue_style() to call it 
   so that it enqueues after the default WooCommerce Stylesheets

*/

.woocommerce-message {
    display: none;
}

.woocommerce-cart.full-width-content .content,
.woocommerce-checkout.full-width-content .content {
    max-width: 100%;
}

.woocommerce-cart .woocommerce table.shop_table td.actions {
    border-top: 1px solid #e6e6e6;
    background: #f7f7f7;
    border-bottom: 0px solid #e6e6e6;
}

.woocommerce-cart .entry-content form {
    width: 60%;
    float: left;
}

.woocommerce-cart .woocommerce .cart-collaterals {
    width: 33%;
    float: right;
}

.woocommerce-cart .woocommerce .cart-collaterals h2 {
    display: none;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    width: 40% !important;
}

@media (width<=1024px) {
    .woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
        width: 60% !important;
    }
}

@media (width<=768px) {
    .woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
        width: 100% !important;
    }
}

#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr th,
#add_payment_method table.cart th,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart th,
.woocommerce-checkout table.shop_table th {
    color: hsl(var(--primary));
    font-size: 1.125rem;
    line-height: 1.75rem;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
#add_payment_method table.cart td,
.woocommerce-cart table.cart td,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.shop_table td {
    color: #555;
    font-size: 16px;
}

.woocommerce-cart .woocommerce table.shop_table th {
    border-bottom: 2px solid hsl(var(--primary));
}

.woocommerce-cart .woocommerce table.shop_table,
.woocommerce-checkout .woocommerce table.shop_table {
    border: 1px solid #e6e6e6;
    margin: 0;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    border-radius: 0;
    border-bottom: none;
    border-right: none;
    margin-bottom: 35px;
    border-bottom: 1px solid #e6e6e6;
}

body #add_payment_method #payment ul.payment_methods li input,
body.woocommerce-cart #payment ul.payment_methods li input,
body.woocommerce-checkout #payment ul.payment_methods li input {
    width: auto;
    margin: -2px .5rem 0 0;
}

body .woocommerce form .form-row .input-checkbox {
    width: auto;
    margin: -2px 5px 0 0;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
body.woocommerce-cart .cart-collaterals .cart_totals tr td,
body.woocommerce-cart .cart-collaterals .cart_totals tr th,
body.woocommerce-checkout .cart-collaterals .cart_totals tr td,
body.woocommerce-checkout .cart-collaterals .cart_totals tr th,
body .woocommerce table.shop_table th {
    border-top: none;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    text-align: right;
    padding: 10px 20px;
}

body #add_payment_method table.cart td,
body #add_payment_method table.cart th,
body.woocommerce-cart table.cart td,
body.woocommerce-cart table.cart th,
body.woocommerce-checkout table.cart td,
body.woocommerce-checkout table.cart th {
    border-right: 1px solid #e6e6e6;
}

#add_payment_method .cart-collaterals .cart_totals tr th,
body.woocommerce-cart .cart-collaterals .cart_totals tr th,
body.woocommerce-checkout .cart-collaterals .cart_totals tr th {}

.woocommerce-cart .cart-collaterals .cart_totals table th {
    border-bottom: 1px solid #e6e6e6;
}

body .woocommerce #respond input#submit.alt,
body .woocommerce a.button.alt,
body .woocommerce button.button.alt,
body .woocommerce input.button.alt {
    --tw-bg-opacity: 1;
    background-color: hsl(142 70% 40% / var(--tw-bg-opacity, 1));
    font-weight: 500;
}

body .woocommerce #respond input#submit.alt:hover,
body .woocommerce a.button.alt:hover,
body .woocommerce button.button.alt:hover,
body .woocommerce input.button.alt:hover {
    background: hsl(var(--primary)) !important;
}

body .woocommerce .cart .button,
body .woocommerce .cart input.button,
body .woocommerce #respond input#submit,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button {
    background: hsl(var(--primary)) !important;
    color: #fff;
    font-weight: 500;
    border-radius: calc(var(--radius) - 2px);
}

body .woocommerce .cart .button:hover,
body .woocommerce .cart input.button:hover,
body .woocommerce #respond input#submit:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover {
    background-color: hsl(var(--primary) / .9) !important;
    color: #fff;
}

body .woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
    float: right;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.25rem;
    padding: 1rem;
    border-radius: calc(var(--radius) - 2px);
    margin-top: .5rem;
}

body .woocommerce form .form-row-first,
body .woocommerce form .form-row-last,
body .woocommerce-page form .form-row-first,
body .woocommerce-page form .form-row-last {
    width: 49%;
}

body .woocommerce #respond input#submit.disabled,
body .woocommerce #respond input#submit:disabled,
body .woocommerce #respond input#submit:disabled[disabled],
body .woocommerce a.button.disabled,
body .woocommerce a.button:disabled,
body .woocommerce a.button:disabled[disabled],
body .woocommerce button.button.disabled,
body .woocommerce button.button:disabled,
body .woocommerce button.button:disabled[disabled],
body .woocommerce input.button.disabled,
body .woocommerce input.button:disabled,
body .woocommerce input.button:disabled[disabled] {
    background: #ccc;
}


body .woocommerce a.checkout-button.button.alt {
    border-radius: calc(var(--radius) - 2px);
}

body .woocommerce #content table.cart td.actions .coupon,
body .woocommerce table.cart td.actions .coupon {
    width: 68%;
}

body #add_payment_method table.cart td.actions .coupon .input-text,
body.woocommerce-cart table.cart td.actions .coupon .input-text,
body.woocommerce-checkout table.cart td.actions .coupon .input-text {
    padding: 8px 6px 7px;
    width: 65%;
}

body .woocommerce table.shop_table td {
    padding: 15px;
}

body .woocommerce-checkout table.shop_table td {
    text-align: right;
    border-right: 1px solid #e6e6e6;
    border-top: 0;
}

.woocommerce a.remove {
    margin: 0 auto;
}

.woocommerce-cart .woocommerce table.shop_table th.product-remove,
.woocommerce-cart .woocommerce table.shop_table th.product-name {
    text-align: center;
}

.woocommerce-cart .woocommerce table.shop_table th.product-price,
.woocommerce-cart .woocommerce table.shop_table th.product-quantity,
.woocommerce-cart .woocommerce table.shop_table th.product-subtotal {
    text-align: right;
}

.woocommerce-cart .woocommerce table.shop_table .cart_itrem td.product-price,
.woocommerce-cart .woocommerce table.shop_table .cart_itrem td.product-quantity,
.woocommerce-cart .woocommerce table.shop_table .cart_itrem td.product-subtotal {
    text-align: right;
}

.woocommerce-checkout #add_payment_method #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
    list-style: none;
}


.woocommerce-checkout .woocommerce .col2-set .col-1,
.woocommerce-checkout .woocommerce .col2-set .col-2 {
    margin-bottom: 2rem;
    width: 100%;
    float: none;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    background: #fff;
    width: 47.8260869565%;
    float: right;
    margin-right: 0;
}

.woocommerce-checkout #ship-to-different-address-checkbox {
    width: auto;
    float: right;
    margin-left: 15px;
    margin-top: 10px;
    opacity: 1;
    position: static;
}

.woocommerce-checkout #ship-to-different-address label {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    margin-bottom: 1rem;
    padding: 0;
    text-transform: uppercase;
    color: #000;
}

.woocommerce-checkout .woocommerce form .form-row.create-account label {
    padding-top: 2px;
    font-weight: bold;
}

.woocommerce-checkout .payment-fixed {
    position: fixed;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 2rem;
    left: 52%;
    margin-left: 0;
    padding: 20px;
    top: 0;
    width: 45.5% !important;
    -webkit-transition: padding .1s ease-in;
    -moz-transition: padding .1s ease-in;
    -o-transition: padding .1s ease-in;
    -ms-transition: padding .1s ease-in;
    transition: padding .1s ease-in;
}

.product-shipping-message {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0px;
    border-top: 1px solid #139248;
    border-bottom: 1px solid #139248;
}

body .woocommerce table.shop_table tbody th,
body .woocommerce table.shop_table tfoot td,
body .woocommerce table.shop_table tfoot th {
    border-bottom: none;
}

body .woocommerce form .form-row input.input-text,
body .woocommerce form .form-row textarea {
    max-width: 100%;
}

body .woocommerce .product-name a {
    color: #000;
    pointer-events: none;
    cursor: default;
}

@media only screen and (max-width: 1139px) {
    .woocommerce-cart .entry-content form {
        width: 64%;
    }
}

@media only screen and (max-width: 980px) {

    .woocommerce-cart .entry-content form {
        width: 80%;
        float: none;
        margin: 0 auto;
    }

    .woocommerce-cart .woocommerce .cart-collaterals {
        width: 80%;
        float: None;
        margin: auto;
    }

    body .woocommerce #content table.cart td.actions .coupon,
    body .woocommerce table.cart td.actions .coupon {
        width: 100%;
    }

    body #add_payment_method table.cart td.actions .coupon .input-text,
    body.woocommerce-cart table.cart td.actions .coupon .input-text,
    body.woocommerce-checkout table.cart td.actions .coupon .input-text {
        width: 48%;
    }
}

@media only screen and (max-width: 650px) {

    .woocommerce-cart .entry-content form {
        width: 100%;

    }

    .woocommerce-cart .woocommerce .cart-collaterals {
        width: 100%;

    }

    .woocommerce-checkout .woocommerce .col2-set {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        width: 100%;
        float: none;
    }

}

.woocommerce-account h2,
.woocommerce-order h2,
.woocommerce-checkout h3 {
    color: hsl(var(--primary));
    font-size: 1.5rem;
    font-weight: bold;
}

.added_to_cart.wc-forward {
    display: none;
}

.woocommerce ul.order_details {
    margin-top: 1.5rem;
}

.woocommerce ul.order_details li {
    float: unset;
    margin-bottom: 1rem;
    border: 0;
}

.woocommerce .woocommerce-order-details td {
    border-right: 1px solid #e6e6e6 !important;
}

.woocommerce .woocommerce-order-details tbody tr:first-child td {
    border-top: 0;
}

/* Custom WooCommerce Account Login Page overrides */
.woocommerce-account-page .u-columns.col2-set {
    width: 100% !important;
    float: none !important;
}

.woocommerce-account-page .u-columns.col2-set::before,
.woocommerce-account-page .u-columns.col2-set::after {
    display: none !important;
}

.woocommerce-account-page .u-columns.col2-set .col-1,
.woocommerce-account-page .u-columns.col2-set .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.woocommerce form.login,
.woocommerce form.register {
    border: 0;
    padding: 0;
    margin: 0;
}

.woocommerce button.update-cart-btn.button {
    color: white !important;
}

/* ==========================================================================
   ANSAC Cart Page Custom Styles & Overrides
   ========================================================================== */

/* 1. Full width cart table form & Bottom Right Cart Totals Collateral */
.woocommerce-cart .entry-content form,
.woocommerce-cart form.woocommerce-cart-form {
    width: 100% !important;
    float: none !important;
}

.woocommerce-cart .woocommerce .cart-collaterals,
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    float: right !important;
    margin-left: auto !important;
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

.woocommerce-cart .cart_totals h2 {
    display: none !important;
}

/* Cart Totals Table styling (Hook friendly table rows) */
.woocommerce-cart table.ansac-cart-totals-table,
.woocommerce-cart .cart_totals table.shop_table {
    border: none !important;
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 12px !important;
    background: transparent !important;
}

.woocommerce-cart table.ansac-cart-totals-table tr,
.woocommerce-cart .cart_totals table.shop_table tr {
    border: none !important;
    background: transparent !important;
}

.woocommerce-cart table.ansac-cart-totals-table th,
.woocommerce-cart table.ansac-cart-totals-table td,
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
    border: none !important;
    padding: 6px 0 !important;
    font-size: 0.875rem !important;
    color: #4b5563 !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    vertical-align: middle !important;
}

.woocommerce-cart table.ansac-cart-totals-table th,
.woocommerce-cart .cart_totals table.shop_table th {
    text-align: left !important;
}

.woocommerce-cart table.ansac-cart-totals-table td,
.woocommerce-cart .cart_totals table.shop_table td {
    text-align: right !important;
    color: #111827 !important;
    font-weight: 600 !important;
}

/* Order Total Row Styling */
.woocommerce-cart table.ansac-cart-totals-table tr.order-total,
.woocommerce-cart .cart_totals table.shop_table tr.order-total {
    border-top: 1px solid #e5e7eb !important;
    margin-top: 6px !important;
}

.woocommerce-cart table.ansac-cart-totals-table tr.order-total th,
.woocommerce-cart table.ansac-cart-totals-table tr.order-total td,
.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 0.9375rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    text-transform: uppercase !important;
}

.woocommerce-cart table.ansac-cart-totals-table tr.order-total td strong,
.woocommerce-cart table.ansac-cart-totals-table tr.order-total td .amount {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

/* Hide Coupon in td.actions (under table) */
.woocommerce-cart table.shop_table.cart td.actions .coupon {
    display: none !important;
}

/* Promo Code Box inside Cart Totals */
.woocommerce-cart .cart_totals .cart-coupon-box {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    float: none !important;
    border: 1px solid #d1d5db !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    width: 100% !important;
    margin-top: 12px !important;
    margin-bottom: 16px !important;
}

.woocommerce-cart .cart_totals .cart-coupon-box input.input-text {
    flex: 1 !important;
    border: none !important;
    padding: 10px 14px !important;
    font-size: 0.875rem !important;
    font-style: italic !important;
    color: #4b5563 !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.woocommerce-cart .cart_totals .cart-coupon-box button.apply-coupon-btn,
.woocommerce-cart .cart_totals .cart-coupon-box button[name="apply_coupon"] {
    background-color: #ffcc00 !important;
    color: #1f2937 !important;
    font-weight: 800 !important;
    font-size: 0.8125rem !important;
    padding: 15px 24px !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.woocommerce-cart .cart_totals .cart-coupon-box button.apply-coupon-btn:hover,
.woocommerce-cart .cart_totals .cart-coupon-box button[name="apply_coupon"]:hover {
    background-color: #e6b800 !important;
}

.woocommerce-cart table.shop_table.cart td.actions button[name="update_cart"] {
    float: right !important;
}

/* Proceed to Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
    margin-top: 12px !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button {
    background-color: #0066b2 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 14px 20px !important;
    border-radius: 4px !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    font-size: 0.9375rem !important;
    border: none !important;
    transition: background-color 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button:hover {
    background-color: #004c85 !important;
    color: #ffffff !important;
}

/* 2. Remove Table Column Grid & Cell Backgrounds */
.woocommerce-cart table.shop_table.cart,
.woocommerce-cart table.shop_table.cart th,
.woocommerce-cart table.shop_table.cart td,
.woocommerce-cart table.shop_table_responsive,
.woocommerce-cart table.shop_table_responsive tr,
.woocommerce-cart table.shop_table_responsive th,
.woocommerce-cart table.shop_table_responsive td {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.woocommerce-cart table.shop_table.cart,
.woocommerce-cart table.shop_table_responsive {
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
}

.woocommerce-cart table.shop_table.cart tr.cart_item,
.woocommerce-cart table.shop_table_responsive tr.cart_item {
    border-bottom: 1px solid #e5e7eb !important;
}

.woocommerce-cart table.shop_table.cart thead th {
    border-bottom: 2px solid #111827 !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    color: #111827 !important;
    padding: 12px 16px !important;
    text-transform: uppercase !important;
}

.woocommerce-cart table.shop_table.cart td {
    padding: 16px !important;
    vertical-align: middle !important;
}

/* 3. Product Image Enlarge (Desktop) */
.woocommerce-cart .cart-product-img-wrapper,
.woocommerce-cart table.shop_table.cart td.product-thumbnail {
    width: 110px !important;
    min-width: 95px !important;
}

.woocommerce-cart .cart-product-img-wrapper img,
.woocommerce-cart table.shop_table.cart td.product-thumbnail img {
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
    object-fit: contain !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 4px !important;
    background-color: #f9fafb !important;
    display: block !important;
    margin: 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-name a.cart-item-title-link,
.woocommerce-cart table.shop_table.cart td.product-name a {
    font-weight: 600 !important;
    color: #111827 !important;
    font-size: 0.9375rem !important;
    line-height: 1.4 !important;
}

/* Update Cart Button & Proceed to Checkout Button */
.woocommerce-cart .update-cart-btn {
    background-color: #f3f4f6 !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
    font-size: 0.8125rem !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button {
    background-color: #0066b2 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 14px 20px !important;
    border-radius: 4px !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    font-size: 0.95rem !important;
    transition: background-color 0.2s ease !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button:hover {
    background-color: #004c85 !important;
}

/* 4. Mobile Responsiveness Fixes (Screen <= 768px) */
@media screen and (max-width: 768px) {
    .woocommerce-cart table.shop_table_responsive thead {
        display: none !important;
    }

    .woocommerce-cart table.shop_table_responsive td,
    .woocommerce-cart table.shop_table_responsive tr td {
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        display: grid !important;
        grid-template-columns: 90px 1fr 75px !important;
        grid-template-rows: auto auto !important;
        gap: 8px 12px !important;
        align-items: start !important;
        padding: 16px 0 !important;
        border-bottom: 1px solid #e5e7eb !important;
        position: relative !important;
    }

    /* Product Image: Col 1, Spans both rows */
    .woocommerce-cart table.shop_table_responsive td.product-thumbnail,
    .woocommerce-cart table.shop_table_responsive tr td.product-thumbnail {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        display: block !important;
        width: 75px !important;
        min-width: 75px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
        object-fit: contain !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 6px !important;
        padding: 4px !important;
        background-color: #f9fafb !important;
        display: block !important;
    }

    /* Product Name: Col 2, Row 1 */
    .woocommerce-cart table.shop_table_responsive td.product-name {
        grid-column: 2 !important;
        grid-row: 1 !important;
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-name a.cart-item-title-link,
    .woocommerce-cart table.shop_table_responsive td.product-name a {
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        color: #111827 !important;
        line-height: 1.35 !important;
        display: block !important;
    }

    /* Product Price: Col 3, Row 1 (Top Right) */
    .woocommerce-cart table.shop_table_responsive td.product-price {
        grid-column: 3 !important;
        grid-row: 1 !important;
        display: block !important;
        width: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: right !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        color: #4b5563 !important;
        white-space: nowrap !important;
    }

    /* Quantity Stepper: Col 2, Row 2 (Bottom Right Aligned) */
    .woocommerce-cart table.shop_table_responsive td.product-quantity {
        grid-column: 2 !important;
        grid-row: 2 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Compact Quantity Input Stepper on Mobile (<768px) */
    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity {
        display: inline-flex !important;
        align-items: center !important;
        max-width: 95px !important;
        height: 30px !important;
        border: 1px solid #d1d5db !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        background: #ffffff !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity input.qty,
    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity input[type="number"] {
        width: 34px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 0.8125rem !important;
        font-weight: 600 !important;
        padding: 0 !important;
        text-align: center !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
        margin: 0 !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity .plus,
    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity .minus,
    .woocommerce-cart table.shop_table_responsive td.product-quantity .quantity button {
        width: 26px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: #f3f4f6 !important;
        color: #374151 !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Product Remove (Trash Icon): Col 3, Row 2 (Bottom Far Right) */
    .woocommerce-cart table.shop_table_responsive td.product-remove {
        grid-column: 3 !important;
        grid-row: 2 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Hide Subtotal & pseudo ::before text on mobile */
    .woocommerce-cart table.shop_table_responsive td.product-subtotal {
        display: none !important;
    }

    .woocommerce-cart table.shop_table_responsive td::before {
        content: "" !important;
        display: none !important;
    }

    /* Cart Collaterals & Totals on Mobile */
    .woocommerce-cart .woocommerce .cart-collaterals,
    .woocommerce-cart .cart-collaterals,
    .woocommerce-cart .cart_totals {
        width: 100% !important;
        float: none !important;
        margin-top: 1.5rem !important;
    }

    .woocommerce-cart .entry-content form {
        width: 100% !important;
    }
}

/* Global Trash Remove Icon Styling (Desktop & Mobile) */
.woocommerce-cart table.shop_table.cart td.product-remove a.remove,
.woocommerce-cart table.shop_table_responsive td.product-remove a.remove {
    color: #ef4444 !important;
    font-size: 0 !important;
    text-decoration: none !important;
    padding: 6px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove:hover,
.woocommerce-cart table.shop_table_responsive td.product-remove a.remove:hover {
    background-color: #fee2e2 !important;
    color: #dc2626 !important;
}

.woocommerce-cart table.shop_table.cart td.product-remove a.remove svg,
.woocommerce-cart table.shop_table_responsive td.product-remove a.remove svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    fill: none !important;
    display: block !important;
}

/* Ensure Cart Totals Table labels are ALWAYS left-aligned on Desktop & Mobile */
.woocommerce-cart .cart_totals table.shop_table,
.woocommerce-cart .cart_totals table.shop_table_responsive {
    display: table !important;
    width: 100% !important;
    border-collapse: collapse !important;
}

.woocommerce-cart .cart_totals table.shop_table tbody,
.woocommerce-cart .cart_totals table.shop_table_responsive tbody {
    display: table-row-group !important;
    width: 100% !important;
}

.woocommerce-cart .cart_totals table.shop_table tr,
.woocommerce-cart .cart_totals table.shop_table_responsive tr {
    display: table-row !important;
    width: 100% !important;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table_responsive tr th,
.woocommerce-cart .cart_totals table.shop_table_responsive th {
    display: table-cell !important;
    text-align: left !important;
    width: 15% !important;
    padding: 8px 0 !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    vertical-align: top !important;
}

.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-cart .cart_totals table.shop_table_responsive tr td,
.woocommerce-cart .cart_totals table.shop_table_responsive td {
    display: table-cell !important;
    text-align: right !important;
    width: 45% !important;
    padding: 8px 0 !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    vertical-align: middle !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table_responsive tr.order-total th {
    display: table-cell !important;
    text-align: left !important;
    font-size: 0.9375rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    text-transform: uppercase !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total td,
.woocommerce-cart .cart_totals table.shop_table_responsive tr.order-total td {
    display: table-cell !important;
    text-align: right !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

/* Checkout Delivery Details & Billing Address styling */
.same-as-delivery-checkbox-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.same-as-delivery-checkbox-wrapper label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    user-select: none;
}

.same-as-delivery-checkbox-wrapper input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: #0284c7;
    cursor: pointer;
}

.billing_address_wrapper {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

/* Checkout AJAX Loading Overlay Styles */
form.checkout,
.woocommerce-checkout,
#customer_details,
#order_review,
.woocommerce-checkout-payment,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields {
    position: relative !important;
}

.blockUI.blockOverlay,
.processing .blockOverlay {
    background: #ffffff !important;
    opacity: 0.6 !important;
    z-index: 1000 !important;
}

.blockUI.blockMsg,
.processing .blockMsg {
    z-index: 1001 !important;
}

form.checkout.processing::after,
.woocommerce-checkout-review-order.processing::after,
#order_review.processing::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 999;
    pointer-events: auto;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout .woocommerce .checkout-right {
    float: none;
    width: calc(50% - 20px) !important;
    flex-shrink: 0;
}

.woocommerce-checkout .checkout-wrap {
    display: flex;
    gap: 40px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce .col2-set {
    width: 100%;
    float: none;
    margin-right: 0;
}

@media (width<=768px) {
    .woocommerce-checkout .checkout-wrap {
        gap: 20px;
    }

    .woocommerce-checkout .checkout-wrap {
        flex-direction: column;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout .woocommerce .checkout-right {
        width: 100% !important;
    }

    .sticky-product-text {
        font-size: 1.2rem;
        line-height: 1.1;
    }
}

/* ==========================================================================
   ANSAC Checkout Order Review Table Custom Overrides
   ========================================================================== */

.woocommerce-checkout #order_review_heading {
    display: none !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table,
.woocommerce-checkout #order_review table.shop_table {
    border: none !important;
    border-collapse: collapse !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    background: transparent !important;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table tr,
.woocommerce-checkout #order_review table.shop_table tr {
    border: none !important;
    background: transparent !important;
}

/* Column 1 (Left Column) Alignment & Vertical Divider Line */
.woocommerce-checkout table.shop_table th:first-child,
.woocommerce-checkout table.shop_table td:first-child,
.woocommerce-checkout #order_review table.shop_table th:first-child,
.woocommerce-checkout #order_review table.shop_table td:first-child,
.woocommerce-checkout table.shop_table th.product-name,
.woocommerce-checkout table.shop_table td.product-name,
.woocommerce-checkout table.shop_table td.shipping-method-name-cell,
.woocommerce-checkout table.shop_table tfoot th {
    text-align: left !important;
    border-right: 1px solid #e5e7eb !important;
    padding: 4px 16px 4px 0;
}

/* Column 2 (Right Column) Alignment & No Border */
.woocommerce-checkout table.shop_table th:last-child,
.woocommerce-checkout table.shop_table td:last-child,
.woocommerce-checkout #order_review table.shop_table th:last-child,
.woocommerce-checkout #order_review table.shop_table td:last-child,
.woocommerce-checkout table.shop_table th.product-total,
.woocommerce-checkout table.shop_table td.product-total,
.woocommerce-checkout table.shop_table td.shipping-method-cost-cell,
.woocommerce-checkout table.shop_table tfoot td {
    text-align: right !important;
    border-right: none !important;
    padding: 4px 0 4px 16px !important;
}

/* Header Row Across Table */
.woocommerce-checkout table.shop_table tr.woocommerce-shipping-header-row th {
    text-align: left !important;
    color: #003ea8 !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    border-right: 1px solid #e5e7eb !important;
}

.woocommerce-checkout table.shop_table tr.woocommerce-shipping-header-row td {
    border-right: none !important;
}

/* Headings */
.woocommerce-checkout table.shop_table thead th,
.woocommerce-checkout #order_review table.shop_table thead th {
    color: hsl(var(--primary));
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 14px !important;
    border-bottom: none !important;
}

/* Product Thumbnail & Item Row in Checkout */
.woocommerce-checkout .checkout-product-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    text-align: left !important;
}

.woocommerce-checkout .checkout-product-img {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
    max-width: 72px !important;
    max-height: 72px !important;
    object-fit: contain !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 4px !important;
    background-color: #ffffff !important;
    display: block !important;
    margin: 0 !important;
}

/* All Checkout Order Summary Content Text set to #000000 */
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table td span,
.woocommerce-checkout table.shop_table td .amount,
.woocommerce-checkout table.shop_table .checkout-product-title,
.woocommerce-checkout table.shop_table .checkout-product-quantity,
.woocommerce-checkout table.shop_table .shipping-method-title,
.woocommerce-checkout table.shop_table .shipping-method-cost,
.woocommerce-checkout table.shop_table tr.shipping-method-row td,
.woocommerce-checkout table.shop_table tr.shipping-method-row span,
.woocommerce-checkout table.shop_table tr.shipping-method-row label,
.woocommerce-checkout table.shop_table tfoot tr.tax-rate th,
.woocommerce-checkout table.shop_table tfoot tr.tax-rate td,
.woocommerce-checkout table.shop_table tfoot tr.tax-rate .amount,
.woocommerce-checkout table.shop_table tfoot tr.order-total td,
.woocommerce-checkout table.shop_table tfoot tr.order-total td strong,
.woocommerce-checkout table.shop_table tfoot tr.order-total td .amount {
    color: #000000 !important;
}

.woocommerce-checkout .checkout-product-title {
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #000000 !important;
    line-height: 1.4 !important;
}

.woocommerce-checkout .checkout-product-quantity {
    font-weight: 800 !important;
    color: #000000 !important;
    margin-left: 4px !important;
}

/* Non-bold Delivery Options */
.woocommerce-checkout .shipping-method-title,
.woocommerce-checkout .shipping-method-cost,
.woocommerce-checkout tr.shipping-method-row td,
.woocommerce-checkout tr.shipping-method-row span,
.woocommerce-checkout tr.shipping-method-row label {
    font-weight: 400 !important;
    font-size: 0.9375rem !important;
    color: #000000 !important;
}

/* Custom Styled Radio Buttons (Shipping & Payment) */
.woocommerce-checkout input[type="radio"],
.woocommerce-checkout input[type="radio"].shipping_method,
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border: 2px solid #003ea8 !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    outline: none !important;
    cursor: pointer !important;
    vertical-align: middle !important;
    display: inline-block !important;
    transition: all 0.15s ease-in-out !important;
    box-shadow: none !important;
}

.woocommerce-checkout input[type="radio"]:checked,
.woocommerce-checkout input[type="radio"].shipping_method:checked,
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked {
    border-color: #003ea8 !important;
    background-color: #003ea8 !important;
    box-shadow: inset 0 0 0 2.5px #ffffff !important;
}

.woocommerce-checkout .shipping-method-radio {
    margin-left: 8px !important;
}

/* Footer Totals (GST, Subtotal, Total) */
.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td {
    border-top: none !important;
}

.woocommerce-checkout table.shop_table tfoot tr.cart-subtotal th,
.woocommerce-checkout table.shop_table tfoot tr.cart-subtotal td,
.woocommerce-checkout table.shop_table tfoot tr.tax-rate th,
.woocommerce-checkout table.shop_table tfoot tr.tax-rate td {
    font-weight: 400 !important;
    font-size: 0.9375rem !important;
    color: #000000 !important;
}

.woocommerce-checkout table.shop_table tfoot tr.order-total th {
    color: hsl(var(--primary));
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

.woocommerce-checkout table.shop_table tfoot tr.order-total td,
.woocommerce-checkout table.shop_table tfoot tr.order-total td strong,
.woocommerce-checkout table.shop_table tfoot tr.order-total td .amount {
    color: #000000 !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
}

@media (width<=768px) {

    /* Column 1 (Left Column) Alignment & Vertical Divider Line */
    .woocommerce-checkout table.shop_table th:first-child,
    .woocommerce-checkout table.shop_table td:first-child,
    .woocommerce-checkout #order_review table.shop_table th:first-child,
    .woocommerce-checkout #order_review table.shop_table td:first-child,
    .woocommerce-checkout table.shop_table th.product-name,
    .woocommerce-checkout table.shop_table td.product-name,
    .woocommerce-checkout table.shop_table td.shipping-method-name-cell,
    .woocommerce-checkout table.shop_table tfoot th {
        border-right: 0 !important;
    }

    .woocommerce-checkout table.shop_table tr.woocommerce-shipping-header-row th,
    .woocommerce-checkout table.shop_table tfoot tr.order-total th,
    .woocommerce-checkout table.shop_table thead th,
    .woocommerce-checkout #order_review table.shop_table thead th {
        letter-spacing: -.01em;
        font-size: 1.125rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
    }

    .woocommerce-checkout table.shop_table tbody tr td {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .woocommerce-cart .cart-product-img-wrapper,
    .woocommerce-cart table.shop_table.cart td.product-thumbnail {
        width: 96px !important;
        min-width: 95px !important;
    }

    .woocommerce-cart .cart-product-img-wrapper,
    .woocommerce-cart table.shop_table.cart td.product-thumbnail {
        width: 96px !important;
    }

    .woocommerce-cart .woocommerce table.shop_table .cart_item td.product-quantity {
        text-align: left !important;
        justify-content: start !important;
    }
}

@media (width<=576px) {
    .woocommerce-cart .cart_totals .cart-coupon-box .input-text {
        width: 70%;
    }

    .woocommerce-cart .cart_totals .cart-coupon-box button[name="apply_coupon"] {
        width: 30%;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        grid-template-columns: 70px 1fr 75px !important;
    }

    .woocommerce-cart .cart-product-img-wrapper img,
    .woocommerce-cart table.shop_table.cart td.product-thumbnail img {
        width: 70px !important;
        height: 70px !important;
    }

    .woocommerce-cart .cart-product-img-wrapper,
    .woocommerce-cart table.shop_table.cart td.product-thumbnail {
        width: 70px !important;
    }
}
.thankyou-page .woocommerce-table--order-details{
	border: 1px solid #e5e7eb !important;
}
.thankyou-page table.shop_table.woocommerce-table--order-details th,
.thankyou-page table.shop_table.woocommerce-table--order-details td{
	padding-left: 10px !important;
	padding-right: 10px !important;
}


.thankyou-page .woocommerce-thankyou-order-received-title{
    display: flex;
    align-items: center;
    gap: 10px;
}
.thankyou-page .woocommerce-thankyou-order-received-title img{
    width: 40px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.woocommerce-checkout .thankyou-page h3{
    color: #212529;
    font-weight: 600 !important;
    font-size: 26px !important;
}
.thankyou-page .woocommerce-order-section,
.thankyou-page .woocommerce-order-details {
    background-color: #e6e6e6;
    padding: 10px 20px;
}
.thankyou-page table.shop_table.woocommerce-table--order-details{
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}
.thankyou-page table.shop_table.woocommerce-table--order-details,
.thankyou-page table.shop_table.woocommerce-table--order-details th,
.thankyou-page table.shop_table.woocommerce-table--order-details td{
    border: 0 !important;
}
.thankyou-page table.shop_table.woocommerce-table--order-details  th,
.thankyou-page table.shop_table.woocommerce-table--order-details  th{
   font-weight: 600;
   color: #212529;
   font-size: 18px;
}
.thankyou-page table.shop_table.woocommerce-table--order-details tr.order_item td,
.thankyou-page table.shop_table.woocommerce-table--order-details th{
    padding-left: 0 !important;
    padding-bottom: 4px !important;
}
.thankyou-page table.shop_table.woocommerce-table--order-details td{
    padding-right: 0 !important;
}
.woocommerce-checkout .thankyou-page table.shop_table td,
.woocommerce-checkout .thankyou-page table.shop_table td *,
.thankyou-page table.shop_table.woocommerce-table--order-details tfoot td,
.thankyou-page table.shop_table.woocommerce-table--order-details tfoot td *{
    color: #4D5761 !important;
    font-weight: 300 !important;
    font-size: 18px;
}
.woocommerce .woocommerce-customer-details address p,
.woocommerce .woocommerce-customer-details address{
    border: 0;
    padding: 0 !important;
}
.woocommerce .woocommerce-customer-details address{
    margin-top: 10px !important;
}
.woocommerce .woocommerce-customer-details address p::before{
    display: none;
}

.woocommerce-checkout .thankyou-page .order-form label{
    color: #212529;
    font-weight: 600 !important;
    font-size: 26px !important;
}
.woocommerce-checkout .thankyou-page  .heading-form_survey{
    color: #212529;
    font-weight: 500 !important;
    font-size: 32px;
}