/* ---------- tokens (scoped) ---------- */
.zmh {
    --o: #ff671f;
    --o-l: #ff8e53;
    --bl: #81c4ff;
    --b: #2455ea;
    --navy: #0d2c6e;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;
    --good: #138a5e;
    --good-bg: #e7f4ee;
    --wa: #22c35e;
    --wa-d: #1aa34d;
    --r: 14px;
    --gallery-h: clamp(250px, 58vw, 460px);

    --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --display: 'Sora', ui-sans-serif, system-ui, -apple-system, sans-serif;
    --mono: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    /*--sans: 'Inter', sans-serif;
    --display: 'Inter', sans-serif;
    --mono: 'Inter', sans-serif;*/
    font-family: var(--sans);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    scroll-margin-top: 90px;
    display: block;
}

.zmh *, .zmh *::before, .zmh *::after {
    box-sizing: border-box;
}

.zmh img {
    max-width: 100%;
}

.zmh a {
    text-decoration: none;
    color: inherit;
}

.zmh button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.zmh svg {
    display: block;
    flex: none;
}

.zmh-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 18px 28px;
}

/* ---------- breadcrumb ---------- */
.zmh-crumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 6px 0 8px;
}

.zmh-crumbs a {
    color: var(--gray);
    transition: color .15s;
}

.zmh-crumbs a:hover {
    color: var(--b);
}

.zmh-crumbs .sep {
    color: var(--line);
    width: 11px;
    height: 11px;
}

.zmh-crumbs .here {
    color: var(--ink);
}

/* ---------- title + meta ---------- */
.zmh-head {
    padding: 6px 0 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}

