/* Partner program pages (trade / distributor / overview).
   Marketing register, light-dark adaptive, Signal Red voice,
   red-to-purple gradient reserved for CTAs. Scoped to .hfm-trade-page. */
.hfm-trade-page {
    --t-base: light-dark(#fcfcfc, #0a0a0a);
    --t-surface: light-dark(#f7f7f7, #171717);
    --t-ink: light-dark(#191919, #f5f5f5);
    --t-ink-2: light-dark(#525252, #c9c9c9);
    --t-ink-muted: light-dark(#6b6b6b, #8a8a8a);
    --t-hairline: light-dark(#e5e5e5, #262626);
    --t-hairline-strong: light-dark(#d4d4d4, #404040);
    --t-red: light-dark(#c43a30, #ff6b5a);
    --t-purple: light-dark(#874da2, #d05aff);
    --t-grad: linear-gradient(135deg, #c43a30 0%, #874da2 100%);
    --t-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: var(--t-base);
    color: var(--t-ink);
    line-height: 1.55;
    color-scheme: light dark;
}
.hfm-trade-page .label {
    font-family: var(--t-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hfm-trade-page .wrap { max-width: 1060px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }

.hfm-trade-page .hero {
    border-bottom: 1px solid var(--t-hairline);
    padding: clamp(56px, 10vh, 110px) 0 clamp(40px, 7vh, 72px);
}
.hfm-trade-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: end;
}
.hfm-trade-page .back-link { margin: 0 0 28px; font-size: .85rem; }
.hfm-trade-page .back-link a { color: var(--t-ink-2); text-decoration: none; }
.hfm-trade-page .back-link a:hover { color: var(--t-ink); }
.hfm-trade-page .kicker {
    display: inline-block;
    color: var(--t-red);
    border: 1px solid var(--t-hairline-strong);
    border-radius: 2px;
    padding: 5px 10px;
    margin-bottom: 24px;
}
.hfm-trade-page .hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0 0 22px;
    color: var(--t-ink);
}
.hfm-trade-page .hero h1 em { font-style: normal; color: var(--t-red); }
.hfm-trade-page .hero-copy { color: var(--t-ink-2); font-size: 1.05rem; max-width: 52ch; margin: 0; }
.hfm-trade-page .hero-cta-block { padding-bottom: 6px; }
.hfm-trade-page .cta {
    display: inline-block;
    background: var(--t-grad);
    background-size: 160% 160%;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 17px 34px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-position .4s cubic-bezier(.22,1,.36,1), transform .15s cubic-bezier(.22,1,.36,1);
}
.hfm-trade-page .cta:hover { background-position: 100% 100%; transform: translateY(-1px); color: #fff; }
.hfm-trade-page .cta-sub { display: block; margin-top: 14px; color: var(--t-ink-muted); font-size: 0.85rem; }

.hfm-trade-page .spec-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--t-hairline);
    margin-top: clamp(36px, 6vh, 56px);
}
.hfm-trade-page .spec-strip > div {
    padding: 22px clamp(4px, 2vw, 24px) 0;
    border-left: 1px solid var(--t-hairline);
}
.hfm-trade-page .spec-strip > div:first-child { border-left: none; padding-left: 0; }
.hfm-trade-page .spec-strip .value {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.hfm-trade-page .spec-strip .label { color: var(--t-ink-muted); display: block; margin-top: 6px; }

.hfm-trade-page section { padding: clamp(44px, 8vh, 84px) 0; border-bottom: 1px solid var(--t-hairline); }
.hfm-trade-page section h2 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-wrap: balance;
    margin: 0 0 28px;
    color: var(--t-ink);
}
.hfm-trade-page .two-col {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: clamp(24px, 4vw, 64px);
}
.hfm-trade-page .two-col h2 { margin-bottom: 12px; }
.hfm-trade-page .section-note { color: var(--t-ink-muted); font-size: 0.92rem; max-width: 34ch; }
.hfm-trade-page .cross-link { margin-top: 14px; }
.hfm-trade-page .cross-link a { color: var(--t-purple); }

.hfm-trade-page .steps { display: grid; gap: 0; padding: 0; margin: 0; counter-reset: step; }
.hfm-trade-page .steps li {
    list-style: none;
    counter-increment: step;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid var(--t-hairline);
}
.hfm-trade-page .steps li:first-child { border-top: none; padding-top: 0; }
.hfm-trade-page .steps li::before {
    content: "0" counter(step);
    font-family: var(--t-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--t-red);
    border: 1px solid var(--t-hairline-strong);
    border-radius: 4px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
}
.hfm-trade-page .steps strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.hfm-trade-page .steps li p { color: var(--t-ink-2); font-size: 0.95rem; margin: 0; }

.hfm-trade-page .qualify { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(24px, 4vw, 56px); padding: 0; margin: 0; }
.hfm-trade-page .qualify li {
    list-style: none;
    padding: 13px 0;
    border-top: 1px solid var(--t-hairline);
    color: var(--t-ink-2);
    font-size: 0.98rem;
}

.hfm-trade-page .apply-section { border-bottom: none; }
.hfm-trade-page .apply-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.hfm-trade-page .apply-aside { position: sticky; top: 32px; }
.hfm-trade-page .apply-aside p { color: var(--t-ink-2); font-size: 0.95rem; max-width: 40ch; margin: 12px 0 0; }
.hfm-trade-page .apply-points { margin: 24px 0 0; padding: 0; }
.hfm-trade-page .apply-points li {
    list-style: none;
    padding: 10px 0;
    border-top: 1px solid var(--t-hairline);
    color: var(--t-ink-2);
    font-size: 0.9rem;
}
.hfm-trade-page form { display: flex; flex-direction: column; gap: 14px; scroll-margin-top: 24px; }
.hfm-trade-page fieldset { border: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hfm-trade-page fieldset + fieldset { margin-top: 18px; }
.hfm-trade-page legend { padding: 0; margin-bottom: 10px; color: var(--t-ink-muted); }
.hfm-trade-page .hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

.hfm-trade-page .float-row { position: relative; margin: 0; }
.hfm-trade-page .float-row textarea { min-height: 110px; resize: vertical; }
.hfm-trade-page .float-row input, .hfm-trade-page .float-row textarea, .hfm-trade-page .float-row select {
    width: 100%;
    padding: 24px 14px 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--t-surface);
    color: var(--t-ink);
    border: 1px solid var(--t-hairline-strong);
    border-radius: 8px;
}
.hfm-trade-page .float-row input:focus, .hfm-trade-page .float-row textarea:focus, .hfm-trade-page .float-row select:focus {
    border-color: var(--t-purple);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--t-purple) 15%, transparent);
}
.hfm-trade-page .float-row label {
    position: absolute;
    top: 16px; left: 14px;
    font-size: 1rem;
    color: var(--t-ink-muted);
    pointer-events: none;
    transition: font-size .15s ease, top .15s ease;
    padding: 0;
}
.hfm-trade-page .float-row input:focus + label,
.hfm-trade-page .float-row input:not(:placeholder-shown) + label,
.hfm-trade-page .float-row textarea:focus + label,
.hfm-trade-page .float-row textarea:not(:placeholder-shown) + label,
.hfm-trade-page .float-row select + label {
    top: 7px;
    font-size: 0.7rem;
}
.hfm-trade-page #abn { font-family: var(--t-mono); letter-spacing: 0.04em; }
.hfm-trade-page .hint { font-size: 0.8rem; color: var(--t-ink-muted); margin: -8px 0 0; padding-left: 2px; }
.hfm-trade-page .hint--ok { color: light-dark(#16a34a, #4ade80); }
.hfm-trade-page .hint--error { color: var(--t-red); }
.hfm-trade-page .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.hfm-trade-page button[type="submit"] {
    margin-top: 10px;
    padding: 17px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 800;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: var(--t-grad);
    background-size: 160% 160%;
    transition: background-position .4s cubic-bezier(.22,1,.36,1), transform .15s cubic-bezier(.22,1,.36,1);
}
.hfm-trade-page button[type="submit"]:hover { background-position: 100% 100%; transform: translateY(-1px); }
.hfm-trade-page .fineprint { font-size: 0.8rem; color: var(--t-ink-muted); line-height: 1.5; margin: 0; }
.hfm-trade-page .fineprint a, .hfm-trade-page .apply-aside a { color: var(--t-purple); }

.hfm-trade-page .trade-notice {
    border: 1px solid var(--t-hairline-strong);
    border-radius: 8px;
    padding: 20px 22px;
    font-size: 0.95rem;
}
.hfm-trade-page .trade-notice p { color: var(--t-ink-2); margin: 6px 0 0; }
.hfm-trade-page .trade-notice--ok { border-color: light-dark(#16a34a, #4ade80); }
.hfm-trade-page .trade-notice--error { border-color: var(--t-red); color: var(--t-red); }

.hfm-trade-page .faq-section details { border-top: 1px solid var(--t-hairline); }
.hfm-trade-page .faq-section details:last-child { border-bottom: 1px solid var(--t-hairline); }
.hfm-trade-page .faq-section summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.hfm-trade-page .faq-section summary::-webkit-details-marker { display: none; }
.hfm-trade-page .faq-section summary::after {
    content: "+";
    font-family: var(--t-mono);
    color: var(--t-ink-muted);
    font-size: 1.1rem;
    transition: transform .2s cubic-bezier(.22,1,.36,1);
}
.hfm-trade-page .faq-section details[open] summary::after { transform: rotate(45deg); }
.hfm-trade-page .faq-section details p { color: var(--t-ink-2); font-size: 0.95rem; padding: 0 0 18px; margin: 0; max-width: 65ch; }

@media (prefers-reduced-motion: no-preference) {
    .hfm-trade-page .hero h1, .hfm-trade-page .hero-copy,
    .hfm-trade-page .hero-cta-block, .hfm-trade-page .spec-strip {
        animation: hfm-trade-rise .6s cubic-bezier(.22,1,.36,1) backwards;
    }
    .hfm-trade-page .hero-copy { animation-delay: .08s; }
    .hfm-trade-page .hero-cta-block { animation-delay: .16s; }
    .hfm-trade-page .spec-strip { animation-delay: .24s; }
    @keyframes hfm-trade-rise {
        from { opacity: 0; transform: translateY(14px); }
        to   { opacity: 1; transform: none; }
    }
}

@media (max-width: 820px) {
    .hfm-trade-page .hero-grid, .hfm-trade-page .two-col, .hfm-trade-page .apply-grid { grid-template-columns: 1fr; }
    .hfm-trade-page .apply-aside { position: static; }
    .hfm-trade-page .hero-grid { gap: 28px; align-items: start; }
}
@media (max-width: 560px) {
    .hfm-trade-page .spec-strip { grid-template-columns: 1fr; border-top: none; }
    .hfm-trade-page .spec-strip > div { border-left: none; border-top: 1px solid var(--t-hairline); padding: 18px 0 0; }
    .hfm-trade-page .spec-strip > div:first-child { border-top: 1px solid var(--t-hairline); }
    .hfm-trade-page .row-2, .hfm-trade-page .qualify { grid-template-columns: 1fr; }
}

/* ── Program overview (two-card chooser) ── */
.hfm-program-page .hero h1 { margin-bottom: 18px; }
.hfm-program-page section { border-bottom: none; }
.hfm-program-page .program-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 3vw, 32px);
}
.hfm-program-page .program-card {
    border: 1px solid var(--t-hairline-strong);
    border-radius: 12px;
    padding: clamp(24px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.hfm-program-page .program-card:hover {
    border-color: var(--t-red);
    box-shadow: 0 6px 24px -12px color-mix(in srgb, var(--t-ink) 25%, transparent);
    transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
    .hfm-program-page .program-card, .hfm-program-page .program-card:hover { transition: none; transform: none; }
}
.hfm-program-page .program-tag { color: var(--t-red); }
.hfm-program-page .program-value {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 14px 0 10px;
}
.hfm-program-page .program-for { color: var(--t-ink-2); font-size: 0.95rem; margin: 0 0 22px; }
.hfm-program-page .program-specs { padding: 0; margin: 0 0 28px; flex-grow: 1; }
.hfm-program-page .program-specs li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-top: 1px solid var(--t-hairline);
    font-size: 0.9rem;
}
.hfm-program-page .program-specs li span:first-child { color: var(--t-ink-muted); flex-shrink: 0; }
.hfm-program-page .program-specs li span:last-child { text-align: right; color: var(--t-ink-2); }
.hfm-program-page .program-card .cta { text-align: center; }
.hfm-program-page .program-note {
    color: var(--t-ink-muted);
    font-size: 0.92rem;
    max-width: 62ch;
    margin: clamp(28px, 5vh, 44px) 0 0;
}
@media (max-width: 720px) {
    .hfm-program-page .program-cards { grid-template-columns: 1fr; }
}

/* ── Single distributor (single-distributors.php) ── */
.hfm-trade-page .globe-wrap { aspect-ratio: 1; max-width: 380px; width: 100%; margin: 0 auto; }
.hfm-trade-page .globe-wrap canvas { width: 100%; height: 100%; display: block; }
.hfm-trade-page .hero-grid--center { align-items: center; }
.hfm-trade-page .single-grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.hfm-trade-page .single-aside { position: sticky; top: 32px; }
.hfm-trade-page .single-aside img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--t-hairline);
    border-radius: 12px;
    margin-bottom: 20px;
}
.hfm-trade-page .detail-ledger { padding: 0; margin: 0 0 24px; }
.hfm-trade-page .detail-ledger li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-top: 1px solid var(--t-hairline);
    font-size: 0.9rem;
}
.hfm-trade-page .detail-ledger li span:first-child { color: var(--t-ink-muted); flex-shrink: 0; }
.hfm-trade-page .detail-ledger li span:last-child { text-align: right; color: var(--t-ink-2); overflow-wrap: anywhere; }
.hfm-trade-page .detail-ledger a { color: var(--t-purple); }
.hfm-trade-page .single-body p { color: var(--t-ink-2); font-size: 1rem; margin: 0 0 18px; max-width: 68ch; }
@media (max-width: 820px) {
    .hfm-trade-page .single-grid { grid-template-columns: 1fr; }
    .hfm-trade-page .single-aside { position: static; }
    .hfm-trade-page .globe-wrap { max-width: 300px; }
}

/* ── Distributors map page (page-distributors.php) ── */
.hfm-dist-map .hero-grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); }
.hfm-dist-map .perks { padding: 0; margin: 22px 0 0; max-width: 40ch; }
.hfm-dist-map .perks li {
    list-style: none;
    padding: 9px 0;
    border-top: 1px solid var(--t-hairline);
    color: var(--t-ink-2);
    font-size: 0.92rem;
}
.hfm-dist-map .perks li::before { content: "\2713\00a0\00a0"; color: var(--t-red); font-weight: 900; }
.hfm-trade-page .globe-wrap--map { position: relative; max-width: 520px; }
.hfm-trade-page .globe-wrap--map canvas { cursor: grab; touch-action: none; }
.hfm-trade-page .globe-wrap--map canvas.dragging { cursor: grabbing; }
#hfm-dist-map-tip {
    position: absolute;
    pointer-events: none;
    background: var(--t-surface);
    border: 1px solid var(--t-hairline-strong);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--t-ink);
    white-space: nowrap;
    transform: translate(-50%, -140%);
}
.hfm-dist-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hfm-dist-chip {
    background: none;
    border: 1px solid var(--t-hairline-strong);
    border-radius: 4px;
    color: var(--t-ink-muted);
    padding: 8px 14px;
    cursor: pointer;
}
.hfm-dist-chip.active { color: var(--t-red); border-color: var(--t-red); }
.hfm-trade-page .dist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(14px, 2vw, 24px);
}
.hfm-trade-page .dist-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--t-hairline);
    border-radius: 12px;
    overflow: hidden;
    background: var(--t-surface);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.hfm-trade-page .dist-card:hover {
    border-color: var(--t-red);
    box-shadow: 0 6px 24px -12px color-mix(in srgb, var(--t-ink) 25%, transparent);
    transform: translateY(-2px);
}
.hfm-trade-page .dist-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; height: auto; }
.hfm-trade-page .dist-card-meta { padding: 14px 16px; border-top: 1px solid var(--t-hairline); }
.hfm-trade-page .dist-card-meta h3 { font-size: 1rem; font-weight: 900; letter-spacing: -0.01em; margin: 0 0 4px; }
.hfm-trade-page .dist-card-meta .label { color: var(--t-ink-muted); }
.hfm-trade-page .dist-card[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
    .hfm-trade-page .dist-card, .hfm-trade-page .dist-card:hover { transition: none; transform: none; }
}
@media (max-width: 820px) {
    .hfm-dist-map .hero-grid { grid-template-columns: 1fr; }
    .hfm-trade-page .globe-wrap--map { max-width: 360px; }
}

