/* Mindvision Header + Editorial Navigator live integration v1.0 */

:root {
    --mv-header-brand-height: 84px;
    --mv-header-nav-height: 52px;
    --mv-header-total-height: 136px;
    --mv-header-brand-height-compact: 64px;
    --mv-header-nav-height-compact: 42px;
    --mv-header-total-height-compact: 106px;
    --mv-ink: #3f484d;
    --mv-muted: #707a7e;
    --mv-teal: #12bbb7;
    --mv-warm: rgb(246, 238, 231);
    --mv-line: rgba(63, 72, 77, .13);
    --mv-radius-lg: 24px;
    --mv-radius-md: 17px;
    --mv-shell: min(1380px, calc(100% - 64px));
}

.mv-site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    color: #fff;
    background: rgba(20, 28, 31, .38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color .25s ease, box-shadow .25s ease;
}

.mv-site-header.is-scrolled,
.mv-site-header.has-open-menu,
.mv-site-header.mobile-open {
    color: var(--mv-ink);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(24, 34, 38, .08);
}

.mv-header-inner,
.mv-editorial-nav-shell {
    width: var(--mv-shell);
    margin-inline: auto;
}

.mv-header-inner {
    min-height: var(--mv-header-brand-height);
    transition: min-height .25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.mv-brand {
    position: relative;
    display: inline-flex;
    width: 230px;
}

.mv-brand-logo {
    display: block;
    width: 100%;
    height: auto;
    transition: opacity .25s ease, visibility .25s ease;
}

.mv-brand-logo--dark {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    visibility: hidden;
}

.mv-site-header.is-scrolled .mv-brand-logo--light,
.mv-site-header.has-open-menu .mv-brand-logo--light,
.mv-site-header.mobile-open .mv-brand-logo--light {
    opacity: 0;
    visibility: hidden;
}

.mv-site-header.is-scrolled .mv-brand-logo--dark,
.mv-site-header.has-open-menu .mv-brand-logo--dark,
.mv-site-header.mobile-open .mv-brand-logo--dark {
    opacity: 1;
    visibility: visible;
}

.mv-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-icon-link {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: currentColor;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color .2s ease;
}

.mv-icon-link:hover {
    background: rgba(255,255,255,.12);
}

.mv-site-header.is-scrolled .mv-icon-link:hover,
.mv-site-header.has-open-menu .mv-icon-link:hover,
.mv-site-header.mobile-open .mv-icon-link:hover {
    background: rgba(63,72,77,.06);
}

.mv-icon-link svg,
.mv-editorial-weather svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mv-icon-link svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.6;
}

.mv-header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 19px;
    margin-left: 4px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    color: currentColor;
    text-decoration: none;
    font-weight: 500;
}

.mv-site-header.is-scrolled .mv-header-cta,
.mv-site-header.has-open-menu .mv-header-cta,
.mv-site-header.mobile-open .mv-header-cta {
    border-color: rgba(63,72,77,.24);
}

.mv-editorial-nav-row {
    border-top: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
    transition: max-height .25s ease, opacity .2s ease, border-color .2s ease;
}

.mv-site-header.is-scrolled .mv-editorial-nav-row,
.mv-site-header.has-open-menu .mv-editorial-nav-row {
    border-color: rgba(63,72,77,.09);
}


.mv-editorial-nav {
    min-height: var(--mv-header-nav-height);
    transition: min-height .25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3.2vw, 48px);
}

.mv-editorial-nav a,
.mv-editorial-nav__button {
    position: relative;
    height: var(--mv-header-nav-height);
    transition: height .25s ease, color .2s ease;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: none;
    color: currentColor;
    text-decoration: none;
    font: inherit "Poppins", Arial, sans-serif;
    font-size: .91rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.mv-editorial-nav .is-campaign {
    color: var(--mv-teal);
    font-weight: 600;
}

.mv-editorial-nav a::after,
.mv-editorial-nav__button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--mv-teal);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .16s ease;
}

.mv-editorial-nav a:hover::after,
.mv-editorial-nav__button:hover::after,
.mv-editorial-nav__item.is-active .mv-editorial-nav__button::after {
    transform: scaleX(1);
}


.mv-site-header.is-compact .mv-header-inner {
    min-height: var(--mv-header-brand-height-compact);
}

.mv-site-header.is-compact .mv-brand {
    width: 204px;
}

.mv-site-header.is-compact .mv-editorial-nav {
    min-height: var(--mv-header-nav-height-compact);
}

