/* ============================================================
   inline-checkout/template-10 — Notebook Doodle / Marker Pen
   Translated from public/inline-checkout-styles/tpl-10.css onto
   template-2's actual Blade DOM.

   Aesthetic: cream notebook paper + horizontal ruled lines +
   Patrick Hand cursive (kid's marker pen handwriting) +
   thick black borders + hard offset comic shadows + multi-color
   marker palette (red/blue/yellow/green/purple) + slight rotation
   on cards + wavy SVG underline inputs + square corners.

   Scope: ONLY inline-checkout's own classes.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

/* ============================================================
   SHELL — cream notebook paper with ruled lines
   ============================================================ */
.ic {
    --t10-paper:     #FFFAEC;
    --t10-paper-2:   #FFF6BD;
    --t10-ink:       #2A2A2A;
    --t10-red:       #E74C3C;
    --t10-red-rgb:   231, 76, 60;
    --t10-red-dark:  #C0392B;
    --t10-blue:      #3498DB;
    --t10-yellow:    #F1C40F;
    --t10-green:     #27AE60;
    --t10-purple:    #9B59B6;
    --t10-muted:     #7F7F7F;

    --bs-primary:       var(--t10-red);
    --bs-primary-rgb:   var(--t10-red-rgb);
    --bs-secondary:     var(--t10-blue);
    --bs-body-color:    var(--t10-ink);
    --bs-border-color:  var(--t10-ink);

    --t10-marker: 'Patrick Hand', 'Schoolbell', 'Comic Sans MS', cursive;
    --t10-sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    max-width: 640px;
    margin: 32px auto;
    padding: 28px 22px;
    background: var(--t10-paper);
    background-image: repeating-linear-gradient(
        transparent,
        transparent 23px,
        rgba(160, 180, 220, 0.25) 24px
    );
    border: 2.5px solid var(--t10-ink);
    border-radius: 0;
    box-shadow: 6px 6px 0 var(--t10-ink);
    color: var(--t10-ink);
    font-family: var(--t10-marker);
    scroll-margin-top: 80px;
    position: relative;
}

/* ============================================================
   HEAD — centered, dashed bottom border, cursive title
   ============================================================ */
.ic .ic-head {
    text-align: center;
    padding: 18px 0;
    margin: 0 0 18px;
    background: transparent;
    border: 0;
    border-bottom: 2.5px solid var(--t10-ink);
    border-radius: 0;
    display: block;
    color: var(--t10-ink);
    position: relative;
}
.ic .ic-head::after { display: none; }
.ic .ic-head-eyebrow {
    display: inline-block;
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-red);
    background: transparent;
    padding: 0;
    margin: 0 0 4px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-style: normal;
}
.ic .ic-head-title {
    font-family: var(--t10-marker);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--t10-ink);
    letter-spacing: 0.01em;
    text-transform: none;
    margin: 0;
    line-height: 1;
}
.ic .ic-head-sub {
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-muted);
    margin: 4px 0 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: 10px 14px;
    background: #FFF6BD;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    color: var(--t10-red);
    font-family: var(--t10-marker);
    font-size: 1rem;
    box-shadow: 3px 3px 0 var(--t10-ink);
}
.ic .ic-alert svg { flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   FORM LAYOUT — vertical stack, kill Bootstrap row
   ============================================================ */
.ic .row.g-4 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ic .row.g-4 > [class*="col-"] {
    padding: 0;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ============================================================
   CARDS (.ic-card) — white sketch boxes w/ hard shadows + tilt
   ============================================================ */
.ic .ic-card {
    position: relative;
    padding: 14px 16px;
    background: #ffffff;
    border: 2.5px solid var(--t10-ink);
    border-radius: 0;
    margin: 0;
    box-shadow: 4px 4px 0 var(--t10-ink);
    transition: transform 0.2s ease;
}
.ic .ic-card:nth-of-type(odd)  { transform: rotate(-0.4deg); }
.ic .ic-card:nth-of-type(even) { transform: rotate(0.3deg); }

.ic .ic-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 0 0 6px;
    border: 0;
    border-bottom: 2px dashed var(--t10-ink);
}
.ic .ic-card-num {
    width: auto;
    height: auto;
    flex-shrink: 0;
    background: transparent;
    color: var(--t10-blue);
    font-family: var(--t10-marker);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0;
    border: 0;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0;
}
.ic .ic-card-num::before { content: "✏️ "; font-size: 1rem; }
.ic .ic-card-title {
    font-family: var(--t10-marker);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--t10-ink);
    margin: 0;
    letter-spacing: 0.01em;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
    line-height: 1;
}
.ic .ic-bundle-chip {
    margin-left: auto;
    font-family: var(--t10-marker);
    font-size: 0.9rem;
    color: var(--t10-blue);
    background: var(--t10-yellow);
    border: 1.5px solid var(--t10-ink);
    border-radius: 0;
    padding: 1px 8px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}