/* Ships-worldwide badge + recapture banner + locate chip */
.hfm-trade-page .dist-card-badge {
    display: inline-block;
    margin-top: 6px;
    color: var(--t-purple);
    border: 1px solid var(--t-hairline-strong);
    border-radius: 2px;
    padding: 2px 6px;
}
.hfm-dist-recapture {
    border: 1px solid var(--t-hairline-strong);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 24px;
}
.hfm-dist-recapture p { color: var(--t-ink-2); font-size: 0.92rem; margin: 6px 0 16px; max-width: 60ch; }
.hfm-dist-recapture .cta { padding: 12px 24px; font-size: 0.9rem; }
#hfm-dist-locate:disabled { opacity: 0.6; cursor: default; }


/* Buy-direct section link + near-you block */
.hfm-trade-page .dist-official-more { color: var(--t-purple); font-size: 0.85rem; }
#hfm-dist-near { margin-bottom: clamp(28px, 4vw, 44px); }

/* Ticked variant of the qualify list (buy-direct points): clean rows,
   no hairlines, even vertical rhythm. */
.hfm-trade-page .qualify--ticks { align-content: center; gap: 12px 24px; }
.hfm-trade-page .qualify--ticks li {
    border-top: none;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.hfm-trade-page .qualify--ticks li::before {
    content: "\2713";
    color: var(--t-red);
    font-weight: 900;
    flex-shrink: 0;
}

/* Stocked-range chips on distributor singles */
.hfm-trade-page .range-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hfm-trade-page .range-chip {
    border: 1px solid var(--t-hairline-strong);
    border-radius: 4px;
    padding: 6px 10px;
    color: var(--t-ink-2);
}

/* Supported-models row on distributor singles */
.hfm-trade-page .hfm-dist-vehicles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: clamp(10px, 1.5vw, 18px);
}