.mv-site-header.is-compact .mv-editorial-nav a,
.mv-site-header.is-compact .mv-editorial-nav__button {
    height: var(--mv-header-nav-height-compact);
}

.mv-editorial-nav__button {
    gap: 6px;
}

.mv-editorial-nav__chevron {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.mv-editorial-nav__item.is-active .mv-editorial-nav__chevron {
    transform: rotate(180deg);
}

.mv-editorial-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mv-header-total-height);
    padding: 6px 0 34px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    pointer-events: none;
    transition: opacity .24s cubic-bezier(.22,.61,.36,1), visibility .24s ease, transform .24s cubic-bezier(.22,.61,.36,1);
}

.mv-site-header.is-compact .mv-editorial-panel {
    top: var(--mv-header-total-height-compact);
}

.mv-editorial-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mv-editorial-panel__surface {
    max-height: calc(100vh - 155px);
    overflow-y: auto;
    padding: 32px;
    border: 1px solid rgba(63,72,77,.08);
    border-radius: var(--mv-radius-lg);
    color: var(--mv-ink);
    background: rgb(246, 248, 248);
    box-shadow: 0 24px 60px rgba(45,52,56,.12);
}

.mv-editorial-panel__intro {
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(280px,.85fr);
    gap: 50px;
    align-items: end;
    padding-bottom: 25px;
}

.mv-editorial-panel__eyebrow {
    margin: 0 0 8px;
    color: #087d7a;
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-family: "Oswald", Arial, sans-serif;}

.mv-editorial-panel h2,
.mv-editorial-panel h3 {
    margin: 0;
    font-weight: 400;
    font-family: "Oswald", Arial, sans-serif;
    text-transform: uppercase;}

.mv-editorial-panel__intro h2 {
    max-width: 780px;
    font-size: clamp(2rem,3vw,3.25rem);
    line-height: 1.04;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-panel__intro > p {
    max-width: 520px;
    margin: 0;
    color: var(--mv-muted);
    font-size: .98rem;
    line-height: 1.7;
}

.mv-editorial-panel__lead-grid {
    display: grid;
    grid-template-columns: minmax(0,1.45fr) minmax(330px,.55fr);
    gap: 22px;
}

.mv-editorial-story {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--mv-radius-md);
    color: #fff;
    text-decoration: none;
    background: #263438;
}

.mv-editorial-story img,
.mv-editorial-story__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mv-editorial-story img {
    object-fit: cover;
    transition: transform .45s ease;
}

.mv-editorial-story__shade {
    background:
        linear-gradient(90deg, rgba(23,31,34,.77), rgba(23,31,34,.12) 72%),
        linear-gradient(0deg, rgba(23,31,34,.55), transparent 58%);
}