/* ============================================================
   VARIATION ROWS — bordered boxes w/ hard shadows, active=yellow
   ============================================================ */
.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: var(--t10-paper);
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    cursor: pointer;
    transition: box-shadow 0.18s ease, background 0.18s ease;
    margin: 0 0 8px;
    box-shadow: 3px 3px 0 var(--t10-ink);
}
.ic .ic-summary-row { margin: 0; }
.ic .ic-variation-row.active,
.ic .ic-summary-row.active {
    background: var(--t10-paper-2);
    border-color: var(--t10-red);
    box-shadow: 3px 3px 0 var(--t10-red);
}
.ic .ic-variation-row:hover {
    box-shadow: 4px 4px 0 var(--t10-ink);
    transform: translate(-1px, -1px);
}
.ic .ic-variation-row.active:hover { box-shadow: 4px 4px 0 var(--t10-red); }
.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: 2px solid var(--t10-ink);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: rotate(-2deg);
}
.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(--t10-marker);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--t10-ink);
    margin: 0 0 2px;
    line-height: 1.15;
    letter-spacing: 0;
}
.ic .ic-variation-combo-title {
    display: inline-block;
    margin-left: 4px;
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    color: var(--t10-purple);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
}

/* Prices — red current, muted strike-through, green discount */
.ic .ic-variation-prices,
.ic .products-navs {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 3px;
}
.ic .products-current-price,
.ic .ic-price-new {
    font-family: var(--t10-marker);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--t10-red);
    letter-spacing: 0;
}
.ic .products-old-price,
.ic .ic-price-old {
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    color: var(--t10-muted);
    text-decoration: line-through;
    font-weight: 400;
}
.ic .products-discount-amount,
.ic .ic-price-discount {
    display: inline-block;
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    color: var(--t10-green);
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    letter-spacing: 0;
    font-style: normal;
}
.ic .products-save-amount,
.ic .ic-price-save {
    display: block;
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-green);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0;
    font-style: normal;
}

/* Qty stepper — marker style w/ hard shadow */
.ic .products-quantity-table,
.ic .ic-qty-stepper {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    overflow: hidden;
    margin-top: 6px;
    box-shadow: 2px 2px 0 var(--t10-ink);
}
.ic .ic-qty-btn,
.ic .procuts-less,
.ic .procuts-up {
    width: 28px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: var(--t10-ink);
    font-family: var(--t10-marker);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}
.ic .ic-qty-btn:hover,
.ic .procuts-less:hover,
.ic .procuts-up:hover { background: var(--t10-yellow); }
.ic .quantities,
.ic .ic-qty-input {
    width: 30px;
    height: 26px;
    text-align: center;
    background: transparent;
    color: var(--t10-ink);
    border: 0;
    border-left: 2px solid var(--t10-ink);
    border-right: 2px solid var(--t10-ink);
    font-family: var(--t10-marker);
    font-size: 1.1rem;
    font-weight: 400;
    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; }