.zmh-meta {
    display: flex;
    align-items: center;
    gap: 14px 18px;
    flex-wrap: wrap;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.zmh-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.zmh-meta svg {
    width: 13px;
    height: 13px;
    stroke: var(--gray);
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-title {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.015em;
    color: var(--ink);
    font-size: clamp(28px, 5vw, 46px);
    margin: 0 0 8px;
}

.zmh-sub {
    font-weight: 500;
    color: var(--gray);
    font-size: clamp(14px, 1.9vw, 17px);
    margin: 0 0 16px;
    line-height: 1.4;
}

.zmh-quick {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zmh-quick li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px 13px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    min-height: 38px;
    min-width: 0;
    max-width: 100%;
    word-break: break-word;
}

.zmh-quick svg {
    width: 15px;
    height: 15px;
    stroke: var(--b);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- main grid: LEFT (gallery + interest + highlights) | RIGHT (sticky panel) ---------- */
.zmh-grid {
    display: grid;
    grid-template-columns:minmax(0, 1fr) 380px;
    gap: 26px 30px;
    align-items: start;
}

.zmh-left {
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zmh-right {
    position: sticky;
    top: 90px;
}

@media (max-width: 991px) {
    .zmh-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .zmh-right {
        position: static;
        top: auto;
    }
}

/* ---------- gallery ---------- */
.zmh-gallery {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    width: 100%;
    min-width: 0;
}

.zmh .zmh-gallery .zmorda-img,
.zmh .zmh-gallery img.img-fluid {
    width: 100%;
    height: var(--gallery-h);
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.zmh .zmh-gallery .image-popup {
    display: block;
    cursor: zoom-in;
}

/* prevent CLS before owl initialises */
.zmh .zmh-gallery .owl-carousel:not(.owl-loaded) {
    height: var(--gallery-h);
    overflow: hidden;
}

.zmh .zmh-gallery .owl-carousel:not(.owl-loaded) .item:not(:first-child) {
    display: none;
}

.zmh .zmh-gallery .owl-carousel,
.zmh .zmh-gallery .owl-stage-outer {
    border-radius: 18px;
}

/* gallery overlays (non-interactive) */
.zmh-gov {
    position: absolute;
    z-index: 3;
    pointer-events: none;
}

.zmh-scrim {
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(to top, rgba(13, 44, 110, .42), transparent);
}

.zmh-gbadges {
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.zmh-gbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.zmh-gbadge.first {
    background: rgba(255, 255, 255, .94);
    color: var(--b);
}

.zmh-gbadge.pro {
    background: var(--o);
    color: #fff;
}

.zmh-gbadge svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2.1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-gcount {
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(13, 44, 110, .7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 6px 11px;
    border-radius: 999px;
}

.zmh-gcount svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* gallery — no-photos placeholder */
.zmh-nophoto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 34px 20px;
    min-height: 200px;
    border: 1px dashed var(--line);
    border-radius: 18px;
    background: var(--paper);
    color: var(--gray);
    text-align: center;
}

.zmh-nophoto svg {
    width: 28px;
    height: 28px;
    stroke: var(--gray);
    stroke-width: 1.7;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .7;
}

.zmh-nophoto .lab {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
}

.zmh-nophoto .sub {
    font-size: 12.5px;
    color: var(--gray);
}

/* owl thumbnail strip */
.zmh .zmh-gallery-col .owl-dots {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.zmh .zmh-gallery-col .owl-dots::-webkit-scrollbar {
    height: 5px;
}

.zmh .zmh-gallery-col .owl-dots::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 99px;
}

.zmh .zmh-gallery-col .owl-dot {
    flex: 0 0 auto;
    padding: 0;
    background: none;
    border: none;
}

.zmh .zmh-gallery-col .owl-dot img.img-thumbnail {
    width: 78px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    opacity: .55;
    transition: opacity .15s, border-color .15s;
}

.zmh .zmh-gallery-col .owl-dot:hover img.img-thumbnail {
    opacity: .85;
}

.zmh .zmh-gallery-col .owl-dot.active img.img-thumbnail {
    opacity: 1;
    border-color: var(--o);
}

/* owl prev/next */
.zmh .zmh-gallery-col .owl-nav button.owl-prev,
.zmh .zmh-gallery-col .owl-nav button.owl-next {
    position: absolute;
    z-index: 4;
    top: calc(var(--gallery-h) / 2);
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 0;
    background-color: rgba(255, 255, 255, .94);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    border: 1px solid var(--line);
    transition: background-color .15s;
}

.zmh .zmh-gallery-col .owl-nav button.owl-prev:hover,
.zmh .zmh-gallery-col .owl-nav button.owl-next:hover {
    background-color: #fff;
}

.zmh .zmh-gallery-col .owl-nav button.owl-prev {
    left: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b2440' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 6-6 6 6 6'/%3E%3C/svg%3E");
}

.zmh .zmh-gallery-col .owl-nav button.owl-next {
    right: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b2440' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 6 6 6-6 6'/%3E%3C/svg%3E");
}

/* ---------- interest strip ---------- */
.zmh-interest {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 520px) {
    .zmh-interest {
        grid-template-columns:repeat(2, 1fr);
    }
}

.zmh-int {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 12px;
    text-align: left;
}

.zmh-int .sv {
    display: flex;
    align-items: baseline;
    gap: 7px;
    line-height: 1;
}

.zmh-int .num {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 18px;
    color: var(--b);
}

.zmh-int .num.warm {
    color: var(--o);
}

.zmh-int svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-int .lbl {
    display: block;
    margin-top: 6px;
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray);
}

.zmh-spin {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid var(--line);
    border-top-color: var(--b);
    border-radius: 999px;
    animation: zmh-rot .7s linear infinite;
}

@keyframes zmh-rot {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- highlights "En un coup d'œil" ---------- */
.zmh-highlights h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: var(--ink);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zmh-highlights h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.zmh-hl-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 991px) {
    .zmh-hl-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 520px) {
    .zmh-hl-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 9px;
    }
}

.zmh-hl {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 14px;
    transition: border-color .15s;
}

.zmh-hl:hover {
    border-color: var(--bl);
}

.zmh-hl .hic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(129, 196, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.zmh-hl .hic svg {
    width: 19px;
    height: 19px;
    stroke: var(--b);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-hl .hlbl {
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray);
}

.zmh-hl .hval {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    margin-top: 3px;
    line-height: 1.25;
    word-break: break-word;
}

/* expandable extra details */
.zmh-more {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
}

.zmh-more summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    transition: color .15s;
    min-height: 50px;
}

.zmh-more summary::-webkit-details-marker {
    display: none;
}

.zmh-more summary:hover {
    color: var(--b);
}

.zmh-more summary .chev {
    width: 18px;
    height: 18px;
    stroke: var(--gray);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s;
}

.zmh-more[open] summary .chev {
    transform: rotate(90deg);
}

.zmh-more-inner {
    padding: 0 18px 6px;
}

.zmh-drow {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
}

.zmh-drow .dk {
    color: var(--gray);
    font-weight: 500;
}

.zmh-drow .dv {
    color: var(--ink);
    font-weight: 600;
    text-align: right;
    min-width: 0;
    word-break: break-word;
}

/* ---------- right: sticky deal card ---------- */
.zmh-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.zmh-card .liser {
    height: 4px;
    background: linear-gradient(135deg, var(--o), var(--o-l));
}

.zmh-card-body {
    padding: 22px;
}

.zmh-priceblock {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.zmh-price {
    font-family: var(--mono);
    font-weight: 700;
    color: var(--ink);
    font-size: clamp(28px, 3.2vw, 34px);
    line-height: 1.05;
    letter-spacing: -.01em;
}

.zmh-pricepill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    background: var(--good-bg);
    color: var(--good);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
}

.zmh-pricepill svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2.3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-pricenote {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin: 10px 0 0;
}

.zmh-finance {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    background: rgba(36, 85, 234, .06);
    border: 1px solid rgba(36, 85, 234, .16);
    border-radius: 12px;
    padding: 13px 15px;
    transition: background-color .15s, border-color .15s;
    min-height: 60px;
}

.zmh-finance:hover {
    background: rgba(36, 85, 234, .1);
    border-color: rgba(36, 85, 234, .3);
}

.zmh-finance .fic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex: none;
    background: rgba(36, 85, 234, .12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.zmh-finance .fic svg {
    width: 20px;
    height: 20px;
    stroke: var(--b);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-finance .ftx {
    flex: 1;
    line-height: 1.25;
}

.zmh-finance .fbig {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
}

.zmh-finance .flink {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--b);
}

.zmh-finance .farr {
    width: 16px;
    height: 16px;
    stroke: var(--b);
    stroke-width: 2.3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-loc {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: color .15s;
}

.zmh-loc:hover {
    color: var(--b);
}

.zmh-loc svg {
    width: 17px;
    height: 17px;
    stroke: var(--o);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-rule {
    height: 1px;
    background: var(--line);
    margin: 20px 0;
}

/* CTAs */
.zmh-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    padding: 14px 18px;
    min-height: 48px;
    transition: background-color .15s, border-color .15s, color .15s, filter .15s;
}

.zmh-cta svg {
    width: 18px;
    height: 18px;
}

.zmh-cta.primary {
    background: linear-gradient(135deg, var(--o), var(--o-l));
    color: #fff;
}

.zmh-cta.primary:hover {
    filter: brightness(1.06);
}

.zmh-cta.primary svg {
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-cta-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.zmh-cta.wa {
    background: var(--wa);
    color: #fff;
    font-size: 14.5px;
}

.zmh-cta.wa:hover {
    background: var(--wa-d);
}

.zmh-cta.wa svg {
    fill: #fff;
}

.zmh-cta.ghost {
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--ink);
    font-size: 14.5px;
}

.zmh-cta.ghost:hover {
    border-color: var(--b);
    color: var(--b);
}

.zmh-cta.ghost svg {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-textrow {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.zmh-textbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    padding: 10px 8px;
    border-radius: 9px;
    min-height: 40px;
    transition: color .15s;
}

.zmh-textbtn:hover {
    color: var(--b);
}

.zmh-textbtn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-textbtn .wa-i {
    fill: currentColor;
    stroke: none;
}

/* seller mini */
.zmh-seller {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 4px;
}

.zmh-avatar {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex: none;
    background: linear-gradient(135deg, var(--bl), var(--b));
    display: flex;
    align-items: center;
    justify-content: center;
}

.zmh-avatar svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-seller .si {
    flex: 1;
    min-width: 0;
}

.zmh-seller .slabel {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gray);
}

.zmh-phonechip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    transition: color .15s;
}

.zmh-phonechip:hover {
    color: var(--o);
}

.zmh-phonechip svg {
    width: 14px;
    height: 14px;
    stroke: var(--o);
    stroke-width: 2.1;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-phone2 {
    display: block;
    margin-top: 4px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 14px;
    color: var(--gray);
    transition: color .15s;
}

.zmh-phone2:hover {
    color: var(--o);
}

.zmh-mailbtn {
    flex: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 11px;
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s, color .15s;
}

.zmh-mailbtn:hover {
    border-color: var(--b);
    color: var(--b);
}

.zmh-mailbtn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Options + Fiche tech block (below grid, full-width) ---------- */
.zmh-techopt {
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 20px;
    margin-top: 26px;
}

@media (max-width: 991px) {
    .zmh-techopt {
        grid-template-columns:1fr;
        gap: 18px;
    }
}

.zmh-sx {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
}

.zmh-sx-head {
    margin-bottom: 18px;
}

.zmh-sx-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--o);
}

.zmh-sx-eyebrow .ic {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.zmh-sx-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: var(--ink);
    margin: 6px 0 4px;
}

.zmh-sx-sub {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.zmh-sx-rule {
    height: 2px;
    width: 44px;
    margin-top: 12px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--o), var(--o-l));
}

/* Options — collapsible groups + flex-wrap chips */
.zmh-opt-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zmh-opt-group {
    border: 1px solid var(--line);
    border-radius: 13px;
    overflow: hidden;
    background: #fff;
    transition: border-color .15s;
}

.zmh-opt-group:hover {
    border-color: var(--bl);
}

.zmh-opt-group summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    min-height: 50px;
    transition: background-color .15s;
}

.zmh-opt-group summary::-webkit-details-marker {
    display: none;
}

.zmh-opt-group summary:hover {
    background: var(--paper);
}

.zmh-opt-group summary .gname {
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    flex: 1;
    min-width: 0;
}

.zmh-opt-group summary .gcount {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 11px;
    color: var(--b);
    background: rgba(36, 85, 234, .08);
    padding: 3px 9px;
    border-radius: 999px;
}

.zmh-opt-group summary .chev {
    width: 18px;
    height: 18px;
    stroke: var(--gray);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s;
}

.zmh-opt-group[open] summary .chev {
    transform: rotate(90deg);
}

.zmh-opt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 2px 15px 15px;
}

.zmh-opt-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.35;
    max-width: 100%;
}

