/**
 * GHP cart upgrade banner and checkout eligibility UI.
 */
.woocommerce-cart .ghp-cart-upgrade-banner {
    position: sticky;
    top: 104px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, 1180px);
    margin: 0 auto 24px;
    padding: 18px 20px;
    border: 1px solid rgba(251, 146, 60, 0.46);
    border-radius: 18px;
    background: #ea580c;
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(234, 88, 12, 0.28), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
    overflow: hidden;
    isolation: isolate;
    animation: ghpCartBannerEnter 460ms cubic-bezier(0.22, 1, 0.36, 1) both,
        ghpCartBannerBreath 3.6s ease-in-out 640ms infinite;
}

.admin-bar.woocommerce-cart .ghp-cart-upgrade-banner {
    top: 136px;
}

.woocommerce-cart .ghp-cart-upgrade-banner::before {
    content: '';
    position: absolute;
    inset: -40% -20%;
    z-index: -1;
    display: none;
    background: none;
    transform: none;
    animation: none;
}

.woocommerce-cart .ghp-cart-upgrade-banner__pulse {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #fff7ed;
    box-shadow: 0 0 0 0 rgba(255, 247, 237, 0.82);
    animation: ghpCartPulse 1.9s ease-out infinite;
}

.woocommerce-cart .ghp-cart-upgrade-banner__content {
    flex: 1 1 auto;
    min-width: 0;
}

.woocommerce-cart .ghp-cart-upgrade-banner__eyebrow {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.88;
}

.woocommerce-cart .ghp-cart-upgrade-banner__message {
    display: block;
    font-size: clamp(15px, 1.45vw, 19px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.24), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 220ms ease,
        background-color 220ms ease,
        opacity 180ms ease;
    white-space: nowrap;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button:hover,
.woocommerce-cart .ghp-cart-upgrade-banner__button:focus-visible {
    transform: translateY(-2px);
    background: #020617;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.32), 0 0 0 3px rgba(255, 255, 255, 0.22);
    outline: none;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button.is-loading {
    pointer-events: none;
    opacity: 0.78;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button.is-loading::after {
    content: '';
    width: 14px;
    height: 14px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: ghpCartSpin 760ms linear infinite;
}

.woocommerce-cart .ghp-cart-minimum-message {
    margin: 12px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(239, 68, 68, 0.26);
    border-radius: 12px;
    background: rgba(254, 242, 242, 0.95);
    color: #991b1b;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
}

body.ghp-cart-checkout-blocked.woocommerce-cart .checkout-button,
body.ghp-cart-checkout-blocked.woocommerce-cart .wc-proceed-to-checkout .button,
body.ghp-cart-checkout-blocked.woocommerce-cart a.checkout-button {
    background: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #f9fafb !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.72 !important;
    filter: grayscale(0.2);
}

body.ghp-cart-checkout-blocked.woocommerce-cart .checkout-button::after,
body.ghp-cart-checkout-blocked.woocommerce-cart .wc-proceed-to-checkout .button::after {
    display: none !important;
}

@keyframes ghpCartBannerEnter {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ghpCartBannerBreath {
    0%, 100% {
        box-shadow: 0 18px 42px rgba(234, 88, 12, 0.28), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
    }
    50% {
        box-shadow: 0 22px 52px rgba(220, 38, 38, 0.34), 0 1px 0 rgba(255, 255, 255, 0.26) inset;
    }
}

@keyframes ghpCartBannerShine {
    0%, 46% {
        transform: translateX(-48%);
    }
    76%, 100% {
        transform: translateX(48%);
    }
}

@keyframes ghpCartPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 247, 237, 0.76);
        transform: scale(0.95);
    }
    70% {
        box-shadow: 0 0 0 13px rgba(255, 247, 237, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 247, 237, 0);
        transform: scale(0.95);
    }
}

@keyframes ghpCartSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .woocommerce-cart .ghp-cart-upgrade-banner {
        top: 86px;
        width: calc(100% - 28px);
        margin-bottom: 20px;
    }

    .admin-bar.woocommerce-cart .ghp-cart-upgrade-banner {
        top: 118px;
    }
}