/* Hand-drawn check — square, tilted */
.ic .ic-variation-check {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: transparent;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    transform: rotate(-3deg);
    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(--t10-red);
    color: #ffffff;
}

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

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

/* ============================================================
   FIELDS — WAVY SVG UNDERLINE INPUTS (signature t10 move)
   ============================================================ */
.ic .ic-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ic .ic-field { display: flex; flex-direction: column; }
.ic .ic-label {
    font-family: var(--t10-marker);
    font-size: 1.1rem;
    color: var(--t10-blue);
    margin-bottom: 2px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    font-style: normal;
}
.ic .ic-required {
    color: var(--t10-red);
    font-weight: 400;
    margin-left: 2px;
    font-family: var(--t10-marker);
}
.ic .ic-optional {
    color: var(--t10-muted);
    font-weight: 400;
    font-family: var(--t10-marker);
    font-size: 0.9rem;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 4px;
}

/* Wavy underline — ink color via SVG data URI */
.ic input.ic-input,
.ic .ic-input {
    border: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8'%3E%3Cpath d='M0 4 Q 7.5 0 15 4 T 30 4 T 45 4 T 60 4' fill='none' stroke='%232A2A2A' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: bottom left;
    background-size: 60px 8px;
    border-radius: 0;
    padding: 6px 2px 14px;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    color: var(--t10-ink);
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    line-height: 1.3;
    font-weight: 400;
}
.ic textarea.ic-input {
    border: 2px solid var(--t10-ink);
    background-image: none;
    background-color: #ffffff;
    border-radius: 0;
    padding: 8px 10px;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    color: var(--t10-ink);
    width: 100%;
    min-height: 60px;
    resize: vertical;
    box-sizing: border-box;
    box-shadow: 2px 2px 0 var(--t10-ink);
    line-height: 1.3;
    font-weight: 400;
}
.ic input.ic-input:focus,
.ic .ic-input:focus {
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 8'%3E%3Cpath d='M0 4 Q 7.5 0 15 4 T 30 4 T 45 4 T 60 4' fill='none' stroke='%23E74C3C' stroke-width='2.5'/%3E%3C/svg%3E");
    box-shadow: none;
}
.ic textarea.ic-input:focus {
    outline: none;
    border-color: var(--t10-red);
    box-shadow: 2px 2px 0 var(--t10-red);
}
.ic .ic-input::placeholder {
    color: rgba(127, 127, 127, 0.7);
    font-family: var(--t10-marker);
    font-style: normal;
}
.ic .invalid-feedback.ic-error {
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-red);
    margin-top: 4px;
    font-weight: 400;
    letter-spacing: 0;
}

/* ============================================================
   SHIPPING & PAYMENT — bordered cards w/ hard shadow, active=yellow
   ============================================================ */