.zmh-opt-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--good);
    flex: 0 0 auto;
}

/* Fiche tech */
.zmh-spec-list {
    display: flex;
    flex-direction: column;
}

.zmh-spec-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 2px;
    border-bottom: 1px solid var(--line);
}

.zmh-spec-row:last-child {
    border-bottom: none;
}

.zmh-spec-row .sname {
    font-size: 13.5px;
    color: var(--gray);
}

.zmh-spec-row .sval {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-align: right;
}

.zmh-spec-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--o);
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 12px 16px;
    min-height: 44px;
    transition: border-color .15s, background .15s;
}

.zmh-spec-cta:hover {
    border-color: var(--o);
    background: rgba(255, 103, 31, .05);
}

.zmh-spec-cta svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =============================================================
   FAB CONTACT BUTTON + EXPANDING MENU
   All selectors use double class (.zmh-fab-wrap .zmh-fab-*)
   to beat the `.zmh button { background: none }` reset (0,1,1).
   Colors are hardcoded — no CSS variable inheritance needed.
   ============================================================= */

.zmh-fab-wrap {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 9990;
}

/* ── TRIGGER BUTTON ── */
.zmh-fab-wrap .zmh-fab-trigger {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #FF671F, #ff8e53);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    box-shadow: 0 6px 28px rgba(255, 103, 31, .55),
    0 2px 8px rgba(0, 0, 0, .12);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .3s ease,
    background .25s ease;
    animation: zmh-fab-glow 2.4s ease-in-out infinite;
}

