/* ============================================================
   ITPrijzen.nl — public.css
   Styles voor: homepage, product-, vendor- en zoekpagina's
   ============================================================ */

/* ── Gedeelde layout ─────────────────────────────────────── */
body.public-page {
    /* padding-top: 90px; *//* nav + subbar */
    background: var(--white);
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--steel);
    padding: 12px 0;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--steel); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--light); font-size: 14px; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ── Section labels ──────────────────────────────────────── */
.section-eyebrow {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--steel);
    margin-bottom: 8px;
}
.section-h {
    font-size: clamp(1.5em, 3vw, 2.2em);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-lead {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE
   ═══════════════════════════════════════════════════════════ */

/* Hero */
.hp-hero {
    background: var(--navy);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}
.hp-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.hp-hero .wrap { position: relative; z-index: 2; }

.hp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}
.hp-kicker-dot { width: 5px; height: 5px; background: #4ADE80; border-radius: 50%; animation: blink 2s ease-in-out infinite; }

.hp-hero h1 {
    font-size: clamp(2em, 5vw, 3.4em);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.hp-hero h1 em { font-style: normal; color: #93C5FD; }
.hp-hero .lead {
    font-size: 1.05em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.65;
}

/* Homepage zoekbalk */
.hp-search {
    display: flex;
    max-width: 660px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hp-search input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-family: 'DM Sans', inherit;
    color: var(--navy);
    outline: none;
    background: #fff;
    border-radius: 0;
}
.hp-search input::placeholder { color: var(--steel-l); }
.hp-search button {
    background: var(--navy-h);
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hp-search button:hover { background: #0C2A5C; }

.hp-hint {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hp-hint span { display: flex; align-items: center; gap: 5px; }

/* Vendor strip in hero */
.hp-vendor-strip {
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hp-vendor-lbl {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.2);
    margin-bottom: 20px;
}
.hp-vendor-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}
.hp-vendor-logo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
    transition: color 0.2s;
    text-decoration: none;
}
.hp-vendor-logo:hover { color: rgba(255,255,255,0.55); }

/* Vendor cards sectie */
.hp-vendors { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--light); }
.vendor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--light);
    border: 1px solid var(--light);
    margin-top: 40px;
}
.vendor-card {
    background: var(--white);
    padding: 32px;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}
.vendor-card:hover { background: #F8FAFF; }
.vendor-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}
.vendor-card:hover .vendor-card-accent { transform: scaleX(1); }
.vendor-card-brand {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.vendor-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vendor-card h3 {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}
.vendor-card p {
    font-size: 12.5px;
    color: var(--steel);
    line-height: 1.65;
    margin-bottom: 16px;
}
.vendor-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.vendor-cat-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border: 1px solid var(--light);
    color: var(--steel);
    background: var(--bg);
    letter-spacing: 0.3px;
}
.vendor-card-count {
    position: absolute;
    top: 20px; right: 20px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--steel-l);
}

/* Homepage: How it works */
.hp-how { padding: 72px 0; background: var(--white); border-top: 1px solid var(--light); }
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--light);
    margin-top: 40px;
}
.how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--light);
    position: relative;
    overflow: hidden;
}
.how-step:last-child { border-right: none; }
.how-num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--steel-l);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.how-num::after { content:''; flex:1; height:1px; background: var(--light); }
.how-step h3 { font-size: 1em; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--steel); line-height: 1.7; }
.how-bar {
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--navy);
    transition: height 0.3s;
}
.how-step:hover .how-bar { height: 100%; }