.mv-editorial-story__content {
    position: absolute;
    inset: auto auto 30px 30px;
    z-index: 1;
    width: min(480px, calc(100% - 60px));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv-editorial-story__content small {
    margin-bottom: 8px;
    font-size: .7rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mv-editorial-story__content strong {
    font-size: clamp(1.7rem,2.4vw,2.6rem);
    line-height: 1.06;
}

.mv-editorial-story__content > span {
    max-width: 420px;
    margin-top: 10px;
    color: rgba(255,255,255,.86);
    font-size: .9rem;
    line-height: 1.55;
}

.mv-editorial-story__content b,
.mv-editorial-guidance a,
.mv-editorial-section-heading > a,
.mv-editorial-help > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-story__content b {
    margin-top: 17px;
    font-size: .86rem;
}

.mv-editorial-story:hover img {
    transform: scale(1.025);
}

.mv-editorial-guidance {
    padding: 28px;
    border-radius: var(--mv-radius-md);
    background: rgba(255,255,255,.62);
}

.mv-editorial-guidance h3 {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: 1.55rem;
    line-height: 1.14;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-guidance > a {
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--mv-line);
    color: var(--mv-ink);
    text-decoration: none;
    font-size: .9rem;
}

.mv-editorial-weather {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 13px;
    background: rgba(18,187,183,.09);
    color: #466064;
}

.mv-editorial-weather svg {
    width: 28px;
    height: 28px;
    color: #087d7a;
    stroke-width: 1.45;
}

.mv-editorial-weather span {
    font-size: .79rem;
    line-height: 1.45;
}

.mv-editorial-weather strong {
    display: block;
    color: #087d7a;
}

.mv-editorial-shop,
.mv-editorial-products,
.mv-editorial-help {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid var(--mv-line);
}

.mv-editorial-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 18px;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-section-heading h3 {
    font-size: 1.5rem;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-section-heading > a {
    color: var(--mv-ink);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 400;
    font-family: "Oswald", Arial, sans-serif;
    text-transform: uppercase;}

.mv-editorial-shop__links {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 0 28px;
}

.mv-editorial-shop__links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(63,72,77,.08);
    color: var(--mv-ink);
    text-decoration: none;
    font-size: .9rem;
}

.mv-editorial-products__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.mv-editorial-product {
    position: relative;
    min-height: 226px;
    padding: 14px 14px 18px;
    overflow: hidden;
    border-radius: 16px;
    color: var(--mv-ink);
    background: rgba(255,255,255,.67);
    text-decoration: none;
    transition: transform .22s ease, background-color .22s ease;
}

.mv-editorial-product__image {
    height: 135px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.mv-editorial-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.mv-editorial-product small {
    display: block;
    color: var(--mv-muted);
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mv-editorial-product strong {
    display: block;
    max-width: calc(100% - 30px);
    margin-top: 3px;
    font-size: .89rem;
}

.mv-editorial-product__arrow {
    position: absolute;
    right: 15px;
    bottom: 17px;
}

.mv-editorial-product:hover {
    transform: translateY(-3px);
    background: #fff;
}

.mv-editorial-product:hover img {
    transform: scale(1.035);
}

.mv-editorial-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.mv-editorial-help h3 {
    max-width: 720px;
    font-size: clamp(1.35rem,2vw,1.9rem);
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}

.mv-editorial-help > a {
    flex: 0 0 auto;
    min-height: 45px;
    padding: 0 19px;
    border: 1px solid rgba(63,72,77,.22);
    border-radius: 999px;
    color: var(--mv-ink);
    text-decoration: none;
    font-size: .86rem;
    font-weight: 600;
}

.mv-editorial-panel .mv-icon--arrow {
    width: 1rem;
    height: 1rem;
    fill: none !important;
    stroke: currentColor !important;
}

.mv-editorial-panel a:hover .mv-icon--arrow {
    transform: translateX(3px);
}

.mv-mobile-toggle,
.mv-mobile-menu {
    display: none;
}

@media (max-width: 1100px) {
    :root {
        --mv-shell: min(100% - 34px, 960px);
    }

    .mv-editorial-nav {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mv-editorial-nav::-webkit-scrollbar {
        display: none;
    }

    .mv-editorial-panel__intro,
    .mv-editorial-panel__lead-grid {
        grid-template-columns: 1fr;
    }

    .mv-editorial-shop__links,
    .mv-editorial-products__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 767px) {
    :root {
        --mv-header-brand-height: 74px;
        --mv-shell: calc(100% - 28px);
    }

    .mv-header-inner {
        min-height: var(--mv-header-brand-height);
    }

    .mv-brand {
        width: 175px;
    }

    .mv-header-cta,
    .mv-icon-link:nth-of-type(2),
    .mv-icon-link:nth-of-type(3),
    .mv-editorial-nav-row,
    .mv-editorial-panel {
        display: none;
    }

    .mv-mobile-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .mv-mobile-toggle span {
        display: block;
        width: 22px;
        height: 1px;
        background: currentColor;
    }

    .mv-mobile-menu {
        position: fixed;
        inset: var(--mv-header-brand-height) 0 auto;
        max-height: calc(100vh - var(--mv-header-brand-height));
        overflow-y: auto;
        padding: 14px 24px 28px;
        color: var(--mv-ink);
        background: #fff;
        box-shadow: 0 18px 36px rgba(28,39,43,.12);
    }

    .mv-site-header.mobile-open .mv-mobile-menu {
        display: grid;
        gap: 2px;
    }

    .mv-mobile-menu a {
        padding: 13px 0;
        border-bottom: 1px solid var(--mv-line);
        color: var(--mv-ink);
        text-decoration: none;
    }
}


/* RC1.5: keep the homepage hero beneath the glass header. */
body#index .mv-site-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

@media (max-width: 767px) {
    .mv-site-header.is-compact .mv-header-inner {
        min-height: var(--mv-header-brand-height);
    }

    .mv-site-header.is-compact .mv-brand {
        width: 175px;
    }
}

/* =========================================================
   INNER-PAGE HEADER: SOLID GREY -> WHITE ON SCROLL
   Homepage keeps its existing transparent glass treatment.
   ========================================================= */

body:not(#index) .mv-site-header {
    color: #fff;
    background: #6a6a6a;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Initial inner-page state: light logo and white controls. */
body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-brand-logo--light {
    opacity: 1;
    visibility: visible;
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-brand-logo--dark {
    opacity: 0;
    visibility: hidden;
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-editorial-nav-row {
    border-top-color: rgba(255, 255, 255, .14);
    border-bottom-color: rgba(255, 255, 255, .14);
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-editorial-nav a,
body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-editorial-nav__button,
body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-icon-link,
body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-header-cta {
    color: #fff;
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-editorial-nav .is-campaign {
    color: #fff;
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-header-cta {
    border-color: rgba(255, 255, 255, .55);
}

body:not(#index) .mv-site-header:not(.is-scrolled):not(.has-open-menu):not(.mobile-open) .mv-icon-link:hover {
    background: rgba(255, 255, 255, .12);
}

/* Scrolled/open state: use the existing white header treatment. */
body:not(#index) .mv-site-header.is-scrolled,
body:not(#index) .mv-site-header.has-open-menu,
body:not(#index) .mv-site-header.mobile-open {
    color: var(--mv-ink);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 10px 30px rgba(24, 34, 38, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Keep inner-page header compact from the start. */
body:not(#index) .mv-header-inner {
    min-height: var(--mv-header-brand-height-compact);
}

body:not(#index) .mv-brand {
    width: 204px;
}

body:not(#index) .mv-editorial-nav {
    min-height: var(--mv-header-nav-height-compact);
}

body:not(#index) .mv-editorial-nav a,
body:not(#index) .mv-editorial-nav__button {
    height: var(--mv-header-nav-height-compact);
}

/* Protect header typography from page-specific styles. */
.mv-site-header,
.mv-editorial-nav,
.mv-mobile-menu {
    font-family: "Poppins", Arial, sans-serif;
}

@media (max-width: 767px) {
    body:not(#index) .mv-header-inner {
        min-height: var(--mv-header-brand-height);
    }

    body:not(#index) .mv-brand {
        width: 175px;
    }
}

/* =========================================================
   BUYER NAVIGATOR v1.0
   ========================================================= */
.mv-editorial-nav__item { position: static; display: flex; }
.mv-editorial-nav__button { text-decoration: none; }
.mv-editorial-panel { z-index: 1060; }

.mv-buyer-panel__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    gap: 42px;
    align-items: end;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--mv-line);
}
.mv-buyer-panel__intro h2 { margin: 0; max-width: 760px; font-size: clamp(1.9rem, 2.8vw, 3rem); line-height: 1.08;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}
.mv-buyer-panel__intro p:not(.mv-editorial-panel__eyebrow) { max-width: 720px; margin: 12px 0 0; color: var(--mv-muted); line-height: 1.65; }
.mv-buyer-panel__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.mv-buyer-panel__actions a,
.mv-buyer-panel__help button {
    display: inline-flex; align-items: center; justify-content: space-between; gap: 14px;
    min-height: 44px; padding: 0 17px; border: 1px solid rgba(63,72,77,.18); border-radius: 999px;
    color: var(--mv-ink); background: #fff; text-decoration: none; font: inherit "Poppins", Arial, sans-serif; font-size: .84rem; font-weight: 600; cursor: pointer;
}
.mv-buyer-panel__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(260px,.72fr); gap: 34px; padding-top: 26px; }
.mv-buyer-panel__grid h3 { margin: 0 0 13px; font-size: 1rem;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}
.mv-buyer-panel__links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 24px; }
.mv-buyer-panel__links a { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid rgba(63,72,77,.08); color: var(--mv-ink); text-decoration: none; }
.mv-buyer-panel__links a:hover span { color: #087d7a; }
.mv-buyer-panel__links span { font-size: .88rem; font-weight: 500; }
.mv-buyer-panel__links small { margin-top: 2px; color: var(--mv-muted); font-size: .68rem; }
.mv-buyer-panel__links--featured span { font-weight: 600; }
.mv-buyer-panel__help { padding: 23px; border-radius: 16px; background: rgba(18,187,183,.08); }
.mv-buyer-panel__help h3 { margin: 0; font-size: 1.35rem; line-height: 1.2;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}
.mv-buyer-panel__help p:not(.mv-editorial-panel__eyebrow) { margin: 11px 0 18px; color: var(--mv-muted); font-size: .84rem; line-height: 1.55; }
.mv-buyer-panel__help button { width: 100%; border-color: rgba(18,187,183,.28); background: rgba(255,255,255,.78); }

.mv-buyer-search { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: start center; padding: 7vh 22px 30px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, visibility .2s ease; }
.mv-buyer-search.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mv-buyer-search__backdrop { position: absolute; inset: 0; background: rgba(24,31,34,.56); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.mv-buyer-search__dialog { position: relative; width: min(920px,100%); max-height: 86vh; overflow-y: auto; padding: clamp(27px,4vw,48px); border-radius: 24px; color: var(--mv-ink); background: #f8fafa; box-shadow: 0 35px 90px rgba(17,24,27,.28); }
.mv-buyer-search__close { position: absolute; top: 18px; right: 20px; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--mv-ink); background: rgba(63,72,77,.07); font-size: 1.65rem; line-height: 1; cursor: pointer; }
.mv-buyer-search h2 { max-width: 740px; margin: 0; font-size: clamp(2rem,4vw,3.7rem); line-height: 1.03;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;}
.mv-buyer-search__intro { max-width: 720px; margin: 13px 0 24px; color: var(--mv-muted); line-height: 1.65; }
.mv-buyer-search__form { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 13px; padding: 8px 8px 8px 17px; border: 1px solid rgba(63,72,77,.14); border-radius: 15px; background: #fff; box-shadow: 0 12px 30px rgba(38,51,56,.07); }
.mv-buyer-search__form svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.mv-buyer-search__form input { min-width: 0; height: 48px; border: 0; outline: 0; color: var(--mv-ink); background: transparent; font: inherit "Poppins", Arial, sans-serif; font-size: 1rem; }
.mv-buyer-search__form button { min-height: 44px; padding: 0 18px; border: 0; border-radius: 11px; color: #fff; background: var(--mv-ink); font: inherit "Poppins", Arial, sans-serif; font-size: .83rem; font-weight: 600; cursor: pointer; }
.mv-buyer-search__status { min-height: 22px; padding: 10px 2px 0; color: var(--mv-muted); font-size: .78rem; }
.mv-buyer-search__results { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px 34px; margin-top: 12px; }
.mv-buyer-search-group h3 { margin: 0 0 8px; color: #087d7a; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    font-family: "Oswald", Arial, sans-serif;
    font-weight: 400;}
.mv-buyer-search-result { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(63,72,77,.09); color: var(--mv-ink); text-decoration: none; }
.mv-buyer-search-result span { min-width: 0; }
.mv-buyer-search-result strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .9rem; }
.mv-buyer-search-result small { display: block; margin-top: 3px; color: var(--mv-muted); font-size: .7rem; }
.mv-buyer-search-result b { flex: 0 0 auto; font-size: 1rem; }
.mv-buyer-search-result:hover strong { color: #087d7a; }
.mv-buyer-search__empty { color: var(--mv-muted); }
html.mv-search-open { overflow: hidden; }
.mv-mobile-search { width: 100%; margin: 2px 0 9px; padding: 13px 14px; border: 1px solid var(--mv-line); border-radius: 12px; color: var(--mv-ink); background: #f7f9f9; text-align: left; font: inherit "Poppins", Arial, sans-serif; font-weight: 500; }

@media (max-width: 1100px) {
    .mv-buyer-panel__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .mv-buyer-panel__help { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .mv-buyer-search { padding: 12px; place-items: start center; }
    .mv-buyer-search__dialog { max-height: calc(100vh - 24px); padding: 30px 20px 24px; border-radius: 18px; }
    .mv-buyer-search__form { grid-template-columns: auto minmax(0,1fr); }
    .mv-buyer-search__form button { grid-column: 1 / -1; width: 100%; }
    .mv-buyer-search__results { grid-template-columns: 1fr; }
}

/* Buyer Navigator v1.2: retain a calm, single-line desktop navigation. */
@media (min-width: 1180px) {
    .mv-editorial-nav {
        flex-wrap: nowrap;
        gap: clamp(.2rem, .55vw, .55rem);
        white-space: nowrap;
    }

    .mv-editorial-nav > a,
    .mv-editorial-nav__button {
        padding-inline: clamp(.35rem, .55vw, .65rem);
        font-size: clamp(.78rem, .76vw, .9rem);
    }
}
