/* =====================================================================
   Wholesale Order Pad
   The component palette is driven entirely by these --of-* variables.
   A brand theme maps its own colours onto them (see README); the values
   here are accessible, neutral defaults so the plugin looks fine alone.
   ===================================================================== */
.of-order-form {
    --of-bg: transparent;
    --of-surface: #ffffff;
    --of-surface-2: #f4f4f5;
    --of-border: rgb(0 0 0 / 0.12);
    --of-text: #18181b;
    --of-muted: #6b7280;
    --of-accent: #2563eb;
    --of-on-accent: #ffffff;
    --of-accent-hover: #1d4ed8;
    --of-danger: #b91c1c;
    --of-success: #15803d;
    --of-radius: 10px;
    --of-grid-cols: minmax(0, 1fr) 130px 150px; /* shared by list header + rows so they align */
    --of-font-display: inherit;
    --of-font-body: inherit;
    --of-font-mono: ui-monospace, "SFMono-Regular", Menlo, monospace;

    color: var(--of-text);
    font-family: var(--of-font-body);
    line-height: 1.45;
}

/* Neutralise inherited theme/prose typography */
.of-order-form *,
.of-order-form *::before,
.of-order-form *::after { box-sizing: border-box; }
.of-order-form a { color: inherit; text-decoration: none; }
.of-order-form h2 { margin: 0; }
.of-order-form input[type="number"]::-webkit-outer-spin-button,
.of-order-form input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.of-order-form input[type="number"] { -moz-appearance: textfield; }

/* ---- Layout ---- */
.of-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    align-items: start;
    margin: 0;
}
.of-main { min-width: 0; }

/* ---- Toolbar / search ---- */
/* Sticks below the site header (offset set via --of-sticky-top by the JS, which
   measures the live header height). Opaque background so rows scroll behind it. */
.of-toolbar {
    position: sticky;
    top: var(--of-sticky-top, 1.5rem);
    z-index: 4;
    margin-bottom: 1.25rem;
    padding: 0.85rem 0 0.7rem;
    background: var(--of-surface);
}
.of-search {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.95rem;
    background: var(--of-surface);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius);
}
.of-search:focus-within { border-color: var(--of-accent); }
.of-search-icon { width: 18px; height: 18px; color: var(--of-muted); flex: none; }
.of-search-input {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--of-text);
    font: inherit;
    padding: 0.85rem 0;
    outline: none;
}
.of-search-input::placeholder { color: var(--of-muted); }

/* ---- Column header ---- */
.of-list-head {
    display: grid;
    grid-template-columns: var(--of-grid-cols);
    gap: 1rem;
    padding: 0 1rem 0.6rem;
    font-family: var(--of-font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--of-muted);
}
.of-list-head span:nth-child(2) { text-align: right; }
.of-list-head span:nth-child(3) { text-align: center; }

/* ---- Groups ---- */
.of-group { margin-bottom: 1.5rem; }
.of-group-head {
    padding: 0.7rem 1rem;
    margin-bottom: 0.25rem;
    background: color-mix(in srgb, var(--of-accent) 14%, var(--of-surface));
    border-left: 3px solid var(--of-accent);
    border-radius: calc(var(--of-radius) - 4px);
    font-family: var(--of-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--of-text);
}

/* ---- Rows ---- */
.of-row {
    display: grid;
    grid-template-columns: var(--of-grid-cols);
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--of-border);
}
.of-row:last-child { border-bottom: 0; }

.of-cell-product { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.of-thumb {
    position: relative;
    flex: none;
    width: 58px;
    height: 58px;
    border-radius: calc(var(--of-radius) - 4px);
    overflow: hidden;
    background: #fff;
    display: grid;
    place-items: center;
}
.of-thumb[data-images] { cursor: pointer; }
/* Badge on thumbnails that hold more than one image — signals the lightbox. */
.of-thumb-count {
    position: absolute;
    right: 3px;
    bottom: 3px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 1px 4px 1px 3px;
    border-radius: 999px;
    background: rgb(0 0 0 / 0.62);
    color: #fff;
    font-family: var(--of-font-mono);
    font-size: 0.58rem;
    font-weight: 600;
    line-height: 1.4;
    pointer-events: none;
}
.of-thumb-count svg { width: 9px; height: 9px; }
/* White fill behind product images so transparent PNGs never show the
   surface colour through (stays white in dark mode too). */
.of-thumb img, .of-thumb .of-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; background: #fff; }
.of-prod { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.of-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--of-text);
    overflow: hidden;
    text-overflow: ellipsis;
}
.of-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 0.3rem; }
.of-badge, .of-pill {
    font-family: var(--of-font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}
/* Accent pill = quantity rule (sets/min); neutral pill = product info. */
.of-badge {
    color: var(--of-accent);
    background: color-mix(in srgb, var(--of-accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--of-accent) 28%, transparent);
}
.of-pill {
    color: var(--of-muted);
    background: var(--of-surface-2);
    border: 1px solid var(--of-border);
}

/* ---- Hover-magnify preview ----
   Anchored beside the hovered thumbnail (not the cursor) so it holds still and
   can actually be studied — see Baymard on secondary hover information. */
.of-thumb[data-zoom] { cursor: zoom-in; }
.of-zoom {
    position: fixed;
    z-index: 60;
    padding: 7px;
    background: #fff;
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius);
    box-shadow: 0 18px 48px rgb(0 0 0 / 0.28);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.96);
    transform-origin: center;
    transition: opacity 0.16s ease, transform 0.16s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.of-zoom.is-visible { opacity: 1; transform: scale(1); }
