/* ============================================================
   inline-checkout/template-8 — Bento Box Multi-Color Pastel
   Translated from public/inline-checkout-styles/tpl-8.css onto
   template-2's actual Blade DOM.

   Aesthetic: warm paper + orange + sage + 6 pastel compartments
   (sage/butter/blush/sky/lavender/peach) + chunky rounded radii
   (24px shell, 18px compartments, 999px pills/qty/apply) +
   gradient header (peach→butter).

   Scope: ONLY inline-checkout's own classes (no badge, urgency,
   variations, bundle-child styling).
   ============================================================ */

/* ============================================================
   SHELL — warm paper canvas, big rounded radius
   ============================================================ */
.ic {
    --t8-paper:        #FAF6F0;
    --t8-ink:          #2A2825;
    --t8-muted:        #7A746B;
    --t8-accent:       #D4763A;
    --t8-accent-rgb:   212, 118, 58;
    --t8-accent-dark:  #B05E28;
    --t8-sub:          #5A8C6A;
    --t8-rule:         #E5DDD0;
    --t8-sage:         #EAF3EA;
    --t8-butter:       #FFF3D6;
    --t8-blush:        #F8E1E1;
    --t8-sky:          #E5EBF5;
    --t8-lavender:     #F0E8F5;
    --t8-peach:        #FFE8D6;

    --bs-primary:       var(--t8-accent);
    --bs-primary-rgb:   var(--t8-accent-rgb);
    --bs-secondary:     var(--t8-sub);
    --bs-body-color:    var(--t8-ink);
    --bs-border-color:  var(--t8-rule);
    --bs-light-primary: rgba(212, 118, 58, 0.10);

    --t8-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    max-width: 1200px;
    margin: 32px auto;
    padding: 28px 24px 32px;
    background: var(--t8-paper);
    border: 1px solid var(--t8-rule);
    border-radius: 24px;
    box-shadow: none;
    color: var(--t8-ink);
    font-family: var(--t8-sans);
    scroll-margin-top: 80px;
    position: relative;
}

/* ============================================================
   HEAD — gradient peach→butter, pill eyebrow chip
   ============================================================ */
.ic .ic-head {
    text-align: center;
    background: linear-gradient(135deg, var(--t8-peach), var(--t8-butter));
    padding: 28px 32px;
    margin: 0 0 14px;
    border: 1px solid var(--t8-rule);
    border-radius: 20px;
    display: block;
    color: var(--t8-ink);
}
.ic .ic-head::after { display: none; }
.ic .ic-head-eyebrow {
    display: inline-block;
    font-family: var(--t8-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--t8-accent-dark);
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 14px;
    border-radius: 999px;
    margin: 0 0 12px;
    font-style: normal;
}
.ic .ic-head-title {
    font-family: var(--t8-sans);
    font-size: 2rem;
    font-weight: 800;
    color: var(--t8-ink);
    letter-spacing: -0.025em;
    text-transform: none;
    margin: 0 0 4px;
}
.ic .ic-head-sub {
    font-family: var(--t8-sans);
    font-size: 0.92rem;
    color: var(--t8-muted);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0;
    font-style: normal;
}

/* ============================================================
   ALERT
   ============================================================ */
.ic .ic-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0;
    padding: 12px 16px;
    background: var(--t8-blush);
    border: 1px solid var(--t8-rule);
    border-radius: 12px;
    color: var(--t8-accent-dark);
    font-family: var(--t8-sans);
    font-size: 0.86rem;
    font-weight: 600;
}
.ic .ic-alert svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   ROW / BENTO LAYOUT — bootstrap 2-col w/ generous gutters
   ============================================================ */
.ic .row.g-4 {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
    margin: 0;
}
.ic .row.g-4 > [class*="col-"] { padding: 0 7px; }

/* ============================================================
   COMPARTMENTS (.ic-card) — pastel bento blocks per nth-of-type
   ============================================================ */
.ic .ic-card {
    position: relative;
    padding: 18px 20px;
    background: var(--t8-sage);
    border: 1px solid var(--t8-rule);
    border-radius: 18px;
    margin: 0 0 14px;
    overflow: hidden;
}
.ic .ic-card:last-of-type { margin-bottom: 0; }