@keyframes zmh-fab-glow {
    0%, 100% { box-shadow: 0 6px 28px rgba(255, 103, 31, .55), 0 2px 8px rgba(0, 0, 0, .12); }
    50%      { box-shadow: 0 8px 40px rgba(255, 103, 31, .75), 0 2px 12px rgba(0, 0, 0, .18); }
}

.zmh-fab-wrap .zmh-fab-trigger:hover {
    transform: scale(1.08);
}

.zmh-fab-wrap .zmh-fab-trigger:active {
    transform: scale(.92);
}

/* open state — navy background, no pulse */
.zmh-fab-wrap.open .zmh-fab-trigger {
    background: #0D2C6E;
    box-shadow: 0 6px 28px rgba(13, 44, 110, .50), 0 2px 8px rgba(0, 0, 0, .15);
    animation: none;
    transform: scale(1);
}

/* icon swap: phone ↔ × */
.zmh-fab-wrap .zmh-fab-trigger svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.zmh-fab-wrap .zmh-fab-icon-open,
.zmh-fab-wrap .zmh-fab-icon-close {
    position: absolute;
    transition: opacity .25s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.zmh-fab-wrap .zmh-fab-icon-open {
    opacity: 1; transform: rotate(0deg) scale(1);
}
.zmh-fab-wrap .zmh-fab-icon-close {
    opacity: 0; transform: rotate(-90deg) scale(.4);
}
.zmh-fab-wrap.open .zmh-fab-icon-open {
    opacity: 0; transform: rotate(90deg) scale(.4);
}
.zmh-fab-wrap.open .zmh-fab-icon-close {
    opacity: 1; transform: rotate(0deg) scale(1);
}

/* ── BACKDROP ── */
.zmh-fab-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9988;
    background: rgba(13, 44, 110, .45);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.zmh-fab-wrap.open .zmh-fab-backdrop {
    display: block;
    animation: zmh-bd-in .22s ease forwards;
}

@keyframes zmh-bd-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── MENU ITEMS STACK ── */
.zmh-fab-items {
    position: absolute;
    right: 0;
    bottom: 74px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
    z-index: 9991;
}

.zmh-fab-wrap.open .zmh-fab-items {
    pointer-events: auto;
}

/* each row */
.zmh-fab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(24px) scale(.6);
    transition: opacity .22s ease,
    transform .38s cubic-bezier(.34, 1.56, .64, 1);
}

/* staggered spring entrance */
.zmh-fab-wrap.open .zmh-fab-item:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: .02s; }
.zmh-fab-wrap.open .zmh-fab-item:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: .06s; }
.zmh-fab-wrap.open .zmh-fab-item:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: .10s; }
.zmh-fab-wrap.open .zmh-fab-item:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); transition-delay: .14s; }
.zmh-fab-wrap.open .zmh-fab-item:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); transition-delay: .18s; }

/* staggered exit — faster, top items leave first */
.zmh-fab-item:nth-child(5) { transition-delay: .00s; }
.zmh-fab-item:nth-child(4) { transition-delay: .03s; }
.zmh-fab-item:nth-child(3) { transition-delay: .06s; }
.zmh-fab-item:nth-child(2) { transition-delay: .09s; }
.zmh-fab-item:nth-child(1) { transition-delay: .12s; }

/* ── label chip ── */
.zmh-fab-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13.5px;
    color: #0D2C6E;
    background: #fff;
    padding: 9px 16px;
    border-radius: 12px;
    line-height: 1.15;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(13, 44, 110, .13),
    0 1px 3px rgba(0, 0, 0, .06);
}

/* ── round icon button (shared) ── */
.zmh-fab-wrap .zmh-fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-family: inherit;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    transition: transform .18s cubic-bezier(.34, 1.56, .64, 1),
    box-shadow .18s ease;
}

.zmh-fab-wrap .zmh-fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(0, 0, 0, .2);
}

.zmh-fab-wrap .zmh-fab-btn:active {
    transform: scale(.9);
}

.zmh-fab-wrap .zmh-fab-btn svg {
    width: 22px;
    height: 22px;
    display: block;
    flex: none;
}

/* ── colour variants (all use .zmh-fab-wrap prefix for specificity) ── */