.of-zoom img { display: block; width: min(460px, 80vw); height: auto; border-radius: calc(var(--of-radius) - 5px); background: #fff; }

/* ---- Gallery lightbox ---- */
.of-lightbox {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: clamp(0.75rem, 4vw, 2.5rem);
}
.of-lightbox[hidden] { display: none; }
.of-lightbox-backdrop { position: absolute; inset: 0; background: rgb(0 0 0 / 0.82); }
.of-lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 100%;
    max-height: 100%;
}
.of-lightbox-img {
    display: block;
    max-width: min(78vw, 900px);
    max-height: 84vh;
    width: auto;
    height: auto;
    border-radius: var(--of-radius);
    box-shadow: 0 20px 60px rgb(0 0 0 / 0.5);
    background: #fff;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.of-lightbox-img.is-loaded { opacity: 1; }
.of-lightbox-nav,
.of-lightbox-x {
    position: relative;
    flex: none;
    display: grid;
    place-items: center;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgb(255 255 255 / 0.14);
    border-radius: 999px;
    transition: background 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.of-lightbox-nav:hover,
.of-lightbox-x:hover { background: rgb(255 255 255 / 0.28); }
.of-lightbox-nav:focus-visible,
.of-lightbox-x:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.of-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 1.9rem;
    line-height: 1;
    padding-bottom: 4px;
}
.of-lightbox-x {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    font-size: 1.5rem;
    line-height: 1;
    z-index: 2;
}
.of-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%);
    color: rgb(255 255 255 / 0.85);
    font-family: var(--of-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
@media (max-width: 600px) {
    /* Overlay the arrows on the image edges so the picture keeps full width. */
    .of-lightbox-stage { gap: 0; }
    .of-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgb(0 0 0 / 0.4); }
    .of-lightbox-prev { left: 6px; }
    .of-lightbox-next { right: 6px; }
    .of-lightbox-counter { bottom: -1.6rem; }
}

.of-cell-price { text-align: right; display: flex; flex-direction: column; gap: 0.1rem; }
.of-price { font-family: var(--of-font-mono); font-weight: 600; font-size: 0.95rem; color: var(--of-text); }
.of-price-unit { font-family: var(--of-font-mono); font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--of-muted); }

.of-cell-qty { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }

/* ---- Stepper ---- */
.of-stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--of-border);
    border-radius: 999px;
    background: var(--of-surface);
    overflow: hidden;
}
.of-step {
    width: 34px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--of-text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.of-step:hover { background: var(--of-accent); color: var(--of-on-accent); }
.of-qty {
    width: 56px;
    height: 38px;
    border: 0;
    border-left: 1px solid var(--of-border);
    border-right: 1px solid var(--of-border);
    background: transparent;
    color: var(--of-text);
    text-align: center;
    font: inherit;
    font-variant-numeric: tabular-nums;
    outline: none;
}
.of-row[data-active="1"] .of-stepper { border-color: var(--of-accent); }
.of-line-total { font-family: var(--of-font-mono); font-size: 0.72rem; color: var(--of-muted); min-height: 1em; }
.of-row[data-active="1"] .of-line-total { color: var(--of-accent); }

.of-oos {
    font-family: var(--of-font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--of-danger);
}

.of-no-results, .of-empty { padding: 2rem 1rem; text-align: center; color: var(--of-muted); }

/* ---- Summary ---- */
.of-summary { position: sticky; top: calc(var(--of-sticky-top, 1.5rem) + 1rem); }
.of-summary-card {
    background: var(--of-surface);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius);
    overflow: hidden;
}
.of-summary-title {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--of-border);
    font-family: var(--of-font-display);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--of-text);
}
.of-summary-body { padding: 1rem 1.25rem; max-height: 320px; overflow-y: auto; }
.of-summary-empty { color: var(--of-muted); font-size: 0.85rem; margin: 0; }
.of-summary-lines { margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.of-sline { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; font-size: 0.82rem; }
.of-sline-name { color: var(--of-text); }
.of-sline-qty { color: var(--of-muted); font-family: var(--of-font-mono); font-size: 0.72rem; }
.of-sline-amt { color: var(--of-text); font-family: var(--of-font-mono); white-space: nowrap; }

.of-summary-foot { padding: 1rem 1.25rem; border-top: 1px solid var(--of-border); }
.of-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--of-font-mono);
    margin-bottom: 0.85rem;
}
.of-summary-total > :first-child { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--of-muted); }
.of-summary-total > :last-child { font-size: 1.25rem; font-weight: 700; color: var(--of-text); }
.of-min-note { font-size: 0.74rem; color: var(--of-danger); margin: 0 0 0.75rem; }
.of-free-note { font-size: 0.7rem; color: var(--of-muted); margin: 0 0 0.85rem; }