/* Per-card pastel rotation across the 6 typical cards */
.ic .row > [class*="col-"]:nth-child(1) > .ic-card:nth-of-type(1) { background: var(--t8-sage); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(1) { background: var(--t8-sky); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(2) { background: var(--t8-butter); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(3) { background: var(--t8-blush); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(4) { background: var(--t8-lavender); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(5) { background: var(--t8-peach); }
.ic .row > [class*="col-"]:nth-child(2) > .ic-card:nth-of-type(6) { background: var(--t8-sage); }

/* Card head — icon-style number chip + title + optional bundle chip */
.ic .ic-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}
.ic .ic-card-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.55);
    color: var(--t8-accent-dark);
    font-family: var(--t8-sans);
    font-size: 0.95rem;
    font-weight: 800;
    border: 0;
    border-radius: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    padding: 0;
}
.ic .ic-card-title {
    font-family: var(--t8-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--t8-ink);
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 auto;
}
.ic .ic-bundle-chip {
    margin-left: auto;
    font-family: var(--t8-sans);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--t8-muted);
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 6px;
    padding: 3px 8px;
}

/* ============================================================
   VARIATION ROWS — white-translucent on pastel, rounded
   ============================================================ */
.ic .ic-variation-row,
.ic .ic-summary-row {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
    margin: 0 0 6px;
}
.ic .ic-summary-row { margin: 0; }
.ic .ic-variation-row.active,
.ic .ic-summary-row.active {
    background: #ffffff;
    border-color: var(--t8-accent);
}
.ic .ic-variation-row:hover { background: #ffffff; }
.ic .ic-variation-row.is-disabled { opacity: 0.45; cursor: not-allowed; }

.ic .ic-single-axis-rows { display: flex; flex-direction: column; gap: 0; }

.ic .ic-variation-thumb,
.ic .add-to-products-image {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid var(--t8-rule);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ic .ic-variation-thumb img,
.ic .add-to-products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ic .ic-variation-info,
.ic .add-to-products-infor { min-width: 0; }

.ic .ic-variation-name,
.ic .products-title {
    font-family: var(--t8-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--t8-ink);
    margin: 0 0 3px;
    line-height: 1.25;
    letter-spacing: 0;
}
.ic .ic-variation-combo-title {
    display: inline-block;
    margin-left: 3px;
    font-family: var(--t8-sans);
    font-size: 0.72rem;
    color: var(--t8-muted);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0;
}

/* Prices — bold orange + sub-green discount chip */
.ic .ic-variation-prices,
.ic .products-navs {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 4px;
}
.ic .products-current-price,
.ic .ic-price-new {
    font-family: var(--t8-sans);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--t8-accent-dark);
    letter-spacing: 0;
}
.ic .products-old-price,
.ic .ic-price-old {
    font-family: var(--t8-sans);
    font-size: 0.74rem;
    color: var(--t8-muted);
    text-decoration: line-through;
    font-weight: 400;
}
.ic .products-discount-amount,
.ic .ic-price-discount {
    display: inline-block;
    font-family: var(--t8-sans);
    font-size: 0.66rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--t8-sub);
    padding: 2px 7px;
    border-radius: 6px;
    letter-spacing: 0.04em;
    font-style: normal;
}
.ic .products-save-amount,
.ic .ic-price-save {
    display: block;
    font-family: var(--t8-sans);
    font-size: 0.74rem;
    color: var(--t8-sub);
    font-weight: 600;
    margin-top: 4px;
    letter-spacing: 0;
    font-style: normal;
}

/* Qty stepper — pill (rounded 999px) */
.ic .products-quantity-table,
.ic .ic-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--t8-rule);
    border-radius: 999px;
    overflow: hidden;
    padding: 2px;
    margin-top: 6px;
}
.ic .ic-qty-btn,
.ic .procuts-less,
.ic .procuts-up {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: var(--t8-ink);
    font-family: var(--t8-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    transition: background 0.15s ease;
}
.ic .ic-qty-btn:hover,
.ic .procuts-less:hover,
.ic .procuts-up:hover { background: var(--t8-peach); }
.ic .quantities,
.ic .ic-qty-input {
    width: 28px;
    height: 24px;
    text-align: center;
    background: transparent;
    color: var(--t8-ink);
    border: 0;
    font-family: var(--t8-sans);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0;
    -moz-appearance: textfield;
}
.ic .quantities::-webkit-inner-spin-button,
.ic .ic-qty-input::-webkit-inner-spin-button,
.ic .quantities::-webkit-outer-spin-button,
.ic .ic-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Active row check icon — round orange */
.ic .ic-variation-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: transparent;
    border: 1.5px solid var(--t8-accent);
    border-radius: 50%;
    transition: background 0.15s ease, color 0.15s ease;
}
.ic .ic-variation-row.active .ic-variation-check,
.ic .ic-summary-row.active .ic-variation-check {
    background: var(--t8-accent);
    color: #ffffff;
}