/* Call — orange */
.zmh-fab-wrap .zmh-fab-call {
    background: linear-gradient(135deg, #FF671F, #ff8e53);
}
.zmh-fab-wrap .zmh-fab-call svg {
    stroke: #fff; stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}

/* WhatsApp — green */
.zmh-fab-wrap .zmh-fab-wa {
    background: #22c35e;
}
.zmh-fab-wrap .zmh-fab-wa svg {
    fill: #fff; stroke: none;
}

/* Message — brand blue */
.zmh-fab-wrap .zmh-fab-msg {
    background: #2455EA;
}
.zmh-fab-wrap .zmh-fab-msg svg {
    stroke: #fff; stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}

/* Ask a friend — navy */
.zmh-fab-wrap .zmh-fab-friend {
    background: #0D2C6E;
}
.zmh-fab-wrap .zmh-fab-friend svg {
    stroke: #fff; stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}

/* Report — ghost light */
.zmh-fab-wrap .zmh-fab-report {
    background: #fff;
    border: 1.5px solid #e4ebf7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}
.zmh-fab-wrap .zmh-fab-report svg {
    stroke: #6b7785; stroke-width: 2; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
}

/* ── mobile tweaks ── */
@media (max-width: 767px) {
    .zmh {
        padding-bottom: 24px;
    }

    .zmh-container {
        padding: 12px 14px 18px;
    }

    .zmh-head {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .zmh-grid {
        gap: 14px;
    }

    .zmh-card-body {
        padding: 16px 14px;
    }

    .zmh-sx {
        padding: 18px 14px;
    }

    .zmh-techopt {
        margin-top: 16px;
    }

    .zmh-quick li {
        padding: 8px 10px;
        font-size: 12.5px;
    }

    .zmh-meta {
        font-size: 11px;
        gap: 10px 14px;
    }

    .zmh .zmh-gallery-col .owl-nav {
        display: none;
    }

    .zmh .zmh-gallery-col .owl-dot img.img-thumbnail {
        width: 60px;
        height: 46px;
    }

    .zmh-opt-chip {
        font-size: 12.5px;
        padding: 7px 11px;
    }

    .zmh-hl {
        padding: 12px 11px;
    }

    .zmh-hl .hic {
        width: 30px;
        height: 30px;
        margin-bottom: 8px;
    }

    .zmh-hl .hval {
        font-size: 13.5px;
    }

    .zmh-int {
        padding: 11px 10px;
    }

    .zmh-int .num {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .zmh-fab-wrap .zmh-fab-trigger {
        animation: none !important;
    }
    .zmh-fab-item,
    .zmh-fab-wrap .zmh-fab-icon-open,
    .zmh-fab-wrap .zmh-fab-icon-close,
    .zmh-fab-backdrop {
        transition: none !important;
        animation: none !important;
    }
}


@media (max-width: 520px) {
    .zmh-container {
        padding: 10px 12px 16px;
    }

    .zmh-title {
        font-size: clamp(24px, 7vw, 44px);
    }

    .zmh-sub {
        font-size: 13.5px;
    }

    .zmh-card-body {
        padding: 14px 12px;
    }

    /* Price stays readable on tiny screens */
    .zmh-price {
        font-size: clamp(26px, 7vw, 34px);
    }

    /* Finance teaser compact */
    .zmh-finance {
        padding: 11px 12px;
        gap: 10px;
    }

    .zmh-finance .fbig {
        font-size: 13.5px;
    }

    /* Drow rows: allow value to wrap instead of overflow */
    .zmh-drow {
        flex-wrap: wrap;
        gap: 4px;
    }

    .zmh-drow .dv {
        text-align: left;
    }

    /* Seller section compact */
    .zmh-seller {
        gap: 10px;
    }

    .zmh-avatar {
        width: 40px;
        height: 40px;
    }

    .zmh-phonechip {
        font-size: 14px;
    }

    /* Options + Fiche tech tighter padding */
    .zmh-sx {
        padding: 16px 12px;
    }

    .zmh-sx-title {
        font-size: 18px;
    }

    /* Opt chips slightly tighter */
    .zmh-opt-chips {
        gap: 6px;
        padding: 2px 12px 13px;
    }

    .zmh-opt-group summary {
        padding: 12px 13px;
    }
}

@media (max-width: 380px) {
    .zmh-cta-row, .zmh-textrow {
        grid-template-columns: 1fr;
    }

    .zmh-quick {
        gap: 6px;
    }

    .zmh-quick li {
        padding: 7px 9px;
        font-size: 12px;
    }

    .zmh-container {
        padding: 8px 10px 14px;
    }

    .zmh-hl-grid {
        gap: 7px;
    }

    .zmh-interest {
        gap: 7px;
    }
}

/* =========================================================
   A11Y focus
   ========================================================= */
.zmh a:focus-visible, .zmh button:focus-visible {
    outline: 3px solid rgba(36, 85, 234, .45);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .zmh *, .zmh *::before, .zmh *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}

.zmp-band {
    --o: #ff671f;
    --o-l: #ff8e53;
    --b: #2455ea;
    --b-l: #81c4ff;
    --navy: #0d2c6e;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;
    --good: #138a5e;
    --good-bg: #e7f4ee;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    display: block;
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 18px;
    overflow-x: hidden;
}

.zmp-band *, .zmp-band *::before, .zmp-band *::after {
    box-sizing: border-box;
}

.zmp-ic {
    display: inline-block;
    vertical-align: middle;
    flex: 0 0 auto;
}

.zmp-grid {
    display: grid;
    grid-template-columns:1fr 1.18fr 1fr;
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .zmp-grid {
        grid-template-columns:1fr;
    }
}

.zmp-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.zmp-card.feature {
    border-color: #dfe7f6;
}

.zmp-card.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--o), var(--o-l));
}

.zmp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Space Mono', ui-monospace, Menlo, monospace;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--o);
    margin-bottom: 9px;
}

.zmp-eyebrow .zmp-ic {
    color: var(--o);
}

.zmp-h {
    font-family: 'Sora', ui-sans-serif, system-ui, sans-serif;
    font-weight: 800;
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--navy);
    margin: 0 0 8px;
}

.zmp-p {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--gray);
    margin: 0;
}

.zmp-spacer {
    flex: 1 1 auto;
    min-height: 14px;
}

/* mobile app card */
.zmp-stores {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 16px;
}

.zmp-store {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 15px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    min-height: 54px;
    transition: filter .15s;
}

.zmp-store:hover {
    filter: brightness(1.12);
}

.zmp-store .zmp-ic {
    color: #fff;
}

.zmp-store .st {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.zmp-store .st small {
    font-size: 10px;
    opacity: .82;
    letter-spacing: .02em;
}

.zmp-store .st b {
    font-family: 'Sora', ui-sans-serif, sans-serif;
    font-weight: 700;
    font-size: 14.5px;
}

.zmp-phones {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.zmp-phones i {
    flex: 1;
    height: 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--b-l), var(--b));
    opacity: .5;
}

.zmp-phones i:nth-child(2) {
    background: linear-gradient(90deg, var(--o-l), var(--o));
    opacity: .6;
}

.zmp-phones i:nth-child(3) {
    opacity: .3;
}

/* budget gauge card */
.zmp-gauge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
}