.ic .ic-shipping,
.ic .ic-payment {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ic .ic-shipping-option,
.ic .ic-payment-option {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    background: #ffffff;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    cursor: pointer;
    margin: 0;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    box-shadow: 3px 3px 0 var(--t10-ink);
    transition: box-shadow 0.18s ease, background 0.18s ease, transform 0.15s ease;
}
.ic .ic-shipping-option:hover,
.ic .ic-payment-option:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--t10-ink);
}
.ic .ic-shipping-option:has(input:checked),
.ic .ic-payment-option:has(input:checked) {
    background: var(--t10-paper-2);
    border-color: var(--t10-red);
    box-shadow: 3px 3px 0 var(--t10-red);
}
.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: 20px;
    height: 20px;
    border: 2px solid var(--t10-ink);
    background: #ffffff;
    border-radius: 0;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    transform: rotate(-2deg);
}
.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;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-8deg);
    color: var(--t10-red);
    font-family: var(--t10-marker);
    font-size: 1.4rem;
    line-height: 1;
}
.ic .ic-shipping-title,
.ic .ic-payment-option .ic-payment-title {
    color: var(--t10-ink);
    font-family: var(--t10-marker);
    font-weight: 400;
    letter-spacing: 0;
}
.ic .ic-payment-option .ic-payment-sub {
    grid-column: 2 / -1;
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    color: var(--t10-muted);
    font-weight: 400;
    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(--t10-red);
    font-family: var(--t10-marker);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Payment details panel */
.ic .ic-payment-details,
.ic .payment_box {
    padding: 6px 10px;
    background: var(--t10-paper-2);
    border: 2px dashed var(--t10-ink);
    border-radius: 0;
    margin: 2px 0 0;
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    color: var(--t10-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(--t10-marker);
    font-size: 1rem;
    color: var(--t10-ink);
    line-height: 1.4;
    font-weight: 400;
}
.ic .ic-payment-details .ic-wallet-meta strong,
.ic .payment_box .ic-wallet-meta strong { color: var(--t10-red); font-weight: 400; }
.ic .ic-payment-details .ic-input-label,
.ic .payment_box .ic-input-label {
    display: block;
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-blue);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    margin: 8px 0 2px;
}
.ic .ic-payment-details .text-danger,
.ic .payment_box .text-danger { color: var(--t10-red); }

/* ============================================================
   COUPON — blue marker block-button w/ hard shadow
   ============================================================ */
.ic .ic-coupon {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ic .ic-coupon-field {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.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.04em;
    font-weight: 400;
    font-style: normal;
    font-family: var(--t10-marker);
}
.ic .ic-coupon-apply,
.ic [data-action="apply-coupon"] {
    flex-shrink: 0;
    background: var(--t10-blue);
    color: #ffffff;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    padding: 6px 14px;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    font-weight: 400;
    box-shadow: 3px 3px 0 var(--t10-ink);
    transition: box-shadow 0.15s ease, transform 0.1s ease;
}
.ic .ic-coupon-apply:hover,
.ic [data-action="apply-coupon"]:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--t10-ink);
}
.ic .ic-coupon-status,
.ic .ic-coupon-message {
    margin: 0;
    font-family: var(--t10-marker);
    font-size: 1rem;
    color: var(--t10-muted);
    font-weight: 400;
    letter-spacing: 0;
}
.ic .ic-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 10px;
    background: var(--t10-green);
    color: #ffffff;
    border: 2px solid var(--t10-ink);
    border-radius: 0;
    font-family: var(--t10-marker);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0;
}
.ic .ic-coupon-remove {
    margin-left: 6px;
    background: transparent;
    border: 0;
    color: var(--t10-ink);
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
    font-family: var(--t10-marker);
}
.ic .ic-coupon-remove:hover { color: var(--t10-red); }

/* ============================================================
   TOTALS — yellow notepad panel w/ hard shadow
   ============================================================ */
.ic .ic-summary { margin: 0; }
.ic .products-amount-wrapper,
.ic .ic-totals {
    margin: 0 0 12px;
    padding: 12px 14px;
    background: var(--t10-paper-2);
    border: 2.5px solid var(--t10-ink);
    border-radius: 0;
    box-shadow: 4px 4px 0 var(--t10-ink);
}
.ic .products-amount-raw,
.ic .ic-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 3px 0;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    color: var(--t10-ink);
    font-weight: 400;
}
.ic .products-amount-raw .ttle,
.ic .ic-total-label {
    color: var(--t10-ink);
    font-weight: 400;
    letter-spacing: 0;
}
.ic .products-amount-raw .amount,
.ic .ic-total-value {
    color: var(--t10-ink);
    font-weight: 400;
    text-align: right;
}
.ic .products-amount-raw .amount .products-current-price,
.ic .products-amount-raw .amount .ic-total-new {
    font-size: 1.05rem;
    color: var(--t10-ink);
    font-weight: 400;
}
.ic .products-amount-raw .amount .products-old-price,
.ic .products-amount-raw .amount .ic-total-old {
    font-size: 0.9rem;
    margin-right: 6px;
    color: var(--t10-muted);
}