/* Hide native radio */
.ic .single-selection { position: absolute; opacity: 0; pointer-events: none; }

/* Picker wrapper (multi/bundle) */
.ic .ic-picker { margin-top: 10px; }

/* ============================================================
   FIELDS — rounded translucent inputs
   ============================================================ */
.ic .ic-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ic .ic-field { display: flex; flex-direction: column; }
.ic .ic-label {
    font-family: var(--t8-sans);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--t8-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-style: normal;
}
.ic .ic-required { color: var(--t8-accent); font-weight: 800; margin-left: 2px; }
.ic .ic-optional {
    color: var(--t8-muted);
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

.ic input.ic-input,
.ic textarea.ic-input,
.ic .ic-input {
    border: 1px solid var(--t8-rule);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 9px 12px;
    font-family: var(--t8-sans);
    font-size: 0.86rem;
    color: var(--t8-ink);
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s ease, background 0.15s ease;
    box-shadow: none;
    line-height: 1.4;
    font-weight: 500;
}
.ic textarea.ic-input { min-height: 64px; resize: vertical; }
.ic input.ic-input:focus,
.ic textarea.ic-input:focus,
.ic .ic-input:focus {
    border-color: var(--t8-accent);
    background: #ffffff;
    outline: none;
    box-shadow: none;
}
.ic .ic-input::placeholder {
    color: var(--t8-muted);
    opacity: 0.8;
    font-style: normal;
    font-weight: 400;
}
.ic .invalid-feedback.ic-error {
    font-family: var(--t8-sans);
    font-size: 0.72rem;
    color: var(--t8-accent-dark);
    margin-top: 4px;
    font-weight: 600;
}

/* ============================================================
   SHIPPING & PAYMENT — rounded translucent rows
   ============================================================ */
.ic .ic-shipping,
.ic .ic-payment {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ic .ic-shipping-option,
.ic .ic-payment-option {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--t8-rule);
    border-radius: 10px;
    cursor: pointer;
    margin: 0;
    font-family: var(--t8-sans);
    font-size: 0.84rem;
    transition: border-color 0.18s ease, background 0.18s ease;
}
.ic .ic-shipping-option:hover,
.ic .ic-payment-option:hover { background: #ffffff; }
.ic .ic-shipping-option:has(input:checked),
.ic .ic-payment-option:has(input:checked) {
    border-color: var(--t8-accent);
    background: #ffffff;
}
.ic .ic-shipping-option input,
.ic .ic-payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ic .ic-shipping-radio,
.ic .ic-payment-radio {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--t8-accent);
    background: transparent;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}
.ic .ic-shipping-option:has(input:checked) .ic-shipping-radio::after,
.ic .ic-payment-option:has(input:checked) .ic-payment-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--t8-accent);
    border-radius: 50%;
}
.ic .ic-shipping-title,
.ic .ic-payment-option .ic-payment-title {
    color: var(--t8-ink);
    font-weight: 700;
    letter-spacing: 0;
    font-family: var(--t8-sans);
}
.ic .ic-payment-option .ic-payment-sub {
    grid-column: 2 / -1;
    font-family: var(--t8-sans);
    font-size: 0.74rem;
    color: var(--t8-muted);
    font-weight: 500;
    font-style: normal;
}
.ic .ic-payment-option .ic-payment-logo {
    height: 22px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.7;
}
.ic .ic-shipping-option .ic-shipping-charge,
.ic .ic-shipping-option .shipping-cost-amount {
    color: var(--t8-accent-dark);
    font-weight: 700;
    font-family: var(--t8-sans);
}