.zmp-gauge {
    position: relative;
    width: 240px;
    max-width: 100%;
    height: 138px;
}

.zmp-gauge svg {
    display: block;
    width: 100%;
    height: auto;
}

.zmp-needle {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 4px;
    height: 86px;
    margin-left: -2px;
    border-radius: 4px 4px 0 0;
    transform-origin: bottom center;
}

.zmp-needle.car {
    width: 3px;
    height: 80px;
    margin-left: -1.5px;
    background: var(--navy);
    opacity: .45;
}

.zmp-needle.budget {
    background: var(--o);
}

.zmp-hub {
    position: absolute;
    left: 50%;
    bottom: 11px;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--o);
}

.zmp-gscale {
    display: flex;
    justify-content: space-between;
    width: 240px;
    max-width: 100%;
    margin-top: 2px;
    font-family: 'Space Mono', ui-monospace, Menlo, monospace;
    font-size: 9.5px;
    letter-spacing: .04em;
    color: var(--gray);
}

.zmp-gprice {
    text-align: center;
    margin-top: 10px;
}

.zmp-gprice b {
    font-family: 'Sora', ui-sans-serif, sans-serif;
    font-weight: 800;
    font-size: 25px;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.01em;
}

.zmp-gprice small {
    display: block;
    margin-top: 4px;
    font-family: 'Space Mono', ui-monospace, Menlo, monospace;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray);
}

.zmp-budget-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
}

.zmp-budget-row .lab {
    font-size: 12.5px;
    color: var(--gray);
}

.zmp-budget-row .val {
    font-family: 'Space Mono', ui-monospace, Menlo, monospace;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
}

.zmp-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    margin: 12px 0 6px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--b-l), var(--line));
    outline: none;
}

.zmp-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--o);
    border: 4px solid #fff;
    cursor: pointer;
}

.zmp-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--o);
    border: 4px solid #fff;
    cursor: pointer;
}

.zmp-fit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    align-self: center;
    margin: 10px auto 0;
    font-family: 'Space Mono', ui-monospace, Menlo, monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 6px 12px;
    border-radius: 999px;
}

.zmp-fit[data-ok="1"] {
    color: var(--good);
    background: var(--good-bg);
}

.zmp-fit[data-ok="0"] {
    color: var(--o);
    background: rgba(255, 103, 31, .1);
}

.zmp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    margin-top: 16px;
    font-family: 'Sora', ui-sans-serif, sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    padding: 14px 18px;
    min-height: 48px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: filter .15s, background .15s, color .15s, border-color .15s;
}

.zmp-btn.primary {
    background: linear-gradient(135deg, var(--o), var(--o-l));
    color: #fff;
}

.zmp-btn.primary:hover {
    filter: brightness(1.06);
}

.zmp-btn .zmp-ic {
    color: currentColor;
}

/* financing card */
.zmp-fin-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(36, 85, 234, .1);
    color: var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.zmp-fin-ic .zmp-ic {
    color: var(--b);
}

.zmp-fin-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zmp-fin-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--ink);
}

.zmp-fin-list li .zmp-ic {
    color: var(--good);
}

@media (max-width: 520px) {
    .zmp-band {
        padding: 10px 14px;
    }

    .zmp-card {
        padding: 20px 18px;
    }
}

.zmp-band a:focus-visible, .zmp-band button:focus-visible {
    outline: 3px solid rgba(36, 85, 234, .45);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .zmp-band * {
        transition: none !important;
    }
}

