/* =============================================================================
   Airaxle Child Theme – Frontend Styles
   All custom styles consolidated from inline wp_head blocks.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Custom Variation UI (.cv-*)
   Product page only – bundle cards, swatches, price display.
   ----------------------------------------------------------------------------- */

.cv-form .variations,
.cv-form .variations *,
.cv-form .woocommerce-variation-price { display: none !important; }

.cv-bundles { max-width: 540px; margin: 0 0 10px; }

.cv-bundle {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 10px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    background: #fff;
    overflow: visible;
}
.cv-bundle:hover { border-color: #aaa; }
.cv-bundle.cv-active {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

.cv-badge {
    position: absolute;
    top: -1px; right: -1px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    padding: 5px 14px;
    text-transform: uppercase;
    border-radius: 0 8px 0 6px;
    z-index: 2;
    line-height: 1.3;
}

.cv-head {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    gap: 14px;
}

.cv-radio {
    width: 24px; height: 24px;
    border: 2px solid #bbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .2s;
}
.cv-radio span {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s;
    display: block;
}
.cv-active .cv-radio { border-color: #111; }
.cv-active .cv-radio span { background: #111; }

.cv-label {
    font-size: 17px;
    font-weight: 700;
    flex: 1;
    line-height: 1.3;
}
.cv-price { text-align: right; line-height: 1.2; }
.cv-now {
    display: block;
    font-size: 22px;
    font-weight: 700;
}
.cv-was {
    display: inline;
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}
.cv-pct-off {
    display: inline;
    font-size: 12px;
    font-weight: 600;
    color: #e53935;
    margin-left: 4px;
}

.cv-colors {
    display: none;
    padding: 0 22px 20px;
}
.cv-active .cv-colors { display: block; }

.cv-clabel {
    font-size: 14px;
    font-weight: 600;
    color: #c44;
    margin: 0 0 10px;
}

.cv-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.cv-sw {
    width: 60px; height: 60px;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
    display: block;
}
.cv-sw:hover { border-color: #888; }
.cv-sw.cv-picked {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}
.cv-sw img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.cv-form .single_variation_wrap {
    max-width: 540px;
    margin-top: 4px;
}
.cv-form .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* -----------------------------------------------------------------------------
   Checkout – Product thumbnail in order review
   ----------------------------------------------------------------------------- */

.checkout-item-with-img {
    display: flex;
    align-items: center;
    gap: 10px;
}
.checkout-item-with-img img.checkout-product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}
.checkout-trust-img {
    text-align: center;
    margin-top: 20px;
}
.checkout-trust-img img {
    max-width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* -----------------------------------------------------------------------------
   Side Cart – Guarantee block, trust bar, coupon line, invoice totals
   ----------------------------------------------------------------------------- */

.xoo-wsc-guarantee {
    text-align: center;
    padding: 14px 16px 18px;
}
.xoo-wsc-guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.xoo-wsc-guarantee-text svg {
    flex-shrink: 0;
}
.xoo-wsc-payment-icons img {
    max-width: 260px;
    height: auto;
    display: inline-block;
}

.xoo-wsc-trust-bar {
    background: #222;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 9px 16px;
}

/* Side Cart – scroll hint (down arrow) */
.airaxle-wsc-scroll-hint {
    flex-shrink: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.airaxle-wsc-scroll-hint.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.airaxle-wsc-scroll-hint::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #333;
}
.airaxle-wsc-scroll-hint.is-visible::after {
    animation: airaxle-wsc-hint-bounce 1.2s ease-in-out infinite;
}
@keyframes airaxle-wsc-hint-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.xoo-wsc-coupon-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #1a8c1a;
    background: #eef8ee;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 6px;
    gap: 8px;
}
.xoo-wsc-coupon-label {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.xoo-wsc-coupon-amt {
    font-weight: 700;
    white-space: nowrap;
}

.xoo-wsc-invoice {
    padding: 14px 20px !important;
}
.xoo-wsc-inv-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}
.xoo-wsc-inv-row:last-of-type {
    border-bottom: none;
}
.xoo-wsc-inv-label {
    font-weight: 500;
}
.xoo-wsc-inv-value {
    font-weight: 600;
    text-align: right;
}
.xoo-wsc-inv-discount .xoo-wsc-inv-value,
.xoo-wsc-inv-coupon .xoo-wsc-inv-value {
    color: #1a8c1a;
}
.xoo-wsc-inv-coupon .xoo-wsc-inv-label {
    font-size: 13px;
}
.xoo-wsc-inv-final {
    border-top: 2px solid #222 !important;
    border-bottom: none !important;
    margin-top: 4px;
    padding-top: 10px !important;
}
.xoo-wsc-inv-final .xoo-wsc-inv-label {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}
.xoo-wsc-inv-final .xoo-wsc-inv-value {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/* -----------------------------------------------------------------------------
   Coupon Countdown Timer Banner
   ----------------------------------------------------------------------------- */

#coupon-timer-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    padding: 10px 16px;
    font-size: 14px;
    color: #e65100;
}
#coupon-timer-banner .ctb-icon { font-size: 18px; }
#coupon-timer-banner.ctb-urgent {
    background: #fbe9e7;
    border-color: #ef9a9a;
    color: #c62828;
}

/* -----------------------------------------------------------------------------
   Checkout Form Shortcode ([airaxle_checkout_form])
   ----------------------------------------------------------------------------- */

/* Hide default WooCommerce checkout when using custom airaxle form (avoids duplicate payment + Place order) */
body.airaxle-custom-checkout #order_review {
    display: none !important;
}

.airaxle-checkout-form-wrap { max-width: 100%; }
.airaxle-checkout-section { margin-bottom: 30px; }
.airaxle-checkout-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}
.airaxle-checkout .form-row { margin-bottom: 14px; }
.airaxle-checkout .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.airaxle-checkout .form-row input[type="text"],
.airaxle-checkout .form-row input[type="email"],
.airaxle-checkout .form-row input[type="tel"],
.airaxle-checkout .form-row input[type="password"],
.airaxle-checkout .form-row select,
.airaxle-checkout .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.airaxle-checkout .form-row input:focus,
.airaxle-checkout .form-row select:focus {
    border-color: #111;
    outline: none;
}
.airaxle-checkout .form-row-first,
.airaxle-checkout .form-row-last {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.airaxle-checkout .form-row-first { margin-right: 4%; }

.airaxle-ship-toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.airaxle-ship-toggle-label input[type="checkbox"] { width: auto; margin: 0; }

#airaxle-shipping-fields:not(.is-visible) { display: none !important; }
#airaxle-shipping-fields.is-visible { display: block !important; }

.airaxle-payment .payment_methods { list-style: none; margin: 0; padding: 0; }
.airaxle-payment .payment_methods li {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
}
.airaxle-payment .payment_methods li label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #54595F;
    margin: 0;
}
.airaxle-payment .payment_methods li input[type="radio"] { width: auto; margin: 0; }
.airaxle-payment .payment_box {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 14px;
    color: #54595F;
    font-weight: 400;
}
.airaxle-payment .payment_box p {
    color: #54595F;
    font-size: 14px;
    font-weight: 400;
}
.airaxle-payment .place-order {
    margin: 0;
    padding: 0;
}
.airaxle-payment .place-order #place_order {
    width: 100%;
    padding: 14px 32px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
}
.airaxle-payment .place-order #place_order:hover { background: #333; }