/* Product range carousel on distributor singles: scroll-snap row */
.hfm-trade-page .hfm-dist-carousel ul.products {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    gap: clamp(12px, 1.5vw, 20px);
    margin: 0;
    padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.hfm-trade-page .hfm-dist-carousel ul.products > li.product {
    flex: 0 0 clamp(230px, 24vw, 290px);
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    scroll-snap-align: start;
}

/* Outline CTA variant (secondary action beside the gradient CTA) */
.hfm-trade-page .cta--outline {
    background: none;
    border: 1px solid var(--t-hairline-strong);
    color: var(--t-ink);
    transition: border-color .15s ease, transform .15s cubic-bezier(.22,1,.36,1);
}
.hfm-trade-page .cta--outline:hover { border-color: var(--t-purple); color: var(--t-ink); background: none; }
/* View-only cards keep their layout but not their pointer affordance */
.hfm-trade-page .hfm-dist-carousel .hfm-shop span[class*="hfm-card"],
.hfm-trade-page .hfm-dist-vehicles span.hfm-vehicle-card { cursor: default; }

/* Showcase cards on distributor singles promote the distributor, not us:
   no pricing, no dispatch signals. */
.hfm-trade-page .hfm-dist-carousel .hfm-card__price,
.hfm-trade-page .hfm-dist-carousel .hfm-card__pricenote,
.hfm-trade-page .hfm-dist-carousel .hfm-card__signal-row { display: none !important; }

/* View-only showcase: no hover affordance on the de-linked cards */
.hfm-trade-page .hfm-dist-carousel li.product.product-card:hover {
    border-color: var(--t-hairline);
    box-shadow: none;
    transform: none;
}
.hfm-trade-page .hfm-dist-carousel li.product.product-card:hover .hfm-card__media-hover { opacity: 0; }
.hfm-trade-page .hfm-dist-vehicles .hfm-vehicle-card:hover {
    background: light-dark(#f7f7f7, #171717);
    transform: none;
    box-shadow: none;
}

/* Showcase cards: no review stars either */
.hfm-trade-page .hfm-dist-carousel .hfm-card__rating,
.hfm-trade-page .hfm-dist-carousel .hfm-card__rating--low { display: none !important; }

/* Ink CTA: distributor-facing actions. The red-purple gradient stays
   exclusively on HFM's own calls to action. */
.hfm-trade-page .cta--ink {
    background: light-dark(#191919, #f5f5f5);
    color: light-dark(#f5f5f5, #0a0a0a);
    transition: opacity .15s ease, transform .15s cubic-bezier(.22,1,.36,1);
}
.hfm-trade-page .cta--ink:hover {
    background: light-dark(#191919, #f5f5f5);
    color: light-dark(#f5f5f5, #0a0a0a);
    opacity: 0.85;
}

/* Hub card value as a word instead of a percentage */
.hfm-program-page .program-value--word { font-size: clamp(1.7rem, 3vw, 2.4rem); }