/* Payment details panel — sub-green left strip */
.ic .ic-payment-details,
.ic .payment_box {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    border-left: 3px solid var(--t8-sub);
    border-radius: 8px;
    margin: 2px 0 0;
    font-family: var(--t8-sans);
    font-size: 0.78rem;
    color: var(--t8-muted);
}
.ic .ic-payment-details .ic-wallet-meta,
.ic .payment_box .ic-wallet-meta { margin-bottom: 8px; }
.ic .ic-payment-details .ic-wallet-meta .small,
.ic .payment_box .ic-wallet-meta .small {
    font-family: var(--t8-sans);
    font-size: 0.78rem;
    color: var(--t8-ink);
    line-height: 1.5;
    font-weight: 500;
}
.ic .ic-payment-details .ic-wallet-meta strong,
.ic .payment_box .ic-wallet-meta strong { color: var(--t8-accent-dark); font-weight: 800; }
.ic .ic-payment-details .ic-input-label,
.ic .payment_box .ic-input-label {
    display: block;
    font-family: var(--t8-sans);
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--t8-ink);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 8px 0 4px;
}
.ic .ic-payment-details .text-danger,
.ic .payment_box .text-danger { color: var(--t8-accent); }

/* ============================================================
   COUPON — pill apply button
   ============================================================ */
.ic .ic-coupon {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ic .ic-coupon-field {
    display: flex;
    gap: 8px;
    align-items: stretch;
}
.ic .ic-coupon-field input.ic-input,
.ic .ic-coupon-field input {
    flex: 1 1 auto;
    min-width: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-style: normal;
}
.ic .ic-coupon-apply,
.ic [data-action="apply-coupon"] {
    flex-shrink: 0;
    background: var(--t8-accent);
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    padding: 8px 18px;
    font-family: var(--t8-sans);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s ease;
}
.ic .ic-coupon-apply:hover,
.ic [data-action="apply-coupon"]:hover { background: var(--t8-accent-dark); }
.ic .ic-coupon-status,
.ic .ic-coupon-message {
    margin: 0;
    font-family: var(--t8-sans);
    font-size: 0.78rem;
    color: var(--t8-muted);
    font-weight: 500;
}
.ic .ic-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: var(--t8-sub);
    color: #ffffff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.ic .ic-coupon-remove {
    margin-left: 6px;
    background: transparent;
    border: 0;
    color: var(--t8-muted);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}
.ic .ic-coupon-remove:hover { color: var(--t8-accent-dark); }

/* ============================================================
   TOTALS — rounded white panel inside summary compartment
   ============================================================ */
.ic .ic-summary { margin: 0; }
.ic .products-amount-wrapper,
.ic .ic-totals {
    margin: 0 0 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid var(--t8-rule);
    border-radius: 14px;
}
.ic .products-amount-raw,
.ic .ic-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 3px 0;
    font-family: var(--t8-sans);
    font-size: 0.86rem;
    color: var(--t8-muted);
    font-weight: 600;
}
.ic .products-amount-raw .ttle,
.ic .ic-total-label {
    color: var(--t8-muted);
    font-weight: 600;
    letter-spacing: 0;
}
.ic .products-amount-raw .amount,
.ic .ic-total-value {
    color: var(--t8-ink);
    font-weight: 700;
    text-align: right;
}
.ic .products-amount-raw .amount .products-current-price,
.ic .products-amount-raw .amount .ic-total-new {
    font-size: 0.86rem;
    color: var(--t8-ink);
    font-weight: 700;
}
.ic .products-amount-raw .amount .products-old-price,
.ic .products-amount-raw .amount .ic-total-old {
    font-size: 0.76rem;
    margin-right: 6px;
    color: var(--t8-muted);
}