@media (max-width: 600px) {
    .airaxle-checkout .form-row-first,
    .airaxle-checkout .form-row-last { width: 100%; margin-right: 0; }
}

/* -----------------------------------------------------------------------------
   Order Summary Shortcode ([airaxle_order_summary])
   ----------------------------------------------------------------------------- */

.airaxle-order-summary {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px 24px;
    font-size: 14px;
    color: #333;
}
.airaxle-os-heading {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.airaxle-os-products { margin-bottom: 16px; }
.airaxle-os-product-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.airaxle-os-product-row:last-child { border-bottom: none; }

.airaxle-os-col-img .airaxle-os-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    display: block;
}

.airaxle-os-col-info { display: flex; flex-direction: column; gap: 4px; }
.airaxle-os-product-title { font-weight: 700; font-size: 14px; line-height: 1.3; }
.airaxle-os-product-meta { font-size: 12px; color: #666; }
.airaxle-os-product-meta dl.variation { margin: 0; }
.airaxle-os-product-meta dl.variation dt,
.airaxle-os-product-meta dl.variation dd { display: inline; margin: 0; font-size: 12px; }
.airaxle-os-product-meta dl.variation dt::after { content: ': '; }
.airaxle-os-product-meta dl.variation dd::after { content: ' · '; color: #ccc; }
.airaxle-os-product-meta dl.variation dd:last-child::after { content: ''; }
.airaxle-os-product-qty { font-size: 12px; color: #888; font-weight: 600; }

.airaxle-os-col-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    text-align: right;
}
.airaxle-os-product-net { font-weight: 700; font-size: 14px; }
.airaxle-os-product-regular { text-decoration: line-through; color: #aaa; font-size: 12px; }
.airaxle-os-product-pct {
    font-size: 11px;
    color: #1a8c1a;
    font-weight: 700;
    background: #eef8ee;
    padding: 1px 5px;
    border-radius: 4px;
}

.airaxle-os-totals { border-top: 2px solid #f0f0f0; padding-top: 4px; }
.airaxle-os-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
}
.airaxle-os-row:last-child { border-bottom: none; }
.airaxle-os-label { font-weight: 500; }
.airaxle-os-label small {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}
.airaxle-os-value { font-weight: 600; text-align: right; }
.airaxle-os-saving { color: #1a8c1a; }
.airaxle-os-total {
    border-top: 2px solid #222 !important;
    border-bottom: none !important;
    margin-top: 4px;
}
.airaxle-os-total .airaxle-os-label { font-size: 16px; font-weight: 700; color: #111; }
.airaxle-os-total .airaxle-os-value { font-size: 18px; font-weight: 700; color: #111; }

@media (max-width: 480px) {
    .airaxle-os-product-row { grid-template-columns: 50px 1fr auto; gap: 8px; }
    .airaxle-os-col-img .airaxle-os-thumb { width: 48px; height: 48px; }
}

/* -----------------------------------------------------------------------------
   Checkout Countdown Timer Banner (.airaxle-checkout-timer)
   Displayed above the [airaxle_order_summary] shortcode on the checkout page.
   ----------------------------------------------------------------------------- */

.airaxle-checkout-timer {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #5d4037;
}

.airaxle-checkout-timer .act-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.airaxle-checkout-timer .act-message {
    flex: 1;
    font-weight: 600;
    line-height: 1.4;
}

.airaxle-checkout-timer .act-clock {
    font-size: 20px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #bf360c;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 6px;
    padding: 4px 10px;
    flex-shrink: 0;
}

.airaxle-checkout-timer.act-urgent {
    background: #fbe9e7;
    border-color: #ef9a9a;
    color: #b71c1c;
}

.airaxle-checkout-timer.act-urgent .act-clock {
    color: #b71c1c;
    background: #ffebee;
    border-color: #ef9a9a;
}

@media (max-width: 480px) {
    .airaxle-checkout-timer {
        flex-wrap: wrap;
        gap: 6px;
    }
    .airaxle-checkout-timer .act-message {
        width: 100%;
        order: 2;
    }
    .airaxle-checkout-timer .act-clock {
        order: 3;
        width: 100%;
        text-align: center;
    }
}

/* -----------------------------------------------------------------------------
   Native WooCommerce Checkout – Airaxle Styling (body.airaxle-wc-checkout)
   Applied when using [woocommerce_checkout] in Gutenberg.
   ----------------------------------------------------------------------------- */

/* Two-column layout: form left, order sidebar right */
.airaxle-wc-checkout .woocommerce {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}
.airaxle-wc-checkout .woocommerce > .woocommerce-notices-wrapper,
.airaxle-wc-checkout .woocommerce > .checkout_coupon {
    grid-column: 1 / -1;
}
.airaxle-wc-checkout #customer_details {
    grid-column: 1;
}
.airaxle-wc-checkout .airaxle-order-sidebar {
    grid-column: 2;
}

/* Coupon toggle hidden via PHP; CSS fallback */
.airaxle-wc-checkout .woocommerce-form-coupon-toggle {
    display: none;
}

/* Section headings */
.airaxle-wc-checkout .woocommerce-checkout h3,
.airaxle-wc-checkout .airaxle-order-sidebar #order_review_heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}

/* Form fields */
.airaxle-wc-checkout .woocommerce-checkout .form-row { margin-bottom: 14px; }
.airaxle-wc-checkout .woocommerce-checkout .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.airaxle-wc-checkout .woocommerce-checkout .form-row input[type="text"],
.airaxle-wc-checkout .woocommerce-checkout .form-row input[type="email"],
.airaxle-wc-checkout .woocommerce-checkout .form-row input[type="tel"],
.airaxle-wc-checkout .woocommerce-checkout .form-row input[type="password"],
.airaxle-wc-checkout .woocommerce-checkout .form-row select,
.airaxle-wc-checkout .woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}
.airaxle-wc-checkout .woocommerce-checkout .form-row input:focus,
.airaxle-wc-checkout .woocommerce-checkout .form-row select:focus {
    border-color: #111;
    outline: none;
}
.airaxle-wc-checkout .woocommerce-checkout .form-row-first,
.airaxle-wc-checkout .woocommerce-checkout .form-row-last {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}
.airaxle-wc-checkout .woocommerce-checkout .form-row-first { margin-right: 4%; }

/* Shipping toggle */
.airaxle-wc-checkout #ship-to-different-address label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.airaxle-wc-checkout #ship-to-different-address input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Order sidebar wrapper (contains heading, timer, review table, trust, promise) */
.airaxle-wc-checkout .airaxle-order-sidebar {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px 24px;
    position: sticky;
    top: 20px;
}
.airaxle-wc-checkout .airaxle-order-sidebar #order_review {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}
.airaxle-wc-checkout .woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}
.airaxle-wc-checkout .woocommerce-checkout-review-order-table th,
.airaxle-wc-checkout .woocommerce-checkout-review-order-table td {
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    vertical-align: top;
}
.airaxle-wc-checkout .woocommerce-checkout-review-order-table thead th {
    font-weight: 600;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.airaxle-wc-checkout .woocommerce-checkout-review-order-table tfoot th {
    font-weight: 500;
}
.airaxle-wc-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.airaxle-wc-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
    border-top: 2px solid #222;
    border-bottom: none;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Product thumbnails in order review */
.airaxle-wc-checkout .checkout-item-with-img {
    display: flex;
    align-items: center;
    gap: 10px;
}
.airaxle-wc-checkout .checkout-item-with-img img.checkout-product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

/* Payment section (relocated into #customer_details by JS) */
.airaxle-wc-checkout #customer_details > .woocommerce-checkout-payment {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}
.airaxle-wc-checkout .woocommerce-checkout-payment {
    margin-top: 20px;
}
.airaxle-wc-checkout .wc_payment_methods {
    list-style: none;
    margin: 0;
    padding: 0;
}
.airaxle-wc-checkout .wc_payment_methods li {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
}
.airaxle-wc-checkout .wc_payment_methods li label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #54595F;
    margin: 0;
}
.airaxle-wc-checkout .wc_payment_methods li input[type="radio"] {
    width: auto;
    margin: 0;
}
.airaxle-wc-checkout .payment_box {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 14px;
    color: #54595F;
    font-weight: 400;
}
.airaxle-wc-checkout .payment_box p {
    color: #54595F;
    font-size: 14px;
    font-weight: 400;
}

/* Place order button */
.airaxle-wc-checkout .place-order {
    margin: 0;
    padding: 0;
}
.airaxle-wc-checkout #place_order {
    width: 100%;
    padding: 14px 32px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
}
.airaxle-wc-checkout #place_order:hover { background: #333; }

/* Trust image */
.airaxle-wc-checkout .checkout-trust-img {
    text-align: center;
    margin-top: 20px;
}
.airaxle-wc-checkout .checkout-trust-img img {
    max-width: 100%;
    height: auto;
}

/* Privacy / terms */
.airaxle-wc-checkout .woocommerce-terms-and-conditions-wrapper {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* Checkout header: logo + trust bar + badges (inside #customer_details) */
.airaxle-checkout-header {
    margin-bottom: 24px;
}
.airaxle-checkout-header__logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.airaxle-checkout-logo img {
    max-width: 140px;
    height: auto;
    display: block;
}
.airaxle-checkout-trustbar {
    max-width: 280px;
    height: auto;
    display: block;
}
.airaxle-checkout-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 12px 18px;
}
.airaxle-checkout-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}
.airaxle-checkout-badge img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* "The Air Axle Promise" section (right column, inside #order_review) */
.airaxle-promise-section {
    margin-top: 24px;
}
.airaxle-promise-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.airaxle-promise-divider::before,
.airaxle-promise-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}
.airaxle-promise-divider span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}
.airaxle-promise-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}
.airaxle-promise-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.airaxle-promise-feature__icon {
    margin: 0;
    flex-shrink: 0;
}
.airaxle-promise-feature__icon img {
    width: 64px;
    height: 64px;
    display: block;
}
.airaxle-promise-feature__content h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    border-bottom: none;
    padding-bottom: 0;
}
.airaxle-promise-feature__content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Customer reviews section (right column, inside promise section) */
.airaxle-reviews-section {
    margin-top: 24px;
}
.airaxle-reviews-heading {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #111;
}
.airaxle-review-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.airaxle-review-card__avatar {
    margin: 0;
    flex-shrink: 0;
}
.airaxle-review-card__avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.airaxle-review-card__name {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
    border-bottom: none;
    padding-bottom: 0;
}
.airaxle-review-card__text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Responsive: stack to single column */
@media (max-width: 768px) {
    .airaxle-wc-checkout .woocommerce {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .airaxle-wc-checkout #customer_details,
    .airaxle-wc-checkout .airaxle-order-sidebar {
        grid-column: 1;
    }
    .airaxle-wc-checkout .airaxle-order-sidebar {
        position: static;
    }
    .airaxle-wc-checkout .woocommerce-checkout .form-row-first,
    .airaxle-wc-checkout .woocommerce-checkout .form-row-last {
        width: 100%;
        margin-right: 0;
    }
    .airaxle-checkout-header__logos {
        justify-content: center;
    }
    .airaxle-checkout-badges {
        justify-content: center;
    }
}