@media (max-width: 767px) {
    .woocommerce-cart .ghp-cart-upgrade-banner {
        position: relative;
        top: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .woocommerce-cart .ghp-cart-upgrade-banner__pulse {
        position: absolute;
        top: 18px;
        right: 18px;
    }

    .woocommerce-cart .ghp-cart-upgrade-banner__button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce-cart .ghp-cart-upgrade-banner,
    .woocommerce-cart .ghp-cart-upgrade-banner::before,
    .woocommerce-cart .ghp-cart-upgrade-banner__pulse,
    .woocommerce-cart .ghp-cart-upgrade-banner__button,
    .woocommerce-cart .ghp-cart-upgrade-banner__button.is-loading::after {
        animation: none !important;
        transition: none !important;
    }
}

/* v2.3.40: apply cart rules inside WoodMart / WooCommerce side cart, not only the cart page. */
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice,
.cart-widget-side .ghp-cart-mini-upgrade-notice,
.wd-side-hidden .ghp-cart-mini-upgrade-notice {
    margin: 12px 0 10px;
    padding: 14px;
    border: 1px solid rgba(249, 115, 22, 0.42);
    border-radius: 16px;
    background: #ea580c;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.22), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
    overflow: hidden;
    animation: ghpCartBannerEnter 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.cart-widget-side .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.wd-side-hidden .ghp-cart-mini-upgrade-notice.is-checkout-blocked {
    background: #dc2626;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__text,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__text,
.cart-widget-side .ghp-cart-mini-upgrade-notice__text,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__text {
    display: grid;
    gap: 5px;
    margin-bottom: 12px;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__eyebrow,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__eyebrow,
.cart-widget-side .ghp-cart-mini-upgrade-notice__eyebrow,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__eyebrow {
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    opacity: 0.88;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice strong,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice strong,
.cart-widget-side .ghp-cart-mini-upgrade-notice strong,
.wd-side-hidden .ghp-cart-mini-upgrade-notice strong {
    display: block;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.42;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.22), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 180ms ease, opacity 160ms ease;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button:hover,
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button:focus-visible,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button:hover,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button:focus-visible,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button:hover,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button:focus-visible,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button:hover,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.28), 0 0 0 3px rgba(255, 255, 255, 0.2);
    outline: none;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button.is-loading,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button.is-loading,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button.is-loading,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button.is-loading {
    pointer-events: none;
    opacity: 0.78;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button.is-loading::after,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button.is-loading::after,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button.is-loading::after,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button.is-loading::after {
    content: '';
    width: 13px;
    height: 13px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-top-color: #ffffff;
    border-radius: 999px;
    animation: ghpCartSpin 760ms linear infinite;
}

body.ghp-cart-checkout-blocked .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .widget_shopping_cart_content .buttons .checkout,
body.ghp-cart-checkout-blocked .cart-widget-side .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .cart-widget-side .buttons .checkout,
body.ghp-cart-checkout-blocked .wd-side-hidden .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .wd-side-hidden .buttons .checkout,
body.ghp-cart-checkout-blocked .ghp-site-header-module .ghp-site-header__cart-side-body .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .ghp-site-header-module .ghp-site-header__cart-side-body .buttons .checkout,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.widget_shopping_cart_content .buttons .checkout.ghp-checkout-disabled,
.cart-widget-side .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.cart-widget-side .buttons .checkout.ghp-checkout-disabled,
.wd-side-hidden .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.wd-side-hidden .buttons .checkout.ghp-checkout-disabled,
.ghp-site-header-module .ghp-site-header__cart-side-body .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.ghp-site-header-module .ghp-site-header__cart-side-body .buttons .checkout.ghp-checkout-disabled {
    background: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #f8fafc !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.72 !important;
    transform: none !important;
    filter: grayscale(0.18) !important;
}

body.ghp-cart-checkout-blocked .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout:hover,
body.ghp-cart-checkout-blocked .widget_shopping_cart_content .buttons .checkout:hover,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled:hover,
.widget_shopping_cart_content .buttons .checkout.ghp-checkout-disabled:hover {
    background: #9ca3af !important;
    opacity: 0.72 !important;
    transform: none !important;
}

.ghp-cart-shake {
    animation: ghpCartShake 420ms cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

@keyframes ghpCartShake {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-3px); }
    40%, 60% { transform: translateX(3px); }
}

@media (prefers-reduced-motion: reduce) {
    .widget_shopping_cart_content .ghp-cart-mini-upgrade-notice,
    .widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button,
    .widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button.is-loading::after,
    .ghp-cart-shake {
        animation: none !important;
        transition: none !important;
    }
}


/* v2.3.42 - Cart banner uses pure solid colors only; no gradient backgrounds. */
.woocommerce-cart .ghp-cart-upgrade-banner,
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice,
.cart-widget-side .ghp-cart-mini-upgrade-notice,
.wd-side-hidden .ghp-cart-mini-upgrade-notice {
    background: #ea580c !important;
    background-image: none !important;
    background-color: #ea580c !important;
    border-color: rgba(234, 88, 12, 0.50) !important;
    box-shadow: 0 16px 34px rgba(234, 88, 12, 0.24) !important;
}

.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.cart-widget-side .ghp-cart-mini-upgrade-notice.is-checkout-blocked,
.wd-side-hidden .ghp-cart-mini-upgrade-notice.is-checkout-blocked {
    background: #dc2626 !important;
    background-image: none !important;
    background-color: #dc2626 !important;
    border-color: rgba(220, 38, 38, 0.50) !important;
    box-shadow: 0 16px 34px rgba(220, 38, 38, 0.22) !important;
}

.woocommerce-cart .ghp-cart-upgrade-banner::before {
    background-image: none !important;
    display: none !important;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button,
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button {
    background: #111827 !important;
    background-image: none !important;
    background-color: #111827 !important;
}

.woocommerce-cart .ghp-cart-upgrade-banner__button:hover,
.woocommerce-cart .ghp-cart-upgrade-banner__button:focus-visible,
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button:hover,
.widget_shopping_cart_content .ghp-cart-mini-upgrade-notice__button:focus-visible,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button:hover,
.ghp-site-header-module .ghp-site-header__cart-side-body .ghp-cart-mini-upgrade-notice__button:focus-visible,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button:hover,
.cart-widget-side .ghp-cart-mini-upgrade-notice__button:focus-visible,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button:hover,
.wd-side-hidden .ghp-cart-mini-upgrade-notice__button:focus-visible {
    background: #020617 !important;
    background-image: none !important;
    background-color: #020617 !important;
}

body.ghp-cart-checkout-blocked .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .widget_shopping_cart_content .buttons .checkout,
body.ghp-cart-checkout-blocked .cart-widget-side .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .cart-widget-side .buttons .checkout,
body.ghp-cart-checkout-blocked .wd-side-hidden .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .wd-side-hidden .buttons .checkout,
body.ghp-cart-checkout-blocked .ghp-site-header-module .ghp-site-header__cart-side-body .woocommerce-mini-cart__buttons .checkout,
body.ghp-cart-checkout-blocked .ghp-site-header-module .ghp-site-header__cart-side-body .buttons .checkout,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.widget_shopping_cart_content .buttons .checkout.ghp-checkout-disabled,
.cart-widget-side .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.cart-widget-side .buttons .checkout.ghp-checkout-disabled,
.wd-side-hidden .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.wd-side-hidden .buttons .checkout.ghp-checkout-disabled,
.ghp-site-header-module .ghp-site-header__cart-side-body .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled,
.ghp-site-header-module .ghp-site-header__cart-side-body .buttons .checkout.ghp-checkout-disabled,
body.ghp-cart-checkout-blocked .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout:hover,
body.ghp-cart-checkout-blocked .widget_shopping_cart_content .buttons .checkout:hover,
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout.ghp-checkout-disabled:hover,
.widget_shopping_cart_content .buttons .checkout.ghp-checkout-disabled:hover {
    background: #9ca3af !important;
    background-image: none !important;
    background-color: #9ca3af !important;
}

/* v2.3.43 - Distraction-free polished cart page: no header/footer, refined layout and banner. */
body.woocommerce-cart.ghp-cart-no-chrome .ghp-site-header-module,
body.woocommerce-cart.ghp-cart-no-chrome .whb-header,
body.woocommerce-cart.ghp-cart-no-chrome .whb-sticky-header,
body.woocommerce-cart.ghp-cart-no-chrome .whb-header-placeholder,
body.woocommerce-cart.ghp-cart-no-chrome .wd-header,
body.woocommerce-cart.ghp-cart-no-chrome header.site-header,
body.woocommerce-cart.ghp-cart-no-chrome .site-header,
body.woocommerce-cart.ghp-cart-no-chrome .main-header,
body.woocommerce-cart.ghp-cart-no-chrome #masthead,
body.woocommerce-cart.ghp-cart-no-chrome .footer-container,
body.woocommerce-cart.ghp-cart-no-chrome .wd-footer,
body.woocommerce-cart.ghp-cart-no-chrome footer.site-footer,
body.woocommerce-cart.ghp-cart-no-chrome .site-footer,
body.woocommerce-cart.ghp-cart-no-chrome #footer,
body.woocommerce-cart.ghp-cart-no-chrome .main-footer,
body.woocommerce-cart.ghp-cart-no-chrome .copyrights-wrapper,
body.woocommerce-cart.ghp-cart-no-chrome .min-footer,
body.woocommerce-cart.ghp-cart-no-chrome .woodmart-prefooter {
    display: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished {
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-page-polished .website-wrapper,
body.woocommerce-cart.ghp-cart-page-polished .main-page-wrapper,
body.woocommerce-cart.ghp-cart-page-polished .page-content,
body.woocommerce-cart.ghp-cart-page-polished .site-content {
    padding-top: 0 !important;
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-page-polished .main-page-wrapper {
    padding-bottom: 64px !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-breadcrumb,
body.woocommerce-cart.ghp-cart-page-polished .breadcrumbs,
body.woocommerce-cart.ghp-cart-page-polished .wd-breadcrumbs,
body.woocommerce-cart.ghp-cart-page-polished .page-title-default,
body.woocommerce-cart.ghp-cart-page-polished .title-size-default,
body.woocommerce-cart.ghp-cart-page-polished .wd-page-title {
    display: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .container,
body.woocommerce-cart.ghp-cart-page-polished .main-page-wrapper > .container,
body.woocommerce-cart.ghp-cart-page-polished .site-content > .container {
    max-width: 1180px !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 18px 72px;
}

body.woocommerce-cart.ghp-cart-page-polished h1,
body.woocommerce-cart.ghp-cart-page-polished .entry-title,
body.woocommerce-cart.ghp-cart-page-polished .page-title {
    margin: 0 0 20px !important;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-align: center;
}

body.woocommerce-cart.ghp-cart-page-polished h1::after,
body.woocommerce-cart.ghp-cart-page-polished .entry-title::after,
body.woocommerce-cart.ghp-cart-page-polished .page-title::after {
    content: '';
    display: block;
    width: 54px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: #22c55e;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-notices-wrapper {
    max-width: 1180px;
    margin: 0 auto 16px;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-message,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce-info,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce-error {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

body.woocommerce-cart.ghp-cart-page-polished .cart-content-wrapper,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form + .cart-collaterals {
    margin-top: 22px;
}

body.woocommerce-cart.ghp-cart-page-polished .cart-content-wrapper {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 28px;
    align-items: start;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form {
    min-width: 0;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

body.woocommerce-cart.ghp-cart-page-polished .shop_table,
body.woocommerce-cart.ghp-cart-page-polished table.shop_table {
    width: 100%;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table thead th {
    padding: 0 14px 8px !important;
    border: 0 !important;
    color: #64748b;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table tbody tr.cart_item {
    border-radius: 18px;
    background: #f8fafc;
    box-shadow: inset 0 0 0 1px #e5e7eb;
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 180ms ease,
        background-color 180ms ease;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table tbody tr.cart_item:hover {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #dbe3ef, 0 14px 34px rgba(15, 23, 42, 0.08);
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table td {
    padding: 16px 14px !important;
    border: 0 !important;
    vertical-align: middle !important;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table td:first-child {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table td:last-child {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .product-thumbnail img {
    width: 86px;
    max-width: 86px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .product-name a {
    color: #0f172a;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
    text-decoration: none;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .product-name a:hover {
    color: #16a34a;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .variation,
body.woocommerce-cart.ghp-cart-page-polished table.shop_table .wc-item-meta {
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .product-price,
body.woocommerce-cart.ghp-cart-page-polished table.shop_table .product-subtotal {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

body.woocommerce-cart.ghp-cart-page-polished .quantity,
body.woocommerce-cart.ghp-cart-page-polished .quantity input.qty {
    border-radius: 999px !important;
}

body.woocommerce-cart.ghp-cart-page-polished .quantity {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 2px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.woocommerce-cart.ghp-cart-page-polished .quantity input.qty {
    width: 58px;
    min-height: 34px;
    border: 0 !important;
    background: #ffffff !important;
    color: #0f172a;
    font-weight: 900;
    text-align: center;
    box-shadow: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .product-remove a,
body.woocommerce-cart.ghp-cart-page-polished a.remove {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c !important;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

body.woocommerce-cart.ghp-cart-page-polished .product-remove a:hover,
body.woocommerce-cart.ghp-cart-page-polished a.remove:hover {
    transform: translateY(-1px);
    background: #dc2626;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-page-polished table.shop_table .actions {
    padding: 18px 0 0 !important;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-page-polished .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
}

body.woocommerce-cart.ghp-cart-page-polished .coupon input.input-text {
    min-height: 46px;
    border: 1px solid #e2e8f0 !important;
    border-radius: 999px !important;
    background: #ffffff;
    box-shadow: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .button,
body.woocommerce-cart.ghp-cart-page-polished button.button,
body.woocommerce-cart.ghp-cart-page-polished input.button {
    min-height: 46px;
    border: 0 !important;
    border-radius: 999px !important;
    background: #0f172a !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 180ms ease,
        background-color 180ms ease,
        opacity 180ms ease;
}

body.woocommerce-cart.ghp-cart-page-polished .button:hover,
body.woocommerce-cart.ghp-cart-page-polished button.button:hover,
body.woocommerce-cart.ghp-cart-page-polished input.button:hover {
    transform: translateY(-1px);
    background: #020617 !important;
    background-image: none !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
}

body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals {
    width: auto !important;
}

body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals::before,
body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals::after {
    display: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals .cart_totals,
body.woocommerce-cart.ghp-cart-page-polished .cart_totals {
    float: none !important;
    width: 100% !important;
    position: sticky;
    top: 28px;
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

body.admin-bar.woocommerce-cart.ghp-cart-page-polished .cart-collaterals .cart_totals,
body.admin-bar.woocommerce-cart.ghp-cart-page-polished .cart_totals {
    top: 60px;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals h2 {
    margin: 0 0 16px !important;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals table.shop_table {
    border-spacing: 0 !important;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals table.shop_table tr {
    border-bottom: 1px solid #eef2f7;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals table.shop_table th,
body.woocommerce-cart.ghp-cart-page-polished .cart_totals table.shop_table td {
    padding: 13px 0 !important;
    border: 0 !important;
    color: #475569;
    font-size: 13px;
    line-height: 1.35;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals table.shop_table td {
    color: #0f172a;
    font-weight: 900;
    text-align: right;
}

body.woocommerce-cart.ghp-cart-page-polished .cart_totals .order-total th,
body.woocommerce-cart.ghp-cart-page-polished .cart_totals .order-total td {
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
}

body.woocommerce-cart.ghp-cart-page-polished .wc-proceed-to-checkout {
    padding: 16px 0 0 !important;
}

body.woocommerce-cart.ghp-cart-page-polished .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-page-polished a.checkout-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    border-radius: 999px !important;
    background: #16a34a !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(22, 163, 74, 0.24);
}

body.woocommerce-cart.ghp-cart-page-polished .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-cart.ghp-cart-page-polished a.checkout-button:hover {
    background: #15803d !important;
    background-image: none !important;
    box-shadow: 0 22px 42px rgba(22, 163, 74, 0.3);
}

body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished .checkout-button,
body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished .wc-proceed-to-checkout .button,
body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished a.checkout-button,
body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished .checkout-button:hover,
body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished .wc-proceed-to-checkout .button:hover,
body.ghp-cart-checkout-blocked.woocommerce-cart.ghp-cart-page-polished a.checkout-button:hover {
    background: #9ca3af !important;
    background-image: none !important;
    border-color: #9ca3af !important;
    color: #f8fafc !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.72 !important;
    transform: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner {
    position: sticky;
    top: 18px;
    z-index: 30;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 24px;
    padding: 18px 18px 18px 20px;
    border: 1px solid #fdba74 !important;
    border-left: 8px solid #f97316 !important;
    border-radius: 22px;
    background: #fff7ed !important;
    background-image: none !important;
    color: #7c2d12;
    box-shadow: 0 18px 44px rgba(154, 52, 18, 0.14), 0 1px 0 rgba(255, 255, 255, 0.9) inset !important;
    overflow: hidden;
    isolation: isolate;
    animation: ghpCartBannerEnter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.admin-bar.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner {
    top: 50px;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner.is-checkout-blocked {
    border-color: #fecaca !important;
    border-left-color: #dc2626 !important;
    background: #fef2f2 !important;
    background-image: none !important;
    color: #7f1d1d;
    box-shadow: 0 18px 44px rgba(127, 29, 29, 0.13), 0 1px 0 rgba(255, 255, 255, 0.88) inset !important;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__pulse {
    width: 16px;
    height: 16px;
    border: 3px solid #ffffff;
    background: #f97316;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.35);
    animation: ghpCartPulseSoft 1.8s ease-out infinite;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner.is-checkout-blocked .ghp-cart-upgrade-banner__pulse {
    background: #dc2626;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.32);
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__eyebrow {
    margin-bottom: 6px;
    color: #9a3412;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    opacity: 1;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner.is-checkout-blocked .ghp-cart-upgrade-banner__eyebrow {
    color: #991b1b;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__message {
    color: #7c2d12;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.38;
    font-weight: 900;
    letter-spacing: -0.02em;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner.is-checkout-blocked .ghp-cart-upgrade-banner__message {
    color: #7f1d1d;
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ea580c !important;
    background-image: none !important;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(234, 88, 12, 0.24);
}

body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__button:hover,
body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__button:focus-visible {
    background: #c2410c !important;
    background-image: none !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(194, 65, 12, 0.28), 0 0 0 4px rgba(249, 115, 22, 0.14);
}

@keyframes ghpCartPulseSoft {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.34);
        transform: scale(0.96);
    }
    72% {
        box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
        transform: scale(0.96);
    }
}

@media (max-width: 1024px) {
    body.woocommerce-cart.ghp-cart-page-polished .cart-content-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals .cart_totals,
    body.woocommerce-cart.ghp-cart-page-polished .cart_totals {
        position: relative;
        top: auto;
    }

    body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner {
        top: 14px;
        width: 100%;
    }

    body.admin-bar.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner {
        top: 46px;
    }
}

@media (max-width: 767px) {
    body.woocommerce-cart.ghp-cart-page-polished .woocommerce {
        padding: 22px 14px 52px;
    }

    body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form,
    body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals .cart_totals,
    body.woocommerce-cart.ghp-cart-page-polished .cart_totals {
        padding: 16px;
        border-radius: 20px;
    }

    body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner {
        position: relative;
        top: auto !important;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: start;
        gap: 12px;
        padding: 16px;
        border-left-width: 6px !important;
        border-radius: 18px;
    }

    body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__button {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 46px;
        white-space: normal;
    }

    body.woocommerce-cart.ghp-cart-page-polished .coupon {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    body.woocommerce-cart.ghp-cart-page-polished .coupon .button,
    body.woocommerce-cart.ghp-cart-page-polished .actions .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-page-polished .ghp-cart-upgrade-banner__pulse,
    body.woocommerce-cart.ghp-cart-page-polished table.shop_table tbody tr.cart_item,
    body.woocommerce-cart.ghp-cart-page-polished .button,
    body.woocommerce-cart.ghp-cart-page-polished button.button,
    body.woocommerce-cart.ghp-cart-page-polished input.button {
        animation: none !important;
        transition: none !important;
    }
}

/* v2.3.44 - Force cart-page polish for WoodMart, shortcode carts and WooCommerce Cart Blocks. */
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-site-header-module,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .whb-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .whb-sticky-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .whb-header-placeholder,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wd-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) header.site-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .site-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .main-header,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) #masthead,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .footer-container,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wd-footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) footer.site-footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .site-footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) #footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .main-footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .copyrights-wrapper,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .min-footer,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .woodmart-prefooter {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) {
    background: #f6f8fb !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .website-wrapper,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .main-page-wrapper,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .page-content,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .site-content,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .entry-content {
    background: #f6f8fb !important;
    padding-top: 0 !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .woocommerce,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wp-block-woocommerce-cart,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 36px 18px 72px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .woocommerce-breadcrumb,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .breadcrumbs,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wd-breadcrumbs,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .page-title-default,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wd-page-title {
    display: none !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner {
    position: relative !important;
    top: auto !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto 22px !important;
    padding: 18px 20px !important;
    border: 1px solid #fed7aa !important;
    border-left: 8px solid #f97316 !important;
    border-radius: 20px !important;
    background: #fff7ed !important;
    background-image: none !important;
    color: #7c2d12 !important;
    box-shadow: 0 18px 42px rgba(124, 45, 18, 0.10) !important;
    animation: ghpCartBannerEnter 360ms cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner.is-checkout-blocked {
    border-color: #fecaca !important;
    border-left-color: #ef4444 !important;
    background: #fef2f2 !important;
    color: #7f1d1d !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner::before {
    display: none !important;
    background: none !important;
    animation: none !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__pulse {
    width: 12px !important;
    height: 12px !important;
    border-radius: 999px !important;
    background: #f97316 !important;
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.34) !important;
    animation: ghpCartPulseSoft 1.8s ease-out infinite !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner.is-checkout-blocked .ghp-cart-upgrade-banner__pulse {
    background: #ef4444 !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__content {
    display: grid !important;
    gap: 5px !important;
    min-width: 0 !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__eyebrow {
    color: inherit !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    opacity: .78 !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__message {
    color: inherit !important;
    font-size: clamp(15px, 1.35vw, 18px) !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    letter-spacing: -.02em !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__button {
    min-height: 48px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f97316 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24) !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__button:hover,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__button:focus-visible {
    background: #ea580c !important;
    background-image: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 18px 36px rgba(234, 88, 12, 0.28), 0 0 0 4px rgba(249, 115, 22, 0.14) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .cart-content-wrapper,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .woocommerce-cart-form,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart-items,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-components-main {
    min-width: 0 !important;
    padding: 20px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .cart-collaterals .cart_totals,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .cart_totals,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-components-sidebar,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart__sidebar {
    padding: 22px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) table.shop_table tbody tr.cart_item,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart-items__row {
    border-radius: 18px !important;
    background: #f8fafc !important;
    box-shadow: inset 0 0 0 1px #e5e7eb !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) table.shop_table tbody tr.cart_item:hover,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart-items__row:hover {
    transform: translateY(-1px) !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 0 1px #dbe3ef, 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .checkout-button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-proceed-to-checkout .button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart__submit-button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) a[href*="/checkout"] {
    border-radius: 999px !important;
    background: #22c55e !important;
    background-image: none !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244).ghp-cart-checkout-blocked .checkout-button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244).ghp-cart-checkout-blocked .wc-proceed-to-checkout .button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244).ghp-cart-checkout-blocked .wc-block-cart__submit-button,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244).ghp-cart-checkout-blocked a[href*="/checkout"],
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-checkout-disabled {
    cursor: not-allowed !important;
    pointer-events: none !important;
    background: #9ca3af !important;
    background-image: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    opacity: .72 !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-v244-debug-marker {
    display: none !important;
}

@media (max-width: 1024px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .cart-content-wrapper,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wp-block-woocommerce-cart .wc-block-components-sidebar-layout,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .woocommerce,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wp-block-woocommerce-cart,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .wc-block-cart {
        padding: 22px 14px 52px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner {
        grid-template-columns: auto minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 16px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected, .ghp-cart-context-v244) .ghp-cart-upgrade-banner__button {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        white-space: normal !important;
    }
}

/* v2.3.45 - Distraction-free polished checkout page: no site chrome, refined layout. */
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .ghp-site-header-module,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .whb-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .whb-sticky-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .whb-header-placeholder,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wd-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) header.site-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .site-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .main-header,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #masthead,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .footer-container,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wd-footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) footer.site-footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .site-footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .main-footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .copyrights-wrapper,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .min-footer,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woodmart-prefooter,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .page-title,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wd-page-title,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .breadcrumbs,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-breadcrumb {
    display: none !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) {
    background: #f6f8fb !important;
    color: #111827 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .main-page-wrapper,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .website-wrapper,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .site-content,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #main,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wd-content-layout,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .content-layout-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #f6f8fb !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .container,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .site-content > .container,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .main-page-wrapper > .container {
    max-width: 1240px !important;
    width: 100% !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .entry-content > .woocommerce,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wp-block-woocommerce-checkout,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 42px 20px 76px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce > h1,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .entry-title {
    display: none !important;
}

.ghp-checkout-focus-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 0 0 24px;
    padding: 22px;
    border: 1px solid #dbe7f5;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    animation: ghpCheckoutEnter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ghp-checkout-focus-header__badge {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(26, 115, 232, 0.22);
}

.ghp-checkout-focus-header__copy {
    min-width: 0;
}

.ghp-checkout-focus-header__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #1a73e8;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ghp-checkout-focus-header h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.ghp-checkout-focus-header p {
    max-width: 620px;
    margin: 8px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.ghp-checkout-focus-header__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    min-width: 240px;
}

.ghp-checkout-focus-header__trust span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-notices-wrapper,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-form-coupon-toggle,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-form-login-toggle,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-form-coupon,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-form-login {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-info,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-message,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-error {
    margin: 0 0 16px !important;
    padding: 15px 18px !important;
    border: 1px solid #dbe7f5 !important;
    border-left: 5px solid #1a73e8 !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    color: #334155 !important;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-error {
    border-left-color: #ef4444 !important;
    color: #991b1b !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) form.checkout.woocommerce-checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
    gap: 26px !important;
    align-items: start !important;
    margin-top: 0 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #customer_details {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: grid !important;
    gap: 18px !important;
    min-width: 0 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #order_review_heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 0 -10px !important;
    padding: 0 4px !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #order_review,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .checkout-order-review {
    grid-column: 2 !important;
    grid-row: 2 !important;
    position: sticky !important;
    top: 24px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10) !important;
    animation: ghpCheckoutEnter 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.admin-bar:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #order_review,
.admin-bar:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order,
.admin-bar:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .checkout-order-review {
    top: 56px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-billing-fields,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-shipping-fields,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-additional-fields,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .col2-set .col-1,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .col2-set .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07) !important;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-billing-fields:hover,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-shipping-fields:hover,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-additional-fields:hover {
    transform: translateY(-1px) !important;
    border-color: #cbdff4 !important;
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.09) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .col2-set {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin: 0 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-billing-fields > h3,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-shipping-fields > h3,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-additional-fields > h3,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-billing-fields h3,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-shipping-fields h3,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-additional-fields h3 {
    margin: 0 0 16px !important;
    color: #0f172a !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.025em !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .form-row {
    margin-bottom: 15px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .form-row label {
    margin-bottom: 7px !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .form-row .required {
    color: #ef4444 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input.input-text,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='text'],
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='email'],
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='tel'],
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='password'],
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) select,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) textarea,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .select2-container--default .select2-selection--single {
    min-height: 48px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease, transform 160ms ease !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) textarea {
    min-height: 112px !important;
    padding-top: 13px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input.input-text:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='text']:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='email']:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='tel']:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) input[type='password']:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) select:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) textarea:focus,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .select2-container--open .select2-selection--single {
    border-color: #1a73e8 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.12) !important;
    outline: 0 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #0f172a !important;
    line-height: 48px !important;
    padding-left: 14px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    right: 10px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) table.shop_table,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table {
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table thead th,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table tbody td,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table tfoot th,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table tfoot td {
    padding: 15px 18px !important;
    border-color: #e5e7eb !important;
    color: #334155 !important;
    font-size: 14px !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table thead th {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table .order-total th,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order-table .order-total td {
    color: #0f172a !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #payment,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-payment {
    margin: 0 !important;
    padding: 18px !important;
    border-top: 1px solid #e5e7eb !important;
    background: #ffffff !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #payment ul.payment_methods {
    padding: 0 0 16px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #payment ul.payment_methods li {
    padding: 12px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 16px !important;
    background: #f8fafc !important;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #payment ul.payment_methods li:hover {
    border-color: #bfdbfe !important;
    background: #ffffff !important;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #payment .place-order {
    margin: 0 !important;
    padding: 18px 0 0 !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #place_order,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-checkout-place-order-button,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-button:not(.is-link) {
    width: 100% !important;
    min-height: 54px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #1a73e8 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: .02em !important;
    text-transform: none !important;
    box-shadow: 0 16px 34px rgba(26, 115, 232, 0.24) !important;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #place_order:hover,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #place_order:focus-visible,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-checkout-place-order-button:hover,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-button:not(.is-link):hover {
    background: #1558d6 !important;
    background-image: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 20px 40px rgba(21, 88, 214, 0.28) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-privacy-policy-text,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-terms-and-conditions-wrapper {
    color: #64748b !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

/* WooCommerce Checkout Block support. */
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-sidebar-layout,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
    gap: 26px !important;
    align-items: start !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-main,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout__main {
    padding: 22px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-sidebar,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout__sidebar {
    position: sticky !important;
    top: 24px !important;
    padding: 22px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10) !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-title,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-checkout-step__title {
    color: #0f172a !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-text-input input,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-form .wc-block-components-textarea {
    min-height: 48px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    box-shadow: none !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-totals-wrapper,
body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-order-summary {
    border-color: #e5e7eb !important;
}

body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .ghp-checkout-v245-debug-marker {
    display: none !important;
}

@keyframes ghpCheckoutEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .ghp-checkout-focus-header,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) form.checkout.woocommerce-checkout,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-sidebar-layout,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wp-block-woocommerce-checkout .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr !important;
    }

    .ghp-checkout-focus-header__trust {
        justify-content: flex-start;
        min-width: 0;
    }

    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #customer_details,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #order_review_heading,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) #order_review,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-checkout-review-order,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .checkout-order-review {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static !important;
    }
}

@media (max-width: 767px) {
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .entry-content > .woocommerce,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wp-block-woocommerce-checkout,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout {
        padding: 24px 14px 58px !important;
    }

    .ghp-checkout-focus-header {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 18px !important;
        border-radius: 22px !important;
    }

    .ghp-checkout-focus-header__badge {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-billing-fields,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-shipping-fields,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .woocommerce-additional-fields,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .col2-set .col-1,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .col2-set .col-2,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-main,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout__main,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-components-sidebar,
    body:is(.woocommerce-checkout, .ghp-checkout-page-polished, .ghp-checkout-runtime-detected, .ghp-checkout-context-v245) .wc-block-checkout__sidebar {
        padding: 16px !important;
        border-radius: 20px !important;
    }
}


/* v2.3.46 - Cart bug fix: generic checkout blocking and automatic totals refresh feedback. */
body.ghp-cart-checkout-blocked .checkout-button,
body.ghp-cart-checkout-blocked .wc-proceed-to-checkout .button,
body.ghp-cart-checkout-blocked .wc-block-cart__submit-button,
body.ghp-cart-checkout-blocked .wp-block-woocommerce-proceed-to-checkout-block a,
a.ghp-checkout-disabled,
button.ghp-checkout-disabled,
.ghp-checkout-disabled {
    background: #9ca3af !important;
    background-image: none !important;
    background-color: #9ca3af !important;
    border-color: #9ca3af !important;
    color: #f9fafb !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.72 !important;
    filter: grayscale(0.18) !important;
    transform: none !important;
}

body.ghp-cart-checkout-blocked .checkout-button:hover,
body.ghp-cart-checkout-blocked .wc-proceed-to-checkout .button:hover,
body.ghp-cart-checkout-blocked .wc-block-cart__submit-button:hover,
body.ghp-cart-checkout-blocked .wp-block-woocommerce-proceed-to-checkout-block a:hover,
a.ghp-checkout-disabled:hover,
button.ghp-checkout-disabled:hover,
.ghp-checkout-disabled:hover {
    background: #9ca3af !important;
    background-image: none !important;
    background-color: #9ca3af !important;
    color: #f9fafb !important;
    box-shadow: none !important;
    transform: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished form.woocommerce-cart-form.ghp-cart-auto-updating {
    position: relative;
    pointer-events: none;
}

body.woocommerce-cart.ghp-cart-page-polished form.woocommerce-cart-form.ghp-cart-auto-updating::after {
    content: 'Updating cart totals…';
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: rgba(248, 250, 252, 0.78);
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(3px);
}

body.woocommerce-cart.ghp-cart-page-polished form.woocommerce-cart-form .ghp-cart-auto-update-trigger {
    opacity: 0.68 !important;
}

/* v2.3.48 - Stable cart layout after WooCommerce AJAX/cart button updates.
 * Keep the original WooCommerce DOM intact and use CSS grid on the nearest cart root.
 */
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 36px 18px 72px !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-notices-wrapper,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-message,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-error,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-info,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-empty,
body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .return-to-shop,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-notices-wrapper,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-message,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-error,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-info,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-empty,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .return-to-shop {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-page-polished form.woocommerce-cart-form.ghp-cart-layout-stable-form,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > form.woocommerce-cart-form,
body.ghp-cart-runtime-detected.ghp-cart-page-polished form.woocommerce-cart-form.ghp-cart-layout-stable-form {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    align-self: start !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals,
body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals.ghp-cart-layout-stable-totals,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .cart-collaterals.ghp-cart-layout-stable-totals {
    grid-column: 2 / 3 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    align-self: start !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals .cart_totals,
body.woocommerce-cart.ghp-cart-page-polished .cart-collaterals.ghp-cart-layout-stable-totals .cart_totals,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals .cart_totals,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .cart-collaterals.ghp-cart-layout-stable-totals .cart_totals {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form table.shop_table,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce-cart-form table.shop_table {
    table-layout: auto !important;
}

body.woocommerce-cart.ghp-cart-page-polished.ghp-cart-is-updating .woocommerce-cart-form,
body.ghp-cart-runtime-detected.ghp-cart-page-polished.ghp-cart-is-updating .woocommerce-cart-form {
    opacity: 0.72;
    pointer-events: none;
}

body.woocommerce-cart.ghp-cart-page-polished.ghp-cart-is-updating .cart_totals,
body.ghp-cart-runtime-detected.ghp-cart-page-polished.ghp-cart-is-updating .cart_totals {
    opacity: 0.82;
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form.ghp-cart-auto-updating::after,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce-cart-form.ghp-cart-auto-updating::after {
    content: 'Updating cart…';
    display: block;
    margin-top: 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root,
    body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > form.woocommerce-cart-form,
    body.woocommerce-cart.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals,
    body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > form.woocommerce-cart-form,
    body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .cart-collaterals {
        grid-column: 1 / -1 !important;
    }
}

body.woocommerce-cart.ghp-cart-page-polished .woocommerce-cart-form.ghp-cart-auto-updating::after,
body.ghp-cart-runtime-detected.ghp-cart-page-polished .woocommerce-cart-form.ghp-cart-auto-updating::after {
    position: static !important;
    inset: auto !important;
    z-index: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
}

/* v2.3.48 - Hard cart layout reset.
 * The previous versions could let the banner/form/totals sit in different theme wrappers after WooCommerce refresh.
 * This block neutralizes legacy grid rules and uses one explicit shell built by ghp-cart.js.
 */
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce.ghp-cart-layout-stable-root,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-stable-root {
    display: block !important;
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 36px 18px 72px !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce-notices-wrapper:empty {
    display: none !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .cart-content-wrapper:empty,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .cart-content-wrapper:has(> .ghp-cart-layout-shell:only-child) {
    display: contents !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 740px) minmax(340px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > form.woocommerce-cart-form,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) form.woocommerce-cart-form.ghp-cart-layout-stable-form {
    grid-column: 1 / 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    padding: 22px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .cart-collaterals.ghp-cart-layout-stable-totals {
    grid-column: 2 / 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    float: none !important;
    clear: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals > .cart_totals,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .cart-collaterals.ghp-cart-layout-stable-totals > .cart_totals {
    position: sticky !important;
    top: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

body.admin-bar:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals > .cart_totals,
body.admin-bar:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .cart-collaterals.ghp-cart-layout-stable-totals > .cart_totals {
    top: 60px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner {
    display: grid !important;
    grid-template-columns: 14px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 1180px !important;
    min-width: 0 !important;
    margin: 0 auto 24px !important;
    padding: 18px 20px !important;
    border: 1px solid #fed7aa !important;
    border-left: 8px solid #f97316 !important;
    border-radius: 22px !important;
    background: #fff7ed !important;
    background-image: none !important;
    color: #7c2d12 !important;
    box-shadow: 0 18px 44px rgba(124, 45, 18, 0.10) !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner.is-checkout-blocked {
    border-color: #fecaca !important;
    border-left-color: #ef4444 !important;
    background: #fef2f2 !important;
    color: #7f1d1d !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__content {
    display: grid !important;
    gap: 6px !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__message {
    display: block !important;
    color: inherit !important;
    font-size: clamp(15px, 1.2vw, 18px) !important;
    line-height: 1.35 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__button {
    position: static !important;
    justify-self: end !important;
    width: auto !important;
    max-width: 280px !important;
    min-height: 48px !important;
    padding: 0 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f97316 !important;
    background-image: none !important;
    color: #ffffff !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: .03em !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.22) !important;
    transform: none !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__button:hover,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__button:focus-visible {
    background: #ea580c !important;
    background-image: none !important;
    transform: translateY(-1px) !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) form.woocommerce-cart-form table.shop_table {
    width: 100% !important;
    min-width: 640px !important;
    table-layout: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) form.woocommerce-cart-form .shop_table_responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart th.product-name,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.product-name {
    min-width: 220px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart th.product-thumbnail,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.product-thumbnail {
    width: 96px !important;
    min-width: 96px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart th.product-price,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.product-price {
    width: 110px !important;
    min-width: 92px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart th.product-quantity,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.product-quantity {
    width: 150px !important;
    min-width: 138px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart th.product-subtotal,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.product-subtotal {
    width: 120px !important;
    min-width: 110px !important;
    text-align: right !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.actions {
    padding-top: 20px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) table.shop_table.cart td.actions .coupon {
    max-width: 430px !important;
}

@media (max-width: 1100px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > form.woocommerce-cart-form,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals {
        grid-column: 1 / -1 !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals > .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce.ghp-cart-layout-stable-root,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-stable-root {
        padding: 24px 14px 56px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner {
        grid-template-columns: 12px minmax(0, 1fr) !important;
        gap: 12px !important;
        padding: 16px !important;
        border-left-width: 6px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-upgrade-banner__button {
        grid-column: 1 / -1 !important;
        justify-self: stretch !important;
        width: 100% !important;
        max-width: none !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > form.woocommerce-cart-form,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart-collaterals > .cart_totals {
        padding: 16px !important;
        border-radius: 20px !important;
    }
}

/* v2.3.48 fallback when the theme outputs .cart_totals without a .cart-collaterals wrapper. */
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart_totals {
    grid-column: 2 / 3 !important;
    position: sticky !important;
    top: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

@media (max-width: 1100px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell > .cart_totals {
        grid-column: 1 / -1 !important;
        position: relative !important;
        top: auto !important;
    }
}

/* v2.3.51 - Authoritative cart template layout fix.
 * The cart table and cart totals now come from child-theme woocommerce/cart/cart.php
 * inside .ghp-cart-layout-shell. These rules intentionally override all legacy
 * WoodMart/cart-content-wrapper/grid/floating rules from previous versions.
 */
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce:has(.ghp-cart-page-shell) {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell {
    display: block !important;
    width: 100% !important;
    max-width: 1180px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 18px 72px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    clear: both !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce > .ghp-cart-upgrade-banner,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-upgrade-banner {
    width: calc(100% - 36px) !important;
    max-width: 1144px !important;
    margin: 36px auto 24px !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-layout-shell,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    clear: both !important;
    overflow: visible !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > form.woocommerce-cart-form,
body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals {
    position: relative !important;
    z-index: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > form.woocommerce-cart-form {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    padding: 22px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals > .cart_totals {
    position: sticky !important;
    top: 28px !important;
    z-index: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

body.admin-bar:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals > .cart_totals {
    top: 60px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart {
    width: 100% !important;
    min-width: 680px !important;
    max-width: none !important;
    table-layout: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template .cart-collaterals .cart_totals table.shop_table {
    min-width: 0 !important;
    width: 100% !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart td.actions {
    padding-top: 20px !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart td.actions .coupon {
    display: inline-flex !important;
    width: auto !important;
    max-width: 440px !important;
    margin-right: 12px !important;
    vertical-align: middle !important;
}

body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart td.actions > .button[name="update_cart"] {
    float: right !important;
}

@media (max-width: 1100px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-layout-shell,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > form.woocommerce-cart-form,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals > .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell {
        padding: 0 14px 56px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .woocommerce > .ghp-cart-upgrade-banner,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-upgrade-banner {
        width: calc(100% - 28px) !important;
        margin-top: 24px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > form.woocommerce-cart-form,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template > .cart-collaterals > .cart_totals {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart td.actions .coupon {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }

    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-layout-shell.ghp-cart-layout-shell--template table.shop_table.cart td.actions > .button[name="update_cart"] {
        float: none !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
}


/* v2.3.52 - Cart page root-grid collision fix.
 * The previous stable-root helper class was still being styled as a two-column
 * grid by legacy CSS. That made .ghp-cart-page-shell become only the left grid
 * item, so the cart form collapsed to a very narrow column and the totals card
 * visually floated beside/over it. These final rules make the WooCommerce root
 * a neutral block container and put the two-column layout only on the intended
 * child shell. They also support the fallback DOM where form/totals are direct
 * children of .ghp-cart-page-shell after an AJAX refresh.
 */
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root,
body.ghp-cart-runtime-detected .woocommerce.ghp-cart-layout-stable-root,
body.ghp-cart-context-v252 .woocommerce.ghp-cart-layout-stable-root {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    align-items: initial !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .woocommerce-notices-wrapper,
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .woocommerce-message,
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .woocommerce-error,
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .woocommerce-info,
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-page-shell,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-notices-wrapper,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-message,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-error,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .woocommerce-info,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-page-shell {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner {
    width: calc(100% - 36px) !important;
    max-width: 1144px !important;
    margin-top: 36px !important;
    margin-bottom: 24px !important;
}

body.woocommerce-cart .ghp-cart-page-shell,
body.ghp-cart-page-polished .ghp-cart-page-shell,
body.ghp-cart-runtime-detected .ghp-cart-page-shell,
body.ghp-cart-context-v252 .ghp-cart-page-shell {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1180px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 18px 72px !important;
    box-sizing: border-box !important;
    clear: both !important;
    overflow: visible !important;
}

body.woocommerce-cart .ghp-cart-page-shell > .ghp-cart-layout-shell,
body.ghp-cart-page-polished .ghp-cart-page-shell > .ghp-cart-layout-shell,
body.ghp-cart-runtime-detected .ghp-cart-page-shell > .ghp-cart-layout-shell,
body.ghp-cart-context-v252 .ghp-cart-page-shell > .ghp-cart-layout-shell {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

body.woocommerce-cart .ghp-cart-page-shell > form.woocommerce-cart-form,
body.ghp-cart-page-polished .ghp-cart-page-shell > form.woocommerce-cart-form,
body.ghp-cart-runtime-detected .ghp-cart-page-shell > form.woocommerce-cart-form,
body.ghp-cart-context-v252 .ghp-cart-page-shell > form.woocommerce-cart-form {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
}

body.woocommerce-cart .ghp-cart-page-shell > .cart-collaterals,
body.ghp-cart-page-polished .ghp-cart-page-shell > .cart-collaterals,
body.ghp-cart-runtime-detected .ghp-cart-page-shell > .cart-collaterals,
body.ghp-cart-context-v252 .ghp-cart-page-shell > .cart-collaterals {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

body.woocommerce-cart .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
body.ghp-cart-page-polished .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
body.ghp-cart-runtime-detected .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
body.ghp-cart-context-v252 .ghp-cart-page-shell > .cart-collaterals > .cart_totals {
    position: sticky !important;
    top: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
}

body.admin-bar.woocommerce-cart .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
body.admin-bar.ghp-cart-page-polished .ghp-cart-page-shell > .cart-collaterals > .cart_totals {
    top: 60px !important;
}

@media (max-width: 1100px) {
    body.woocommerce-cart .ghp-cart-page-shell,
    body.ghp-cart-page-polished .ghp-cart-page-shell,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell,
    body.ghp-cart-context-v252 .ghp-cart-page-shell,
    body.woocommerce-cart .ghp-cart-page-shell > .ghp-cart-layout-shell,
    body.ghp-cart-page-polished .ghp-cart-page-shell > .ghp-cart-layout-shell,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell > .ghp-cart-layout-shell,
    body.ghp-cart-context-v252 .ghp-cart-page-shell > .ghp-cart-layout-shell {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-cart .ghp-cart-page-shell > form.woocommerce-cart-form,
    body.ghp-cart-page-polished .ghp-cart-page-shell > form.woocommerce-cart-form,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell > form.woocommerce-cart-form,
    body.woocommerce-cart .ghp-cart-page-shell > .cart-collaterals,
    body.ghp-cart-page-polished .ghp-cart-page-shell > .cart-collaterals,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell > .cart-collaterals,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-layout-shell > form.woocommerce-cart-form,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-layout-shell > .cart-collaterals {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    body.woocommerce-cart .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
    body.ghp-cart-page-polished .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell > .cart-collaterals > .cart_totals,
    body:is(.woocommerce-cart, .ghp-cart-page-polished, .ghp-cart-runtime-detected) .ghp-cart-page-shell > .ghp-cart-layout-shell > .cart-collaterals > .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-cart .ghp-cart-page-shell,
    body.ghp-cart-page-polished .ghp-cart-page-shell,
    body.ghp-cart-runtime-detected .ghp-cart-page-shell,
    body.ghp-cart-context-v252 .ghp-cart-page-shell {
        padding: 0 14px 56px !important;
    }

    body.woocommerce-cart .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner,
    body.ghp-cart-page-polished .woocommerce.ghp-cart-layout-stable-root > .ghp-cart-upgrade-banner {
        width: calc(100% - 28px) !important;
        margin-top: 24px !important;
    }
}

/* v2.3.53 - Deterministic cart layout wrappers.
 * The v2.3.52 screenshot showed the cart form still being squeezed to ~242px
 * because old grid selectors were still able to influence .ghp-cart-page-shell
 * and .ghp-cart-layout-shell. The cart template now uses unique v253 wrappers;
 * these last rules make those wrappers the only layout authority.
 */
body.woocommerce-cart.ghp-cart-context-v253 .woocommerce.ghp-cart-layout-stable-root,
body.woocommerce-cart.ghp-cart-context-v253 .woocommerce.ghp-cart-v253-root,
body.ghp-cart-page-polished.ghp-cart-context-v253 .woocommerce.ghp-cart-layout-stable-root,
body.ghp-cart-runtime-detected.ghp-cart-context-v253 .woocommerce.ghp-cart-layout-stable-root,
body.woocommerce-cart .woocommerce:has(.ghp-cart-v253-page),
body.ghp-cart-page-polished .woocommerce:has(.ghp-cart-v253-page) {
    display: block !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 0 !important;
    align-items: initial !important;
    justify-content: initial !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .woocommerce > .ghp-cart-upgrade-banner,
body.ghp-cart-page-polished.ghp-cart-context-v253 .woocommerce > .ghp-cart-upgrade-banner,
body.woocommerce-cart .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner {
    display: grid !important;
    grid-template-columns: 14px minmax(0, 1fr) auto !important;
    width: min(calc(100% - 36px), 1144px) !important;
    max-width: 1144px !important;
    min-width: 0 !important;
    margin: 36px auto 24px !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-page-shell.ghp-cart-v253-page,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-page-shell.ghp-cart-v253-page,
body.ghp-cart-runtime-detected.ghp-cart-context-v253 .ghp-cart-page-shell.ghp-cart-v253-page,
body.woocommerce-cart .ghp-cart-page-shell.ghp-cart-v253-page,
body.ghp-cart-page-polished .ghp-cart-page-shell.ghp-cart-v253-page {
    display: block !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 0 !important;
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 18px 72px !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    background: transparent !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.ghp-cart-runtime-detected.ghp-cart-context-v253 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.woocommerce-cart .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.ghp-cart-page-polished .ghp-cart-v253-page > .ghp-cart-v253-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px) !important;
    grid-template-rows: auto !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left,
body.woocommerce-cart .ghp-cart-v253-left {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right,
body.woocommerce-cart .ghp-cart-v253-right {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart .ghp-cart-v253-left > form.woocommerce-cart-form {
    display: block !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 22px !important;
    float: none !important;
    clear: none !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals,
body.woocommerce-cart .ghp-cart-v253-right > .cart-collaterals {
    display: block !important;
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    float: none !important;
    clear: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
body.woocommerce-cart .ghp-cart-v253-right > .cart-collaterals > .cart_totals {
    position: sticky !important;
    top: 28px !important;
    z-index: 1 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    float: none !important;
    clear: none !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08) !important;
    box-sizing: border-box !important;
}

body.admin-bar.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
body.admin-bar.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals {
    top: 60px !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart {
    width: 100% !important;
    min-width: 680px !important;
    max-width: none !important;
    table-layout: auto !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions {
    padding-top: 20px !important;
    white-space: normal !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .coupon {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 440px !important;
    margin: 0 12px 0 0 !important;
    vertical-align: middle !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"],
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"],
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"] {
    float: right !important;
}

@media (max-width: 1100px) {
    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left,
    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right,
    body.woocommerce-cart .ghp-cart-v253-left,
    body.woocommerce-cart .ghp-cart-v253-right {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.woocommerce-cart .ghp-cart-v253-right > .cart-collaterals > .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-page-shell.ghp-cart-v253-page,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-page-shell.ghp-cart-v253-page,
    body.woocommerce-cart .ghp-cart-page-shell.ghp-cart-v253-page {
        padding: 0 14px 56px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .woocommerce > .ghp-cart-upgrade-banner,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .woocommerce > .ghp-cart-upgrade-banner,
    body.woocommerce-cart .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner {
        width: calc(100% - 28px) !important;
        margin-top: 24px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.woocommerce-cart .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.woocommerce-cart .ghp-cart-v253-right > .cart-collaterals > .cart_totals {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .coupon {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"],
    body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"],
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions > .button[name="update_cart"] {
        float: none !important;
        width: 100% !important;
        margin-top: 10px !important;
    }
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-before-collaterals:empty,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-before-collaterals:empty,
body.woocommerce-cart .ghp-cart-v253-before-collaterals:empty {
    display: none !important;
}

body.woocommerce-cart.ghp-cart-context-v253 .ghp-cart-v253-before-collaterals,
body.ghp-cart-page-polished.ghp-cart-context-v253 .ghp-cart-v253-before-collaterals,
body.woocommerce-cart .ghp-cart-v253-before-collaterals {
    margin: 0 0 16px !important;
}

/* v2.3.54 - Make the cart items fit without horizontal clipping.
 * v2.3.53 separated the left/right columns, but the native WooCommerce table
 * still had a fixed 680px minimum width inside a padded card. On the live page
 * this created a horizontal scrollbar and clipped Subtotal / Update cart.
 * These final rules make the cart table a compact card-grid while preserving
 * WooCommerce's native form fields and actions.
 */
body.woocommerce-cart.ghp-cart-context-v254 .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner,
body.ghp-cart-page-polished.ghp-cart-context-v254 .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner,
body.woocommerce-cart .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner {
    width: min(calc(100% - 36px), 1320px) !important;
    max-width: 1320px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-page-shell.ghp-cart-v253-page,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-page-shell.ghp-cart-v253-page,
body.woocommerce-cart .ghp-cart-page-shell.ghp-cart-v253-page {
    width: min(100%, 1320px) !important;
    max-width: 1320px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.woocommerce-cart .ghp-cart-v253-page > .ghp-cart-v253-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px) !important;
    gap: 24px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart .ghp-cart-v253-left > form.woocommerce-cart-form {
    overflow-x: visible !important;
    padding: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    border-collapse: separate !important;
    border-spacing: 0 12px !important;
    overflow: visible !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart thead,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tbody {
    display: block !important;
    width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead tr,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead tr,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart thead tr,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 38px 76px minmax(0, 1fr) 72px 106px 82px !important;
    column-gap: 10px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead th,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead th,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart thead th,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item > td,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item > td,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item > td {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-thumbnail img,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-thumbnail img,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-thumbnail img {
    width: 72px !important;
    max-width: 72px !important;
    height: auto !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-name,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-name,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-name {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-name a,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-name a,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-name a {
    font-size: 13px !important;
    line-height: 1.28 !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .variation,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .variation,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .variation,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .wc-item-meta,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .wc-item-meta,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .wc-item-meta {
    font-size: 11px !important;
    line-height: 1.35 !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-price,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-price,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-price,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-subtotal,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-subtotal,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-subtotal {
    text-align: right !important;
    white-space: nowrap !important;
    font-size: 13px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-quantity,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .product-quantity,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .product-quantity {
    text-align: center !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .quantity,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .quantity,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .quantity {
    min-height: 36px !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .quantity input.qty,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart .quantity input.qty,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart .quantity input.qty {
    width: 42px !important;
    min-height: 30px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tr.ghp-cart-v254-actions-row,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tr.ghp-cart-v254-actions-row,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tr.ghp-cart-v254-actions-row,
body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tr:has(> td.actions),
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tr:has(> td.actions),
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tr:has(> td.actions) {
    display: block !important;
    width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 18px !important;
    white-space: normal !important;
    overflow: visible !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .coupon {
    flex: 1 1 360px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 260px !important;
    margin: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon input.input-text,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon input.input-text,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .coupon input.input-text {
    flex: 1 1 190px !important;
    min-width: 0 !important;
    width: auto !important;
}

body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .button,
body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .button,
body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .button {
    flex: 0 0 auto !important;
    float: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

@media (max-width: 1180px) {
    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left,
    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-right,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-right,
    body.woocommerce-cart .ghp-cart-v253-left,
    body.woocommerce-cart .ghp-cart-v253-right {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-right > .cart-collaterals > .cart_totals,
    body.woocommerce-cart .ghp-cart-v253-right > .cart-collaterals > .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-cart.ghp-cart-context-v254 .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner,
    body.woocommerce-cart .woocommerce:has(.ghp-cart-v253-page) > .ghp-cart-upgrade-banner {
        width: calc(100% - 28px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.woocommerce-cart .ghp-cart-v253-left > form.woocommerce-cart-form {
        padding: 16px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart thead,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart thead {
        display: none !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 34px 74px minmax(0, 1fr) !important;
        grid-template-areas:
            "remove thumb name"
            "remove thumb price"
            "remove thumb qty"
            "remove thumb subtotal" !important;
        row-gap: 8px !important;
        column-gap: 10px !important;
        padding: 14px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-remove,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-remove,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-remove { grid-area: remove !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-thumbnail,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-thumbnail,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-thumbnail { grid-area: thumb !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-name,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-name,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-name { grid-area: name !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-price { grid-area: price !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-quantity,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-quantity,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-quantity { grid-area: qty !important; text-align: left !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-subtotal { grid-area: subtotal !important; }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price,
    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-price,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-subtotal {
        display: flex !important;
        justify-content: space-between !important;
        gap: 12px !important;
        text-align: left !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price::before,
    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal::before,
    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-quantity::before,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-price::before,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-subtotal::before,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.product-quantity::before,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-price::before,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-subtotal::before,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.product-quantity::before {
        content: attr(data-title) !important;
        display: inline-block !important;
        margin-right: 10px !important;
        color: #64748b !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-content: stretch !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .coupon,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .coupon {
        display: grid !important;
        grid-template-columns: 1fr !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    body.woocommerce-cart.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .button,
    body.ghp-cart-page-polished.ghp-cart-context-v254 .ghp-cart-v253-left table.shop_table.cart td.actions .button,
    body.woocommerce-cart .ghp-cart-v253-left table.shop_table.cart td.actions .button {
        width: 100% !important;
    }
}

/* v2.3.55 - Wider, content-rich cart page with less dead whitespace.
 * This layer intentionally wins over all previous cart iterations. It keeps the
 * stable v2.3.53/v2.3.54 form/totals structure, but turns the page into a
 * fuller checkout-focused experience: overview header, shipping progress,
 * benefit strip, package helper, side confidence card, and next-step content.
 */
body.woocommerce-cart.ghp-cart-context-v255,
body.woocommerce-cart.ghp-cart-context-v255.ghp-cart-page-polished {
    background: #f4f7fb !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .website-wrapper,
body.woocommerce-cart.ghp-cart-context-v255 .main-page-wrapper,
body.woocommerce-cart.ghp-cart-context-v255 .page-content,
body.woocommerce-cart.ghp-cart-context-v255 .site-content,
body.woocommerce-cart.ghp-cart-context-v255 .content-layout-wrapper,
body.woocommerce-cart.ghp-cart-context-v255 .wd-content-layout,
body.woocommerce-cart.ghp-cart-context-v255 main.main-page-wrapper {
    background: #f4f7fb !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .main-page-wrapper {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .container,
body.woocommerce-cart.ghp-cart-context-v255 .main-page-wrapper > .container,
body.woocommerce-cart.ghp-cart-context-v255 .site-content > .container,
body.woocommerce-cart.ghp-cart-context-v255 .content-area,
body.woocommerce-cart.ghp-cart-context-v255 article.page,
body.woocommerce-cart.ghp-cart-context-v255 .entry-content {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .woocommerce,
body.woocommerce-cart.ghp-cart-context-v255.ghp-cart-page-polished .woocommerce {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 28px 32px 52px !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .woocommerce-notices-wrapper {
    width: min(calc(100vw - 64px), 1680px) !important;
    max-width: 1680px !important;
    margin: 0 auto 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .woocommerce > .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-upgrade-banner {
    width: min(calc(100vw - 64px), 1680px) !important;
    max-width: 1680px !important;
    margin: 0 auto 18px !important;
    position: relative !important;
    top: auto !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    padding: 16px 18px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 44px rgba(154, 52, 18, 0.12) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-upgrade-banner__message {
    font-size: 16px !important;
    line-height: 1.35 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-upgrade-banner__button {
    min-height: 44px !important;
    white-space: nowrap !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-page-shell.ghp-cart-v255-page,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-page {
    width: min(calc(100vw - 64px), 1680px) !important;
    max-width: 1680px !important;
    margin: 0 auto !important;
    padding: 0 0 36px !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px) !important;
    gap: 24px !important;
    align-items: stretch !important;
    margin: 0 0 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefits,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps {
    border: 1px solid #e2e8f0 !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero__copy {
    min-height: 174px !important;
    padding: 28px 30px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-eyebrow {
    display: block !important;
    margin: 0 0 8px !important;
    color: #2563eb !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero h1,
body.woocommerce-cart.ghp-cart-context-v255.ghp-cart-page-polished .ghp-cart-v255-hero h1 {
    margin: 0 0 10px !important;
    color: #0f172a !important;
    font-size: clamp(34px, 3.1vw, 58px) !important;
    line-height: 0.98 !important;
    font-weight: 950 !important;
    letter-spacing: -0.055em !important;
    text-align: left !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero h1::after,
body.woocommerce-cart.ghp-cart-context-v255.ghp-cart-page-polished .ghp-cart-v255-hero h1::after {
    display: none !important;
    content: none !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero p {
    max-width: 720px !important;
    margin: 0 !important;
    color: #475569 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-secondary-link,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-text-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06) !important;
    cursor: pointer !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-text-button {
    border-color: #fed7aa !important;
    background: #ea580c !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-secondary-link:hover,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-text-button:hover {
    transform: translateY(-1px) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 174px !important;
    padding: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card__top span {
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card__top strong {
    color: #0f172a !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress {
    width: 100% !important;
    height: 12px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress span {
    display: block !important;
    height: 100% !important;
    border-radius: inherit !important;
    background: #16a34a !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card p {
    margin: 14px 0 0 !important;
    color: #475569 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card p.is-unlocked {
    color: #15803d !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card p.is-locked {
    color: #b91c1c !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefits {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin: 0 0 22px !important;
    padding: 10px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefit {
    min-width: 0 !important;
    padding: 14px 18px !important;
    border-radius: 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefit:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefit strong {
    display: block !important;
    margin-bottom: 5px !important;
    color: #0f172a !important;
    font-size: 17px !important;
    font-weight: 950 !important;
    letter-spacing: -0.02em !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefit span {
    display: block !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px) !important;
    gap: 24px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-left,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right {
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v253-left > form.woocommerce-cart-form {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 22px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07) !important;
    overflow: visible !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-card-heading {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 0 14px !important;
    padding: 0 2px 14px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-card-heading h2,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-helper h2 {
    margin: 0 !important;
    color: #0f172a !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-count-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    white-space: nowrap !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    border: 0 !important;
    border-spacing: 0 12px !important;
    table-layout: fixed !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody {
    display: block !important;
    width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead tr,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    display: grid !important;
    grid-template-columns: 42px 88px minmax(220px, 1fr) 92px 120px 116px !important;
    gap: 0 12px !important;
    align-items: center !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead tr {
    padding: 0 16px 4px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    min-height: 96px !important;
    padding: 14px 16px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead th,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item > td {
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-sizing: border-box !important;
    white-space: normal !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead th {
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
    width: 78px !important;
    height: 78px !important;
    object-fit: cover !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-name,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-name * {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-name a {
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 950 !important;
    text-decoration: none !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .variation,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .wc-item-meta {
    margin: 6px 0 0 !important;
    color: #64748b !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-price,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-subtotal {
    color: #e11d48 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    text-align: right !important;
    white-space: nowrap !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-price {
    color: #334155 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form .quantity {
    display: inline-grid !important;
    grid-template-columns: 28px 42px 28px !important;
    align-items: center !important;
    width: auto !important;
    height: 42px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form .quantity input.qty {
    width: 42px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    border: 0 !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-align: center !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form .quantity .minus,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form .quantity .plus {
    width: 28px !important;
    height: 40px !important;
    min-height: 40px !important;
    border: 0 !important;
    background: #f8fafc !important;
    color: #64748b !important;
    font-weight: 900 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form a.remove {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 999px !important;
    background: #fee2e2 !important;
    color: #ef4444 !important;
    font-size: 20px !important;
    line-height: 1 !important;
    text-decoration: none !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 14px !important;
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon {
    display: flex !important;
    flex: 1 1 420px !important;
    gap: 10px !important;
    align-items: center !important;
    max-width: none !important;
    margin: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon input.input-text {
    flex: 1 1 260px !important;
    min-width: 180px !important;
    height: 46px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .button,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form button.button,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form input.button {
    min-height: 46px !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: 0.02em !important;
    white-space: nowrap !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions > .button[name="update_cart"] {
    float: none !important;
    margin: 0 !important;
    background: #64748b !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right > .cart-collaterals,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-collaterals {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-collaterals .cart_totals {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    position: sticky !important;
    top: 22px !important;
    padding: 24px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08) !important;
}

body.admin-bar.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals {
    top: 54px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals h2 {
    margin: 0 0 18px !important;
    color: #0f172a !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table {
    margin-bottom: 18px !important;
    border: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table tr {
    display: grid !important;
    grid-template-columns: minmax(90px, auto) minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 13px 0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table th,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table td {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table td {
    color: #0f172a !important;
    text-align: right !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table .order-total th,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals table.shop_table .order-total td {
    color: #e11d48 !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .wc-proceed-to-checkout,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals .wc-proceed-to-checkout {
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right a.checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 56px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: #16a34a !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    letter-spacing: 0.02em !important;
    box-shadow: 0 18px 36px rgba(22, 163, 74, 0.22) !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card {
    padding: 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card ul {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card li {
    position: relative !important;
    margin: 0 !important;
    padding-left: 28px !important;
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 999px !important;
    background: #dcfce7 !important;
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-helper {
    margin-top: 18px !important;
    padding: 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-helper__intro {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article {
    min-width: 0 !important;
    padding: 18px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article.is-recommended {
    border-color: #86efac !important;
    background: #f0fdf4 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article strong {
    display: block !important;
    margin-bottom: 5px !important;
    color: #0f172a !important;
    font-size: 17px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article span {
    display: inline-flex !important;
    margin-bottom: 10px !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #2563eb !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article p {
    margin: 0 !important;
    color: #475569 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid article button {
    margin-top: 14px !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #16a34a !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 22px !important;
    padding: 10px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps article {
    position: relative !important;
    min-width: 0 !important;
    padding: 18px 20px 18px 62px !important;
    border-radius: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps article:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps article > span {
    position: absolute !important;
    left: 18px !important;
    top: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 999px !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps strong {
    display: block !important;
    margin-bottom: 6px !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
}

@media (max-width: 1280px) {
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 390px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead tr,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 36px 76px minmax(180px, 1fr) 80px 108px 96px !important;
        gap: 0 10px !important;
    }
}

@media (max-width: 1100px) {
    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce {
        padding-inline: 22px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce > .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-page-shell.ghp-cart-v255-page,
    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce-notices-wrapper {
        width: min(calc(100vw - 44px), 100%) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 820px) {
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefits,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-grid,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-benefit:not(:last-child),
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-next-steps article:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart thead {
        display: none !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 34px 78px minmax(0, 1fr) !important;
        grid-template-areas:
            "remove thumb name"
            "remove thumb price"
            "remove thumb qty"
            "remove thumb subtotal" !important;
        row-gap: 8px !important;
        padding: 14px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-remove { grid-area: remove !important; }
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-thumbnail { grid-area: thumb !important; }
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-name { grid-area: name !important; }
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-price { grid-area: price !important; }
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-quantity { grid-area: qty !important; }
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-subtotal { grid-area: subtotal !important; }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-price,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-subtotal,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart .product-quantity {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-price::before,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-subtotal::before,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.product-quantity::before {
        content: attr(data-title) !important;
        margin-right: 12px !important;
        color: #64748b !important;
        font-size: 11px !important;
        font-weight: 950 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon {
        display: grid !important;
        grid-template-columns: 1fr !important;
        justify-content: stretch !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .button,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon input.input-text {
        width: 100% !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce {
        padding: 18px 14px 38px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce > .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-page-shell.ghp-cart-v255-page,
    body.woocommerce-cart.ghp-cart-context-v255 .woocommerce-notices-wrapper {
        width: calc(100vw - 28px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-upgrade-banner {
        grid-template-columns: auto minmax(0, 1fr) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-upgrade-banner__button {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero__copy,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-form,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-package-helper,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-side-card,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-right .cart_totals {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-hero__copy,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card {
        min-height: 0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-card-heading,
    body.woocommerce-cart.ghp-cart-context-v255 .ghp-cart-v255-progress-card__top {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* v2.3.56 - Shopper-assist cart refinement.
 * Adds a cleaner decision dashboard, smart recommendation content, better
 * desktop density, a 4-package helper, side comfort cards, and a sticky quick
 * checkout bar. Pure flat colors only; no gradients.
 */
body.woocommerce-cart.ghp-cart-context-v256,
body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-page-polished {
    background: #f3f6fb !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .main-page-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .woocommerce,
body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-page-polished .woocommerce {
    padding: 22px 40px 132px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .woocommerce-notices-wrapper,
body.woocommerce-cart.ghp-cart-context-v256 .woocommerce > .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-page-shell.ghp-cart-v256-page {
    width: min(calc(100vw - 80px), 1760px) !important;
    max-width: 1760px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-page-shell.ghp-cart-v256-page {
    padding-bottom: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-upgrade-banner {
    margin-bottom: 14px !important;
    padding: 14px 18px !important;
    border-radius: 20px !important;
    background: #fff7ed !important;
    border-color: #fb923c !important;
    box-shadow: 0 14px 34px rgba(154, 52, 18, 0.1) !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-upgrade-banner__message {
    font-size: 15px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 520px) !important;
    gap: 18px !important;
    margin-bottom: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-progress-card,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-benefits,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-card,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-next-steps {
    border: 1px solid #e1e8f2 !important;
    background: #ffffff !important;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06) !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-progress-card {
    min-height: 0 !important;
    padding: 24px !important;
    border-radius: 26px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero h1,
body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-page-polished .ghp-cart-v255-hero h1 {
    font-size: clamp(32px, 2.45vw, 50px) !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero p {
    max-width: 820px !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card {
    min-width: 0 !important;
    padding: 13px 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 18px !important;
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card span {
    display: block !important;
    margin-bottom: 4px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: 1.2 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-success {
    border-color: #86efac !important;
    background: #f0fdf4 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-success strong {
    color: #15803d !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-warning {
    border-color: #fdba74 !important;
    background: #fff7ed !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-warning strong {
    color: #c2410c !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-danger {
    border-color: #fecaca !important;
    background: #fff1f2 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-danger strong {
    color: #be123c !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-muted strong {
    color: #64748b !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-total strong,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-total .amount {
    color: #e11d48 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-progress-card__top {
    margin-bottom: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-progress {
    height: 14px !important;
    background: #e5e7eb !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-progress span {
    background: #16a34a !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-benefits {
    margin-bottom: 14px !important;
    border-radius: 24px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-benefit {
    padding: 12px 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-benefit strong {
    font-size: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board {
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.7fr) minmax(260px, 0.7fr) !important;
    gap: 0 !important;
    margin: 0 0 18px !important;
    padding: 10px !important;
    border-radius: 26px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board article {
    min-width: 0 !important;
    padding: 18px 20px !important;
    border-radius: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board article:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-recommendation h2 {
    margin: 0 0 8px !important;
    color: #0f172a !important;
    font-size: 24px !important;
    font-weight: 950 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.12 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-recommendation p,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-help-card p,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-mini-guide li {
    color: #475569 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-recommendation__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-primary-action,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-secondary-action,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-upgrade,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-checkout {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-primary-action,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-upgrade {
    background: #ea580c !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-secondary-action {
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    color: #0f172a !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-mini-guide strong,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-help-card strong {
    display: block !important;
    margin-bottom: 10px !important;
    color: #0f172a !important;
    font-size: 17px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-mini-guide ol {
    display: grid !important;
    gap: 8px !important;
    margin: 0 !important;
    padding-left: 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-grid,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-page > .ghp-cart-v253-grid {
    grid-template-columns: minmax(760px, 1fr) minmax(380px, 430px) !important;
    gap: 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-card {
    border-radius: 26px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-left > form.woocommerce-cart-form {
    padding: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-card-heading {
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart thead tr,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    grid-template-columns: 38px 86px minmax(300px, 1fr) 92px 124px 118px !important;
    gap: 0 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    min-height: 98px !important;
    background: #fbfdff !important;
    border-color: #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
    width: 76px !important;
    height: 76px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart .product-name a {
    font-size: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart td.actions {
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-collaterals .cart_totals {
    top: 20px !important;
    padding: 22px !important;
    border-color: #dbeafe !important;
}

body.admin-bar.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right .cart_totals {
    top: 52px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right a.checkout-button {
    min-height: 58px !important;
    background: #16a34a !important;
    box-shadow: 0 16px 30px rgba(22, 163, 74, 0.2) !important;
}

body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-checkout-blocked .ghp-cart-v255-right .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-checkout-blocked .ghp-cart-v255-right a.checkout-button,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-checkout.ghp-checkout-disabled {
    background: #94a3b8 !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-card {
    padding: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-row {
    padding: 14px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-row strong {
    display: block !important;
    margin-bottom: 4px !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-support-row span {
    display: block !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-helper {
    margin-top: 16px !important;
    padding: 20px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-grid article {
    padding: 16px !important;
    background: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-next-steps {
    margin-top: 18px !important;
    border-radius: 26px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar {
    position: fixed !important;
    left: 50% !important;
    bottom: 18px !important;
    z-index: 998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 14px !important;
    width: min(calc(100vw - 80px), 980px) !important;
    padding: 12px !important;
    border: 1px solid #dbeafe !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.18) !important;
    transform: translateX(-50%) !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar__metric {
    min-width: 116px !important;
    padding: 0 8px !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar__metric span {
    display: block !important;
    margin-bottom: 3px !important;
    color: #64748b !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar__metric strong,
body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar__metric .amount {
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    line-height: 1.15 !important;
}

body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-checkout {
    min-height: 46px !important;
    min-width: 190px !important;
    background: #16a34a !important;
    color: #ffffff !important;
}

@media (min-width: 1760px) {
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-grid,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 450px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart thead tr,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 42px 94px minmax(380px, 1fr) 108px 136px 132px !important;
    }
}

@media (max-width: 1380px) {
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-grid,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 400px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart thead tr,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 36px 76px minmax(190px, 1fr) 78px 108px 92px !important;
        gap: 0 9px !important;
    }
}

@media (max-width: 1180px) {
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-hero,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-grid,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-shopper-board article:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-right .cart_totals,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-collaterals .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 920px) {
    body.woocommerce-cart.ghp-cart-context-v256 .woocommerce,
    body.woocommerce-cart.ghp-cart-context-v256.ghp-cart-page-polished .woocommerce {
        padding: 18px 18px 126px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .woocommerce-notices-wrapper,
    body.woocommerce-cart.ghp-cart-context-v256 .woocommerce > .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-page-shell.ghp-cart-v256-page {
        width: calc(100vw - 36px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-card.is-total {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 720px) {
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-package-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar {
        left: 14px !important;
        right: 14px !important;
        bottom: 12px !important;
        width: auto !important;
        transform: none !important;
        border-radius: 24px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-upgrade,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-checkout {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-bar__metric {
        min-width: 0 !important;
        padding: 0 6px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-primary-action,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-secondary-action,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-upgrade,
    body.woocommerce-cart.ghp-cart-context-v256 .ghp-cart-v256-sticky-checkout {
        transition: none !important;
    }
}

/* v2.3.57 - Cart shopper flow, quick add and calmer premium UI.
 * Adds one-click package upgrades, quick add product cards, comfort support
 * content, and a softer high-conversion visual system. Pure flat colors only.
 */
body.woocommerce-cart.ghp-cart-context-v257,
body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-page-polished {
    background: #eef4fb !important;
    color: #0f172a !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .woocommerce,
body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-page-polished .woocommerce {
    padding: 24px 44px 138px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .woocommerce-notices-wrapper,
body.woocommerce-cart.ghp-cart-context-v257 .woocommerce > .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-page-shell.ghp-cart-v257-page {
    width: min(calc(100vw - 88px), 1840px) !important;
    max-width: 1840px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-upgrade-banner {
    border: 1px solid #fb923c !important;
    border-left-width: 8px !important;
    background: #fff7ed !important;
    box-shadow: 0 18px 46px rgba(154, 52, 18, 0.12) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-upgrade-banner__button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-text-button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-primary-action,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-sticky-upgrade,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-recommended:not(:disabled) {
    background: #f97316 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 26px rgba(249, 115, 22, 0.2) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(400px, 560px) !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-progress-card,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-benefits,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-shopper-board,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-support-card,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addons,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-next-steps,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-collaterals .cart_totals {
    border: 1px solid #dbe4ef !important;
    background: #ffffff !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-progress-card {
    padding: 28px !important;
    border-radius: 30px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero h1,
body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-page-polished .ghp-cart-v255-hero h1 {
    color: #0b1220 !important;
    font-size: clamp(38px, 2.75vw, 60px) !important;
    letter-spacing: -0.06em !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero p {
    max-width: 920px !important;
    color: #475569 !important;
    font-size: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-status-card {
    padding: 16px !important;
    border-radius: 20px !important;
    background: #f8fafc !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-action-card.is-muted {
    border-color: #bfdbfe !important;
    background: #eff6ff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-action-card.is-muted strong {
    color: #1d4ed8 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-progress {
    height: 16px !important;
    border-radius: 999px !important;
    background: #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-progress span {
    border-radius: inherit !important;
    background: #22c55e !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-benefits {
    overflow: hidden !important;
    margin-bottom: 16px !important;
    border-radius: 26px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-benefit {
    padding: 16px 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-benefit strong {
    color: #0f172a !important;
    font-size: 17px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-benefit span {
    color: #64748b !important;
    font-size: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-shopper-board {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr) minmax(280px, 0.75fr) !important;
    margin-bottom: 16px !important;
    padding: 12px !important;
    border-radius: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-shopper-board article {
    padding: 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-recommendation h2 {
    font-size: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts {
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) !important;
    gap: 18px !important;
    align-items: stretch !important;
    margin: 0 0 20px !important;
    padding: 18px !important;
    border-radius: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts__copy {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    padding: 8px 10px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts__copy h2,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading h2 {
    margin: 0 0 8px !important;
    color: #0f172a !important;
    font-size: 24px !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.12 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts__copy p {
    margin: 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: 132px !important;
    padding: 18px !important;
    border: 1px solid #dbe4ef !important;
    border-radius: 24px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut:not(:disabled):hover {
    border-color: #93c5fd !important;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.12) !important;
    transform: translateY(-2px) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut span {
    margin-bottom: 5px !important;
    color: #64748b !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut strong {
    color: inherit !important;
    font-size: 24px !important;
    font-weight: 950 !important;
    letter-spacing: -0.04em !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut em {
    margin-top: 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #e0f2fe !important;
    color: #0369a1 !important;
    font-size: 11px !important;
    font-style: normal !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-recommended:not(:disabled) span,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-recommended:not(:disabled) strong {
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-recommended:not(:disabled) em {
    background: #ffffff !important;
    color: #c2410c !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-complete,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut:disabled {
    cursor: default !important;
    opacity: 0.78 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-complete {
    border-color: #86efac !important;
    background: #f0fdf4 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut.is-complete em {
    background: #dcfce7 !important;
    color: #166534 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-grid,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-page > .ghp-cart-v253-grid {
    grid-template-columns: minmax(860px, 1fr) minmax(390px, 450px) !important;
    gap: 24px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-left > form.woocommerce-cart-form {
    padding: 22px !important;
    border-radius: 30px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-card-heading h2 {
    font-size: 24px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-count-pill {
    background: #eef6ff !important;
    color: #1d4ed8 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart thead tr,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    grid-template-columns: 42px 92px minmax(360px, 1fr) 104px 132px 126px !important;
    gap: 0 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    min-height: 108px !important;
    border-radius: 24px !important;
    background: #fbfdff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item:hover {
    border-color: #bfdbfe !important;
    background: #f8fbff !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
    width: 82px !important;
    height: 82px !important;
    border-radius: 18px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart .product-name a {
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.28 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart .product-subtotal,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart .product-subtotal .amount {
    color: #e11d48 !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 12px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon {
    flex: 1 1 420px !important;
    max-width: 660px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon input.input-text {
    min-height: 50px !important;
    border-color: #dbe4ef !important;
    background: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions .button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-grid article button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions .button[name="apply_coupon"],
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading a {
    background: #0f172a !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart td.actions .button[name="update_cart"] {
    background: #64748b !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-collaterals .cart_totals {
    top: 22px !important;
    padding: 24px !important;
    border-radius: 30px !important;
    border-color: #bfdbfe !important;
}

body.admin-bar.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right .cart_totals {
    top: 54px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right a.checkout-button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-sticky-checkout {
    background: #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 18px 32px rgba(22, 163, 74, 0.2) !important;
}

body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-checkout-blocked .ghp-cart-v255-right .wc-proceed-to-checkout .checkout-button,
body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-checkout-blocked .ghp-cart-v255-right a.checkout-button,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-sticky-checkout.ghp-checkout-disabled {
    background: #94a3b8 !important;
    box-shadow: none !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-support-card {
    border-radius: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-grid article {
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    background: #fbfdff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-grid article.is-recommended {
    border-color: #fdba74 !important;
    background: #fff7ed !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-grid article button {
    margin-top: 12px !important;
    background: #f97316 !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addons {
    margin-top: 20px !important;
    padding: 22px !important;
    border-radius: 30px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin-bottom: 16px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 14px !important;
    min-width: 0 !important;
    padding: 14px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    background: #fbfdff !important;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card:hover {
    border-color: #bfdbfe !important;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.1) !important;
    transform: translateY(-2px) !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    min-height: 112px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__image img {
    width: 100% !important;
    height: 112px !important;
    object-fit: contain !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__body {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__title {
    display: -webkit-box !important;
    overflow: hidden !important;
    color: #0f172a !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__price,
body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__price .amount {
    margin-top: 8px !important;
    color: #e11d48 !important;
    font-size: 14px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__button {
    align-self: flex-start !important;
    margin-top: auto !important;
    background: #2563eb !important;
    color: #ffffff !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    overflow: hidden !important;
    margin-top: 18px !important;
    border-radius: 28px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip article {
    padding: 20px 22px !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip article:not(:last-child) {
    border-right: 1px solid #e2e8f0 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip strong {
    display: block !important;
    margin-bottom: 6px !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip span {
    display: block !important;
    color: #64748b !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-sticky-bar {
    width: min(calc(100vw - 88px), 1080px) !important;
    border-color: #bfdbfe !important;
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.2) !important;
}

@media (min-width: 1760px) {
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: minmax(0, 1fr) minmax(420px, 470px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart thead tr,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 44px 100px minmax(460px, 1fr) 112px 142px 140px !important;
    }
}

@media (max-width: 1500px) {
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-page > .ghp-cart-v253-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 410px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart thead tr,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 38px 82px minmax(220px, 1fr) 88px 116px 100px !important;
        gap: 0 10px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1180px) {
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-hero,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-shopper-board,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcuts,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-shopper-board article:not(:last-child),
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-comfort-strip article:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-right .cart_totals,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-collaterals .cart_totals {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 920px) {
    body.woocommerce-cart.ghp-cart-context-v257 .woocommerce,
    body.woocommerce-cart.ghp-cart-context-v257.ghp-cart-page-polished .woocommerce {
        padding: 18px 18px 136px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .woocommerce-notices-wrapper,
    body.woocommerce-cart.ghp-cart-context-v257 .woocommerce > .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-page-shell.ghp-cart-v257-page {
        width: calc(100vw - 36px) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-status-card.is-total,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-action-card {
        grid-column: auto !important;
    }
}

@media (max-width: 720px) {
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-grid,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v255-package-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card {
        grid-template-columns: 96px minmax(0, 1fr) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__image,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card__image img {
        min-height: 96px !important;
        height: 96px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-section-heading a {
        width: 100% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-shortcut,
    body.woocommerce-cart.ghp-cart-context-v257 .ghp-cart-v257-addon-card {
        transition: none !important;
    }
}

/* v2.3.58 - Responsive cart layout hardening.
 * Purpose: make the cart comfortable on desktop, tablet and mobile without
 * horizontal clipping, oversized blank space, or sticky bar overlap.
 */
body.woocommerce-cart.ghp-cart-context-v258 {
    --ghp-cart-page-pad: clamp(12px, 2.2vw, 44px);
    --ghp-cart-card-pad: clamp(16px, 1.6vw, 28px);
    --ghp-cart-card-radius: clamp(20px, 1.6vw, 30px);
    --ghp-cart-gap: clamp(14px, 1.4vw, 24px);
    --ghp-cart-right-width: clamp(340px, 26vw, 450px);
    --ghp-cart-mobile-sticky-height: 172px;
    overflow-x: hidden !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .woocommerce,
body.woocommerce-cart.ghp-cart-context-v258.ghp-cart-page-polished .woocommerce {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100vw !important;
    padding: 22px var(--ghp-cart-page-pad) calc(140px + env(safe-area-inset-bottom, 0px)) !important;
    overflow-x: hidden !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .woocommerce *,
body.woocommerce-cart.ghp-cart-context-v258 .woocommerce *::before,
body.woocommerce-cart.ghp-cart-context-v258 .woocommerce *::after {
    box-sizing: border-box !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .woocommerce-notices-wrapper,
body.woocommerce-cart.ghp-cart-context-v258 .woocommerce > .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-page-shell.ghp-cart-v258-page {
    width: min(calc(100vw - var(--ghp-cart-page-pad) - var(--ghp-cart-page-pad)), 1760px) !important;
    max-width: 1760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-page-shell.ghp-cart-v258-page,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-page-shell.ghp-cart-v258-page > * {
    min-width: 0 !important;
    max-width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: clamp(10px, 1.2vw, 18px) !important;
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner__content,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner__text {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-shopper-board,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-grid,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-page > .ghp-cart-v253-grid,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-grid,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefits,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-grid,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip {
    min-width: 0 !important;
    max-width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr) !important;
    gap: var(--ghp-cart-gap) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-progress-card,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-support-card,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addons,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-collaterals .cart_totals {
    border-radius: var(--ghp-cart-card-radius) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero__copy,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-progress-card,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-helper,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addons,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-side-card,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-support-card {
    padding: var(--ghp-cart-card-pad) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero h1 {
    font-size: clamp(32px, 4vw, 60px) !important;
    line-height: 0.96 !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-status-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-shopper-board {
    grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.72fr) minmax(230px, 0.72fr) !important;
    gap: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcut-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-grid,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-page > .ghp-cart-v253-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) var(--ghp-cart-right-width) !important;
    gap: var(--ghp-cart-gap) !important;
    align-items: start !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-right,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left > form.woocommerce-cart-form,
body.woocommerce-cart.ghp-cart-context-v258 .cart-collaterals,
body.woocommerce-cart.ghp-cart-context-v258 .cart_totals {
    min-width: 0 !important;
    max-width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-right .cart_totals,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-collaterals .cart_totals {
    position: sticky !important;
    top: 18px !important;
    width: 100% !important;
}

body.admin-bar.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-right .cart_totals,
body.admin-bar.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-collaterals .cart_totals {
    top: 54px !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    overflow: visible !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart thead tr,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
    grid-template-columns: 36px clamp(68px, 7vw, 96px) minmax(0, 1fr) minmax(78px, 0.12fr) minmax(108px, 0.16fr) minmax(92px, 0.13fr) !important;
    gap: 0 clamp(8px, 1vw, 14px) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item > td,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item > td * {
    min-width: 0 !important;
    max-width: 100% !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
    width: clamp(62px, 6.4vw, 84px) !important;
    height: clamp(62px, 6.4vw, 84px) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-name a {
    display: inline-block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    hyphens: auto !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .variation,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .wc-item-meta {
    overflow-wrap: anywhere !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form .quantity {
    max-width: 112px !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions {
    display: grid !important;
    grid-template-columns: minmax(260px, 1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon {
    display: grid !important;
    grid-template-columns: minmax(160px, 1fr) auto !important;
    gap: 10px !important;
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .button,
body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon input.input-text {
    min-width: 0 !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card {
    grid-template-columns: clamp(86px, 6.5vw, 112px) minmax(0, 1fr) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar {
    width: min(calc(100vw - var(--ghp-cart-page-pad) - var(--ghp-cart-page-pad)), 1080px) !important;
    max-width: 1080px !important;
}

@media (max-width: 1500px) {
    body.woocommerce-cart.ghp-cart-context-v258 {
        --ghp-cart-right-width: clamp(330px, 28vw, 410px);
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1240px) {
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-shopper-board,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-page > .ghp-cart-v253-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left {
        display: contents !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left > form.woocommerce-cart-form {
        order: 1 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-right {
        order: 2 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-helper {
        order: 3 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-right .cart_totals,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-collaterals .cart_totals {
        position: relative !important;
        top: auto !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-shopper-board article:not(:last-child),
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip article:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
}

@media (max-width: 1024px) {
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefits,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcut-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefit:nth-child(2n),
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps article:nth-child(2n) {
        border-right: 0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-section-heading {
        align-items: flex-start !important;
    }
}

@media (max-width: 860px) {
    body.woocommerce-cart.ghp-cart-context-v258 {
        --ghp-cart-page-pad: 18px;
        --ghp-cart-card-pad: 18px;
        --ghp-cart-card-radius: 24px;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .woocommerce,
    body.woocommerce-cart.ghp-cart-context-v258.ghp-cart-page-polished .woocommerce {
        padding-top: 16px !important;
        padding-bottom: calc(var(--ghp-cart-mobile-sticky-height) + 28px + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner {
        grid-template-columns: auto minmax(0, 1fr) !important;
        padding: 16px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner__button {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero h1 {
        font-size: clamp(30px, 8vw, 44px) !important;
        letter-spacing: -0.045em !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero__actions,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-recommendation__actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-secondary-link,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-text-button,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-primary-action,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-secondary-action {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart thead {
        display: none !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 34px 78px minmax(0, 1fr) !important;
        grid-template-areas:
            "remove thumb name"
            "remove thumb price"
            "remove thumb qty"
            "remove thumb subtotal" !important;
        row-gap: 9px !important;
        column-gap: 12px !important;
        min-height: 0 !important;
        padding: 14px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-remove { grid-area: remove !important; }
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-thumbnail { grid-area: thumb !important; }
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-name { grid-area: name !important; }
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-price { grid-area: price !important; }
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-quantity { grid-area: qty !important; }
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-subtotal { grid-area: subtotal !important; }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
        width: 72px !important;
        height: 72px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-price,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-subtotal,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-quantity {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        text-align: left !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-price::before,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-subtotal::before,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-quantity::before {
        content: attr(data-title) !important;
        flex: 0 0 auto !important;
        color: #64748b !important;
        font-size: 10px !important;
        font-weight: 950 !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions {
        grid-template-columns: 1fr !important;
        justify-content: stretch !important;
        gap: 10px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .button,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.actions .coupon input.input-text {
        width: 100% !important;
        min-height: 48px !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart.ghp-cart-context-v258 {
        --ghp-cart-page-pad: 14px;
        --ghp-cart-card-pad: 16px;
        --ghp-cart-card-radius: 22px;
        --ghp-cart-mobile-sticky-height: 214px;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .woocommerce,
    body.woocommerce-cart.ghp-cart-context-v258.ghp-cart-page-polished .woocommerce {
        padding-top: 12px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-status-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefits,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcut-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-grid,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-benefit:not(:last-child),
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-next-steps article:not(:last-child),
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-comfort-strip article:not(:last-child) {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-card-heading,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-progress-card__top,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-section-heading {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-section-heading a,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card__button {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card {
        grid-template-columns: 88px minmax(0, 1fr) !important;
        padding: 12px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card__image,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card__image img {
        min-height: 88px !important;
        height: 88px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar {
        left: 12px !important;
        right: 12px !important;
        bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
        width: auto !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        padding: 12px !important;
        border-radius: 24px !important;
        transform: none !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-upgrade,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-checkout {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar__metric {
        min-width: 0 !important;
        padding: 0 6px !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-cart.ghp-cart-context-v258 {
        --ghp-cart-page-pad: 10px;
        --ghp-cart-card-pad: 14px;
        --ghp-cart-card-radius: 20px;
        --ghp-cart-mobile-sticky-height: 238px;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-upgrade-banner,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero__copy,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-progress-card,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v253-left > form.woocommerce-cart-form,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-package-helper,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addons,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-side-card,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-support-card,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-right .cart_totals,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-collaterals .cart_totals {
        box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero h1 {
        font-size: 30px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-hero p,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-recommendation p,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcuts__copy p {
        font-size: 13px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 66px minmax(0, 1fr) !important;
        grid-template-areas:
            "thumb name"
            "thumb price"
            "thumb qty"
            "thumb subtotal" !important;
        padding: 14px 46px 14px 12px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-remove {
        position: absolute !important;
        top: 12px !important;
        right: 12px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-thumbnail img {
        width: 62px !important;
        height: 62px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .product-name a {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .variation,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart .wc-item-meta {
        font-size: 10.5px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form .quantity {
        grid-template-columns: 30px 42px 30px !important;
        height: 42px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card {
        grid-template-columns: 78px minmax(0, 1fr) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card__image,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card__image img {
        min-height: 78px !important;
        height: 78px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar__metric {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
        padding: 0 !important;
    }
}

@media (max-width: 380px) {
    body.woocommerce-cart.ghp-cart-context-v258 {
        --ghp-cart-page-pad: 8px;
        --ghp-cart-card-pad: 12px;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart tbody tr.cart_item {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "thumb"
            "name"
            "price"
            "qty"
            "subtotal" !important;
        padding: 14px 42px 14px 12px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v255-form table.shop_table.cart td.product-thumbnail {
        max-width: 78px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card {
        grid-template-columns: 1fr !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-shortcut,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v257-addon-card,
    body.woocommerce-cart.ghp-cart-context-v258 .ghp-cart-v256-sticky-bar {
        transition: none !important;
    }
}


/* v2.3.59 - Mobile sticky checkout dock safe area.
 * Keeps the quick checkout bar above WoodMart/mobile bottom navigation and
 * reserves enough document space so it does not cover the final content.
 */
body.woocommerce-cart.ghp-cart-context-v259 {
    --ghp-cart-mobile-dock-gap: 10px;
}

@media (max-width: 860px) {
    body.woocommerce-cart.ghp-cart-context-v259 .woocommerce,
    body.woocommerce-cart.ghp-cart-context-v259.ghp-cart-page-polished .woocommerce {
        padding-bottom: calc(var(--ghp-cart-mobile-sticky-height, 214px) + var(--ghp-cart-bottom-nav-offset, 0px) + 42px + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar {
        bottom: calc(var(--ghp-cart-bottom-nav-offset, 0px) + var(--ghp-cart-mobile-dock-gap, 10px) + env(safe-area-inset-bottom, 0px)) !important;
        z-index: 780 !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259.ghp-cart-has-bottom-nav .ghp-cart-v256-sticky-bar {
        box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18) !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-cart.ghp-cart-context-v259 {
        --ghp-cart-mobile-sticky-height: 176px;
        --ghp-cart-mobile-dock-gap: 8px;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar {
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        max-width: none !important;
        padding: 10px 12px !important;
        border-radius: 22px !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 8px 10px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar__metric {
        display: block !important;
        padding: 0 4px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar__metric span {
        margin-bottom: 2px !important;
        font-size: 9px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar__metric strong,
    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar__metric .amount {
        font-size: 14px !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-upgrade,
    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-checkout {
        grid-column: 1 / -1 !important;
        min-height: 44px !important;
        border-radius: 999px !important;
    }
}

@media (max-width: 480px) {
    body.woocommerce-cart.ghp-cart-context-v259 {
        --ghp-cart-mobile-sticky-height: 158px;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar__metric {
        display: block !important;
        text-align: left !important;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-checkout {
        min-height: 46px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 380px) {
    body.woocommerce-cart.ghp-cart-context-v259 {
        --ghp-cart-mobile-sticky-height: 170px;
    }

    body.woocommerce-cart.ghp-cart-context-v259 .ghp-cart-v256-sticky-bar {
        left: 10px !important;
        right: 10px !important;
    }
}

@supports selector(body:has(.wd-toolbar)) {
    @media (max-width: 860px) {
        body.woocommerce-cart.ghp-cart-context-v259:has(.wd-toolbar),
        body.woocommerce-cart.ghp-cart-context-v259:has(.woodmart-toolbar),
        body.woocommerce-cart.ghp-cart-context-v259:has(.wd-bottom-toolbar),
        body.woocommerce-cart.ghp-cart-context-v259:has(.mobile-bottom-navbar),
        body.woocommerce-cart.ghp-cart-context-v259:has(.mobile-bottom-nav) {
            --ghp-cart-bottom-nav-offset: 72px;
        }
    }
}

/* v2.3.60 - Checkout layout isolation and width stability.
   Fixes classic checkout pages where WoodMart / legacy checkout CSS can squeeze
   billing fields and push the order review card into a narrow drifting column. */
body.woocommerce-checkout.ghp-checkout-context-v260,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 {
    background: #f6f8fb !important;
    color: #111827 !important;
    overflow-x: hidden !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 *,
body.woocommerce-checkout.ghp-checkout-context-v260 *::before,
body.woocommerce-checkout.ghp-checkout-context-v260 *::after,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 *,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 *::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 *::after {
    box-sizing: border-box !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .main-page-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v260 .site-content,
body.woocommerce-checkout.ghp-checkout-context-v260 #main,
body.woocommerce-checkout.ghp-checkout-context-v260 .wd-content-layout,
body.woocommerce-checkout.ghp-checkout-context-v260 .content-layout-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .main-page-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .site-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 #main,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .wd-content-layout,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .content-layout-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f6f8fb !important;
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .container,
body.woocommerce-checkout.ghp-checkout-context-v260 .site-content > .container,
body.woocommerce-checkout.ghp-checkout-context-v260 .main-page-wrapper > .container,
body.woocommerce-checkout.ghp-checkout-context-v260 .entry-content,
body.woocommerce-checkout.ghp-checkout-context-v260 .page-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .container,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .site-content > .container,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .main-page-wrapper > .container,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .entry-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .page-content {
    width: 100% !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce,
body.woocommerce-checkout.ghp-checkout-context-v260 .entry-content > .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .entry-content > .woocommerce {
    position: relative !important;
    left: 50% !important;
    width: min(1280px, calc(100vw - 48px)) !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 42px 0 84px !important;
    transform: translateX(-50%) !important;
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-focus-header,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-focus-header {
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 22px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-notices-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-form-coupon-toggle,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-form-login-toggle,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-form-coupon,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-form-login,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-notices-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-form-coupon-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-form-login-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-form-coupon,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-form-login {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 form.checkout.woocommerce-checkout.ghp-checkout-v260-form,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 form.checkout.woocommerce-checkout.ghp-checkout-v260-form {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(390px, 34vw, 470px) !important;
    gap: 28px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-left,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-left {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 #customer_details,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 #customer_details {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-form .col2-set .col-1,
body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-form .col2-set .col-2,
body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-customer-col,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-form .col2-set .col-1,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-form .col2-set .col-2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-customer-col {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-billing-fields,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-shipping-fields,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-additional-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-billing-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-shipping-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-additional-fields {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07) !important;
    transform: none !important;
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-shipping-fields__field-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-billing-fields__field-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 16px !important;
    row-gap: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .form-row,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .form-row {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 0 15px !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .form-row-wide,
body.woocommerce-checkout.ghp-checkout-context-v260 .form-row.notes,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .form-row-wide,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .form-row.notes {
    grid-column: 1 / -1 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v260 input[type='text'],
body.woocommerce-checkout.ghp-checkout-context-v260 input[type='email'],
body.woocommerce-checkout.ghp-checkout-context-v260 input[type='tel'],
body.woocommerce-checkout.ghp-checkout-context-v260 input[type='password'],
body.woocommerce-checkout.ghp-checkout-context-v260 select,
body.woocommerce-checkout.ghp-checkout-context-v260 textarea,
body.woocommerce-checkout.ghp-checkout-context-v260 .select2-container,
body.woocommerce-checkout.ghp-checkout-context-v260 .select2-container--default .select2-selection--single,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 input[type='text'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 input[type='email'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 input[type='tel'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 input[type='password'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 select,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 textarea,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .select2-container,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .select2-container--default .select2-selection--single {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right {
    position: sticky !important;
    top: 24px !important;
    z-index: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10) !important;
    overflow: visible !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

body.admin-bar.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right,
body.admin-bar.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right {
    top: 56px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 #order_review_heading,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 #order_review_heading {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    color: #0f172a !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right #order_review,
body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right .woocommerce-checkout-review-order,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right #order_review,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right .woocommerce-checkout-review-order {
    position: static !important;
    top: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    animation: none !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table,
body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right table.shop_table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: #ffffff !important;
    overflow-wrap: break-word !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table th.product-name,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table td.product-name,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table th.product-name,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table td.product-name {
    width: 64% !important;
    max-width: 64% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table th.product-total,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table td.product-total,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table th.product-total,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table td.product-total {
    width: 36% !important;
    max-width: 36% !important;
    text-align: right !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .product-quantity,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .variation,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .wc-item-meta,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .product-quantity,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .variation,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table .wc-item-meta {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-checkout.ghp-checkout-context-v260 #payment,
body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-payment,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 #payment,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-payment {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
}

@media (max-width: 1180px) {
    body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 400px) !important;
        gap: 22px !important;
    }
}

@media (max-width: 1024px) {
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v260 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .entry-content > .woocommerce {
        width: min(900px, calc(100vw - 36px)) !important;
        padding-top: 32px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v260 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .entry-content > .woocommerce {
        width: calc(100vw - 28px) !important;
        padding: 24px 0 64px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-focus-header {
        margin-bottom: 16px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-billing-fields,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-shipping-fields,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-additional-fields,
    body.woocommerce-checkout.ghp-checkout-context-v260 .ghp-checkout-v260-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-billing-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-shipping-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-additional-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .ghp-checkout-v260-right {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-shipping-fields__field-wrapper,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-billing-fields__field-wrapper,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table thead th,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tbody td,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tfoot th,
    body.woocommerce-checkout.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tfoot td,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table thead th,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tbody td,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tfoot th,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v260 .woocommerce-checkout-review-order-table tfoot td {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

/* v2.3.63 - Checkout comfort UI: wider desktop canvas, clearer steps, calmer order summary. */
body.woocommerce-checkout.ghp-checkout-context-v261,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 {
    background: #edf4fb !important;
    color: #132238 !important;
    overflow-x: hidden !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .main-page-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v261 .site-content,
body.woocommerce-checkout.ghp-checkout-context-v261 #main,
body.woocommerce-checkout.ghp-checkout-context-v261 .wd-content-layout,
body.woocommerce-checkout.ghp-checkout-context-v261 .content-layout-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .main-page-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .site-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #main,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .wd-content-layout,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .content-layout-wrapper {
    background: #edf4fb !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce,
body.woocommerce-checkout.ghp-checkout-context-v261 .entry-content > .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .entry-content > .woocommerce {
    width: min(1760px, calc(100vw - 64px)) !important;
    padding: 32px 0 96px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header {
    min-height: 132px !important;
    margin-bottom: 16px !important;
    padding: 26px 30px !important;
    border-color: #cfe0f4 !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15, 47, 86, 0.10) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header__badge,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header__badge {
    width: 56px !important;
    height: 56px !important;
    border-radius: 20px !important;
    background: #1d72e8 !important;
    box-shadow: 0 14px 30px rgba(29, 114, 232, 0.22) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header h1,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header h1 {
    font-size: clamp(30px, 2.5vw, 44px) !important;
    letter-spacing: -0.045em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header p {
    max-width: 760px !important;
    color: #59708e !important;
    font-size: 15px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust {
    min-width: 360px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust span {
    min-height: 36px !important;
    padding: 0 14px !important;
    border-color: #b9d4f6 !important;
    background: #f3f8ff !important;
    color: #1d5fbf !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-form-coupon-toggle,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-form-login-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-form-coupon-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-form-login-toggle {
    margin-bottom: 14px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-info,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-message,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-error,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-info,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-message,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-error {
    border-radius: 20px !important;
    border-color: #cfe0f4 !important;
    background: #ffffff !important;
    box-shadow: 0 12px 34px rgba(15, 47, 86, 0.07) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 form.checkout.woocommerce-checkout.ghp-checkout-v261-form,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 form.checkout.woocommerce-checkout.ghp-checkout-v261-form {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 22px !important;
    width: 100% !important;
    margin: 0 0 16px !important;
    padding: 22px 24px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 54px rgba(15, 47, 86, 0.08) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command__copy,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command__copy {
    min-width: 0 !important;
}

.ghp-checkout-v261-kicker {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
    margin-bottom: 7px !important;
    color: #1d72e8 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command h2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command h2 {
    margin: 0 !important;
    color: #12213a !important;
    font-size: clamp(22px, 1.6vw, 32px) !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: -0.035em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command p {
    max-width: 780px !important;
    margin: 8px 0 0 !important;
    color: #59708e !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    font-weight: 650 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command__actions,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    min-width: 260px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-link,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border: 1px solid #1d72e8 !important;
    border-radius: 999px !important;
    background: #1d72e8 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-link.is-soft,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-link.is-soft {
    border-color: #cfe0f4 !important;
    background: #f6f9fd !important;
    color: #25405f !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin: 0 0 18px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card {
    min-width: 0 !important;
    padding: 18px 20px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 14px 40px rgba(15, 47, 86, 0.07) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card span {
    display: block !important;
    color: #6c7f98 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card strong {
    display: block !important;
    margin-top: 7px !important;
    color: #12213a !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    overflow-wrap: anywhere !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card small,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-card small {
    display: block !important;
    margin-top: 6px !important;
    color: #59708e !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 650 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(450px, 28vw, 560px) !important;
    gap: 28px !important;
    align-items: start !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-left,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-left {
    display: grid !important;
    gap: 18px !important;
    min-width: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    padding: 22px 24px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 26px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 46px rgba(15, 47, 86, 0.07) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro h2,
body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro h2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel h3 {
    margin: 0 !important;
    color: #12213a !important;
    font-size: 22px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    letter-spacing: -0.025em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel p {
    max-width: 760px !important;
    margin: 8px 0 0 !important;
    color: #59708e !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-weight: 650 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel a,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    border: 1px solid #f59e0b !important;
    border-radius: 999px !important;
    background: #f59e0b !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-step-list,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-step-list {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-step-list li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-step-list li {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 38px !important;
    padding: 0 12px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 999px !important;
    background: #f6f9fd !important;
    color: #25405f !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-step-list span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-step-list span {
    display: inline-grid !important;
    place-items: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 999px !important;
    background: #1d72e8 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #customer_details,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #customer_details {
    gap: 18px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-billing-fields,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-shipping-fields,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-additional-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-billing-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-shipping-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-additional-fields {
    padding: 26px 28px !important;
    border-color: #cfe0f4 !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 54px rgba(15, 47, 86, 0.08) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-billing-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-shipping-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-additional-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-billing-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-shipping-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-additional-fields h3 {
    margin: 0 0 18px !important;
    color: #12213a !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-billing-fields h3::before,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-shipping-fields h3::before,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-additional-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-billing-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-shipping-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-additional-fields h3::before {
    content: '' !important;
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    margin-right: 9px !important;
    border-radius: 999px !important;
    background: #1d72e8 !important;
    vertical-align: 2px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-shipping-fields__field-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-billing-fields__field-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-shipping-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    column-gap: 18px !important;
    row-gap: 4px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .form-row,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row {
    grid-column: 1 / -1 !important;
    margin-bottom: 14px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .form-row-first,
body.woocommerce-checkout.ghp-checkout-context-v261 .form-row-last,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row-first,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row-last {
    grid-column: span 6 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #billing_city_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #billing_state_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #billing_postcode_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_city_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_state_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_postcode_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_city_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_state_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_postcode_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_city_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_state_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_postcode_field {
    grid-column: span 4 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #billing_phone_field,
body.woocommerce-checkout.ghp-checkout-context-v261 #billing_email_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_phone_field,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_email_field {
    grid-column: span 6 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .form-row label,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row label {
    margin-bottom: 7px !important;
    color: #29435f !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 850 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .form-row .required,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row .required {
    color: #f43f5e !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='text'],
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='email'],
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='tel'],
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='password'],
body.woocommerce-checkout.ghp-checkout-context-v261 select,
body.woocommerce-checkout.ghp-checkout-context-v261 textarea,
body.woocommerce-checkout.ghp-checkout-context-v261 .select2-container--default .select2-selection--single,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='text'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='email'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='tel'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='password'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 select,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 textarea,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .select2-container--default .select2-selection--single {
    min-height: 48px !important;
    padding: 0 15px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 15px !important;
    background: #f8fbff !important;
    color: #132238 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 textarea,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 textarea {
    min-height: 110px !important;
    padding-top: 13px !important;
    resize: vertical !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 input.input-text:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='text']:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='email']:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='tel']:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 input[type='password']:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 select:focus,
body.woocommerce-checkout.ghp-checkout-context-v261 textarea:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input.input-text:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='text']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='email']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='tel']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 input[type='password']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 select:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 textarea:focus {
    border-color: #1d72e8 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(29, 114, 232, 0.10) !important;
    outline: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .select2-container--default .select2-selection--single .select2-selection__rendered,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
    padding-left: 0 !important;
    color: #132238 !important;
    font-weight: 800 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .select2-container--default .select2-selection--single .select2-selection__arrow,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right {
    position: sticky !important;
    top: 24px !important;
    padding: 24px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    box-shadow: 0 24px 70px rgba(15, 47, 86, 0.12) !important;
}

body.admin-bar.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right,
body.admin-bar.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right {
    top: 56px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-order-head,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-order-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #order_review_heading,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #order_review_heading {
    margin: 0 !important;
    padding: 0 !important;
    color: #12213a !important;
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-secure-pill,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-secure-pill {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 34px !important;
    padding: 0 13px !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 999px !important;
    background: #f0fdf4 !important;
    color: #15803d !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter {
    margin: 0 0 18px !important;
    padding: 16px !important;
    border: 1px solid #b9d4f6 !important;
    border-radius: 22px !important;
    background: #f3f8ff !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter__top,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    color: #25405f !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter__top strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter__top strong {
    color: #1d72e8 !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-meter,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-meter {
    height: 10px !important;
    overflow: hidden !important;
    border-radius: 999px !important;
    background: #dbeafe !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-meter span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-meter span {
    display: block !important;
    height: 100% !important;
    border-radius: inherit !important;
    background: #1d72e8 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-shipping-meter p {
    margin: 10px 0 0 !important;
    color: #25405f !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 750 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right #order_review,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right #order_review {
    overflow: visible !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table,
body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right table.shop_table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right table.shop_table {
    margin-bottom: 16px !important;
    border: 1px solid #e0eaf6 !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table thead th,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table thead th {
    padding: 14px 16px !important;
    background: #f6f9fd !important;
    color: #405978 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tbody td,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot td,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tbody td,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot th,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot td {
    padding: 14px 16px !important;
    border-top: 1px solid #e0eaf6 !important;
    color: #29435f !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table td.product-name,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table td.product-name {
    color: #12213a !important;
    font-weight: 850 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total th,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total td,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total th,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total td {
    color: #12213a !important;
    font-size: 18px !important;
    font-weight: 950 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total td,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table .order-total td {
    color: #f43f5e !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #payment,
body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-payment,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #payment,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-payment {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #payment ul.payment_methods,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #payment ul.payment_methods {
    margin: 0 0 16px !important;
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #payment ul.payment_methods li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #payment ul.payment_methods li {
    margin: 0 0 12px !important;
    padding: 16px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 20px !important;
    background: #f8fbff !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #payment div.payment_box,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #payment div.payment_box {
    margin: 12px 0 0 !important;
    padding: 14px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: #59708e !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-privacy-policy-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-privacy-policy-text {
    margin: 10px 0 16px !important;
    padding: 14px 16px !important;
    border: 1px solid #e0eaf6 !important;
    border-radius: 18px !important;
    background: #f8fbff !important;
    color: #59708e !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #place_order,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #place_order {
    width: 100% !important;
    min-height: 58px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #16a34a !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    letter-spacing: -0.01em !important;
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.22) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 #place_order:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #place_order:hover {
    background: #15803d !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay {
    margin-top: 16px !important;
    padding: 16px !important;
    border: 1px solid #e0eaf6 !important;
    border-radius: 22px !important;
    background: #fbfdff !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay h4,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay h4 {
    margin: 0 0 10px !important;
    color: #12213a !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay ul,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay ul {
    display: grid !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay li {
    position: relative !important;
    padding-left: 24px !important;
    color: #59708e !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay li::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-afterpay li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 17px !important;
    height: 17px !important;
    border-radius: 999px !important;
    background: #dcfce7 !important;
    color: #15803d !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-trust-row,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-trust-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 14px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-trust-row span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-trust-row span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 0 11px !important;
    border: 1px solid #cfe0f4 !important;
    border-radius: 999px !important;
    background: #f6f9fd !important;
    color: #405978 !important;
    font-size: 12px !important;
    font-weight: 850 !important;
}

@media (min-width: 1500px) {
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-grid {
        grid-template-columns: minmax(0, 1fr) 540px !important;
        gap: 34px !important;
    }
}

@media (max-width: 1180px) {
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v261 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .entry-content > .woocommerce {
        width: min(1040px, calc(100vw - 40px)) !important;
        padding-top: 28px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 900px) {
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel {
        align-items: flex-start !important;
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header__trust,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command__actions,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command__actions,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-step-list,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-step-list {
        justify-content: flex-start !important;
        min-width: 0 !important;
        width: 100% !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-assurance-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .form-row,
    body.woocommerce-checkout.ghp-checkout-context-v261 .form-row-first,
    body.woocommerce-checkout.ghp-checkout-context-v261 .form-row-last,
    body.woocommerce-checkout.ghp-checkout-context-v261 #billing_city_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #billing_state_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #billing_postcode_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_city_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_state_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #shipping_postcode_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #billing_phone_field,
    body.woocommerce-checkout.ghp-checkout-context-v261 #billing_email_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row-first,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .form-row-last,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_city_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_state_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_postcode_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_city_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_state_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #shipping_postcode_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_phone_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 #billing_email_field {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v261 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .entry-content > .woocommerce {
        width: calc(100vw - 24px) !important;
        padding: 18px 0 64px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-billing-fields,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-shipping-fields,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-additional-fields,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-billing-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-shipping-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-additional-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-right {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header__badge,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header__badge {
        width: 48px !important;
        height: 48px !important;
        border-radius: 17px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-focus-header h1,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-focus-header h1 {
        font-size: 28px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-command h2,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-command h2 {
        font-size: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-link,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-link,
    body.woocommerce-checkout.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel a,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .ghp-checkout-v261-help-panel a {
        width: 100% !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table thead th,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tbody td,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot th,
    body.woocommerce-checkout.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot td,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table thead th,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tbody td,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot th,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v261 .woocommerce-checkout-review-order-table tfoot td {
        padding-left: 12px !important;
        padding-right: 12px !important;
        font-size: 12px !important;
    }
}

/* v2.3.63 - Checkout comfort UI+: warmer visual system, guided steps, coupon shortcut, upgrade strip, and friendlier summary. */
body.woocommerce-checkout.ghp-checkout-context-v262,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 {
    --ghp-checkout-v262-bg: #f2f7f1;
    --ghp-checkout-v262-card: #fffefa;
    --ghp-checkout-v262-card-soft: #f8fbf5;
    --ghp-checkout-v262-ink: #142235;
    --ghp-checkout-v262-muted: #61708a;
    --ghp-checkout-v262-line: #dbe8d8;
    --ghp-checkout-v262-primary: #0f9f6e;
    --ghp-checkout-v262-primary-dark: #047857;
    --ghp-checkout-v262-blue: #2563eb;
    --ghp-checkout-v262-warm: #f59e0b;
    --ghp-checkout-v262-danger: #e11d48;
    --ghp-checkout-v262-shadow: 0 24px 80px rgba(28, 58, 42, 0.12);
    --ghp-checkout-v262-soft-shadow: 0 14px 44px rgba(28, 58, 42, 0.08);
    background:
        radial-gradient(circle at top left, rgba(187, 247, 208, 0.58), transparent 33vw),
        radial-gradient(circle at top right, rgba(191, 219, 254, 0.62), transparent 34vw),
        linear-gradient(180deg, #f6fbf4 0%, #eef6f1 44%, #f8fbff 100%) !important;
    color: var(--ghp-checkout-v262-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .main-page-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v262 .site-content,
body.woocommerce-checkout.ghp-checkout-context-v262 #main,
body.woocommerce-checkout.ghp-checkout-context-v262 .wd-content-layout,
body.woocommerce-checkout.ghp-checkout-context-v262 .content-layout-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .main-page-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .site-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #main,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .wd-content-layout,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .content-layout-wrapper {
    background: transparent !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce,
body.woocommerce-checkout.ghp-checkout-context-v262 .entry-content > .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .entry-content > .woocommerce {
    width: min(1780px, calc(100vw - 72px)) !important;
    padding: 34px 0 104px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header {
    min-height: auto !important;
    margin-bottom: 18px !important;
    padding: 18px 22px !important;
    border-color: rgba(15, 159, 110, 0.22) !important;
    border-radius: 26px !important;
    background: rgba(255, 254, 250, 0.88) !important;
    box-shadow: var(--ghp-checkout-v262-soft-shadow) !important;
    backdrop-filter: blur(12px) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header__badge,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header__badge {
    width: 46px !important;
    height: 46px !important;
    border-radius: 17px !important;
    background: linear-gradient(135deg, var(--ghp-checkout-v262-primary), #22c55e) !important;
    box-shadow: 0 16px 34px rgba(15, 159, 110, 0.24) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header h1,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header h1 {
    color: var(--ghp-checkout-v262-ink) !important;
    font-size: clamp(24px, 1.9vw, 34px) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header__eyebrow,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header__eyebrow,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-kicker,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-kicker {
    color: var(--ghp-checkout-v262-primary) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header p {
    max-width: 820px !important;
    color: var(--ghp-checkout-v262-muted) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header__trust,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header__trust {
    min-width: 320px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header__trust span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header__trust span {
    border-color: rgba(15, 159, 110, 0.20) !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 form.checkout.woocommerce-checkout.ghp-checkout-v262-form,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 form.checkout.woocommerce-checkout.ghp-checkout-v262-form {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero {
    position: relative !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    overflow: hidden !important;
    min-height: 176px !important;
    margin: 0 0 18px !important;
    padding: 30px !important;
    border: 1px solid rgba(15, 159, 110, 0.22) !important;
    border-radius: 34px !important;
    background:
        linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(246, 253, 249, 0.96)),
        radial-gradient(circle at 84% 14%, rgba(37, 99, 235, 0.12), transparent 28%) !important;
    box-shadow: var(--ghp-checkout-v262-shadow) !important;
    backdrop-filter: blur(16px) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero::after,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero::after {
    content: '' !important;
    position: absolute !important;
    right: -64px !important;
    bottom: -96px !important;
    width: 260px !important;
    height: 260px !important;
    border-radius: 50% !important;
    background: rgba(15, 159, 110, 0.10) !important;
    pointer-events: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__badge,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__badge {
    position: relative !important;
    z-index: 1 !important;
    display: inline-grid !important;
    place-items: center !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, var(--ghp-checkout-v262-primary), #22c55e) !important;
    color: #ffffff !important;
    font-size: 30px !important;
    font-weight: 950 !important;
    box-shadow: 0 18px 38px rgba(15, 159, 110, 0.26) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__copy,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__copy,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__actions,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__actions {
    position: relative !important;
    z-index: 1 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero h2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero h2 {
    color: var(--ghp-checkout-v262-ink) !important;
    font-size: clamp(30px, 2.2vw, 42px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero p {
    max-width: 880px !important;
    color: var(--ghp-checkout-v262-muted) !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__meta,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin-top: 16px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__meta span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__meta span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(15, 159, 110, 0.22) !important;
    border-radius: 999px !important;
    background: rgba(236, 253, 245, 0.86) !important;
    color: #047857 !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-link,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-link {
    min-height: 46px !important;
    border-color: transparent !important;
    border-radius: 999px !important;
    background: var(--ghp-checkout-v262-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(15, 159, 110, 0.18) !important;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 button.ghp-checkout-v262-link,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 button.ghp-checkout-v262-link {
    appearance: none !important;
    cursor: pointer !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-link:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-link:hover {
    background: var(--ghp-checkout-v262-primary-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 16px 34px rgba(15, 159, 110, 0.22) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-link.is-soft,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-link.is-soft {
    border-color: rgba(97, 112, 138, 0.18) !important;
    background: #ffffff !important;
    color: var(--ghp-checkout-v262-ink) !important;
    box-shadow: none !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-link.is-soft:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-link.is-soft:hover {
    border-color: rgba(15, 159, 110, 0.32) !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 20px !important;
    border: 1px solid rgba(219, 232, 216, 0.92) !important;
    border-radius: 26px !important;
    background: rgba(255, 254, 250, 0.92) !important;
    box-shadow: var(--ghp-checkout-v262-soft-shadow) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    width: 5px !important;
    background: var(--ghp-checkout-v262-primary) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-progress::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-progress::before {
    background: var(--ghp-checkout-v262-warm) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-blocked::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-blocked::before,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-empty::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card.is-empty::before {
    background: var(--ghp-checkout-v262-danger) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card span {
    color: var(--ghp-checkout-v262-muted) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card strong {
    color: var(--ghp-checkout-v262-ink) !important;
    font-size: 19px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card small,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card small {
    color: var(--ghp-checkout-v262-muted) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    margin: 0 0 20px !important;
    padding: 20px 22px !important;
    border: 1px solid rgba(245, 158, 11, 0.32) !important;
    border-radius: 28px !important;
    background: linear-gradient(135deg, #fff7ed, #fffbeb) !important;
    box-shadow: 0 16px 44px rgba(146, 64, 14, 0.10) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip.is-blocked,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip.is-blocked {
    border-color: rgba(225, 29, 72, 0.26) !important;
    background: linear-gradient(135deg, #fff1f2, #fff7ed) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip span {
    display: block !important;
    color: #92400e !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip strong {
    display: block !important;
    margin-top: 5px !important;
    color: #431407 !important;
    font-size: 18px !important;
    font-weight: 950 !important;
    line-height: 1.22 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip small,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip small {
    display: block !important;
    margin-top: 6px !important;
    color: #9a3412 !important;
    font-size: 13px !important;
    font-weight: 750 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button {
    appearance: none !important;
    flex: 0 0 auto !important;
    min-height: 48px !important;
    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #f97316 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 950 !important;
    cursor: pointer !important;
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.24) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button.is-loading,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button.is-loading {
    cursor: wait !important;
    opacity: .76 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-grid {
    grid-template-columns: minmax(0, 1fr) clamp(470px, 30vw, 590px) !important;
    gap: 30px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-left,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-left {
    gap: 18px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel {
    border-color: rgba(219, 232, 216, 0.92) !important;
    border-radius: 28px !important;
    background: rgba(255, 254, 250, 0.92) !important;
    box-shadow: var(--ghp-checkout-v262-soft-shadow) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro h2,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro h2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel h3 {
    color: var(--ghp-checkout-v262-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li {
    border-color: rgba(97, 112, 138, 0.18) !important;
    background: #ffffff !important;
    color: var(--ghp-checkout-v262-muted) !important;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li.is-active,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li.is-active {
    border-color: rgba(15, 159, 110, 0.34) !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
    transform: translateY(-1px) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li.is-complete,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-step-list li.is-complete {
    border-color: rgba(15, 159, 110, 0.22) !important;
    background: #f0fdf4 !important;
    color: #166534 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-step-list span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-step-list span {
    background: var(--ghp-checkout-v262-primary) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips article,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips article {
    min-width: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(219, 232, 216, 0.92) !important;
    border-radius: 22px !important;
    background: rgba(255, 254, 250, 0.82) !important;
    box-shadow: 0 10px 28px rgba(28, 58, 42, 0.06) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips article > span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips article > span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 10px !important;
    border-radius: 12px !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
    font-size: 12px !important;
    font-weight: 950 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips strong {
    display: block !important;
    color: var(--ghp-checkout-v262-ink) !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips p {
    margin: 6px 0 0 !important;
    color: var(--ghp-checkout-v262-muted) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 #customer_details,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #customer_details {
    gap: 18px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-billing-fields,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-shipping-fields,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-additional-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-billing-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-shipping-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-additional-fields {
    border-color: rgba(219, 232, 216, 0.92) !important;
    border-radius: 30px !important;
    background: rgba(255, 254, 250, 0.94) !important;
    box-shadow: var(--ghp-checkout-v262-shadow) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-billing-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-shipping-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-additional-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-billing-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-shipping-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-additional-fields h3 {
    color: var(--ghp-checkout-v262-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-billing-fields h3::before,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-shipping-fields h3::before,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-additional-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-billing-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-shipping-fields h3::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-additional-fields h3::before {
    background: var(--ghp-checkout-v262-primary) !important;
    box-shadow: 0 0 0 6px rgba(15, 159, 110, 0.12) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .form-row label,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .form-row label {
    color: var(--ghp-checkout-v262-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='text'],
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='email'],
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='tel'],
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='password'],
body.woocommerce-checkout.ghp-checkout-context-v262 select,
body.woocommerce-checkout.ghp-checkout-context-v262 textarea,
body.woocommerce-checkout.ghp-checkout-context-v262 .select2-container--default .select2-selection--single,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='text'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='email'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='tel'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='password'],
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 select,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 textarea,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .select2-container--default .select2-selection--single {
    border-color: rgba(97, 112, 138, 0.20) !important;
    background: #ffffff !important;
    color: var(--ghp-checkout-v262-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 input.input-text:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='text']:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='email']:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='tel']:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 input[type='password']:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 select:focus,
body.woocommerce-checkout.ghp-checkout-context-v262 textarea:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input.input-text:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='text']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='email']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='tel']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 input[type='password']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 select:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 textarea:focus {
    border-color: rgba(15, 159, 110, 0.64) !important;
    box-shadow: 0 0 0 4px rgba(15, 159, 110, 0.12) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-invalid input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-invalid-required-field input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-field-attention input.input-text,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-field-attention select,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-field-attention textarea,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-invalid input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-invalid-required-field input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-field-attention input.input-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-field-attention select,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-field-attention textarea {
    border-color: rgba(225, 29, 72, 0.75) !important;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.10) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    flex: 0 0 auto !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions button,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 17px !important;
    border: 1px solid rgba(15, 159, 110, 0.26) !important;
    border-radius: 999px !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a {
    background: var(--ghp-checkout-v262-warm) !important;
    border-color: var(--ghp-checkout-v262-warm) !important;
    color: #ffffff !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-right,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-right {
    border-color: rgba(219, 232, 216, 0.92) !important;
    border-radius: 32px !important;
    background: rgba(255, 254, 250, 0.94) !important;
    box-shadow: var(--ghp-checkout-v262-shadow) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-order-head,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-order-head {
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(219, 232, 216, 0.92) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-secure-pill,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-secure-pill {
    border-color: rgba(15, 159, 110, 0.22) !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin: 16px 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot > div,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot > div {
    min-width: 0 !important;
    padding: 13px 12px !important;
    border: 1px solid rgba(219, 232, 216, 0.92) !important;
    border-radius: 18px !important;
    background: #f8fbf5 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot span {
    display: block !important;
    color: var(--ghp-checkout-v262-muted) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot strong,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot strong {
    display: block !important;
    margin-top: 5px !important;
    color: var(--ghp-checkout-v262-ink) !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
    font-weight: 950 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-shipping-meter,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-shipping-meter {
    border-color: rgba(15, 159, 110, 0.18) !important;
    background: linear-gradient(135deg, #ecfdf5, #f8fbf5) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-meter,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-meter {
    background: rgba(15, 159, 110, 0.12) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-meter span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-meter span {
    background: linear-gradient(90deg, var(--ghp-checkout-v262-primary), #22c55e) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-checkout-review-order-table,
body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-right table.shop_table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-checkout-review-order-table,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-right table.shop_table {
    border-color: rgba(219, 232, 216, 0.92) !important;
    background: #ffffff !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-checkout-review-order-table .order-total td,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-checkout-review-order-table .order-total td {
    color: var(--ghp-checkout-v262-primary-dark) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 #payment ul.payment_methods li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #payment ul.payment_methods li {
    border-color: rgba(219, 232, 216, 0.92) !important;
    background: #f8fbf5 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 #payment div.payment_box,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #payment div.payment_box,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-privacy-policy-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-privacy-policy-text {
    border-color: rgba(219, 232, 216, 0.92) !important;
    background: #ffffff !important;
    color: var(--ghp-checkout-v262-muted) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 #place_order,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #place_order {
    min-height: 62px !important;
    background: linear-gradient(135deg, var(--ghp-checkout-v262-primary), #22c55e) !important;
    box-shadow: 0 18px 38px rgba(15, 159, 110, 0.26) !important;
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 #place_order:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #place_order:hover {
    background: linear-gradient(135deg, var(--ghp-checkout-v262-primary-dark), #16a34a) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 22px 44px rgba(15, 159, 110, 0.30) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-afterpay,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-afterpay {
    border-color: rgba(219, 232, 216, 0.92) !important;
    background: #f8fbf5 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-afterpay li::before,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-afterpay li::before {
    background: #dcfce7 !important;
    color: #047857 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-trust-row span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-trust-row span {
    border-color: rgba(15, 159, 110, 0.20) !important;
    background: #ecfdf5 !important;
    color: #047857 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-form-coupon-toggle,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-form-login-toggle,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-form-coupon,
body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-form-login,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-form-coupon-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-form-login-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-form-coupon,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-form-login {
    border-radius: 22px !important;
    border-color: rgba(219, 232, 216, 0.92) !important;
    background: rgba(255, 254, 250, 0.92) !important;
    box-shadow: var(--ghp-checkout-v262-soft-shadow) !important;
}

@media (min-width: 1500px) {
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-grid {
        grid-template-columns: minmax(0, 1fr) 580px !important;
        gap: 36px !important;
    }
}

@media (max-width: 1320px) {
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 1180px) {
    body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v262 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .entry-content > .woocommerce {
        width: min(1040px, calc(100vw - 40px)) !important;
        padding-top: 28px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-grid {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-right {
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 900px) {
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero__actions,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero__actions,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip__button {
        width: 100% !important;
        min-width: 0 !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-tips,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-tips,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-summary-snapshot {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v262 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .entry-content > .woocommerce {
        width: calc(100vw - 24px) !important;
        padding: 18px 0 70px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card,
    body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-billing-fields,
    body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-shipping-fields,
    body.woocommerce-checkout.ghp-checkout-context-v262 .woocommerce-additional-fields,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-upgrade-strip,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-card,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-billing-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-shipping-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .woocommerce-additional-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-right {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-hero h2,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-hero h2 {
        font-size: 27px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-assurance-grid {
        grid-template-columns: 1fr !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-link,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a,
    body.woocommerce-checkout.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions button,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-link,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions a,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 .ghp-checkout-v262-help-panel__actions button {
        width: 100% !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v262 #place_order,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v262 #place_order {
        min-height: 58px !important;
    }
}

/* v2.3.66 - Checkout / archive visual alignment: wider warm canvas and clearer purchase focus. */
body.woocommerce-checkout.ghp-checkout-context-v266,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 {
    --ghp-checkout-v266-bg: #f5f0e8;
    --ghp-checkout-v266-card: #fffdf8;
    --ghp-checkout-v266-soft: #f7f3ea;
    --ghp-checkout-v266-ink: #17382c;
    --ghp-checkout-v266-muted: #66736b;
    --ghp-checkout-v266-line: rgba(23, 56, 44, 0.14);
    --ghp-checkout-v266-green: #174f3d;
    --ghp-checkout-v266-green-dark: #0d3528;
    --ghp-checkout-v266-sage: #dfe8dc;
    --ghp-checkout-v266-gold: #b98b38;
    --ghp-checkout-v266-shadow: 0 22px 60px rgba(23, 56, 44, 0.10);
    background: var(--ghp-checkout-v266-bg) !important;
    color: var(--ghp-checkout-v266-ink) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .main-page-wrapper,
body.woocommerce-checkout.ghp-checkout-context-v266 .site-content,
body.woocommerce-checkout.ghp-checkout-context-v266 #main,
body.woocommerce-checkout.ghp-checkout-context-v266 .wd-content-layout,
body.woocommerce-checkout.ghp-checkout-context-v266 .content-layout-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .main-page-wrapper,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .site-content,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 #main,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .wd-content-layout,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .content-layout-wrapper {
    background: var(--ghp-checkout-v266-bg) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce,
body.woocommerce-checkout.ghp-checkout-context-v266 .entry-content > .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .entry-content > .woocommerce {
    width: min(1960px, calc(100vw - 88px)) !important;
    padding: 96px 0 104px !important;
}

body.admin-bar.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce,
body.admin-bar.woocommerce-checkout.ghp-checkout-context-v266 .entry-content > .woocommerce,
body.admin-bar.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce,
body.admin-bar.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .entry-content > .woocommerce {
    padding-top: 108px !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-form-intro,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-right,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-billing-fields,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-shipping-fields,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-additional-fields,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-form-coupon-toggle,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-form-login-toggle,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-form-coupon,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-form-login,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-form-intro,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-right,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-billing-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-shipping-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-additional-fields,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-form-coupon-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-form-login-toggle,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-form-coupon,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-form-login {
    border-color: var(--ghp-checkout-v266-line) !important;
    background: var(--ghp-checkout-v266-card) !important;
    box-shadow: var(--ghp-checkout-v266-shadow) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    min-height: 168px !important;
    background: var(--ghp-checkout-v266-card) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero::after,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero::after,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero__badge,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero__badge,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header__badge,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header__badge {
    background: var(--ghp-checkout-v266-green-dark) !important;
    box-shadow: 0 16px 34px rgba(13, 53, 40, 0.20) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero h2,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header h1,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-billing-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-shipping-fields h3,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-additional-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero h2,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header h1,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-billing-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-shipping-fields h3,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-additional-fields h3 {
    color: var(--ghp-checkout-v266-green-dark) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header__eyebrow,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-kicker,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header__eyebrow,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-kicker {
    color: var(--ghp-checkout-v266-gold) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header p,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header p,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero p {
    color: var(--ghp-checkout-v266-muted) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-link,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions a,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions button,
body.woocommerce-checkout.ghp-checkout-context-v266 #place_order,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-link,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions a,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions button,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 #place_order {
    border-color: var(--ghp-checkout-v266-green-dark) !important;
    background: var(--ghp-checkout-v266-green-dark) !important;
    color: #ffffff !important;
    box-shadow: 0 16px 34px rgba(13, 53, 40, 0.18) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-link:hover,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions a:hover,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions button:hover,
body.woocommerce-checkout.ghp-checkout-context-v266 #place_order:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-link:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions a:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-help-panel__actions button:hover,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 #place_order:hover {
    background: var(--ghp-checkout-v266-green) !important;
    transform: translateY(-1px) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-link.is-soft,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-link.is-soft,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-focus-header__trust span,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero__meta span,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-secure-pill,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-trust-row span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-focus-header__trust span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero__meta span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-secure-pill,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-trust-row span {
    border-color: rgba(23, 79, 61, 0.20) !important;
    background: #e8f0e5 !important;
    color: var(--ghp-checkout-v266-green-dark) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-assurance-card,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-summary-snapshot > div,
body.woocommerce-checkout.ghp-checkout-context-v266 #payment ul.payment_methods li,
body.woocommerce-checkout.ghp-checkout-context-v266 #payment div.payment_box,
body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce-privacy-policy-text,
body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-afterpay,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-assurance-card,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-summary-snapshot > div,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 #payment ul.payment_methods li,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 #payment div.payment_box,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce-privacy-policy-text,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-afterpay {
    border-color: var(--ghp-checkout-v266-line) !important;
    background: var(--ghp-checkout-v266-soft) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-meter span,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-meter span {
    background: var(--ghp-checkout-v266-green-dark) !important;
}

body.woocommerce-checkout.ghp-checkout-context-v266 input.input-text:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 input[type='text']:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 input[type='email']:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 input[type='tel']:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 input[type='password']:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 select:focus,
body.woocommerce-checkout.ghp-checkout-context-v266 textarea:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 input.input-text:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 input[type='text']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 input[type='email']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 input[type='tel']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 input[type='password']:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 select:focus,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 textarea:focus {
    border-color: rgba(23, 79, 61, 0.42) !important;
    box-shadow: 0 0 0 4px rgba(23, 79, 61, 0.08) !important;
}

@media (min-width: 1500px) {
    body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-grid {
        grid-template-columns: minmax(0, 1fr) 600px !important;
        gap: 38px !important;
    }
}

@media (max-width: 1180px) {
    body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v266 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .entry-content > .woocommerce {
        width: min(1040px, calc(100vw - 40px)) !important;
        padding-top: 92px !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout.ghp-checkout-context-v266 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v266 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .entry-content > .woocommerce {
        width: calc(100vw - 24px) !important;
        padding-top: 76px !important;
        padding-bottom: 66px !important;
    }
}

body.woocommerce-checkout.ghp-checkout-context-v266 .ghp-checkout-v262-hero::after,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v266 .ghp-checkout-v262-hero::after {
    background: rgba(23, 79, 61, 0.08) !important;
    box-shadow: none !important;
}

/* v2.3.85 - Checkout mobile responsive stabilization.
   Keeps the warm checkout visual system while forcing narrow screens into a
   one-column, non-overlapping flow. This specifically fixes the mobile hero
   card where the desktop badge/copy/actions grid could squeeze the text. */
body.woocommerce-checkout.ghp-checkout-context-v285,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 {
    overflow-x: hidden !important;
}

body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce,
body.woocommerce-checkout.ghp-checkout-context-v285 .entry-content > .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .entry-content > .woocommerce {
    max-width: none !important;
    min-width: 0 !important;
}

body.woocommerce-checkout.ghp-checkout-context-v285 form.checkout.woocommerce-checkout,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-grid,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-left,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-right,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero__copy,
body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero__actions,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 form.checkout.woocommerce-checkout,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-grid,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-left,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-right,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero__copy,
body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero__actions {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

@media (max-width: 1180px) {
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v285 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .entry-content > .woocommerce {
        width: min(1040px, calc(100vw - 32px)) !important;
        padding-top: 28px !important;
        padding-bottom: 96px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-right,
    body.woocommerce-checkout.ghp-checkout-context-v285 .checkout-order-review,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .checkout-order-review {
        position: static !important;
        top: auto !important;
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
    }
}

@media (max-width: 900px) {
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 16px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header__trust,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero__actions,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header__trust,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero__actions,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        justify-content: stretch !important;
        justify-items: stretch !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-link,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions a,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions button,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-link,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions a,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel__actions button {
        width: 100% !important;
        min-width: 0 !important;
        white-space: normal !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-grid,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-tips,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-summary-snapshot,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-grid,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-tips,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-summary-snapshot {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .form-row,
    body.woocommerce-checkout.ghp-checkout-context-v285 .form-row-first,
    body.woocommerce-checkout.ghp-checkout-context-v285 .form-row-last,
    body.woocommerce-checkout.ghp-checkout-context-v285 #billing_city_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #billing_state_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #billing_postcode_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #shipping_city_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #shipping_state_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #shipping_postcode_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #billing_phone_field,
    body.woocommerce-checkout.ghp-checkout-context-v285 #billing_email_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .form-row,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .form-row-first,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .form-row-last,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #billing_city_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #billing_state_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #billing_postcode_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #shipping_city_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #shipping_state_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #shipping_postcode_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #billing_phone_field,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #billing_email_field {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v285 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .entry-content > .woocommerce {
        width: calc(100vw - 24px) !important;
        padding-top: 18px !important;
        padding-bottom: 118px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-notices-wrapper,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-form-coupon-toggle,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-form-login-toggle,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-form-coupon,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-form-login,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-notices-wrapper,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-form-coupon-toggle,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-form-login-toggle,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-form-coupon,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-form-login {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-card,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-billing-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-shipping-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-additional-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-card,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-billing-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-shipping-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-additional-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-right {
        padding: 18px !important;
        border-radius: 22px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero {
        min-height: 0 !important;
        overflow: hidden !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero::after,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero::after {
        display: none !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero__badge,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero__badge,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header__badge,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header__badge {
        width: 48px !important;
        height: 48px !important;
        border-radius: 17px !important;
        font-size: 24px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero h2,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero h2 {
        font-size: clamp(25px, 8vw, 32px) !important;
        line-height: 1.08 !important;
        letter-spacing: -0.045em !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero p,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero p,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header p,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header p {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero__meta span,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero__meta span,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header__trust span,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header__trust span {
        justify-content: center !important;
        width: 100% !important;
        white-space: normal !important;
        text-align: center !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-shipping-fields__field-wrapper,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-billing-fields__field-wrapper,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: minmax(0, 1fr) !important;
        column-gap: 0 !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 input.input-text,
    body.woocommerce-checkout.ghp-checkout-context-v285 input[type='text'],
    body.woocommerce-checkout.ghp-checkout-context-v285 input[type='email'],
    body.woocommerce-checkout.ghp-checkout-context-v285 input[type='tel'],
    body.woocommerce-checkout.ghp-checkout-context-v285 input[type='password'],
    body.woocommerce-checkout.ghp-checkout-context-v285 select,
    body.woocommerce-checkout.ghp-checkout-context-v285 textarea,
    body.woocommerce-checkout.ghp-checkout-context-v285 .select2-container,
    body.woocommerce-checkout.ghp-checkout-context-v285 .select2-container--default .select2-selection--single,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 input.input-text,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 input[type='text'],
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 input[type='email'],
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 input[type='tel'],
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 input[type='password'],
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 select,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 textarea,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .select2-container,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .select2-container--default .select2-selection--single {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-right table.shop_table,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-right table.shop_table {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table th,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table td,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table th,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-checkout-review-order-table td {
        min-width: 120px !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 #payment ul.payment_methods li,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 #payment ul.payment_methods li,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-privacy-policy-text,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-privacy-policy-text {
        padding: 14px !important;
        border-radius: 18px !important;
    }
}

@media (max-width: 420px) {
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce,
    body.woocommerce-checkout.ghp-checkout-context-v285 .entry-content > .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .entry-content > .woocommerce {
        width: calc(100vw - 18px) !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-card,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-billing-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-shipping-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .woocommerce-additional-fields,
    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-right,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-focus-header,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-form-intro,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-help-panel,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-upgrade-strip,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-assurance-card,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-billing-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-shipping-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .woocommerce-additional-fields,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-right {
        padding: 16px !important;
        border-radius: 20px !important;
    }

    body.woocommerce-checkout.ghp-checkout-context-v285 .ghp-checkout-v262-hero h2,
    body.ghp-checkout-runtime-detected.ghp-checkout-context-v285 .ghp-checkout-v262-hero h2 {
        font-size: 25px !important;
    }
}

/* v2.3.91: dedicated local express bulk SKU cart status. */
.ghp-local-bulk-cart-status {
    display: grid;
    gap: 12px;
    width: 100%;
    margin: 0 0 18px;
    padding: 16px 18px;
    border: 1px solid #fda4af;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff1f2 0%, #fff 55%, #fff7ed 100%);
    box-shadow: 0 12px 30px rgba(190, 18, 60, 0.1);
}

.ghp-local-bulk-cart-status.is-blocked {
    border-color: #fb7185;
    box-shadow: 0 14px 34px rgba(190, 18, 60, 0.16);
}

.ghp-local-bulk-cart-status__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.ghp-local-bulk-cart-status__head strong {
    color: #be123c;
    font-size: 16px;
}

.ghp-local-bulk-cart-status__head span {
    color: #475467;
    font-size: 13px;
}

.ghp-local-bulk-cart-status__metrics {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ghp-local-bulk-cart-status__metrics span {
    padding: 7px 10px;
    border: 1px solid rgba(190, 18, 60, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #344054;
    font-size: 12px;
    font-weight: 650;
}

.ghp-local-bulk-cart-status__error,
.ghp-local-bulk-cart-status__notice {
    margin: 0;
    color: #344054;
    font-size: 13px;
    line-height: 1.55;
}

.ghp-local-bulk-cart-status__error {
    color: #b42318;
    font-weight: 750;
}

.ghp-local-bulk-cart-status--compact {
    gap: 8px;
    margin: 8px 0 12px;
    padding: 12px;
    border-radius: 14px;
}

.ghp-local-bulk-cart-status--compact .ghp-local-bulk-cart-status__head {
    display: grid;
    gap: 3px;
}

.ghp-local-bulk-cart-status--compact .ghp-local-bulk-cart-status__head strong {
    font-size: 13px;
}

.ghp-local-bulk-cart-status--compact .ghp-local-bulk-cart-status__metrics {
    display: grid;
    gap: 5px;
}

.ghp-local-bulk-cart-status--compact .ghp-local-bulk-cart-status__metrics span {
    padding: 5px 8px;
    border-radius: 9px;
    font-size: 11px;
}

@media (max-width: 767px) {
    .ghp-local-bulk-cart-status {
        padding: 14px;
        border-radius: 15px;
    }

    .ghp-local-bulk-cart-status__metrics {
        display: grid;
        grid-template-columns: 1fr;
    }
}

/* v2.4.08: Promotion Campaign quantity is customer-visible metadata while the
   WooCommerce cart line itself remains one stock/quota-bearing order line. */
.woocommerce-cart-form .ghp-campaign-quantity-selector--cart {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 132px;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__control {
  display: grid;
  grid-template-columns: 34px 54px 34px;
  overflow: hidden;
  border: 1px solid #d5dce7;
  border-radius: 7px;
  background: #fff;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button,
.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__input {
  min-width: 0;
  height: 36px;
  min-height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #172033;
  box-shadow: none;
  line-height: 1;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button {
  cursor: pointer;
  font-size: 18px;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button:first-child {
  border-right: 1px solid #e2e7ef;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button:last-child {
  border-left: 1px solid #e2e7ef;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button:hover,
.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__button:focus-visible {
  background: #f6f9fd;
  color: #1a73e8;
  outline: none;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__input {
  width: 54px;
  padding: 0 5px;
  text-align: center;
  font-size: 14px;
  appearance: textfield;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__input::-webkit-inner-spin-button,
.woocommerce-cart-form .ghp-campaign-quantity-selector--cart .ghp-campaign-quantity-selector__input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.woocommerce-cart-form .ghp-campaign-quantity-selector--cart small {
  color: #6b7280;
  font-size: 11px;
  line-height: 1.3;
}