.ic .products-total-amount,
.ic .ic-total-grand {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 2px dashed var(--t10-ink);
    font-family: var(--t10-marker);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--t10-ink);
}
.ic .products-total-amount .ttle,
.ic .ic-total-grand .ic-total-label {
    color: var(--t10-ink);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    font-size: 1.4rem;
}
.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(--t10-red);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
}

.ic .ic-discount-code-chip:not(:empty) {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 8px;
    background: var(--t10-green);
    color: #ffffff;
    border: 1.5px solid var(--t10-ink);
    border-radius: 0;
    font-family: var(--t10-marker);
    font-size: 0.95rem;
    letter-spacing: 0;
    font-weight: 400;
}

/* ============================================================
   SUBMIT — red comic button w/ huge hard shadow + animations
   ============================================================ */
.ic .checkout-btn,
.ic .ic-submit {
    display: inline-flex;
    width: 100%;
    margin-top: 0;
    padding: 14px;
    background: var(--t10-red);
    color: #ffffff;
    border: 2.5px solid var(--t10-ink);
    border-radius: 0;
    font-family: var(--t10-marker);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 5px 5px 0 var(--t10-ink);
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.18s ease;
    text-align: center;
}
.ic .checkout-btn:hover,
.ic .ic-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 var(--t10-ink);
    background: var(--t10-red);
}
.ic .checkout-btn:active,
.ic .ic-submit:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--t10-ink);
}
.ic .checkout-btn svg,
.ic .ic-submit svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}
.ic .checkout-btn-text { line-height: 1; }
.ic .checkout-btn-value {
    font-weight: 400;
    color: inherit;
    font-family: var(--t10-marker);
}

/* ============================================================
   TRUST BADGES — marker cursive center
   ============================================================ */
.ic .ic-trust {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: var(--t10-marker);
    font-size: 1.05rem;
    color: var(--t10-muted);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
}
.ic .ic-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.ic .ic-trust svg {
    width: 16px;
    height: 16px;
    color: var(--t10-green);
}

/* ============================================================
   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 — flatten card rotations + tighten spacing (distinct)
   ============================================================ */
@media (max-width: 767.98px) {
    .ic {
        padding: 22px 16px;
        margin: 16px auto;
        box-shadow: 4px 4px 0 var(--t10-ink);
    }
    /* Mobile-distinct: kill the comic tilts */
    .ic .ic-card:nth-of-type(odd),
    .ic .ic-card:nth-of-type(even) { transform: rotate(0); }
    .ic .ic-variation-thumb,
    .ic .add-to-products-image { transform: rotate(0); }
    .ic .ic-variation-check { transform: rotate(0); }
    .ic .ic-shipping-radio,
    .ic .ic-payment-radio { transform: rotate(0); }
    .ic .ic-shipping-option:has(input:checked) .ic-shipping-radio::after,
    .ic .ic-payment-option:has(input:checked) .ic-payment-radio::after { transform: translate(-50%, -50%); }

    .ic .ic-head-title { font-size: 1.9rem; }
    .ic .ic-card { padding: 12px 14px; }

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

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

    /* Mobile-distinct: submit smaller, less hover-throw */
    .ic .checkout-btn,
    .ic .ic-submit {
        font-size: 1.2rem;
        padding: 12px;
        box-shadow: 4px 4px 0 var(--t10-ink);
    }
    .ic .checkout-btn:hover,
    .ic .ic-submit:hover { transform: none; box-shadow: 4px 4px 0 var(--t10-ink); }

    .ic .ic-label { font-size: 1rem; }

    .ic .products-amount-wrapper,
    .ic .ic-totals { padding: 10px 12px; box-shadow: 3px 3px 0 var(--t10-ink); }
    .ic .products-total-amount,
    .ic .ic-total-grand { font-size: 1.2rem; }
    .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: 1.2rem; }
}
