/* ONE CLICK CORE v2.0 — Premium Cart */
body.woocommerce-cart {
    --oc-green: #247523;
    --oc-green-dark: #185c1a;
    --oc-soft-green: #f1f7ee;
    --oc-border: #e5e9e3;
    --oc-text: #172018;
    --oc-muted: #6c746d;
    background: #fafbfa;
}

body.woocommerce-cart .site-content,
body.woocommerce-cart .main-page-wrapper {
    background: #fafbfa;
}

body.woocommerce-cart .woocommerce {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 20px 60px;
}

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

.ocm-cart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 28px;
}

.ocm-cart-eyebrow {
    margin: 0 0 5px;
    color: var(--oc-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ocm-cart-heading h1 {
    margin: 0;
    color: var(--oc-text);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.05;
}

.ocm-cart-count {
    margin: 8px 0 0;
    color: var(--oc-muted);
    font-size: 14px;
}

.ocm-cart-steps {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ocm-cart-steps li {
    position: relative;
    min-width: 74px;
    color: #9aa09b;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.ocm-cart-steps li:not(:last-child)::after {
    position: absolute;
    top: 16px;
    left: calc(50% + 22px);
    width: 56px;
    height: 1px;
    background: #d8ddd8;
    content: "";
}

.ocm-cart-steps span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
    border: 1px solid #d9ded9;
    border-radius: 50%;
    background: #fff;
    font-size: 13px;
}

.ocm-cart-steps .is-current {
    color: var(--oc-green);
}
.ocm-cart-steps .is-current span {
    color: #fff;
    border-color: var(--oc-green);
    background: var(--oc-green);
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-message {
    margin: 0 0 20px;
    padding: 16px 20px 16px 52px;
    border: 1px solid #dcebd7;
    border-radius: 12px;
    background: #f2f8ef;
    color: #285f28;
}

body.woocommerce-cart .woocommerce-cart-form {
    width: calc(100% - 410px);
    float: left;
    padding-right: 24px;
}

body.woocommerce-cart .cart-collaterals {
    width: 410px;
    float: right;
}

body.woocommerce-cart table.shop_table {
    display: block;
    margin: 0;
    border: 0;
    background: transparent;
}
body.woocommerce-cart table.shop_table thead { display: none; }
body.woocommerce-cart table.shop_table tbody { display: grid; gap: 12px; }

body.woocommerce-cart table.shop_table tr.woocommerce-cart-form__cart-item {
    display: grid;
    grid-template-columns: 30px 112px minmax(0,1fr) 112px 140px;
    grid-template-areas:
        "remove thumb name price quantity"
        "remove thumb name subtotal quantity";
    align-items: center;
    min-height: 148px;
    padding: 18px;
    border: 1px solid var(--oc-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(28, 54, 30, .045);
}

body.woocommerce-cart table.shop_table td {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
}
body.woocommerce-cart td.product-remove { grid-area: remove; }
body.woocommerce-cart td.product-thumbnail { grid-area: thumb; padding-right: 16px; }
body.woocommerce-cart td.product-name { grid-area: name; padding-right: 18px; }
body.woocommerce-cart td.product-price { grid-area: price; align-self: end; color: var(--oc-text); font-weight: 700; text-align: right; }
body.woocommerce-cart td.product-quantity { grid-area: quantity; justify-self: end; }
body.woocommerce-cart td.product-subtotal { grid-area: subtotal; align-self: start; color: var(--oc-green); font-size: 15px; font-weight: 800; text-align: right; }

body.woocommerce-cart td.product-remove a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #b9beb9 !important;
    border-radius: 50%;
    font-size: 21px;
}
body.woocommerce-cart td.product-remove a:hover { color: #d33 !important; background: #fff2f2; }

body.woocommerce-cart td.product-thumbnail img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 10px;
    background: #fbfbfb;
}

body.woocommerce-cart td.product-name > a {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--oc-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

body.woocommerce-cart .variation,
body.woocommerce-cart dl.variation {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    margin: 0;
    color: var(--oc-muted);
    font-size: 12px;
}
body.woocommerce-cart .variation dt,
body.woocommerce-cart .variation dd { margin: 0; padding: 0; }
body.woocommerce-cart .variation dt { font-weight: 700; }

body.woocommerce-cart .quantity {
    display: inline-flex;
    height: 44px;
    overflow: hidden;
    border: 1px solid #dfe4df;
    border-radius: 9px;
    background: #f8faf8;
}
body.woocommerce-cart .quantity input.qty {
    width: 46px;
    height: 44px;
    border: 0 !important;
    background: transparent;
    font-weight: 700;
}
body.woocommerce-cart .quantity .minus,
body.woocommerce-cart .quantity .plus {
    width: 38px;
    height: 44px;
    color: var(--oc-green);
    border: 0 !important;
    background: transparent;
    font-size: 18px;
}

body.woocommerce-cart tr:not(.woocommerce-cart-form__cart-item) {
    display: block;
    margin-top: 16px;
    padding: 0;
    border: 0 !important;
}
body.woocommerce-cart td.actions {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
body.woocommerce-cart td.actions .coupon {
    display: flex;
    flex: 1;
    max-width: 470px;
    padding: 7px;
    border: 1px dashed var(--oc-green);
    border-radius: 11px;
    background: #fff;
}
body.woocommerce-cart td.actions .coupon input {
    flex: 1;
    height: 40px;
    border: 0;
    background: transparent;
}
body.woocommerce-cart td.actions .coupon button,
body.woocommerce-cart td.actions > button {
    min-height: 40px;
    border-radius: 8px;
}
body.woocommerce-cart td.actions .coupon button {
    color: #fff;
    background: var(--oc-green);
}

.ocm-cart-continue-wrap { margin: 18px 0 0; }
.ocm-cart-continue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    color: var(--oc-green);
    border: 1px solid var(--oc-green);
    border-radius: 9px;
    background: #fff;
    font-weight: 700;
}

body.woocommerce-cart .cart_totals {
    position: sticky;
    top: 20px;
    width: 100% !important;
    padding: 0;
    border: 1px solid var(--oc-border);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(26, 55, 28, .08);
    overflow: hidden;
}
body.woocommerce-cart .cart_totals > h2 {
    margin: 0;
    padding: 20px 22px 12px;
    color: var(--oc-text);
    font-size: 20px;
}

.ocm-cart-service-card {
    padding: 18px 20px;
    border-bottom: 1px solid var(--oc-border);
}
.ocm-cart-service-card h3 {
    margin: 0 0 12px;
    color: var(--oc-text);
    font-size: 14px;
}
.ocm-delivery-choice {
    display: grid;
    grid-template-columns: 18px 25px 1fr;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid #e6e9e6;
    background: #fff;
}
.ocm-delivery-choice:first-of-type { border-radius: 10px 10px 0 0; }
.ocm-delivery-choice:last-of-type { border-top: 0; border-radius: 0 0 10px 10px; }
.ocm-delivery-choice.is-active { background: var(--oc-soft-green); }
.ocm-choice-dot {
    width: 15px;
    height: 15px;
    border: 2px solid #aeb6ae;
    border-radius: 50%;
}
.ocm-delivery-choice.is-active .ocm-choice-dot {
    border: 4px solid var(--oc-green);
}
.ocm-choice-icon { font-size: 18px; }
.ocm-delivery-choice strong { display: block; color: #2a332b; font-size: 13px; }
.ocm-delivery-choice small { display: block; margin-top: 2px; color: var(--oc-muted); font-size: 11px; }

.ocm-address-row {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    align-items: start;
}
.ocm-address-row strong { color: var(--oc-text); font-size: 13px; }
.ocm-address-row p { margin: 3px 0 0; color: var(--oc-muted); font-size: 12px; line-height: 1.45; }
.ocm-address-row a { color: var(--oc-green); font-size: 12px; font-weight: 700; }
.ocm-address-empty { display: flex; gap: 10px; color: var(--oc-muted); font-size: 12px; }
.ocm-address-empty p { margin: 0; }

body.woocommerce-cart .cart_totals table.shop_table {
    display: table;
    width: calc(100% - 40px);
    margin: 14px 20px 0;
}
body.woocommerce-cart .cart_totals table.shop_table tbody { display: table-row-group; }
body.woocommerce-cart .cart_totals table.shop_table tr { display: table-row; margin: 0; }
body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
    display: table-cell;
    padding: 10px 0;
    border-bottom: 1px solid #eef0ee;
    font-size: 13px;
}
body.woocommerce-cart .cart_totals table.shop_table th { color: var(--oc-text); }
body.woocommerce-cart .cart_totals table.shop_table td { text-align: right; }
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td { padding-top: 15px; border-bottom: 0; font-size: 16px; }
body.woocommerce-cart .cart_totals .order-total .amount { color: var(--oc-green); font-size: 22px; }

.ocm-minimum-progress { margin: 15px 20px 0; padding: 13px; border-radius: 10px; background: #f7f9f6; }
.ocm-progress-copy { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 8px; font-size: 11px; }
.ocm-progress-copy strong { color: var(--oc-text); }
.ocm-progress-copy span { color: var(--oc-muted); text-align: right; }
.ocm-progress-track { height: 6px; overflow: hidden; border-radius: 999px; background: #dde5da; }
.ocm-progress-track span { display: block; height: 100%; border-radius: inherit; background: var(--oc-green); }
.ocm-minimum-progress.is-complete { background: var(--oc-soft-green); }

.ocm-cart-promise {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 20px 0;
    padding: 13px;
    border-radius: 10px;
    background: var(--oc-soft-green);
}
.ocm-cart-promise > span { font-size: 23px; }
.ocm-cart-promise strong,
.ocm-cart-promise small { display: block; }
.ocm-cart-promise strong { color: #2c662c; font-size: 12px; }
.ocm-cart-promise small { margin-top: 2px; color: #477047; font-size: 10px; }

body.woocommerce-cart .wc-proceed-to-checkout { padding: 0 20px 20px; }
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    min-height: 52px;
    margin: 14px 0 0;
    padding: 0 20px;
    border-radius: 9px;
    background: var(--oc-green) !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 52px;
}
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover { background: var(--oc-green-dark) !important; }

.ocm-cart-trust {
    clear: both;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid var(--oc-border);
    border-radius: 14px;
    background: #fff;
}
.ocm-cart-trust > div {
    display: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    padding: 18px;
    border-right: 1px solid var(--oc-border);
}
.ocm-cart-trust > div:last-child { border-right: 0; }
.ocm-cart-trust > div > span { grid-row: 1 / 3; color: var(--oc-green); font-size: 25px; }
.ocm-cart-trust strong { color: var(--oc-text); font-size: 12px; }
.ocm-cart-trust small { margin-top: 2px; color: var(--oc-muted); font-size: 10px; }

@media (max-width: 1024px) {
    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals { width: 100%; float: none; padding-right: 0; }
    body.woocommerce-cart .cart-collaterals { margin-top: 24px; }
    body.woocommerce-cart .cart_totals { position: static; }
}

@media (max-width: 767px) {
    body.woocommerce-cart .woocommerce { padding: 22px 12px 90px; }
    .ocm-cart-heading { display: block; margin-bottom: 20px; }
    .ocm-cart-heading h1 { font-size: 30px; }
    .ocm-cart-steps { margin-top: 22px; justify-content: center; gap: 18px; }
    .ocm-cart-steps li:not(:last-child)::after { width: 26px; }

    body.woocommerce-cart table.shop_table tr.woocommerce-cart-form__cart-item {
        grid-template-columns: 24px 82px minmax(0,1fr);
        grid-template-areas:
            "remove thumb name"
            ". price quantity"
            ". subtotal quantity";
        min-height: 132px;
        padding: 13px;
    }
    body.woocommerce-cart td.product-thumbnail { padding-right: 10px; }
    body.woocommerce-cart td.product-thumbnail img { width: 72px; height: 72px; }
    body.woocommerce-cart td.product-name { padding-right: 0; }
    body.woocommerce-cart td.product-name > a { font-size: 14px; }
    body.woocommerce-cart td.product-price,
    body.woocommerce-cart td.product-subtotal { text-align: left; }
    body.woocommerce-cart td.product-price { margin-top: 12px; }
    body.woocommerce-cart td.product-quantity { margin-top: 12px; }
    body.woocommerce-cart .quantity { height: 40px; }
    body.woocommerce-cart .quantity input.qty,
    body.woocommerce-cart .quantity .minus,
    body.woocommerce-cart .quantity .plus { height: 40px; }

    body.woocommerce-cart td.actions { display: block !important; }
    body.woocommerce-cart td.actions .coupon { max-width: none; margin-bottom: 10px; }
    body.woocommerce-cart td.actions > button { width: 100%; }

    .ocm-cart-trust { grid-template-columns: 1fr 1fr; }
    .ocm-cart-trust > div { border-bottom: 1px solid var(--oc-border); }
    .ocm-cart-trust > div:nth-child(2n) { border-right: 0; }
    .ocm-cart-trust > div:nth-last-child(-n+2) { border-bottom: 0; }
}

/* =========================================================
   ONE CLICK CORE v2.0.1 — Premium Cart Refinement
   ========================================================= */
body.woocommerce-cart .woocommerce {
    max-width: 1320px;
}

body.woocommerce-cart .woocommerce-cart-form {
    width: calc(100% - 430px);
    padding-right: 30px;
}

body.woocommerce-cart .cart-collaterals {
    width: 430px;
}

body.woocommerce-cart table.shop_table tbody {
    gap: 14px;
}

body.woocommerce-cart table.shop_table tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 34px 142px minmax(0, 1fr) 126px 150px;
    min-height: 166px;
    padding: 20px 22px;
    border-radius: 16px;
    box-shadow: 0 9px 28px rgba(28, 54, 30, .055);
}

body.woocommerce-cart td.product-thumbnail {
    padding-right: 22px;
}

body.woocommerce-cart td.product-thumbnail img {
    width: 122px;
    height: 122px;
    border-radius: 12px;
    background: #fcfdfc;
}

body.woocommerce-cart td.product-name > a {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.3;
}

body.woocommerce-cart .variation,
body.woocommerce-cart dl.variation {
    gap: 7px 12px;
    font-size: 12px;
}

body.woocommerce-cart .variation dt {
    position: relative;
    padding-left: 18px;
    color: #404a41;
}
body.woocommerce-cart .variation dt::before {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--oc-green);
    font-size: 13px;
    line-height: 1.15;
    content: "•";
}
body.woocommerce-cart .variation dd {
    color: var(--oc-muted);
}

body.woocommerce-cart td.product-price {
    font-size: 14px;
}
body.woocommerce-cart td.product-price::before {
    display: block;
    margin-bottom: 4px;
    color: var(--oc-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    content: "Unit Price";
}
body.woocommerce-cart td.product-subtotal {
    font-size: 17px;
}
body.woocommerce-cart td.product-subtotal::before {
    display: block;
    margin-bottom: 3px;
    color: var(--oc-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    content: "Subtotal";
}

body.woocommerce-cart .quantity {
    height: 48px;
    border-radius: 10px;
}
body.woocommerce-cart .quantity input.qty {
    width: 50px;
    height: 48px;
    font-size: 14px;
}
body.woocommerce-cart .quantity .minus,
body.woocommerce-cart .quantity .plus {
    width: 42px;
    height: 48px;
    font-size: 20px;
}

body.woocommerce-cart td.product-remove a:not(:first-child) {
    display: none !important;
}
body.woocommerce-cart td.product-remove a {
    width: 30px;
    height: 30px;
    font-size: 22px;
}

body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce-message {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 13px 18px;
    border-radius: 13px;
}
body.woocommerce-cart .woocommerce-message::before {
    display: none !important;
}
.ocm-cart-message-check {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: #fff;
    border-radius: 50%;
    background: var(--oc-green);
    font-size: 15px;
    font-weight: 800;
}
.ocm-cart-message-copy {
    flex: 1;
    min-width: 0;
    font-size: 13px;
}
.ocm-cart-message-link {
    color: var(--oc-green-dark) !important;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

body.woocommerce-cart .cart_totals > h2 {
    padding: 22px 22px 10px;
    font-size: 21px;
}
body.woocommerce-cart .cart_totals table.shop_table {
    margin-top: 6px;
}
body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
    padding: 11px 0;
}
body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    padding-top: 17px;
    font-size: 17px;
}
body.woocommerce-cart .cart_totals .order-total .amount {
    font-size: 24px;
    line-height: 1.15;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    min-height: 56px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 56px;
    box-shadow: 0 8px 18px rgba(36, 117, 35, .18);
}

.ocm-cart-continue-wrap {
    margin-top: 14px;
}
.ocm-cart-continue {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
}

@media (max-width: 1100px) {
    body.woocommerce-cart .woocommerce-cart-form,
    body.woocommerce-cart .cart-collaterals {
        width: 100%;
        float: none;
        padding-right: 0;
    }

    body.woocommerce-cart .cart-collaterals {
        margin-top: 26px;
    }

    body.woocommerce-cart .cart_totals {
        position: static;
    }
}

@media (max-width: 767px) {
    body.woocommerce-cart .woocommerce {
        padding: 20px 12px 92px;
    }

    .ocm-cart-heading {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .ocm-cart-steps {
        display: none;
    }

    body.woocommerce-cart table.shop_table tr.woocommerce-cart-form__cart-item {
        grid-template-columns: 82px minmax(0, 1fr) 28px;
        grid-template-areas:
            "thumb name remove"
            "thumb price remove"
            "thumb quantity quantity"
            "subtotal subtotal subtotal";
        min-height: 0;
        padding: 14px;
        border-radius: 14px;
    }

    body.woocommerce-cart td.product-thumbnail {
        padding-right: 12px;
    }

    body.woocommerce-cart td.product-thumbnail img {
        width: 74px;
        height: 92px;
    }

    body.woocommerce-cart td.product-name {
        padding-right: 6px;
    }

    body.woocommerce-cart td.product-name > a {
        margin-bottom: 6px;
        font-size: 14px;
    }

    body.woocommerce-cart .variation,
    body.woocommerce-cart dl.variation {
        gap: 4px 8px;
        font-size: 10px;
    }

    body.woocommerce-cart td.product-price {
        align-self: start;
        margin-top: 6px;
        text-align: left;
    }
    body.woocommerce-cart td.product-price::before {
        display: none;
    }

    body.woocommerce-cart td.product-quantity {
        justify-self: stretch;
        margin-top: 12px;
    }

    body.woocommerce-cart .quantity {
        width: 100%;
    }
    body.woocommerce-cart .quantity input.qty {
        flex: 1;
        width: auto;
    }

    body.woocommerce-cart td.product-subtotal {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 13px;
        padding-top: 12px;
        border-top: 1px solid var(--oc-border);
        text-align: right;
    }
    body.woocommerce-cart td.product-subtotal::before {
        margin: 0;
        font-size: 11px;
    }

    body.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
    body.woocommerce-cart .woocommerce-message {
        flex-wrap: wrap;
        gap: 8px 10px;
        padding: 12px 14px;
    }
    .ocm-cart-message-copy {
        flex: 1 1 calc(100% - 40px);
        font-size: 12px;
    }
    .ocm-cart-message-link {
        margin-left: 38px;
    }

    body.woocommerce-cart .wc-proceed-to-checkout {
        position: sticky;
        bottom: 0;
        z-index: 10;
        margin: 14px -1px -1px;
        padding: 10px 14px 14px;
        border-top: 1px solid var(--oc-border);
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(8px);
    }

    body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
        margin-top: 0;
    }
}

/* v2.0.2: Wider summary and visible update state */
@media (min-width: 1025px) {
    body.woocommerce-cart .woocommerce-cart-form {
        width: calc(100% - 470px);
        padding-right: 28px;
    }

    body.woocommerce-cart .cart-collaterals {
        width: 470px;
    }
}

body.woocommerce-cart.ocm-cart-is-updating .cart-collaterals,
body.woocommerce-cart.ocm-cart-is-updating .woocommerce-cart-form__cart-item {
    opacity: .72;
    pointer-events: none;
    transition: opacity .18s ease;
}

body.woocommerce-cart.ocm-cart-is-updating .cart_totals::after {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 18px;
    height: 18px;
    border: 2px solid #d7e4d4;
    border-top-color: var(--oc-green);
    border-radius: 50%;
    content: "";
    animation: ocm-cart-spin .7s linear infinite;
}

@keyframes ocm-cart-spin {
    to { transform: rotate(360deg); }
}

/* ONE CLICK CORE 2.1.0 - stable desktop cart proportions */
@media (min-width: 1101px) {
    body.woocommerce-cart .woocommerce-cart-form {
        width: calc(100% - 520px) !important;
        padding-right: 34px !important;
    }

    body.woocommerce-cart .cart-collaterals {
        width: 520px !important;
    }

    body.woocommerce-cart .cart_totals {
        width: 100% !important;
        max-width: none !important;
    }
}

body.woocommerce-cart.ocm-cart-is-updating .quantity .plus,
body.woocommerce-cart.ocm-cart-is-updating .quantity .minus {
    cursor: wait;
    opacity: .55;
}

/* =========================================================
   ONE CLICK CORE v2.2.0 — Locked Premium Cart Engine
   ========================================================= */
@media (min-width: 1101px) {
    body.woocommerce-cart .woocommerce {
        max-width: 1420px;
    }

    body.woocommerce-cart .woocommerce-cart-form {
        width: calc(100% - 530px);
        padding-right: 34px;
    }

    body.woocommerce-cart .cart-collaterals {
        width: 530px;
    }
}

body.woocommerce-cart .cart_totals .order-total td {
    vertical-align: top;
}

body.woocommerce-cart .cart_totals .order-total .amount {
    display: inline-block;
    font-size: 25px;
    font-weight: 800;
}

body.woocommerce-cart .cart_totals .order-total small.includes_tax,
body.woocommerce-cart .cart_totals .order-total .includes_tax {
    display: block;
    margin-top: 4px;
    color: #78a978;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.25;
}

body.woocommerce-cart .cart_totals .order-total small.includes_tax .amount,
body.woocommerce-cart .cart_totals .order-total .includes_tax .amount {
    color: inherit;
    font-size: inherit;
    font-weight: 600;
}

.ocm-cart-promise {
    padding-top: 14px;
    padding-bottom: 14px;
}

.ocm-cart-promise strong {
    font-size: 12px;
    white-space: nowrap;
}

.ocm-delivery-choice.is-active small {
    color: var(--oc-green);
    font-weight: 700;
}

body.woocommerce-cart.ocm-cart-is-updating .woocommerce-cart-form,
body.woocommerce-cart.ocm-cart-is-updating .cart_totals {
    opacity: .68;
    pointer-events: none;
    transition: opacity .18s ease;
}

@media (max-width: 1100px) {
    .ocm-cart-promise strong {
        white-space: normal;
    }
}

/* v3.1.2 — automatic delivery result and cleaner cart controls. */
body.woocommerce-cart .woocommerce-cart-form button[name="update_cart"],
body.woocommerce-cart .woocommerce-cart-form input[name="update_cart"] {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ocm-delivery-result__row {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    border: 1px solid #dce8d8;
    border-radius: 10px;
    background: var(--oc-soft-green);
}
.ocm-delivery-result.is-island .ocm-delivery-result__row {
    border-color: #e7e1cf;
    background: #fbf8ef;
}
.ocm-delivery-result__row .ocm-choice-icon { margin-top: 1px; font-size: 17px; }
.ocm-delivery-result__row strong { display: block; color: #263229; font-size: 13px; line-height: 1.35; }
.ocm-delivery-result__row small { display: block; margin-top: 4px; color: var(--oc-muted); font-size: 11px; line-height: 1.45; }
.ocm-address-row .ocm-address-city { color: var(--oc-text); font-weight: 600; }
.ocm-address-row .ocm-address-phone { color: var(--oc-green); font-weight: 600; }