/* Trust strip */
.hp-trust { padding: 40px 0; background: var(--bg); border-top: 1px solid var(--light); }
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--steel);
    font-weight: 500;
}
.trust-icon {
    width: 32px; height: 32px;
    background: var(--navy-05);
    border: 1px solid var(--light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; stroke: var(--navy); fill: none; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTPAGINA
   ═══════════════════════════════════════════════════════════ */

.product-page { background: var(--white); }

.product-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 32px 0 80px;
    align-items: start;
}

/* Product header */
.product-vendor-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border: 1px solid var(--light);
    color: var(--steel);
    background: var(--bg);
    margin-bottom: 16px;
}
.product-vendor-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.product-h1 {
    font-size: clamp(1.5em, 3vw, 2.1em);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.product-sku {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.product-sku-code {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: #1D4ED8;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 3px 10px;
}

.product-description {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.75;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light);
}

/* Specs tabel */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 13px;
}
.specs-table th {
    text-align: left;
    padding: 10px 16px;
    background: var(--bg);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--steel);
    border-bottom: 1px solid var(--light);
    white-space: nowrap;
    width: 160px;
}
.specs-table td {
    padding: 10px 16px;
    color: var(--navy);
    border-bottom: 1px solid var(--lighter);
    font-weight: 500;
}
.specs-table tr:last-child td, .specs-table tr:last-child th { border-bottom: none; }
.specs-table tr:hover td, .specs-table tr:hover th { background: #F8FAFF; }

/* FAQ sectie */
.faq-section { margin-bottom: 40px; }
.faq-section h2 {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
}
.faq-item { border-bottom: 1px solid var(--light); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 0;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.15s;
}
.faq-question:hover { color: var(--navy-h); }
.faq-icon { font-size: 18px; line-height: 1; color: var(--steel-l); flex-shrink: 0; transition: transform 0.2s; }
.faq-answer {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.75;
    padding-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}
.faq-answer.open { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Gerelateerde producten */
.related-section { margin-bottom: 48px; }
.related-section h2 {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--navy);
    display: inline-block;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1px;
    background: var(--light);
    border: 1px solid var(--light);
}
.related-card {
    background: var(--white);
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: background 0.15s;
}
.related-card:hover { background: #F8FAFF; }
.related-sku {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: #1D4ED8;
    margin-bottom: 6px;
}
.related-name {
    font-size: 12px;
    color: var(--steel);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── RFQ sidebar ─────────────────────────────────────────── */
.rfq-sidebar {
    position: sticky;
    top: 108px; /* nav + subbar + wat ruimte */
}

.rfq-card {
    background: var(--white);
    border: 1px solid var(--light);
    border-top: 3px solid var(--navy);
}
.rfq-card-hdr {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--light);
}
.rfq-card-ttl {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.rfq-card-sub {
    font-size: 11px;
    color: var(--steel);
    line-height: 1.5;
}
.rfq-card-sku {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: #1D4ED8;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 3px 9px;
}

.rfq-form { padding: 16px 20px; }
.rfq-group { margin-bottom: 12px; }
.rfq-group label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--steel);
    margin-bottom: 5px;
}
.rfq-group label .req { color: var(--red); }
.rfq-input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--light);
    color: var(--navy);
    padding: 8px 10px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.rfq-input:focus {
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--navy-08);
}
.rfq-input::placeholder { color: var(--steel-l); font-size: 12px; }
.rfq-submit {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin-top: 4px;
    transition: opacity 0.15s;
}
.rfq-submit:hover { opacity: 0.88; }
.rfq-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.rfq-trust {
    padding: 14px 20px;
    background: var(--bg);
    border-top: 1px solid var(--light);
}
.rfq-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--steel);
    margin-bottom: 7px;
    font-weight: 500;
}
.rfq-trust-item:last-child { margin-bottom: 0; }
.rfq-trust-check {
    width: 14px; height: 14px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.rfq-trust-check svg { width: 8px; height: 8px; stroke: #fff; }

.rfq-success {
    display: none;
    padding: 24px 20px;
    text-align: center;
}
.rfq-success svg { margin: 0 auto 12px; }
.rfq-success h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.rfq-success p  { font-size: 12px; color: var(--steel); line-height: 1.6; }

/* Niet-gevonden staat */
.product-not-found {
    text-align: center;
    padding: 80px 32px;
}
.product-not-found h1 { font-size: 1.8em; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.product-not-found p  { color: var(--steel); font-size: 14px; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════
   VENDOR PAGINA
   ═══════════════════════════════════════════════════════════ */

.vendor-hero {
    background: var(--navy);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.vendor-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.vendor-hero .wrap { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.vendor-hero h1 { font-size: clamp(1.6em,3vw,2.4em); font-weight: 700; color: #fff; letter-spacing: -0.5px; margin-bottom: 8px; }
.vendor-hero p  { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 480px; line-height: 1.65; }
.vendor-hero-count { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.35); flex-shrink: 0; }

.vendor-cats { padding: 40px 0; background: var(--bg); border-bottom: 1px solid var(--light); }
.cat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--light);
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s;
}
.cat-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.cat-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.vendor-products-section { padding: 48px 0 72px; }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--light);
    border: 1px solid var(--light);
    margin-top: 28px;
}
.product-grid-card {
    background: var(--white);
    padding: 20px;
    text-decoration: none;
    display: block;
    transition: background 0.15s;
    position: relative;
    overflow: hidden;
}
.product-grid-card:hover { background: #F8FAFF; }
.product-grid-card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--navy);
    transition: height 0.25s;
}
.product-grid-card:hover .product-grid-card-accent { height: 100%; }
.pgc-sku  { font-family: var(--mono); font-size: 11px; font-weight: 600; color: #1D4ED8; margin-bottom: 6px; }
.pgc-name { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.pgc-desc { font-size: 12px; color: var(--steel); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pgc-rfq  { display: inline-flex; margin-top: 12px; font-size: 11px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--light); padding-bottom: 1px; transition: border-color 0.15s; }
.product-grid-card:hover .pgc-rfq { border-color: var(--navy); }

/* ═══════════════════════════════════════════════════════════
   ZOEKRESULTATEN PAGINA
   ═══════════════════════════════════════════════════════════ */

.search-page-hdr {
    background: var(--navy);
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
}
.search-page-hdr-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.search-page-hdr .wrap { position: relative; z-index: 2; }

.search-bar-lg {
    display: flex;
    max-width: 660px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 20px;
}
.search-bar-lg input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    font-family: inherit;
    color: var(--navy);
    outline: none;
}
.search-bar-lg input::placeholder { color: var(--steel-l); }
.search-bar-lg button {
    background: var(--navy-h);
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}
.search-bar-lg button:hover { background: #0C2A5C; }

.search-results-body { padding: 40px 0 72px; }

.search-meta {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--light);
}
.search-meta strong { color: var(--navy); }

.search-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.sf-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    background: var(--white);
    border: 1px solid var(--light);
    color: var(--steel);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}
.sf-btn:hover  { border-color: var(--navy); color: var(--navy); }
.sf-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.search-result-list { display: flex; flex-direction: column; gap: 1px; background: var(--light); border: 1px solid var(--light); }
.search-result-row {
    background: var(--white);
    padding: 16px 20px;
    display: grid;
    grid-template-columns: 100px 180px 1fr auto;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    transition: background 0.1s;
}
.search-result-row:hover { background: #F8FAFF; }
.sr-vendor  { /* vendor badge */ }
.sr-sku     { font-family: var(--mono); font-size: 12px; font-weight: 600; color: #1D4ED8; }
.sr-name    { font-size: 13px; color: var(--navy); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-desc    { font-size: 12px; color: var(--steel); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sr-arrow   { color: var(--light); font-size: 18px; transition: color 0.15s; flex-shrink: 0; }
.search-result-row:hover .sr-arrow { color: var(--navy); }

.search-no-results { padding: 60px 20px; text-align: center; }
.search-no-results h3 { font-size: 1.2em; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.search-no-results p  { font-size: 13px; color: var(--steel); margin-bottom: 24px; }

.truncation-bar {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 3px solid #D97706;
    padding: 10px 16px;
    font-size: 12px;
    color: #92400E;
    margin-bottom: 16px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
    .product-layout { grid-template-columns: 1fr; }
    .rfq-sidebar { position: static; }
    .rfq-card { order: -1; }
}
@media (max-width: 768px) {
    .how-grid { grid-template-columns: 1fr; }
    .search-result-row { grid-template-columns: 1fr auto; }
    .sr-vendor, .sr-sku { display: none; }
    .hp-search { flex-direction: column; }
    .hp-search input { padding: 14px 16px; }
}
@media (max-width: 576px) {
    .wrap { padding: 0 20px; }
    .hp-hero { padding: 60px 0 52px; }
    .vendor-cards, .how-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
}