/* ===== SCOPED TOKENS + RESET ===== */
.zmd {
    --o: #ff671f;
    --o-l: #ff8e53;
    --b: #2455ea;
    --b-l: #81c4ff;
    --navy: #0d2c6e;
    --ink: #1b2440;
    --gray: #6b7785;
    --paper: #f6f9fd;
    --line: #e4ebf7;
    --good: #138a5e;
    --good-bg: #e7f4ee;
    --r: 16px;
    /*
    --display: 'Sora', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --body: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'Space Mono', ui-monospace, Menlo, Consolas, monospace;*/
    --sans: 'Inter', sans-serif;
    --display: 'Inter', sans-serif;
    --mono: 'Inter', sans-serif;
    font-family: var(--display);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    display: block;
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 14px 40px;
    overflow-x: hidden;
}

.zmd *, .zmd *::before, .zmd *::after {
    box-sizing: border-box;
}

.zmd img {
    max-width: 100%;
}

.zmd a {
    text-decoration: none;
    color: inherit;
}

.zmd-ic {
    display: inline-block;
    vertical-align: middle;
    flex: 0 0 auto;
}

/* ---- shared card shell + header (mobile-first) ---- */
.zmd-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 16px;
    margin-top: 14px;
}

.zmd-head {
    margin: 0 0 14px;
}

.zmd-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--o);
}

.zmd-eyebrow .zmd-ic {
    color: var(--o);
}

.zmd-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--navy);
    margin: 6px 0 4px;
}

.zmd-sub {
    font-size: 12.5px;
    color: var(--gray);
    margin: 0;
}

.zmd-rule {
    height: 2px;
    width: 38px;
    margin-top: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--o), var(--o-l));
}

/* ---- desktop refinements (mobile-first progressive enhancement) ---- */
@media (min-width: 768px) {
    .zmd {
        padding: 8px 22px 50px;
    }

    .zmd-card {
        padding: 22px;
        margin-top: 18px;
    }

    .zmd-head {
        margin-bottom: 18px;
    }

    .zmd-title {
        font-size: 21px;
    }

    .zmd-sub {
        font-size: 13.5px;
    }

    .zmd-rule {
        width: 44px;
        margin-top: 12px;
    }
}

/* ===== TWO-COLUMN UPPER : SIMILAR GROUPS | REFINE ===== */
.zmd-cols {
    display: grid;
    grid-template-columns:1fr;
    gap: 14px;
}

.zmd-cols .zmd-card {
    margin-top: 0;
}

@media (min-width: 992px) {
    .zmd-cols {
        grid-template-columns:1fr 1fr;
        gap: 18px;
    }
}

/* ===== SIMILAR GROUPS (samePrice / samePower / sameMileage) ===== */
.zmd-simg-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin: 4px 0 12px;
}

.zmd-simg-title:not(:first-of-type) {
    margin-top: 22px;
}

.zmd-simg-title .zmd-ic {
    color: var(--b);
}

.zmd-simg {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 13px;
    margin-bottom: 9px;
    transition: border-color .15s;
}

.zmd-simg:hover {
    border-color: var(--b-l);
}

.zmd-simg .thumb {
    flex: 0 0 auto;
    width: 86px;
    height: 66px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--paper);
}

@media (min-width: 768px) {
    .zmd-simg .thumb {
        width: 96px;
        height: 72px;
    }
}

.zmd-simg .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zmd-simg .meta {
    flex: 1 1 auto;
    min-width: 0;
}

.zmd-simg .meta .pr {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.15;
}

.zmd-simg .meta .pr:hover {
    color: var(--o);
}

.zmd-simg .meta p {
    margin: 2px 0 0;
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zmd-simg .meta a:hover p {
    color: var(--b);
}

/* ===== REFINE LINKS + DISCOVER MORE ===== */
.zmd-refine {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.zmd-refine a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    transition: border-color .15s, background .15s, color .15s;
}

.zmd-refine a:hover {
    border-color: var(--b-l);
    background: #edf4ff;
    color: var(--b);
}

.zmd-refine a .zmd-ic {
    color: var(--b);
}

.zmd-refine a .arr {
    margin-left: auto;
    color: var(--gray);
}

.zmd-linklist-h {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin: 18px 0 8px;
}

.zmd-linklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zmd-linklist li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 6px;
    min-height: 42px;
    border-radius: 9px;
    font-size: 13.5px;
    color: var(--ink);
    transition: color .15s, background .15s;
}

.zmd-linklist li a:hover {
    color: var(--b);
    background: var(--paper);
}

.zmd-linklist li a .zmd-ic {
    color: var(--o);
}

/* ===== PREV / NEXT PAGER ===== */
.zmd-pager {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--paper);
}

@media (min-width: 520px) {
    .zmd-pager {
        grid-template-columns:1fr auto 1fr;
        gap: 14px;
        padding: 14px 18px;
    }
}

.zmd-pager .pg-prev {
    justify-self: start;
}

.zmd-pager .pg-next {
    justify-self: end;
}

.zmd-pager .pg-mid {
    display: none;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 520px) {
    .zmd-pager .pg-mid {
        display: block;
    }
}

.zmd-pager a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--navy);
    transition: color .15s;
    padding: 4px 4px;
}