.ic .products-total-amount,
.ic .ic-total-grand {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--t8-rule);
    font-family: var(--t8-sans);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--t8-ink);
}
.ic .products-total-amount .ttle,
.ic .ic-total-grand .ic-total-label {
    color: var(--t8-ink);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1.1rem;
}
.ic .products-total-amount .amount .products-current-price,
.ic .products-total-amount .amount .ic-total-new,
.ic .ic-total-grand .ic-total-value {
    color: var(--t8-accent-dark);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ic .ic-discount-code-chip:not(:empty) {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 8px;
    background: var(--t8-sub);
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    font-weight: 700;
}

/* ============================================================
   SUBMIT BUTTON — chunky rounded orange, soft drop on hover
   ============================================================ */
.ic .checkout-btn,
.ic .ic-submit {
    display: inline-flex;
    width: 100%;
    margin-top: 0;
    padding: 16px;
    background: var(--t8-accent);
    color: #ffffff;
    border: 0;
    border-radius: 18px;
    font-family: var(--t8-sans);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: none;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
}
.ic .checkout-btn:hover,
.ic .ic-submit:hover {
    background: var(--t8-accent-dark);
    box-shadow: 0 8px 20px rgba(var(--t8-accent-rgb), 0.25);
    transform: translateY(-1px);
}
.ic .checkout-btn:active,
.ic .ic-submit:active { transform: translateY(0); }
.ic .checkout-btn svg,
.ic .ic-submit svg {
    width: 18px;
    height: 18px;
    color: #ffffff;
}
.ic .checkout-btn-text { line-height: 1.2; }
.ic .checkout-btn-value {
    font-weight: 800;
    color: inherit;
}

/* ============================================================
   TRUST BADGES — center, faint
   ============================================================ */
.ic .ic-trust {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--t8-sans);
    font-size: 0.74rem;
    color: var(--t8-muted);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 600;
}
.ic .ic-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ic .ic-trust svg {
    width: 14px;
    height: 14px;
    color: var(--t8-sub);
}

/* ============================================================
   COUPON OVERSHOOT — hide grand-total strike-through
   ============================================================ */
.products-total-amount .amount .products-old-price,
.products-total-amount .amount .ic-total-old,
.ic-total-grand .amount .products-old-price,
.ic-total-grand .amount .ic-total-old { display: none !important; }

/* ============================================================
   MOBILE — structurally distinct treatment
   - Header radius drops, padding shrinks
   - Compartments lose their per-card pastel rotation (sage default)
   - Variation rows 2-col grid + check on own row
   - Coupon-field stacks
   - Submit becomes plain pill (lower radius, no drop shadow on hover)
   - Qty stepper full-width
   ============================================================ */
@media (max-width: 767.98px) {
    .ic {
        padding: 18px 14px;
        margin: 16px auto;
        border-radius: 18px;
    }
    .ic .ic-head {
        padding: 22px 20px;
        border-radius: 16px;
        margin-bottom: 12px;
    }
    .ic .ic-head-title { font-size: 1.4rem; }
    .ic .ic-head-sub { font-size: 0.82rem; }
    .ic .ic-head-eyebrow { font-size: 0.66rem; }

    .ic .ic-card { padding: 14px 16px; border-radius: 14px; }

    /* Mobile-distinct: smaller number chip */
    .ic .ic-card-num { width: 28px; height: 28px; font-size: 0.85rem; border-radius: 8px; }

    /* Mobile-distinct: variation row drops to 2-col + check own row */
    .ic .ic-variation-row,
    .ic .ic-summary-row {
        grid-template-columns: 48px 1fr;
        gap: 10px;
        padding: 10px;
        border-radius: 10px;
    }
    .ic .ic-variation-thumb,
    .ic .add-to-products-image { width: 48px; height: 48px; border-radius: 8px; }
    .ic .ic-variation-check {
        grid-column: 2;
        justify-self: end;
        margin-top: -6px;
    }
    .ic .ic-variation-name,
    .ic .products-title { font-size: 0.86rem; }

    /* Mobile-distinct: coupon stacks */
    .ic .ic-coupon-field { flex-direction: column; gap: 8px; }
    .ic .ic-coupon-apply,
    .ic [data-action="apply-coupon"] { width: 100%; padding: 10px; }

    /* Mobile-distinct: submit drops radius + removes hover shadow */
    .ic .checkout-btn,
    .ic .ic-submit {
        padding: 14px 16px;
        border-radius: 14px;
        font-size: 0.86rem;
    }
    .ic .checkout-btn:hover,
    .ic .ic-submit:hover { box-shadow: none; transform: none; }

    .ic .ic-label { font-size: 0.64rem; letter-spacing: 0.06em; }

    .ic .products-amount-wrapper,
    .ic .ic-totals { padding: 12px 14px; border-radius: 12px; }
    .ic .products-total-amount,
    .ic .ic-total-grand { font-size: 1rem; }
    .ic .products-total-amount .amount .products-current-price,
    .ic .products-total-amount .amount .ic-total-new,
    .ic .ic-total-grand .ic-total-value { font-size: 1rem; }

    .ic .ic-trust { gap: 12px; font-size: 0.68rem; }
}