/* Order-form discount */
.of-discount-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 1.25rem 0;
    padding: 0.6rem 0.75rem;
    background: color-mix(in srgb, var(--of-accent) 12%, var(--of-surface));
    border: 1px solid color-mix(in srgb, var(--of-accent) 30%, transparent);
    border-radius: 8px;
    font-family: var(--of-font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--of-text);
}
.of-summary-line,
.of-review-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--of-font-mono);
    font-size: 0.85rem;
    color: var(--of-text);
    margin-bottom: 0.55rem;
}
.of-summary-line > :first-child,
.of-review-line > :first-child {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--of-muted);
}
.of-summary-discount > :last-child { color: var(--of-accent); font-weight: 600; }
.of-submit-hint { font-size: 0.74rem; color: var(--of-success); margin: 0.7rem 0 0; }

/* ---- Buttons ---- */
.of-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--of-font-display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
    padding: 0.8rem 1.3rem;
    border-radius: calc(var(--of-radius) - 4px);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s, opacity 0.18s;
}
.of-btn-primary { background: var(--of-accent); color: var(--of-on-accent); width: 100%; }
.of-btn-primary:hover:not(:disabled) { background: var(--of-accent-hover); }
.of-btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.of-btn-ghost { background: transparent; border-color: var(--of-border); color: var(--of-text); }
.of-btn-ghost:hover { border-color: var(--of-accent); color: var(--of-accent); }

/* ---- Locked state ---- */
.of-locked { display: grid; place-items: center; padding: 2rem 0; }
.of-locked-card {
    text-align: center;
    max-width: 460px;
    padding: 2.5rem 2rem;
    background: var(--of-surface);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius);
}
.of-lock-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 999px; background: color-mix(in srgb, var(--of-accent) 14%, transparent); color: var(--of-accent); margin-bottom: 1rem; }
.of-lock-icon svg { width: 24px; height: 24px; }
.of-locked-title { font-family: var(--of-font-display); font-size: 1.4rem; text-transform: uppercase; color: var(--of-text); margin-bottom: 0.5rem; }
.of-locked-text { color: var(--of-muted); margin: 0 0 1.5rem; }
.of-locked-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.of-locked-actions .of-btn-primary { width: auto; }

/* ---- Review modal ---- */
body.of-modal-open, body.of-lightbox-open { overflow: hidden; }
.of-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}
.of-modal[hidden] { display: none; }
.of-modal-backdrop { position: absolute; inset: 0; background: rgb(0 0 0 / 0.6); backdrop-filter: blur(2px); }
.of-modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    overflow-y: auto;
    background: var(--of-surface);
    border: 1px solid var(--of-border);
    border-radius: var(--of-radius);
    padding: 1.75rem;
    box-shadow: 0 30px 80px -20px rgb(0 0 0 / 0.6);
    animation: of-pop 0.18s ease-out;
}
@keyframes of-pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.of-modal-x {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    width: 30px; height: 30px;
    border: 0;
    background: transparent;
    color: var(--of-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
}
.of-modal-x:hover { color: var(--of-text); background: var(--of-surface-2); }
.of-modal-title { font-family: var(--of-font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--of-text); margin-bottom: 1rem; }

.of-review-lines { display: flex; flex-direction: column; gap: 0.55rem; max-height: 40vh; overflow-y: auto; margin-bottom: 0.85rem; }
.of-rline { display: grid; grid-template-columns: 1fr auto auto; gap: 0.4rem 0.9rem; align-items: baseline; font-size: 0.85rem; }
.of-rline-name { color: var(--of-text); }
.of-rline-qty { color: var(--of-muted); font-family: var(--of-font-mono); font-size: 0.72rem; }
.of-rline-amt { color: var(--of-text); font-family: var(--of-font-mono); white-space: nowrap; }

.of-review-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0;
    margin-bottom: 0.5rem;
    border-top: 1px solid var(--of-border);
    border-bottom: 1px solid var(--of-border);
    font-family: var(--of-font-mono);
}
.of-review-total > :first-child { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--of-muted); }
.of-review-total > :last-child { font-size: 1.2rem; font-weight: 700; color: var(--of-text); }