.zmd-pager a:hover {
    color: var(--o);
}

/* ===== SIMILAR CARS CAROUSEL ===== */
.zmd-shop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 14px;
}

.zmd-shop-head h2 {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(20px, 4.5vw, 24px);
    letter-spacing: -.01em;
    color: var(--navy);
    margin: 0;
}

.zmd-more-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--o);
    min-height: 36px;
}

.zmd-more-link:hover {
    color: var(--o-l);
}

.zmd-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #cdd8ee transparent;
    -webkit-overflow-scrolling: touch;
}

.zmd-rail::-webkit-scrollbar {
    height: 6px;
}

.zmd-rail::-webkit-scrollbar-thumb {
    background: #cdd8ee;
    border-radius: 99px;
}

@media (min-width: 768px) {
    .zmd-rail {
        gap: 18px;
    }
}

.zmd-rc {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .15s;
}

@media (min-width: 520px) {
    .zmd-rc {
        flex-basis: 290px;
    }
}

@media (min-width: 992px) {
    .zmd-rc {
        flex-basis: 320px;
    }
}

.zmd-rc:hover {
    border-color: var(--b-l);
}

.zmd-rc .ph {
    position: relative;
}

.zmd-rc .ph img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background: var(--paper);
}

@media (min-width: 520px) {
    .zmd-rc .ph img {
        height: 200px;
    }
}

.zmd-rc .tag {
    position: absolute;
    top: 11px;
    left: 11px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 13.5px;
    color: #fff;
    background: linear-gradient(135deg, var(--o), var(--o-l));
    padding: 5px 11px;
    border-radius: 999px;
}

.zmd-rc .cnt {
    position: absolute;
    bottom: 11px;
    left: 11px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: rgba(13, 44, 110, .7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 5px 9px;
    border-radius: 999px;
}

.zmd-rc .cnt .zmd-ic {
    color: #fff;
}

.zmd-rc .acts {
    position: absolute;
    top: 11px;
    right: 11px;
    display: flex;
    gap: 7px;
}

.zmd-rc .acts a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: color .15s;
}

.zmd-rc .acts a:hover {
    color: var(--o);
}

.zmd-rc .bd {
    padding: 14px 15px 15px;
}

.zmd-rc .pr {
    font-family: var(--display);
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
    margin: 0;
    line-height: 1.1;
}

.zmd-rc .nm {
    font-family: var(--display);
    font-weight: 700;
    font-size: 14px;
    margin: 6px 0 2px;
    line-height: 1.25;
}

.zmd-rc .nm a {
    color: var(--ink);
}

.zmd-rc .nm a:hover {
    color: var(--b);
}

.zmd-rc .tr {
    font-size: 12.5px;
    color: var(--gray);
    margin: 0 0 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zmd-rc .ft {
    list-style: none;
    margin: 0;
    padding-top: 11px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.zmd-rc .ft li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--gray);
}

.zmd-rc .ft li .zmd-ic {
    color: var(--b);
}

.zmd-empty {
    width: 100%;
    text-align: center;
    color: var(--gray);
    padding: 30px 0;
    font-size: 14px;
}

/* ===== SEO LINK CLUSTERS ===== */
.zmd-seo {
    margin-top: 26px;
}

.zmd-seo h4 {
    font-family: var(--display);
    font-weight: 800;
    font-size: 15px;
    color: var(--navy);
    margin: 0 0 12px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
    .zmd-seo {
        margin-top: 30px;
    }

    .zmd-seo h4 {
        font-size: 16px;
        margin-bottom: 14px;
    }
}

.zmd-seo-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: 0 24px;
}

@media (min-width: 520px) {
    .zmd-seo-grid {
        grid-template-columns:1fr 1fr;
    }
}

@media (min-width: 768px) {
    .zmd-seo-grid {
        grid-template-columns:repeat(3, 1fr);
    }
}

.zmd-seo-grid.two {
    grid-template-columns:1fr;
}

@media (min-width: 520px) {
    .zmd-seo-grid.two {
        grid-template-columns:1fr 1fr;
    }
}

.zmd-seo ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zmd-seo li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 4px;
    min-height: 42px;
    font-size: 13.5px;
    color: var(--ink);
    transition: color .15s;
}

.zmd-seo li a:hover {
    color: var(--b);
}

.zmd-seo li a .zmd-ic {
    color: var(--o);
    flex: 0 0 auto;
}

/* ===== DISCLAIMER ===== */
.zmd-disc {
    margin-top: 26px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
}

@media (min-width: 768px) {
    .zmd-disc {
        margin-top: 30px;
        padding: 18px 20px;
    }
}

.zmd-disc p {
    margin: 0 0 10px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
}

.zmd-disc p:last-child {
    margin-bottom: 0;
}

.zmd-disc strong {
    color: var(--ink);
}

.zmd-disc a {
    color: var(--b);
}

.zmd-disc a:hover {
    text-decoration: underline;
}

/* ===== A11Y ===== */
.zmd a:focus-visible, .zmd button:focus-visible {
    outline: 2px solid var(--b);
    outline-offset: 2px;
    border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
    .zmd * {
        transition: none !important;
        animation: none !important;
    }
}