.of-field { margin-top: 0.85rem; }
.of-field label { display: block; font-family: var(--of-font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--of-muted); margin-bottom: 0.35rem; }
.of-optional { opacity: 0.7; }
.of-field input, .of-field textarea {
    width: 100%;
    background: var(--of-surface-2);
    border: 1px solid var(--of-border);
    border-radius: calc(var(--of-radius) - 4px);
    color: var(--of-text);
    font: inherit;
    padding: 0.6rem 0.7rem;
    outline: none;
}
.of-field input:focus, .of-field textarea:focus { border-color: var(--of-accent); }
.of-field select {
    width: 100%;
    background: var(--of-surface-2);
    border: 1px solid var(--of-border);
    border-radius: calc(var(--of-radius) - 4px);
    color: var(--of-text);
    font: inherit;
    padding: 0.6rem 0.7rem;
    outline: none;
}
.of-field select:focus { border-color: var(--of-accent); }
.of-invalid { border-color: var(--of-danger) !important; }

/* ---- Ship to ---- */
.of-ship { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--of-border); }
.of-ship-head { font-family: var(--of-font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--of-muted); margin: 0 0 0.6rem; }
.of-ship-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    background: var(--of-surface-2);
    border: 1px solid var(--of-border);
    border-radius: calc(var(--of-radius) - 4px);
    padding: 0.75rem 0.85rem;
}
.of-ship-address { font-style: normal; font-size: 0.85rem; line-height: 1.5; color: var(--of-text); }
.of-ship-edit { flex: none; background: transparent; border: 0; color: var(--of-accent); font: inherit; font-size: 0.78rem; cursor: pointer; text-decoration: underline; }
.of-ship-edit:hover { color: var(--of-accent-hover); }
.of-ship-fields { margin-top: 0.6rem; display: flex; flex-direction: column; gap: 0.6rem; }
.of-ship-fields .of-field { margin-top: 0; }
.of-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.of-ship-error { margin: 0; color: var(--of-danger); font-size: 0.78rem; }

.of-pay-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin: 1.1rem 0 0.4rem;
    padding: 0.7rem 0.8rem;
    background: color-mix(in srgb, var(--of-accent) 9%, transparent);
    border: 1px solid color-mix(in srgb, var(--of-accent) 22%, transparent);
    border-radius: calc(var(--of-radius) - 4px);
    font-size: 0.78rem;
    color: var(--of-text);
}
.of-pay-note svg { width: 18px; height: 18px; color: var(--of-accent); flex: none; margin-top: 1px; }

.of-modal-error { margin: 0.85rem 0 0; color: var(--of-danger); font-size: 0.8rem; }
.of-modal-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.of-modal-actions .of-btn { flex: 1; }
.of-btn[aria-busy="true"] { opacity: 0.7; cursor: progress; }

/* ---- Success ---- */
.of-success { text-align: center; }
.of-success-icon {
    display: inline-grid; place-items: center;
    width: 56px; height: 56px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--of-success) 16%, transparent);
    color: var(--of-success);
    margin-bottom: 1rem;
}
.of-success-icon svg { width: 28px; height: 28px; }
.of-success-title { font-family: var(--of-font-display); font-size: 1.3rem; text-transform: uppercase; color: var(--of-text); margin-bottom: 0.4rem; }
.of-success-status { color: var(--of-muted); margin: 0 0 1.1rem; }
.of-success-instructions {
    text-align: left;
    margin: 1.1rem 0;
    padding: 0.9rem 1rem;
    background: var(--of-surface-2);
    border: 1px solid var(--of-border);
    border-radius: calc(var(--of-radius) - 4px);
    font-size: 0.85rem;
    color: var(--of-text);
}
.of-success-instructions h3 { font-family: var(--of-font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--of-muted); margin: 0 0 0.4rem; }
.of-success-instructions p { margin: 0 0 0.5rem; }
.of-success-instructions :last-child { margin-bottom: 0; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .of-layout { grid-template-columns: 1fr; }
    .of-summary { position: static; order: 2; }
    .of-list-head { display: none; }
    .of-row { grid-template-columns: 1fr auto; grid-template-areas: "product price" "product qty"; row-gap: 0.6rem; }
    .of-cell-product { grid-area: product; }
    .of-cell-price { grid-area: price; }
    .of-cell-qty { grid-area: qty; align-items: flex-end; }
}

/* === GME override: "Your order" fills the available height with a symmetric
   top/bottom gap; the item list scrolls inside instead of capping at 320px. === */
.of-summary { height: calc(100vh - var(--of-sticky-top, 1.5rem) - 2rem); }
.of-summary-card { display: flex; flex-direction: column; max-height: 100%; }
.of-summary-body { max-height: none; flex: 1 1 auto; }
