﻿:root {
    --color-primary: #002371;
    --color-primary-dark: #00194F;
    --color-navy: #0B2742;
    --color-text: #25364A;
    --color-text-muted: #5B6B7D;
    --color-background: #F3F6FA;
    --color-surface: #FFFFFF;
    --color-surface-soft: #EEF2FF;
    --color-border: #CBD5E1;
    --color-border-strong: #AAB7C7;
    --color-focus: #2563EB;
    --color-deal: #F97316;
    --color-deal-dark: #EA580C;
    --ink: var(--color-navy);
    --muted: var(--color-text-muted);
    --line: var(--color-border);
    --paper: var(--color-background);
    --white: var(--color-surface);
    --blue: var(--color-primary);
    --blue-hover: var(--color-primary-dark);
    --blue-dark: var(--color-navy);
    --blue-soft: var(--color-surface-soft);
    --blue-line: var(--color-border-strong);
    --accent: #00d4ff;
    --radius: 6px;
    --radius-lg: 10px;
    --green: var(--blue);
    --green-dark: var(--blue-dark);
    --cyan: var(--accent);
    --violet: var(--blue);
    --orange: var(--blue);
    --yellow: #002371;
    --shadow: 0 12px 28px rgba(11, 39, 66, .08);
    --lift: 0 18px 36px rgba(11, 39, 66, .13);
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--color-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body:has(.sticky-product-cta) {
    padding-bottom: 88px;
}

h1,
h2,
h3,
strong {
    letter-spacing: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 620;
}

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

img {
    display: block;
    max-width: 100%;
}

.ui-icon {
    align-items: center;
    background: var(--blue-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue);
    display: inline-flex;
    flex: 0 0 auto;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.ui-icon svg {
    fill: none;
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 16px;
}

button .ui-icon,
.top-search button .ui-icon,
.hero-search button .ui-icon {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .28);
    color: currentColor;
    height: 24px;
    margin: -2px 4px -2px -5px;
    width: 24px;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 10;
}

body.menu-lock {
    overflow: hidden;
}

.header-main,
.feed-menu,
.page-shell,
.detail-layout,
.admin-shell {
    padding-left: clamp(16px, 4vw, 64px);
    padding-right: clamp(16px, 4vw, 64px);
}

.header-main {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 280px minmax(260px, 1fr) auto;
    padding-bottom: 10px;
    padding-top: 10px;
}

.brand {
    align-items: center;
    display: flex;
    gap: 12px;
}

.brand-logo {
    align-items: center;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    padding: 0;
    width: 260px;
}

.brand-logo img {
    height: auto;
    max-height: 50px;
    max-width: 260px;
    object-fit: contain;
    width: auto;
}

.brand strong {
    display: block;
    font-size: 20px;
}

.brand small,
.muted {
    color: var(--muted);
}

.top-search,
.hero-search {
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    border: 2px solid #B8C3D3;
    border-radius: var(--radius-lg);
    display: grid;
    gap: 6px;
    grid-template-columns: 1fr auto;
    padding: 4px;
    position: relative;
}

.top-search:focus-within,
.hero-search:focus-within {
    border-color: #60A5FA;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, .18);
}

.top-search input,
.hero-search input {
    border: 0;
    color: var(--color-text);
    font-size: 15px;
    min-width: 0;
    outline: 0;
    padding: 12px;
}

.top-search input::placeholder,
.hero-search input::placeholder {
    color: #64748B;
}

button,
.top-search button,
.hero-search button,
.price-panel a,
.offer-row a,
.best-price a,
.filters button,
.admin-card button {
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius);
    color: var(--blue-dark);
    cursor: pointer;
    font-weight: 650;
    padding: 11px 16px;
}

.is-inline-loading {
    cursor: progress !important;
    gap: 8px;
    pointer-events: none;
    position: relative;
}

.is-inline-loading::before {
    animation: imageLoaderSpin .75s linear infinite;
    border: 2px solid currentColor;
    border-radius: 999px;
    border-right-color: transparent;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: 14px;
    opacity: .82;
    width: 14px;
}

.price-panel a.is-inline-loading::after,
.section-head > a.is-inline-loading::after {
    display: none;
}

button:hover,
.top-search button:hover,
.hero-search button:hover,
.price-panel a:hover,
.offer-row a:hover,
.best-price a:hover,
.filters button:hover,
.admin-card button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.top-search button,
.hero-search button {
    background: linear-gradient(180deg, #F8FAFC, #E2E8F0);
    border-color: #B8C3D3;
    color: var(--blue-dark);
    font-weight: 650;
}

.top-search button:hover,
.hero-search button:hover {
    background: #2563EB;
    border-color: #2563EB;
    color: var(--white);
}

.best-price a {
    background: var(--color-deal);
    border-color: var(--color-deal);
    color: var(--white);
    font-weight: 650;
}

.best-price a:hover {
    background: var(--color-deal-dark);
    border-color: var(--color-deal-dark);
    color: var(--white);
}

.offer-row a:hover,
.filters button:hover,
.admin-card button:hover,
.saved-item a:hover,
.cookie-notice button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .45);
    outline-offset: 2px;
}

.autocomplete-panel {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--lift);
    display: none;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 70;
}

.autocomplete-panel.is-visible {
    display: grid;
}

.autocomplete-panel a {
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    display: grid;
    gap: 4px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px 14px;
}

.autocomplete-panel a:hover {
    background: var(--blue-soft);
}

.autocomplete-panel strong {
    color: var(--ink);
}

.autocomplete-panel span {
    color: var(--muted);
    font-size: 13px;
    grid-column: 1;
}

.autocomplete-panel em {
    color: var(--blue-dark);
    font-style: normal;
    font-weight: 700;
    grid-row: 1 / span 2;
    white-space: nowrap;
}

.autocomplete-loading {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 14px;
    font-weight: 650;
    gap: 10px;
    padding: 14px;
}

.autocomplete-loading span {
    animation: imageLoaderSpin .75s linear infinite;
    border: 2px solid #D8E1EF;
    border-radius: 999px;
    border-top-color: #002371;
    height: 18px;
    width: 18px;
}

.top-search.is-submitting,
.hero-search.is-submitting,
.filters form.is-filtering {
    cursor: progress;
}

.admin-action {
    background: var(--blue-soft);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius);
    color: var(--blue-dark);
    display: inline-flex;
    font-weight: 650;
    margin-top: 12px;
    padding: 11px 16px;
}

.main-nav {
    display: flex;
    gap: 8px;
}

.main-nav a {
    align-items: center;
    display: inline-flex;
    gap: 7px;
}

.main-nav a .ui-icon {
    background: transparent;
    border: 0;
    color: currentColor;
    height: 18px;
    width: 18px;
}

.main-nav a .ui-icon svg {
    height: 15px;
    width: 15px;
}

.main-nav a,
.sort-links a,
.category-tabs a {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 10px 12px;
}

.main-nav a:hover,
.sort-links a:hover,
.category-tabs a:hover,
.section-head > a:hover {
    background: var(--white);
    border-color: var(--color-border-strong);
    color: var(--blue-dark);
}

.main-nav span {
    background: var(--blue-soft);
    border-radius: 999px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    margin-left: 4px;
    min-width: 20px;
    padding: 2px 6px;
}

.mobile-menu-toggle,
.menu-backdrop,
.mobile-only-link {
    display: none;
}

.mobile-menu-toggle {
    align-items: center;
    background: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 800;
    gap: 9px;
    min-height: 42px;
    padding: 10px 13px;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    background: currentColor;
    border-radius: 999px;
    content: "";
    display: block;
    height: 2px;
    transition: transform .18s ease, opacity .18s ease;
    width: 18px;
}

.mobile-menu-toggle span {
    position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    left: 0;
    position: absolute;
}

.mobile-menu-toggle span::before {
    top: -6px;
}

.mobile-menu-toggle span::after {
    top: 6px;
}

.site-header.menu-open .mobile-menu-toggle span {
    background: transparent;
}

.site-header.menu-open .mobile-menu-toggle span::before {
    transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.feed-menu {
    align-items: center;
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-bottom: 12px;
    padding-top: 12px;
    position: relative;
    z-index: 30;
}

.feed-menu > a,
.feed-menu summary {
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    cursor: pointer;
    display: inline-flex;
    gap: 7px;
    font-size: 14px;
    font-weight: 680;
    min-height: 40px;
    padding: 8px 13px;
    white-space: nowrap;
}

.feed-menu .ui-icon {
    background: transparent;
    border: 0;
    color: currentColor;
    height: 18px;
    width: 18px;
}

.feed-menu .ui-icon svg {
    height: 15px;
    width: 15px;
}

.menu-fill {
    flex: 1 1 24px;
    min-width: 0;
}

.feed-menu > a.menu-soft {
    background: var(--blue-soft);
    border-color: var(--color-border-strong);
    color: var(--blue-dark);
}

.feed-menu > a.menu-feature {
    background: #F8FAFC;
    border-color: var(--color-border);
    color: var(--color-text);
    box-shadow: none;
}

.feed-menu > a.menu-contact {
    background: var(--white);
}

.feed-menu details {
    position: relative;
}

.feed-menu details[open] summary,
.feed-menu > a:hover,
.feed-menu > a.active {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.feed-menu summary {
    list-style: none;
}

.feed-menu summary::-webkit-details-marker {
    display: none;
}

.feed-menu summary::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    display: inline-block;
    height: 6px;
    margin-left: 7px;
    transform: rotate(45deg) translateY(-2px);
    width: 6px;
}

.feed-menu details[open] summary::after {
    transform: rotate(225deg) translateY(-1px);
}

.mega-panel {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--lift);
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    left: 0;
    min-width: 480px;
    padding: 12px;
    position: absolute;
    top: calc(100% + 8px);
}

.mega-panel.compact {
    grid-template-columns: 1fr;
    min-width: 300px;
}

.mega-panel a {
    align-items: center;
    border-radius: var(--radius);
    color: var(--ink);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 9px 10px;
}

.mega-panel a:hover,
.mega-panel a.active {
    background: var(--blue-soft);
    color: var(--blue-dark);
}

.mega-panel em {
    color: var(--muted);
    font-style: normal;
    font-weight: 650;
}

.stats-strip {
    display: none;
}

.deal-strip {
    margin-bottom: 28px;
}

.home-hero {
    background:
        linear-gradient(90deg, rgba(248, 250, 252, .96) 0%, rgba(248, 250, 252, .86) 48%, rgba(248, 250, 252, .36) 100%),
        url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=82") center / cover;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    color: var(--ink);
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}

.home-hero-inner {
    align-items: stretch;
    display: grid;
    gap: clamp(22px, 3vw, 42px);
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    padding: clamp(34px, 5vw, 58px);
    position: relative;
    z-index: 1;
}

.home-hero-copy {
    max-width: 800px;
}

.home-hero h1 {
    color: var(--ink);
    font-size: clamp(34px, 4.3vw, 50px);
    line-height: 1.05;
    margin: 0 0 14px;
    max-width: 760px;
}

.home-hero p {
    color: var(--color-text-muted);
    font-size: 19px;
    line-height: 1.5;
    max-width: 760px;
}

.home-search {
    margin-top: 24px;
    max-width: 780px;
}

.home-quicklinks {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.home-quicklinks span {
    color: var(--muted);
    font-weight: 650;
}

.home-quicklinks a {
    background: var(--blue-soft);
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    color: var(--blue-dark);
    font-weight: 650;
    padding: 7px 10px;
}

.home-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.home-hero-points span {
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    font-size: 13px;
    padding: 7px 10px;
}

.home-choice-card {
    align-self: stretch;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 18px;
}

.home-hero-visual-card {
    display: flex;
    flex-direction: column;
}

.home-hero-mosaic {
    display: grid;
    gap: 10px;
    grid-template-columns: 1.15fr .85fr;
    margin-bottom: 16px;
    min-height: 310px;
    position: relative;
}

.home-hero-mosaic figure {
    background: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(10, 37, 64, .15);
    margin: 0;
    overflow: hidden;
    position: relative;
}

.home-hero-mosaic figure::after {
    background: linear-gradient(180deg, rgba(0, 35, 113, 0) 48%, rgba(0, 35, 113, .18) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-hero-mosaic img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-hero-mosaic .hero-mosaic-main {
    grid-row: span 2;
}

.hero-mosaic-stat {
    background: rgba(0, 35, 113, .92);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    bottom: 14px;
    box-shadow: 0 12px 28px rgba(10, 37, 64, .18);
    color: var(--white);
    display: inline-grid;
    gap: 1px;
    left: 14px;
    padding: 9px 13px;
    position: absolute;
    z-index: 2;
}

.hero-mosaic-stat strong {
    color: var(--white);
    font-size: 17px;
}

.hero-mosaic-stat span {
    color: #DCE7F7;
    font-size: 12px;
}

.home-choice-visual {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin: 0 0 16px;
    overflow: hidden;
    position: relative;
}

.home-choice-visual img {
    aspect-ratio: 16 / 10;
    display: block;
    min-height: 260px;
    object-fit: cover;
    width: 100%;
}

.home-choice-visual::after {
    background: linear-gradient(180deg, rgba(0, 35, 113, 0) 42%, rgba(0, 35, 113, .30) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.home-choice-visual figcaption {
    align-items: center;
    background: rgba(11, 39, 66, .88);
    border-radius: 999px;
    bottom: 12px;
    color: var(--white);
    display: inline-flex;
    gap: 7px;
    left: 12px;
    padding: 7px 10px;
    position: absolute;
    z-index: 1;
}

.home-choice-visual figcaption strong {
    color: var(--white);
    font-size: 15px;
}

.home-choice-visual figcaption span {
    color: #D9E2F1;
    font-size: 12px;
}

.home-visual-copy {
    margin-bottom: 14px;
}

.home-choice-card h2 {
    font-size: 22px;
    margin: 0 0 6px;
}

.home-choice-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 16px;
}

.choice-list {
    display: grid;
    gap: 7px;
    margin-top: auto;
}

.choice-list a {
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: grid;
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 9px 11px;
}

.choice-list a:hover {
    background: var(--blue-soft);
    border-color: var(--color-border-strong);
}

.choice-list span {
    color: var(--ink);
    font-weight: 650;
}

.choice-list small {
    color: var(--muted);
}

.choice-note {
    align-items: center;
    background: var(--blue-soft);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius);
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
}

.choice-note strong {
    color: var(--blue-dark);
}

.choice-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.home-trust-strip {
    background: rgba(255, 255, 255, .78);
    border-top: 1px solid rgba(202, 213, 226, .7);
    color: var(--ink);
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    padding: 12px;
}

.home-trust-strip span {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(202, 213, 226, .72);
    border-radius: 12px;
    display: grid;
    gap: 3px 12px;
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 72px;
    padding: 13px 16px;
    text-align: left;
}

.home-trust-strip strong {
    color: var(--ink);
    display: block;
    font-weight: 650;
    grid-column: 2;
}

.home-trust-strip small {
    color: var(--muted);
    display: block;
    font-size: 12px;
    grid-column: 2;
    margin-top: 2px;
}

.home-trust-strip .ui-icon {
    background: #F4F7FB;
    border: 1px solid #DDE6F1;
    border-radius: 999px;
    color: var(--blue);
    grid-row: 1 / span 2;
    height: 36px;
    padding: 8px;
    width: 36px;
}

.home-focus-strip {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-focus-strip a {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .96)),
        var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 8px;
    min-height: 130px;
    padding: 18px;
}

.home-focus-strip a.focus-feature {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(255, 255, 255, .96)),
        url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=800&q=78") center / cover;
    border-color: var(--color-border-strong);
}

.home-focus-strip a:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .91), rgba(255, 255, 255, .97)),
        url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=800&q=78") center / cover;
}

.home-focus-strip a:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .91), rgba(255, 255, 255, .97)),
        url("https://images.unsplash.com/photo-1517420704952-d9f39e95b43e?auto=format&fit=crop&w=800&q=78") center / cover;
}

.home-focus-strip a:nth-child(4) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .91), rgba(255, 255, 255, .97)),
        url("https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=800&q=78") center / cover;
}

.home-focus-strip a:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow);
}

.home-focus-strip span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.home-focus-strip strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.3;
}

.home-battery-seo {
    align-items: center;
    background:
        radial-gradient(circle at 90% 12%, rgba(0, 35, 113, .10), transparent 32%),
        linear-gradient(135deg, #FFFFFF 0%, #F3F6FF 100%);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    display: grid;
    gap: clamp(22px, 4vw, 46px);
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
}

.home-photo-band {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.15fr .92fr .92fr;
}

.home-photo-band article {
    background: #0B2742;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    min-height: 310px;
    overflow: hidden;
    position: relative;
}

.home-photo-band article:first-child {
    min-height: 360px;
}

.home-photo-band img {
    display: block;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.home-photo-band article::after {
    background: linear-gradient(180deg, rgba(0, 35, 113, .04) 0%, rgba(0, 20, 54, .72) 100%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.home-photo-band div {
    bottom: 0;
    color: var(--white);
    display: grid;
    gap: 8px;
    left: 0;
    padding: 22px;
    position: absolute;
    right: 0;
    z-index: 2;
}

.home-photo-band span {
    color: #DCE7F7;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-photo-band h2 {
    color: var(--white);
    font-size: clamp(22px, 2.8vw, 32px);
    line-height: 1.08;
    margin: 0;
}

.home-photo-band p {
    color: #EAF1FF;
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}

.home-photo-band .image-unavailable::before,
.home-hero-mosaic .image-unavailable::before {
    align-items: center;
    background: #F8FAFC;
    color: var(--muted);
    content: "Afbeelding tijdelijk niet beschikbaar";
    display: flex;
    font-weight: 650;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: absolute;
    text-align: center;
    z-index: 3;
}

.battery-copy h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.08;
    margin: 0 0 14px;
    max-width: 820px;
}

.battery-copy p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 780px;
}

.battery-copy .battery-seo-line {
    color: var(--color-text);
    font-size: 14px;
    margin-top: 12px;
}

.battery-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.battery-keywords a {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 650;
    padding: 8px 11px;
}

.battery-keywords a:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--shadow);
}

.battery-cta {
    align-items: center;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    color: var(--white);
    display: inline-flex;
    font-weight: 750;
    gap: 8px;
    margin-top: 22px;
    padding: 12px 15px;
}

.battery-cta:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
}

.battery-cta .ui-icon {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .26);
    color: currentColor;
    height: 24px;
    width: 24px;
}

.battery-product-spotlight {
    align-self: stretch;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    display: grid;
    margin: 0;
    min-height: 360px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    place-items: center;
}

.battery-product-spotlight img {
    max-height: 330px;
    object-fit: contain;
    width: 100%;
}

.battery-product-spotlight figcaption {
    background: rgba(11, 39, 66, .92);
    border-radius: 999px;
    bottom: 18px;
    color: var(--white);
    display: grid;
    left: 18px;
    padding: 9px 12px;
    position: absolute;
}

.battery-product-spotlight figcaption strong {
    color: var(--white);
    font-size: 13px;
}

.battery-product-spotlight figcaption span {
    color: #D9E2F1;
    font-size: 12px;
}

.battery-product-spotlight.image-unavailable {
    min-height: 260px;
}

.battery-product-spotlight.image-unavailable img {
    display: none;
}

.battery-product-spotlight.image-unavailable::before {
    color: var(--muted);
    content: "Afbeelding tijdelijk niet beschikbaar";
    font-weight: 650;
}

.home-section {
    margin-bottom: 30px;
}

.home-guide-showcase {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 3vw, 28px);
}

.home-guide-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-guide-grid a {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    display: grid;
    min-height: 100%;
    overflow: hidden;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.home-guide-grid img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.home-guide-grid span,
.home-guide-grid strong,
.home-guide-grid p {
    margin-left: 16px;
    margin-right: 16px;
}

.home-guide-grid span {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    margin-top: 16px;
    text-transform: uppercase;
}

.home-guide-grid strong {
    color: var(--ink);
    font-size: 20px;
    line-height: 1.18;
    margin-top: 6px;
}

.home-guide-grid p {
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 18px;
    margin-top: 8px;
}

.home-guide-grid a:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--lift);
    transform: translateY(-1px);
}

.home-explain {
    align-items: start;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.45fr);
    padding: clamp(22px, 4vw, 34px);
}

.home-explain h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 10px;
}

.home-explain p {
    color: var(--muted);
    margin: 0;
}

.home-step-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-step-grid article {
    background: linear-gradient(180deg, #FFFFFF, #F8FAFC);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 16px;
}

.home-step-grid .ui-icon {
    align-items: center;
    background: var(--blue-soft);
    color: var(--blue-dark);
    display: inline-flex;
    margin-bottom: 10px;
}

.home-step-grid h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.inspiration-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inspiration-grid article {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.inspiration-grid img {
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.inspiration-grid div {
    padding: 16px;
}

.inspiration-grid h3 {
    font-size: 17px;
    margin: 0 0 6px;
}

.inspiration-grid p {
    color: var(--muted);
    margin: 0;
}

.home-category-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.home-category-grid a {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px rgba(10, 37, 64, .04);
    display: grid;
    gap: 7px;
    padding: 16px;
}

.home-category-grid .ui-icon {
    margin-bottom: 3px;
}

.home-category-grid a:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--lift);
}

.home-category-grid span {
    color: var(--muted);
}

.home-category-grid small {
    color: var(--muted);
    line-height: 1.45;
}

.compare-intro {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: 18px;
    padding: 18px 20px;
}

.compare-intro .breadcrumbs {
    color: var(--muted);
    margin-bottom: 10px;
}

.compare-intro .breadcrumbs a {
    color: var(--blue-dark);
}

.compare-intro .breadcrumbs strong {
    color: var(--ink);
}

.compare-intro h1 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin: 0 0 8px;
}

.compare-intro p {
    color: var(--muted);
    margin: 0;
}

.section-head {
    align-items: end;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.section-head h1,
.section-head h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0;
}

.section-head p {
    color: var(--muted);
    margin-bottom: 0;
}

.section-head > a {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--blue-dark);
    font-weight: 650;
    padding: 10px 14px;
}

.deal-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-popular-products {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 3vw, 28px);
}

.home-popular-products .section-head {
    align-items: center;
}

.home-popular-products .section-head > a {
    background: var(--blue-soft);
    border-color: var(--color-border-strong);
}

.home-deal-grid {
    gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.home-deal-grid .product-card {
    border-color: var(--color-border);
    box-shadow: 0 8px 22px rgba(11, 39, 66, .055);
    min-height: 0;
}

.home-deal-grid .product-image {
    background: #F7F9FC;
    min-height: 160px;
}

.home-deal-grid .product-image img {
    border-color: #E1E9F2;
    height: 160px;
    padding: 14px;
}

.home-deal-grid .product-copy {
    padding: 13px 14px 0;
}

.home-deal-grid .product-card h2 {
    font-size: 14px;
    line-height: 1.3;
    margin: 6px 0;
    min-height: 38px;
}

.home-deal-grid .product-card p {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    min-height: 40px;
    overflow: hidden;
}

.home-deal-grid .score-line {
    display: flex;
    font-size: 12px;
    gap: 6px;
    margin-top: 7px;
}

.home-deal-grid .product-actions {
    display: none;
}

.home-deal-grid .price-panel {
    margin-top: 12px;
    padding: 12px 14px 14px;
}

.home-deal-grid .price-panel strong {
    font-size: 19px;
    margin: 4px 0;
}

.home-deal-grid .price-panel a {
    background: var(--blue-soft);
    border-color: var(--color-border-strong);
    color: var(--blue-dark);
    margin-top: 10px;
}

.home-deal-grid .price-panel a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.related-products .deal-grid {
    gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.related-products .product-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
}

.related-products .product-image {
    border-bottom: 0;
    border-right: 1px solid var(--color-border);
    grid-row: 1 / 3;
    min-height: 100%;
}

.related-products .product-image img {
    border: 0;
    height: 104px;
    padding: 9px;
}

.related-products .product-copy {
    min-width: 0;
    padding: 11px 11px 3px;
}

.related-products .product-card h2 {
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.3;
    margin: 4px 0;
    min-height: 34px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.related-products .product-card p,
.related-products .product-meta,
.related-products .product-kind,
.related-products .product-brand {
    display: none;
}

.related-products .score-line {
    display: flex;
    font-size: 12px;
    min-height: 18px;
}

.related-products .product-actions {
    display: none;
}

.related-products .price-panel {
    border-top: 0;
    grid-column: 2;
    margin: 0;
    padding: 0 11px 11px;
}

.related-products .price-panel strong {
    font-size: 17px;
    margin: 0;
}

.related-products .price-panel small,
.related-products .price-panel span {
    font-size: 12px;
}

.related-products .price-panel span {
    display: none;
}

.related-products .price-panel a {
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    color: var(--blue-dark);
    display: inline-flex;
    margin-top: 8px;
    padding: 7px 10px;
    text-align: center;
}

.related-products .price-panel a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.hero {
    align-items: stretch;
    background:
        url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=2200&q=80") center/cover,
        #0a2540;
    background-blend-mode: multiply;
    color: var(--white);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
    min-height: 310px;
    padding: clamp(28px, 4vw, 52px) clamp(16px, 4vw, 64px);
}

.compact-hero {
    min-height: 300px;
}

.hero-copy {
    max-width: 880px;
}

.eyebrow {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #c7d2fe;
}

.hero h1 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.04;
    margin: 0 0 12px;
    max-width: 900px;
}

.hero p {
    color: #e7ecf5;
    font-size: 17px;
    line-height: 1.55;
    max-width: 760px;
}

.hero-search {
    margin-top: 18px;
    max-width: 720px;
}

.breadcrumbs {
    align-items: center;
    background: rgba(248, 250, 252, .86);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(10, 37, 64, .05);
    color: var(--muted);
    display: inline-flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 6px;
    margin-bottom: 14px;
    max-width: 100%;
    padding: 6px;
}

.breadcrumbs a {
    align-items: center;
    border-radius: 999px;
    color: #002371;
    display: inline-flex;
    font-weight: 650;
    min-height: 28px;
    padding: 5px 9px;
    transition: background .18s ease, color .18s ease;
}

.breadcrumbs a:hover {
    background: #EAF1FF;
    color: #002371;
}

.breadcrumbs span {
    color: transparent;
    display: inline-flex;
    font-size: 0;
    height: 18px;
    position: relative;
    width: 12px;
}

.breadcrumbs span::before {
    border-right: 1.5px solid #8EA6D8;
    border-top: 1.5px solid #8EA6D8;
    content: "";
    height: 6px;
    left: 2px;
    position: absolute;
    top: 5px;
    transform: rotate(45deg);
    width: 6px;
}

.breadcrumbs strong {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--ink);
    display: inline-flex;
    font-weight: 750;
    min-height: 28px;
    padding: 5px 10px;
}

.hero .breadcrumbs {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: none;
    color: #D9E2F1;
}

.hero .breadcrumbs a {
    color: #FFFFFF;
}

.hero .breadcrumbs strong {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .22);
    color: #FFFFFF;
}

.hero-panel {
    align-self: end;
    background: rgba(255, 255, 255, .94);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    color: var(--ink);
    padding: 24px;
}

.hero-panel strong {
    display: block;
    font-size: 48px;
    margin: 8px 0;
}

.hero-panel p {
    color: var(--muted);
    font-size: 15px;
}

.hero-panel div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-panel em {
    background: var(--blue-soft);
    border-radius: 999px;
    color: var(--blue-dark);
    font-style: normal;
    font-weight: 650;
    padding: 7px 10px;
}

.page-shell,
.admin-shell {
    padding-bottom: 56px;
    padding-top: 28px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.category-tabs a.active,
.sort-links a.active {
    background: #002371;
    border-color: #002371;
    color: var(--white);
}

.category-tabs span {
    color: #002371;
    font-weight: 650;
    margin-left: 4px;
}

.category-tabs a.active span {
    color: rgba(255, 255, 255, .86);
}

.listing-heading {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 18px;
}

.listing-heading h1,
.listing-heading h2,
.admin-heading h1 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0;
}

.listing-heading p {
    color: var(--muted);
    max-width: 760px;
}

.sort-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sort-box {
    align-items: flex-end;
    display: grid;
    gap: 8px;
    justify-items: end;
}

.sort-box > span {
    color: var(--muted);
    font-size: 13px;
}

.active-filters {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: -6px 0 18px;
}

.active-filters strong {
    font-size: 13px;
}

.active-filters a {
    align-items: center;
    background: var(--blue-soft);
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 650;
    gap: 6px;
    min-height: 34px;
    padding: 7px 10px;
}

.active-filters a.clear-all {
    background: var(--white);
    color: var(--muted);
}

.listing-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: 248px minmax(0, 1fr);
}

.filters,
.admin-card,
.spec-card,
.offers-table,
.company-row,
.best-price {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px rgba(10, 37, 64, .05);
}

.filters {
    padding: 0 14px 14px;
    position: sticky;
    top: 142px;
}

.filter-head {
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    margin: 0 -14px 12px;
    padding: 14px;
}

.filter-head span {
    align-items: center;
    display: inline-flex;
    gap: 10px;
}

.filter-head strong {
    font-size: 19px;
}

.filter-head a {
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 650;
}

.filter-toggle {
    display: none;
}

.filters section + section {
    border-top: 1px solid var(--color-border);
    margin-top: 12px;
    padding-top: 12px;
}

.filters h3,
.admin-card h2 {
    font-size: 15px;
    margin: 0 0 9px;
}

.filters label {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: auto 1fr auto;
    font-size: 13px;
    margin: 8px 0;
    min-height: 34px;
}

.filters input[type="checkbox"],
.filters input[type="radio"] {
    accent-color: var(--blue);
    height: 17px;
    width: 17px;
}

.filters em {
    color: var(--muted);
    font-style: normal;
}

.filters button {
    margin-top: 14px;
    width: 100%;
}

.results {
    align-items: stretch;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.listing-results {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.results .product-card {
    display: grid;
    grid-template-rows: 148px minmax(114px, auto) auto;
    height: 100%;
    min-height: 422px;
    position: relative;
}

.results .product-copy {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 10px 12px 0;
}

.results .product-image {
    min-height: 148px;
}

.results .product-image img {
    height: 148px;
}

.results .product-card h2 {
    display: -webkit-box;
    font-size: 14px;
    line-height: 1.28;
    min-height: 38px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card:hover {
    border-color: var(--color-border-strong);
    box-shadow: var(--lift);
    transform: translateY(-2px);
}

.product-image {
    align-items: center;
    background: #F8FAFC;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    display: flex;
    justify-content: center;
    min-height: 170px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    height: 170px;
    object-fit: contain;
    padding: 12px;
    position: relative;
    transition: opacity .18s ease;
    width: 100%;
    z-index: 1;
}

.product-image.is-loading img,
.product-gallery-main.is-loading img,
.home-hero-mosaic figure.is-loading img,
.home-photo-band article.is-loading img,
.inspiration-grid article.is-loading img,
.battery-product-spotlight.is-loading img {
    opacity: .35;
}

.product-image.is-loading::after,
.product-gallery-main.is-loading::after,
.home-hero-mosaic figure.is-loading::after,
.home-photo-band article.is-loading::after,
.inspiration-grid article.is-loading::after,
.battery-product-spotlight.is-loading::after {
    animation: imageLoaderSpin .75s linear infinite;
    border: 2px solid #D8E1EF;
    border-top-color: #002371;
    border-radius: 999px;
    content: "";
    height: 28px;
    left: 50%;
    margin-left: -14px;
    margin-top: -14px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    width: 28px;
    z-index: 2;
}

@keyframes imageLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.product-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 13px 14px 0;
}

.product-image img.image-fallback,
.product-media img.image-fallback {
    object-fit: contain;
    padding: 18px;
}

.product-meta,
.score-line,
.product-facts {
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mini-rating {
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    border-radius: 999px;
    color: var(--blue-dark);
    font-weight: 650;
    padding: 1px 7px;
}

.review-stars {
    align-items: center;
    color: var(--color-text);
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.2;
}

.stars {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-score {
    color: var(--ink);
    font-weight: 700;
}

.review-count {
    color: var(--muted);
}

.review-summary {
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
}

.rating-card,
.review-copy,
.fact-pill {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
}

.rating-card {
    min-width: 142px;
}

.rating-card-wide {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(180px, 1fr);
    min-width: min(100%, 380px);
    padding: 14px 16px;
}

.rating-score-block {
    border-right: 1px solid var(--color-border);
    padding-right: 18px;
}

.rating-card strong {
    color: var(--blue-dark);
    font-size: 28px;
    line-height: 1;
}

.rating-card-wide .rating-score-block strong {
    font-size: 34px;
}

.rating-card span,
.review-copy > span:not(.review-stars) {
    color: var(--muted);
    display: block;
    font-size: 13px;
    margin-top: 2px;
}

.review-copy .review-stars {
    display: flex;
    font-size: 14px;
    margin-top: 2px;
}

.rating-review-block .review-stars {
    display: flex;
    gap: 8px;
}

.rating-review-block .stars {
    font-size: 19px;
    letter-spacing: 1.5px;
    line-height: 1;
}

.rating-review-block .review-score {
    font-size: 16px;
}

.rating-review-block .review-count {
    font-size: 14px;
}

.rating-bar {
    background: #E2E8F0;
    border-radius: 999px;
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
}

.rating-bar i {
    background: var(--blue);
    display: block;
    height: 100%;
}

.review-copy strong {
    color: var(--ink);
    display: block;
    font-size: 16px;
}

.fact-pill {
    align-items: center;
    color: var(--blue-dark);
    display: inline-flex;
    font-weight: 650;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.product-actions button {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--ink);
    cursor: pointer;
    font-weight: 650;
    padding: 9px 12px;
}

.product-actions button:hover {
    border-color: var(--blue);
    color: var(--blue-dark);
}

.results .product-actions {
    gap: 8px;
    margin: auto 0 0;
    position: static;
}

.results .product-actions button {
    background: var(--white);
    border: 1px solid var(--color-border);
    box-shadow: none;
    color: var(--muted);
    font-size: 12px;
    height: auto;
    padding: 7px 9px;
    width: auto;
}

.results .product-actions button:hover {
    background: var(--blue-soft);
    border-color: var(--blue-line);
    color: var(--blue-dark);
}

.detail-actions {
    margin-top: 18px;
}

.product-meta em {
    background: var(--blue-soft);
    border-radius: 999px;
    color: var(--blue-dark);
    font-style: normal;
    font-weight: 650;
    padding: 2px 8px;
}

.product-card h2 {
    font-size: 15px;
    line-height: 1.25;
    margin: 6px 0;
}

.product-card p {
    color: var(--muted);
    display: -webkit-box;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 8px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.results .product-card p,
.results .product-meta,
.results .product-kind,
.results .product-brand {
    display: none;
}

.results .product-meta,
.results .score-line {
    font-size: 12px;
    gap: 6px;
}

.results .score-line {
    display: flex;
    min-height: 22px;
}

.results .review-stars {
    gap: 4px;
}

.results .stars {
    font-size: 12px;
}

.results .price-panel {
    align-self: end;
    padding: 10px 12px 12px;
}

.results .price-panel strong {
    font-size: 19px;
}

.results .price-panel span {
    font-size: 12px;
}

.results .price-panel a {
    padding: 9px 10px;
}

.price-panel {
    align-items: flex-start;
    border-left: 0;
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding: 12px 14px 14px;
    background: var(--white);
}

.price-panel small,
.price-panel span {
    color: var(--muted);
}

.offer-price del,
.best-price del {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
    text-decoration-thickness: 1.5px;
}

.price-panel strong,
.best-price strong {
    color: var(--blue-dark);
    font-size: 22px;
    margin: 4px 0;
}

.price-panel a {
    align-items: center;
    display: inline-flex;
    gap: 7px;
    justify-content: center;
    margin-top: 6px;
    text-align: center;
}

.price-panel a::after,
.offer-row a::after,
.best-price a::after,
.sticky-product-cta a::after {
    background: currentColor;
    content: "";
    display: inline-block;
    height: 15px;
    line-height: 1;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793L8.146 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h11.793L8.146 2.354a.5.5 0 1 1 .708-.708l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8z'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .16s ease;
    width: 15px;
}

.price-panel a:hover::after,
.offer-row a:hover::after,
.best-price a:hover::after,
.sticky-product-cta a:hover::after {
    transform: translateX(3px);
}

.image-lightbox {
    align-items: center;
    background: rgba(4, 16, 30, .72);
    backdrop-filter: blur(10px);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 100;
}

.image-lightbox-panel {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    max-height: min(820px, calc(100vh - 48px));
    max-width: min(1040px, calc(100vw - 48px));
    padding: 18px;
    position: relative;
    width: 100%;
}

.image-lightbox img {
    grid-column: 2;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    width: 100%;
}

.image-lightbox-close,
.image-lightbox-nav {
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue-dark);
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
}

.image-lightbox-close {
    font-size: 24px;
    height: 40px;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 40px;
}

.image-lightbox-nav {
    font-size: 32px;
    height: 46px;
    justify-self: center;
    line-height: 1;
    width: 46px;
}

.image-lightbox-close:hover,
.image-lightbox-nav:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.image-lightbox-count {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
}

.image-lightbox.has-one-image .image-lightbox-nav,
.image-lightbox.has-one-image .image-lightbox-count {
    display: none;
}

.results .price-panel a {
    border-radius: 6px;
    display: block;
    width: 100%;
}

.results .price-panel a {
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    color: var(--blue-dark);
}

.results .price-panel a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.product-hero {
    background:
        radial-gradient(circle at 10% 8%, rgba(0, 35, 113, .05), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F8FAFD 58%, #F4F8FB 100%);
    border-bottom: 1px solid var(--color-border);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(320px, 430px) minmax(0, 1fr) minmax(280px, 330px);
    overflow: hidden;
    padding: 36px clamp(16px, 4vw, 64px);
    position: relative;
}

.product-summary {
    align-self: start;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(202, 213, 226, .72);
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(10, 37, 64, .06);
    padding: 24px;
}

.product-hero::before {
    content: none;
}

.product-hero > * {
    position: relative;
    z-index: 1;
}

.product-media {
    align-self: start;
    background: var(--white);
    border: 1px solid var(--color-border-strong);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(10, 37, 64, .10);
}

.product-media-badge {
    background: rgba(11, 39, 66, .9);
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    left: 16px;
    padding: 7px 10px;
    position: absolute;
    top: 16px;
    z-index: 2;
}

.product-gallery-main {
    background: #FFFFFF;
    border: 0;
    cursor: zoom-in;
    display: block;
    padding: 0;
    position: relative;
    touch-action: pan-y;
    width: 100%;
}

.product-media img {
    background:
        linear-gradient(180deg, #FFFFFF, #F8FAFC);
    height: 390px;
    object-fit: contain;
    padding: 30px;
    width: 100%;
}

.product-gallery-zoom {
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    bottom: 14px;
    box-shadow: 0 8px 20px rgba(11, 39, 66, .10);
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 6px;
    left: 14px;
    padding: 7px 10px;
    position: absolute;
}

.product-gallery-zoom .ui-icon {
    background: transparent;
    border: 0;
    height: 18px;
    width: 18px;
}

.product-gallery-zoom .ui-icon svg {
    height: 15px;
    width: 15px;
}

.product-gallery-controls {
    align-items: center;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

.product-gallery-controls button {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue-dark);
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    height: 36px;
    line-height: 1;
    width: 36px;
}

.product-gallery-controls button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.product-gallery-controls span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.product-thumbs {
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(58px, 1fr));
    padding: 10px;
}

.product-thumbs button {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    height: 58px;
    overflow: hidden;
    padding: 3px;
}

.product-thumbs button.is-active {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0, 35, 113, .16);
}

.product-thumbs img {
    background: #FFFFFF;
    border: 0;
    height: 100%;
    object-fit: contain;
    padding: 0;
    width: 100%;
}

.product-summary h1 {
    color: var(--blue-dark);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 620;
    line-height: 1.05;
    margin: 0 0 16px;
}

.product-summary .breadcrumbs {
    color: var(--muted);
    margin-bottom: 18px;
}

.product-summary .breadcrumbs a {
    color: var(--blue);
}

.product-summary .breadcrumbs strong {
    color: var(--ink);
}

.product-summary p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
    max-width: 880px;
}

.product-action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0 0;
}

.product-action-bar button {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue-dark);
    display: inline-flex;
    gap: 7px;
    min-height: 42px;
    padding: 9px 13px;
}

.product-action-bar button:hover,
.product-action-bar button.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.product-action-bar .ui-icon {
    background: transparent;
    border: 0;
    color: currentColor;
    height: 18px;
    width: 18px;
}

.best-price {
    align-self: start;
    background: var(--white);
    border-color: var(--color-border-strong);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    box-shadow: 0 18px 42px rgba(10, 37, 64, .12);
}

.best-price a {
    background: var(--color-deal);
    border: 1px solid var(--color-deal);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 750;
    margin-top: 16px;
    padding: 12px 14px;
    text-align: center;
}

.best-price a:hover {
    background: var(--color-deal-dark);
    border-color: var(--color-deal-dark);
}

.best-price-benefits {
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-top: 15px;
}

.best-price-benefits span {
    align-items: center;
    color: var(--color-text);
    display: grid;
    font-size: 13px;
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr);
}

.best-price-benefits .ui-icon {
    height: 26px;
    width: 26px;
}

.product-tools {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: 0;
    padding-top: 22px;
}

.product-tools article {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
}

.product-tools .ui-icon {
    align-self: center;
    display: flex;
    height: 34px;
    line-height: 0;
    padding: 0;
    place-self: center;
    width: 34px;
}

.product-tools .ui-icon svg {
    display: block;
    height: 17px;
    width: 17px;
}

.product-tools strong {
    display: block;
}

.product-tools span {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin-top: 2px;
}

.sticky-product-cta {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--color-border-strong);
    border-radius: 16px;
    bottom: 16px;
    box-shadow: 0 18px 46px rgba(10, 37, 64, .18);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 50%;
    max-width: min(880px, calc(100vw - 32px));
    padding: 12px 14px 12px 18px;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity .18s ease, transform .18s ease;
    width: 100%;
    z-index: 55;
}

.sticky-product-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sticky-product-cta div {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
}

.sticky-product-cta small,
.sticky-product-cta span {
    color: var(--muted);
    font-size: 13px;
}

.sticky-product-cta strong {
    color: var(--blue-dark);
    font-size: 22px;
}

.sticky-product-cta a {
    background: var(--color-deal);
    border: 1px solid var(--color-deal);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 750;
    padding: 12px 16px;
    text-align: center;
    white-space: nowrap;
}

.sticky-product-cta a:hover {
    background: var(--color-deal-dark);
    border-color: var(--color-deal-dark);
}

.detail-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) 340px;
    padding-bottom: 40px;
    padding-top: 34px;
}

.offers-table,
.spec-card {
    border-color: var(--color-border);
    padding: 22px;
}

.section-title h2 {
    margin: 0 0 16px;
}

.offer-row {
    align-items: center;
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 150px auto;
    padding: 14px 0;
}

.offer-row:hover {
    background: #F8FAFC;
}

.offer-row span,
.offer-price small {
    color: var(--muted);
    display: block;
}

.offer-price strong {
    color: var(--blue-dark);
    font-size: 20px;
}

.spec-row {
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 12px 0;
}

.spec-row span {
    color: var(--muted);
}

.feed-details {
    padding-top: 0;
}

.feed-detail-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.feed-detail-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px rgba(10, 37, 64, .05);
    padding: 18px;
}

.feed-detail-card h3 {
    margin: 0 0 12px;
}

.feed-detail-row {
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 12px;
    grid-template-columns: 150px minmax(0, 1fr);
    padding: 9px 0;
}

.feed-detail-row span {
    color: var(--muted);
}

.feed-detail-row strong {
    overflow-wrap: anywhere;
}

.seo-copy {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-top: 28px;
    padding: clamp(22px, 4vw, 34px);
}

.seo-copy h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 14px;
}

.seo-copy .eyebrow {
    color: #002371;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.seo-copy-grid {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
}

.seo-copy p {
    color: var(--muted);
    line-height: 1.65;
    margin: 10px 0 0;
    max-width: 1040px;
}

.seo-copy aside {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 18px;
}

.seo-deep-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    margin-top: 22px;
}

.seo-deep-grid article,
.seo-faq {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 18px;
}

.seo-copy h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.seo-copy ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-copy li {
    color: var(--text);
    font-size: 14px;
    font-weight: 650;
    padding-left: 18px;
    position: relative;
}

.seo-copy li::before {
    background: #002371;
    border-radius: 999px;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: .55em;
    width: 6px;
}

.seo-faq {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.seo-faq details {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 13px 15px;
}

.seo-faq summary {
    color: var(--ink);
    cursor: pointer;
    font-weight: 750;
}

.seo-faq p {
    margin-bottom: 0;
}

.seo-deep-grid ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.seo-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.seo-link-row a {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: #002371;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 11px;
}

.seo-link-row a:hover {
    background: #002371;
    border-color: #002371;
    color: var(--white);
}

.info-page {
    display: grid;
    gap: 24px;
}

.info-hero,
.info-card,
.info-split,
.info-process,
.info-faq,
.contact-panel,
.contact-form {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 14px rgba(10, 37, 64, .05);
}

.info-hero {
    background:
        linear-gradient(135deg, rgba(248, 250, 252, .94), rgba(255, 255, 255, .96)),
        radial-gradient(circle at 88% 12%, rgba(96, 165, 250, .18), transparent 34%);
    padding: clamp(26px, 5vw, 52px);
}

.info-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 16px;
    max-width: 980px;
}

.info-hero p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    margin: 0;
    max-width: 900px;
}

.info-grid,
.contact-reasons,
.info-steps {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.contact-reasons article,
.info-steps article {
    padding: 22px;
}

.info-card > span,
.contact-reasons article > span {
    align-items: center;
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    border-radius: 999px;
    color: #002371;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin-bottom: 14px;
    width: 42px;
}

.info-card h2,
.contact-reasons h3,
.info-steps h3,
.contact-form h2,
.contact-panel h2 {
    margin-top: 0;
}

.info-card p,
.contact-reasons p,
.info-steps p,
.info-split p,
.info-faq p {
    color: var(--muted);
    line-height: 1.62;
}

.info-split,
.contact-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.info-split {
    align-items: start;
    padding: clamp(22px, 4vw, 34px);
}

.info-highlight {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
}

.info-highlight h3 {
    margin-top: 0;
}

.info-highlight ul,
.info-copy-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-highlight li {
    color: var(--color-text);
    line-height: 1.45;
    padding-left: 20px;
    position: relative;
}

.info-highlight li::before {
    background: #002371;
    border-radius: 999px;
    content: "";
    height: 7px;
    left: 0;
    position: absolute;
    top: .58em;
    width: 7px;
}

.info-process,
.info-faq,
.contact-panel,
.contact-form {
    padding: clamp(20px, 3vw, 30px);
}

.info-steps article {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.info-steps strong {
    align-items: center;
    background: #002371;
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    height: 32px;
    justify-content: center;
    margin-bottom: 12px;
    width: 32px;
}

.info-faq {
    display: grid;
    gap: 10px;
}

.info-faq.compact {
    margin-top: 20px;
}

.info-faq details {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 14px 16px;
}

.info-faq summary {
    color: var(--ink);
    cursor: pointer;
    font-weight: 750;
}

.info-faq p {
    margin-bottom: 0;
}

.contact-layout {
    align-items: start;
}

.contact-panel {
    min-width: 0;
}

.contact-form {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 154px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label span {
    color: var(--ink);
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: #F8FAFC;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius);
    color: var(--color-text);
    font: inherit;
    padding: 12px 13px;
    width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #60A5FA;
    box-shadow: 0 0 0 4px rgba(96, 165, 250, .16);
    outline: 0;
}

.contact-form textarea {
    resize: vertical;
}

.form-success,
.form-errors {
    border-radius: var(--radius);
    display: grid;
    gap: 4px;
    padding: 12px;
}

.form-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.form-errors {
    background: #FFF7ED;
    border: 1px solid #FDBA74;
    color: #9A3412;
}

.guides-index,
.guide-detail {
    display: grid;
    gap: 24px;
}

.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.guide-index-hero {
    padding: clamp(24px, 4vw, 42px);
}

.guide-index-hero h1,
.guide-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    margin: 0 0 14px;
    max-width: 980px;
}

.guide-index-hero p,
.guide-hero p,
.guide-content p {
    color: var(--muted);
    line-height: 1.68;
    max-width: 900px;
}

.guide-topic-nav,
.guide-jump-nav {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px;
}

.guide-topic-nav strong,
.guide-jump-nav span {
    color: var(--blue-dark);
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 800;
}

.guide-topic-nav div,
.guide-jump-nav div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.guide-topic-nav a,
.guide-jump-nav a {
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 13px;
    font-weight: 750;
    min-height: 36px;
    padding: 7px 12px;
}

.guide-topic-nav a:hover,
.guide-jump-nav a:hover {
    background: #EAF1FF;
    border-color: #B8C3D3;
    color: #002371;
}

.guide-jump-nav {
    position: sticky;
    top: 132px;
    z-index: 6;
}

.guide-jump-nav > a {
    background: #002371;
    border-color: #002371;
    color: var(--white);
    flex: 0 0 auto;
}

.guide-jump-nav > a:hover {
    background: #0F3B8F;
    color: var(--white);
}

.guide-card-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 12px;
    padding: 20px;
    position: relative;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.guide-card:hover {
    border-color: #B8C3D3;
    box-shadow: 0 14px 36px rgba(10, 37, 64, .08);
    transform: translateY(-2px);
}

.guide-card h2 {
    font-size: 24px;
    line-height: 1.14;
    margin: 0;
}

.guide-card h2 a::after {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.guide-card p {
    color: var(--muted);
    margin: 0;
}

.guide-card-meta {
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

.guide-card-meta span {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 6px 9px;
}

.guide-card-products {
    display: flex;
    gap: 8px;
}

.guide-card-products img {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    height: 66px;
    object-fit: contain;
    padding: 6px;
    width: 66px;
}

.guide-card-link,
.guide-hero-actions a,
.guide-featured-product a {
    align-items: center;
    background: #002371;
    border: 1px solid #002371;
    border-radius: var(--radius);
    color: var(--white);
    display: inline-flex;
    font-weight: 750;
    justify-content: center;
    padding: 10px 13px;
    position: relative;
    z-index: 2;
}

.guide-hero {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 330px;
    padding: clamp(24px, 4vw, 42px);
}

.guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.guide-hero-actions a + a {
    background: #F8FAFC;
    border-color: var(--color-border);
    color: #002371;
}

.guide-featured-product {
    align-self: start;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 10px;
    padding: 16px;
}

.guide-featured-product span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.guide-featured-product img {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    height: 190px;
    object-fit: contain;
    padding: 12px;
    width: 100%;
}

.guide-featured-product h2 {
    font-size: 18px;
    line-height: 1.24;
    margin: 0;
}

.guide-featured-product strong {
    font-size: 24px;
}

.guide-content {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: clamp(22px, 3vw, 34px);
}

.guide-content h2 {
    font-size: 22px;
    margin: 0 0 10px;
}

.guide-content p {
    margin: 10px 0 0;
}

.guide-products,
.guide-related {
    padding: clamp(18px, 3vw, 28px);
}

.guide-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.company-list {
    display: grid;
    gap: 12px;
}

.company-row {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    padding: 18px;
}

.company-logo {
    align-items: center;
    background: var(--blue-soft);
    border-radius: var(--radius-lg);
    color: var(--blue-dark);
    display: flex;
    font-size: 24px;
    font-weight: 700;
    height: 56px;
    justify-content: center;
    width: 56px;
}

.company-row h2 {
    margin: 0 0 6px;
}

.company-row p {
    color: var(--muted);
    margin: 0;
}

.company-scores {
    display: flex;
    gap: 8px;
}

.company-scores span {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 8px 10px;
}

.admin-heading {
    margin-bottom: 22px;
}

.admin-heading p {
    color: var(--muted);
    max-width: 760px;
}

.notice {
    background: var(--blue-soft);
    border: 1px solid var(--blue-line);
    border-radius: var(--radius-lg);
    color: var(--blue-dark);
    font-weight: 650;
    margin-bottom: 16px;
    padding: 14px 16px;
}

.admin-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 420px minmax(0, 1fr);
}

.admin-card {
    padding: 20px;
}

.admin-card.wide {
    margin-top: 20px;
}

.admin-card label {
    color: var(--muted);
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.admin-card input,
.admin-card select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font: inherit;
    padding: 11px;
}

.feed-list {
    display: grid;
    gap: 10px;
}

.feed-list article,
.company-table div {
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: grid;
    gap: 4px;
    padding: 12px;
}

.feed-list span,
.feed-list small,
.company-table span {
    color: var(--muted);
}

.company-table {
    display: grid;
    gap: 8px;
}

.company-table div {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 150px 140px 100px;
}

.empty-state {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.pagination {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(11, 39, 66, .045);
    display: flex;
    gap: 16px;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 14px;
    padding: 14px;
}

.pagination-status {
    display: grid;
    gap: 2px;
}

.pagination-status strong {
    color: var(--ink);
    font-size: 15px;
}

.pagination-status span {
    color: var(--muted);
    font-size: 13px;
}

.pagination-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
}

.pagination a,
.pagination span {
    align-items: center;
    background: #F8FAFC;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    color: var(--blue-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 9px 12px;
}

.pagination a {
    color: var(--blue-dark);
}

.pagination a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.pagination .is-current {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.pagination .is-disabled {
    color: #96A6B8;
    cursor: not-allowed;
    opacity: .72;
}

.pagination .pagination-dots {
    background: transparent;
    border-color: transparent;
    color: var(--muted);
    min-width: 22px;
    padding-left: 2px;
    padding-right: 2px;
}

.pagination-step {
    min-width: 108px;
}

[data-catalog].is-loading {
    opacity: .55;
    pointer-events: none;
    position: relative;
}

[data-catalog].is-loading::after {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: var(--shadow);
    content: "Resultaten laden";
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    left: 50%;
    padding: 10px 16px;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

[data-catalog].is-loading::before {
    animation: imageLoaderSpin .75s linear infinite;
    border: 2px solid #D8E1EF;
    border-radius: 999px;
    border-top-color: #002371;
    content: "";
    height: 18px;
    left: calc(50% - 72px);
    margin-top: -9px;
    pointer-events: none;
    position: fixed;
    top: 50%;
    width: 18px;
    z-index: 21;
}

.saved-list {
    display: grid;
    gap: 10px;
}

.saved-item {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px;
}

.saved-item span {
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.saved-item a {
    background: var(--blue);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 650;
    padding: 10px 14px;
}

.footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, .12), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #F5F8FC 44%, #EDF3FA 100%);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
    display: grid;
    gap: 18px;
    padding: 34px clamp(16px, 4vw, 64px) 24px;
}

.footer-intro,
.footer-trust,
.footer-main,
.footer-seo-directory,
.footer-bottom {
    margin: 0 auto;
    max-width: 1780px;
    width: 100%;
}

.footer-intro {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(11, 39, 66, .08);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr) auto;
    padding: clamp(18px, 3vw, 30px);
}

.footer-brand {
    display: grid;
    gap: 8px;
}

.footer-brand img {
    display: block;
    height: auto;
    max-height: 58px;
    max-width: 260px;
    object-fit: contain;
    width: 100%;
}

.footer-brand span,
.footer-eyebrow,
.footer-seo-head span {
    color: var(--blue-dark);
    display: block;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-intro h2 {
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: 0;
    line-height: 1.08;
    margin: 7px 0 10px;
    max-width: 760px;
}

.footer p {
    color: var(--muted);
    line-height: 1.62;
    margin: 0;
    max-width: 820px;
}

.footer-cta {
    align-items: center;
    background: var(--blue);
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    color: var(--white);
    display: inline-flex;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 46px;
    padding: 12px 16px;
    white-space: nowrap;
}

.footer-cta:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    color: var(--white);
}

.footer-cta .ui-icon,
.footer-trust .ui-icon {
    flex: 0 0 auto;
    height: 28px;
    width: 28px;
}

.footer-trust {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-trust span {
    align-items: center;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 4px 12px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 14px;
}

.footer-trust strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.25;
}

.footer-trust small {
    color: var(--muted);
    font-size: 13px;
    grid-column: 2;
    line-height: 1.35;
}

.footer-main {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: clamp(18px, 3vw, 28px);
}

.footer nav {
    align-content: start;
    display: grid;
    gap: 7px;
}

.footer h3 {
    color: var(--blue-dark);
    font-size: 13px;
    letter-spacing: .06em;
    margin: 0 0 5px;
    text-transform: uppercase;
}

.footer a {
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.35;
    padding: 4px 0;
    text-decoration: none;
}

.footer a:hover {
    color: var(--blue);
}

.footer-seo-directory {
    background: rgba(255, 255, 255, .68);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(18px, 3vw, 28px);
}

.footer-seo-head {
    align-items: end;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
    margin-bottom: 18px;
}

.footer-seo-head h2 {
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    margin: 6px 0 0;
}

.footer-seo-head p {
    margin: 0;
}

.footer-seo-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.footer-seo-grid nav {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 14px;
}

.footer-seo-grid h3 {
    color: var(--ink);
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 10px;
    min-height: 34px;
}

.footer-seo-grid a {
    color: var(--muted);
    display: block;
    font-size: 13px;
    line-height: 1.35;
    padding: 5px 0;
}

.footer-seo-grid a:hover {
    color: var(--blue);
    transform: translateX(2px);
}

.footer-bottom {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 13px;
    gap: 14px;
    justify-content: space-between;
    padding-top: 4px;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-notice {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    bottom: 18px;
    box-shadow: var(--shadow);
    display: none;
    gap: 14px;
    max-width: 440px;
    padding: 14px;
    position: fixed;
    right: 18px;
    z-index: 60;
}

.cookie-notice.is-visible {
    display: flex;
}

.cookie-notice strong {
    display: block;
    margin-bottom: 3px;
}

.cookie-notice span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-notice button {
    background: var(--blue);
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    font-weight: 700;
    padding: 10px 13px;
}

@media (min-width: 1200px) {
    .listing-layout {
        grid-template-columns: 248px minmax(0, 1fr);
    }

    .listing-results > .results {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-width: 0;
    }
}

@media (min-width: 981px) and (max-width: 1199px) {
    .header-main {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-end;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .listing-layout {
        grid-template-columns: 232px minmax(0, 1fr);
    }

    .listing-results > .results {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 0;
    }
}

@media (max-width: 980px) {
    .site-header {
        position: sticky;
        z-index: 120;
    }

    .header-main,
    .hero,
    .listing-layout,
    .product-hero,
    .detail-layout,
    .admin-grid,
    .deal-grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .home-deal-grid {
        grid-template-columns: 1fr;
    }

    .header-main {
        gap: 10px;
        grid-template-columns: minmax(0, 1fr) auto;
        padding-bottom: 8px;
        padding-top: 8px;
    }

    .brand-logo {
        height: 42px;
        width: min(230px, 58vw);
    }

    .brand-logo img {
        max-height: 42px;
        max-width: min(230px, 58vw);
    }

    .top-search {
        grid-column: 1 / -1;
        order: 3;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        justify-self: end;
        order: 2;
    }

    .main-nav {
        display: none;
    }

    .section-head {
        flex-wrap: wrap;
    }

    .filters {
        position: static;
        width: 100%;
    }

    .feed-menu {
        align-content: start;
        background: #FFFFFF;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        box-shadow: 0 22px 60px rgba(11, 39, 66, .22);
        display: none;
        gap: 9px;
        left: 12px;
        max-height: calc(100dvh - var(--mobile-menu-top, 116px) - 18px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 14px;
        position: fixed;
        right: 12px;
        top: var(--mobile-menu-top, 116px);
        z-index: 150;
        -webkit-overflow-scrolling: touch;
    }

    .site-header.menu-open .feed-menu {
        display: grid;
    }

    .menu-backdrop {
        background: rgba(11, 39, 66, .34);
        border: 0;
        border-radius: 0;
        bottom: 0;
        cursor: pointer;
        display: none;
        left: 0;
        padding: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 110;
    }

    .site-header.menu-open .menu-backdrop {
        display: block;
    }

    .mobile-only-link {
        display: inline-flex;
    }

    .home-explain,
    .home-step-grid,
    .home-guide-grid,
    .inspiration-grid,
    .home-photo-band,
    .home-focus-strip,
    .home-battery-seo,
    .home-hero-inner,
    .seo-copy-grid,
    .seo-deep-grid,
    .info-grid,
    .info-split,
    .info-steps,
    .contact-layout,
    .contact-reasons,
    .guide-card-grid,
    .guide-hero,
    .guide-content {
        grid-template-columns: 1fr;
    }

    .guide-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-topic-nav,
    .guide-jump-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-topic-nav div,
    .guide-jump-nav div {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .guide-topic-nav div::-webkit-scrollbar,
    .guide-jump-nav div::-webkit-scrollbar {
        display: none;
    }

    .guide-topic-nav a,
    .guide-jump-nav a {
        flex: 0 0 auto;
    }

    .guide-jump-nav {
        top: 104px;
    }

    .home-choice-card {
        align-self: stretch;
    }

    .footer {
        gap: 14px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-intro {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .footer-brand img {
        max-width: 240px;
    }

    .footer-cta {
        width: 100%;
    }

    .footer-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-seo-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .home-hero {
        background:
            linear-gradient(180deg, rgba(248, 250, 252, .97) 0%, rgba(248, 250, 252, .90) 70%, rgba(248, 250, 252, .75) 100%),
            url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1100&q=78") center / cover;
    }

    .home-hero-mosaic {
        min-height: 280px;
    }

    .home-photo-band article,
    .home-photo-band article:first-child {
        min-height: 300px;
    }

    .battery-product-spotlight {
        min-height: 300px;
    }

    .feed-menu details {
        background: #F8FAFC;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        position: static;
        width: 100%;
    }

    .feed-menu summary,
    .feed-menu > a {
        border-radius: var(--radius);
        justify-content: flex-start;
        min-height: 46px;
        padding: 11px 12px;
        width: 100%;
    }

    .feed-menu details summary {
        background: transparent;
        border: 0;
        justify-content: space-between;
    }

    .mega-panel,
    .mega-panel.compact {
        background: #FFFFFF;
        border: 1px solid var(--color-border);
        border-radius: var(--radius);
        box-shadow: none;
        grid-template-columns: 1fr;
        margin: 0 10px 10px;
        max-height: none;
        min-width: 0;
        overflow: visible;
        overscroll-behavior: contain;
        padding: 8px;
        position: static;
        width: calc(100% - 20px);
        -webkit-overflow-scrolling: touch;
    }

    .mega-panel::before {
        content: none;
    }

    .mega-panel a {
        min-height: 44px;
    }

    .price-panel {
        border-left: 0;
        border-top: 1px solid var(--color-border);
        padding-left: 0;
        padding-top: 14px;
    }

    .offer-row,
    .company-row,
    .company-table div {
        grid-template-columns: 1fr;
    }

    .footer,
    .listing-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sort-box {
        align-items: flex-start;
        justify-items: start;
        width: 100%;
    }

    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination-links {
        justify-content: flex-start;
    }

    .sort-links,
    .category-tabs {
        overflow-x: auto;
        padding-bottom: 4px;
        width: 100%;
    }

    .sort-links a,
    .category-tabs a {
        flex: 0 0 auto;
        min-height: 42px;
    }

    .filter-toggle {
        align-items: center;
        background: var(--blue-dark);
        border: 1px solid var(--blue-dark);
        border-radius: 999px;
        color: var(--white);
        cursor: pointer;
        display: inline-flex;
        font-size: 13px;
        font-weight: 750;
        justify-content: center;
        min-height: 34px;
        padding: 7px 12px;
        white-space: nowrap;
        width: auto;
    }

    .filter-head {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .filters.is-open .filter-head {
        border-bottom: 1px solid var(--color-border);
        margin-bottom: 12px;
    }

    .filters:not(.is-open) {
        padding-bottom: 0;
    }

    .filters:not(.is-open) form > section,
    .filters:not(.is-open) form > button[type="submit"] {
        display: none;
    }

    .results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hero {
        padding-top: 24px;
    }

    .product-tools {
        grid-template-columns: 1fr;
    }

    .product-media img {
        height: 280px;
    }

    .product-gallery-main {
        min-height: 280px;
    }

    .product-gallery-zoom {
        bottom: 10px;
        font-size: 12px;
        left: 10px;
        padding: 6px 9px;
    }

    .product-gallery-controls {
        padding: 9px 10px;
    }

    .product-gallery-controls button {
        height: 42px;
        width: 42px;
    }

    .product-thumbs {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 10px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .product-thumbs::-webkit-scrollbar {
        display: none;
    }

    .product-thumbs button {
        flex: 0 0 64px;
        height: 64px;
        scroll-snap-align: start;
    }

    .contact-form {
        position: static;
    }

    .rating-card-wide {
        grid-template-columns: 1fr;
    }

    .rating-score-block {
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
        padding: 0 0 12px;
    }

    .saved-item {
        grid-template-columns: 1fr;
    }

    .feed-detail-row {
        grid-template-columns: 1fr;
    }

    .home-trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-notice {
        bottom: 12px;
        left: 12px;
        max-width: none;
        right: 12px;
    }

    body:has(.sticky-product-cta) {
        padding-bottom: 126px;
    }

    .sticky-product-cta {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: calc(100vw - 24px);
        padding: 12px;
    }

    .sticky-product-cta a {
        width: 100%;
    }

    .image-lightbox {
        padding: 12px;
    }

    .image-lightbox-panel {
        grid-template-columns: 1fr 1fr;
        max-height: calc(100vh - 24px);
        max-width: calc(100vw - 24px);
        padding: 14px;
    }

    .image-lightbox img {
        grid-column: 1 / -1;
        max-height: calc(100vh - 150px);
        order: 1;
    }

    .image-lightbox-prev,
    .image-lightbox-next {
        margin-top: 10px;
        order: 2;
    }

    .image-lightbox-count {
        order: 3;
    }
}

/* Compact utility actions: saved/compare live in the top bar only. */
.header-main .main-nav {
    gap: 10px !important;
}

.header-main .main-nav a.nav-prices {
    min-width: 142px !important;
}

.header-main .main-nav a.nav-counter {
    background: #F8FBFD !important;
    border-color: #C6D6E5 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    color: #06203E !important;
    gap: 8px !important;
    height: 46px !important;
    min-width: 64px !important;
    padding: 0 14px !important;
}

.header-main .main-nav a.nav-counter:hover {
    background: #EEF6FB !important;
    border-color: #0E5A89 !important;
    color: #06203E !important;
}

.header-main .main-nav a.nav-counter span {
    background: #EEF4FA !important;
    color: #002371 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    height: 22px !important;
    min-width: 22px !important;
    padding: 0 7px !important;
}

.feed-menu > a[href$="/bewaard"],
.feed-menu > a[href$="/vergelijken"],
.feed-menu > a[href$="/contact"],
.feed-menu .menu-contact {
    display: none !important;
}

@media (min-width: 981px) and (max-width: 1500px) {
    .header-main {
        grid-template-columns: 230px minmax(300px, 1fr) auto !important;
    }

    .header-main .main-nav a.nav-prices {
        min-width: 132px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .header-main .main-nav a.nav-counter {
        min-width: 56px !important;
        padding-left: 11px !important;
        padding-right: 11px !important;
    }
}

@media (max-width: 980px) {
    .header-main .main-nav {
        justify-self: end !important;
    }

    .header-main .main-nav a.nav-prices {
        display: none !important;
    }

    .header-main .main-nav a.nav-counter {
        height: 42px !important;
        min-width: 52px !important;
        padding: 0 10px !important;
    }
}

/* SEO rocket guide pages: readable long-form content without looking like keyword stuffing. */
.seo-rocket {
    margin-top: 24px !important;
}

.seo-rocket-lead {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
    margin-bottom: 24px;
}

.seo-rocket-lead p {
    background: #F8FBFD;
    border: 1px solid #D7E4EE;
    border-radius: 10px;
    color: #25364A;
    margin: 0;
    padding: 18px;
}

.seo-rocket-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-rocket-grid article,
.seo-rocket-checklist {
    background: #FFFFFF;
    border: 1px solid #D7E4EE;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(6, 32, 62, .06);
}

.seo-rocket-grid article {
    padding: 22px;
}

.seo-rocket-grid h3,
.seo-rocket-checklist h3 {
    color: #06203E;
    font-size: 21px;
    margin: 0 0 10px;
}

.seo-rocket-grid p {
    color: #465A70;
    margin: 0 0 16px;
}

.seo-rocket-grid ul,
.seo-rocket-checklist ol {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
}

.seo-rocket-checklist ol {
    list-style: decimal;
}

.seo-rocket-grid li,
.seo-rocket-checklist li {
    color: #25364A;
    font-weight: 650;
    padding-left: 2px;
}

.seo-rocket-checklist ol li::before {
    display: none !important;
}

.seo-rocket-checklist {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    margin-top: 16px;
    padding: 24px;
}

.seo-rocket-checklist aside {
    align-content: start;
    background: #F4F8FB;
    border: 1px solid #D7E4EE;
    border-radius: 10px;
    display: grid;
    gap: 10px;
    padding: 18px;
}

.seo-rocket-checklist aside a {
    background: #FFFFFF;
    border: 1px solid #C6D6E5;
    border-radius: 999px;
    color: #002371;
    font-weight: 800;
    padding: 9px 12px;
}

.seo-rocket-checklist aside a:hover {
    background: #002371;
    border-color: #002371;
    color: #FFFFFF;
}

@media (max-width: 820px) {
    .seo-rocket-lead,
    .seo-rocket-grid,
    .seo-rocket-checklist {
        grid-template-columns: 1fr;
    }
}

/* Professional typography pass: tighter, cleaner and more comparison-site like. */
:root {
    --font-ui: Arial, "Helvetica Neue", Helvetica, sans-serif;
    --font-heading: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--font-ui) !important;
}

body {
    color: #1F3246 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.48 !important;
}

h1,
h2,
h3,
h4,
.product-card h2,
.product-card h2 a,
.section-head h2,
.compare-intro h1,
.product-hero h1,
.seo-copy h2,
.seo-rocket-grid h3,
.footer-seo-head h2,
.footer-seo-grid h3 {
    color: #061F3B !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    letter-spacing: -.01em !important;
    line-height: 1.16 !important;
}

h1,
.compare-intro h1,
.product-hero h1 {
    font-weight: 700 !important;
}

h2,
.section-head h2,
.seo-copy h2 {
    font-weight: 700 !important;
}

p,
li,
td,
th,
label,
summary,
small,
.muted,
.product-card p,
.product-meta,
.seo-copy p,
.filter-group label,
.breadcrumbs,
.price-panel small {
    font-family: var(--font-ui) !important;
}

strong,
b,
button,
.top-search button,
.hero-search button,
.main-nav a,
.feed-menu > a,
.feed-menu summary,
.price-panel a,
.offer-row a,
.best-price a,
.filter-title,
.product-card .price,
.rating-line strong {
    font-family: var(--font-ui) !important;
    font-weight: 700 !important;
}

.top-search input,
.hero-search input {
    font-family: var(--font-ui) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}

.main-nav a,
.feed-menu > a,
.feed-menu summary {
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.product-card h2,
.product-card h2 a {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.25 !important;
}

.product-card p,
.product-card small,
.product-card .meta,
.product-card .rating-line {
    color: #42566C !important;
    font-size: 14px !important;
}

.price,
.product-card .price,
.price-panel strong,
.best-price strong {
    color: #061F3B !important;
    font-family: var(--font-ui) !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.eyebrow,
.seo-copy .eyebrow {
    font-family: var(--font-ui) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs strong {
    font-family: var(--font-ui) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

@media (max-width: 760px) {
    body {
        font-size: 14px !important;
    }

    h1,
    .compare-intro h1,
    .product-hero h1 {
        letter-spacing: -.005em !important;
    }
}

/* Header rescue: calm, compact, aligned. */
:root {
    --font-ui: "Segoe UI", Arial, Helvetica, sans-serif;
    --font-heading: "Segoe UI", Arial, Helvetica, sans-serif;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-ui) !important;
}

h1,
h2,
h3,
h4,
.product-card h2,
.product-card h2 a {
    font-family: var(--font-heading) !important;
    font-weight: 650 !important;
    letter-spacing: 0 !important;
}

.site-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #D9E5EF !important;
    box-shadow: 0 2px 10px rgba(6, 32, 62, .045) !important;
}

.header-main {
    gap: 20px !important;
    grid-template-columns: 230px minmax(420px, 1fr) auto !important;
    min-height: 76px !important;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}

.brand,
.brand-logo {
    height: 46px !important;
    width: 230px !important;
}

.brand-logo img,
.logo img {
    max-height: 38px !important;
    max-width: 220px !important;
}

.top-search {
    border: 1px solid #AFC4D7 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    height: 52px !important;
}

.top-search input {
    color: #24364A !important;
    font-size: 15px !important;
}

.top-search button {
    background: #0E5A89 !important;
    border-color: #0E5A89 !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.header-main .main-nav {
    gap: 8px !important;
}

.header-main .main-nav a {
    border-radius: 8px !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    height: 44px !important;
}

.header-main .main-nav a.nav-prices {
    background: #002371 !important;
    border-color: #002371 !important;
    color: #FFFFFF !important;
    min-width: 132px !important;
}

.header-main .main-nav a.nav-counter {
    background: #F8FBFD !important;
    border-color: #C7D7E6 !important;
    color: #0A2744 !important;
    gap: 7px !important;
    min-width: 58px !important;
    padding: 0 11px !important;
}

.header-main .main-nav a.nav-counter span {
    background: transparent !important;
    color: #002371 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    height: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
}

.feed-menu {
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    min-height: 58px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding-bottom: 9px !important;
    padding-top: 9px !important;
    scrollbar-width: none !important;
}

.feed-menu::-webkit-scrollbar {
    display: none !important;
}

.feed-menu .menu-fill {
    display: none !important;
}

.feed-menu > a,
.feed-menu summary {
    border-radius: 8px !important;
    box-shadow: none !important;
    flex: 0 0 auto !important;
    font-size: 14px !important;
    font-weight: 650 !important;
    gap: 7px !important;
    height: 42px !important;
    padding: 0 12px !important;
}

.feed-menu > a.active,
.feed-menu > a:first-child {
    background: #002371 !important;
    border-color: #002371 !important;
    color: #FFFFFF !important;
}

.feed-menu > a.menu-feature {
    background: #F3FBF6 !important;
    border-color: #BFDCCA !important;
    color: #123525 !important;
}

.feed-menu > a[href$="/aanbiedingen"] {
    background: #F8FBFD !important;
    border-color: #C7D7E6 !important;
    color: #0A2744 !important;
}

.feed-menu .menu-soft {
    background: #F8FBFD !important;
    border-color: #C7D7E6 !important;
    color: #0A2744 !important;
}

.site-header .ui-icon,
.site-header .ui-icon svg {
    height: 16px !important;
    width: 16px !important;
}

.compare-intro h1 {
    font-size: clamp(30px, 3vw, 42px) !important;
    font-weight: 650 !important;
}

.compare-intro p {
    color: #40556B !important;
    font-size: 16px !important;
}

@media (min-width: 981px) and (max-width: 1500px) {
    .header-main {
        grid-template-columns: 210px minmax(330px, 1fr) auto !important;
    }

    .brand,
    .brand-logo {
        width: 210px !important;
    }

    .brand-logo img,
    .logo img {
        max-width: 200px !important;
    }

    .feed-menu > a,
    .feed-menu summary {
        font-size: 13px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: 1fr auto !important;
        min-height: 68px !important;
    }

    .top-search {
        height: 48px !important;
    }

    .feed-menu {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
    }
}

/* Softer navigation: less button-heavy, more professional menu. */
.feed-menu {
    gap: 4px !important;
}

.feed-menu > a,
.feed-menu summary {
    background: transparent !important;
    border-color: transparent !important;
    border-radius: 7px !important;
    color: #0B2742 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 38px !important;
    padding: 0 10px !important;
}

.feed-menu > a:hover,
.feed-menu summary:hover,
.feed-menu details[open] summary {
    background: #F3F7FA !important;
    border-color: #D5E2EC !important;
    color: #002371 !important;
}

.feed-menu > a.active,
.feed-menu > a:first-child {
    background: #002371 !important;
    border-color: #002371 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0, 35, 113, .12) !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
}

.feed-menu > a.menu-feature {
    background: #F4FBF7 !important;
    border-color: #CDE8D7 !important;
    color: #16452F !important;
    font-weight: 650 !important;
}

.feed-menu > a.menu-feature:hover {
    background: #EAF6EF !important;
    border-color: #A7D5B8 !important;
    color: #123525 !important;
}

.feed-menu > a[href$="/aanbiedingen"],
.feed-menu .menu-soft {
    background: transparent !important;
    border-color: transparent !important;
    color: #0B2742 !important;
}

.feed-menu > a[href$="/aanbiedingen"]:hover,
.feed-menu .menu-soft:hover {
    background: #F3F7FA !important;
    border-color: #D5E2EC !important;
    color: #002371 !important;
}

.feed-menu .ui-icon,
.feed-menu .ui-icon svg {
    height: 15px !important;
    width: 15px !important;
}

@media (max-width: 560px) {
    .header-main,
    .feed-menu,
    .page-shell,
    .detail-layout,
    .admin-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-main {
        gap: 7px;
    }

    .top-search {
        border-width: 1px;
        gap: 3px;
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 3px;
    }

    .top-search input {
        font-size: 14px;
        min-height: 40px;
        padding: 9px 10px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .home-hero-inner {
        padding: 22px;
    }

    .home-hero h1 {
        font-size: 31px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-choice-card {
        display: flex;
    }

    .home-hero-mosaic {
        gap: 8px;
        grid-template-columns: 1fr 1fr;
        min-height: 230px;
    }

    .home-hero-mosaic .hero-mosaic-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 190px;
    }

    .home-hero-mosaic figure:not(.hero-mosaic-main) {
        min-height: 112px;
    }

    .hero-mosaic-stat {
        border-radius: 14px;
        bottom: 10px;
        left: 10px;
        padding: 8px 10px;
    }

    .home-choice-visual img {
        min-height: 210px;
    }

    .home-focus-strip a {
        min-height: 112px;
    }

    .home-hero-points {
        display: none;
    }

    .choice-list a:nth-child(n+4) {
        display: none;
    }

    .home-trust-strip {
        grid-template-columns: 1fr;
    }

    .home-photo-band article,
    .home-photo-band article:first-child {
        min-height: 260px;
    }

    .home-photo-band div {
        padding: 18px;
    }

    .home-photo-band h2 {
        font-size: 24px;
    }

    .brand-logo {
        height: 42px;
        width: 190px;
    }

    .brand-logo img {
        max-height: 42px;
        max-width: 190px;
        width: auto;
    }

    .main-nav {
        gap: 5px;
    }

    .main-nav a {
        font-size: 13px;
        min-height: 35px;
        padding: 7px 9px;
    }

    .main-nav a .ui-icon,
    .feed-menu .ui-icon {
        height: 15px;
        width: 15px;
    }

    .main-nav a .ui-icon svg,
    .feed-menu .ui-icon svg {
        height: 13px;
        width: 13px;
    }

    .main-nav span {
        font-size: 11px;
        min-width: 17px;
        padding: 1px 5px;
    }

    .feed-menu {
        gap: 8px;
        padding: 14px;
    }

    .feed-menu summary,
    .feed-menu > a {
        font-size: 13px;
        gap: 8px;
        min-height: 44px;
        padding: 10px 11px;
    }

    .feed-menu > a.menu-contact,
    .feed-menu > a[href$="/vergelijken"] {
        display: inline-flex;
    }

    .filter-head {
        padding: 10px 12px;
    }

    .filter-head strong {
        font-size: 18px;
    }

    .filter-toggle {
        min-height: 32px;
        padding: 6px 11px;
    }

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

    .footer-intro,
    .footer-main,
    .footer-seo-directory {
        padding: 16px;
    }

    .footer-intro h2 {
        font-size: 28px;
    }

    .footer-trust,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-trust span {
        min-height: 72px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-search button {
        min-height: 44px;
        width: 100%;
    }

    .top-search button {
        font-size: 13px;
        min-height: 40px;
        padding-left: 12px;
        padding-right: 12px;
        width: auto;
    }

    .listing-heading h1,
    .listing-heading h2,
    .admin-heading h1,
    .product-summary h1 {
        font-size: 30px;
    }

    .results {
        grid-template-columns: 1fr;
    }

    .guide-product-grid {
        grid-template-columns: 1fr;
    }

    .results .product-card {
        grid-template-rows: 180px minmax(114px, auto) auto;
        min-height: 454px;
    }

    .results .product-image,
    .results .product-image img {
        height: 180px;
        min-height: 180px;
    }

    .active-filters a,
    .filters label,
    .price-panel a {
        min-height: 44px;
    }
}

/* Vergelijk.nl inspired polish: calmer surfaces, finer borders and lighter elevation. */
:root {
    --color-background: #F5F6F8;
    --color-surface-soft: #F8FAFC;
    --color-border: #DDE3EA;
    --color-border-strong: #C8D1DC;
    --color-text: #24364A;
    --color-text-muted: #6B7786;
    --color-success: #159455;
    --color-success-dark: #0D7A45;
    --color-content-zone: #F0F1F3;
    --shadow: 0 3px 10px rgba(15, 23, 42, .045);
    --lift: 0 10px 24px rgba(15, 23, 42, .075);
}

body {
    background: #F5F6F8;
}

.site-header,
.feed-menu,
.footer {
    box-shadow: none;
}

.site-header {
    border-bottom-color: #DDE3EA;
}

.header-main {
    background: #FFFFFF;
}

.feed-menu {
    background: #FFFFFF;
    border-top: 1px solid #E3E8EF;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .035);
}

.main-nav a,
.feed-menu > a,
.feed-menu summary,
.sort-links a,
.category-tabs a,
.active-filters a {
    background: #FFFFFF;
    border-color: #D4DCE6;
    box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}

.feed-menu > a:hover,
.feed-menu > a.active,
.feed-menu details[open] summary,
.category-tabs a.active,
.sort-links a.active {
    background: #002371;
    border-color: #002371;
    color: #FFFFFF;
}

.top-search,
.hero-search {
    background: #FFFFFF;
    border-color: #C8D1DC;
    box-shadow: inset 0 1px 0 rgba(15, 23, 42, .02);
}

.top-search:focus-within,
.hero-search:focus-within,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #7FA0D8;
    box-shadow: 0 0 0 3px rgba(0, 35, 113, .10);
}

.autocomplete-panel,
.mega-panel,
.filters,
.listing-results,
.compare-intro,
.product-card,
.home-popular-products,
.home-explain,
.home-category-grid a,
.home-step-grid article,
.guide-card,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.info-card,
.contact-panel,
.contact-form,
.footer-intro,
.footer-main,
.footer-seo-directory,
.footer-trust span {
    border-color: #D6DEE8;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.filters,
.listing-results,
.compare-intro,
.home-popular-products,
.guide-card,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.footer-main,
.footer-seo-directory {
    background: #FFFFFF;
}

.listing-layout {
    gap: 30px;
}

.listing-results {
    background: var(--color-content-zone);
    border-radius: 0;
    border: 0;
    box-shadow: none;
    margin-top: -4px;
    padding: 18px;
}

.filters {
    border-radius: 0;
    box-shadow: none;
}

.filter-head {
    background: #174D7E;
    border-bottom: 0;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.filter-head strong,
.filter-head a {
    color: #FFFFFF;
}

.filter-head a {
    opacity: .88;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.filters h3 {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.filters h3::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    height: 7px;
    transform: rotate(225deg);
    width: 7px;
}

.filters label {
    color: #1F2937;
}

.filters input[type="checkbox"],
.filters input[type="radio"] {
    accent-color: var(--color-success);
}

.active-filters {
    background: var(--color-content-zone);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
    padding: 18px 18px 0;
}

.active-filters a {
    background: #6B7280;
    border-color: #6B7280;
    color: #FFFFFF;
}

.active-filters a.clear-all {
    background: transparent;
    border: 0;
    color: #111827;
    text-decoration: underline;
}

.product-card {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(15, 23, 42, .10);
    overflow: hidden;
}

.product-card::before {
    align-self: flex-start;
    background: var(--color-success);
    border-radius: 999px;
    color: #FFFFFF;
    content: "Deal";
    font-size: 12px;
    font-weight: 800;
    margin: 14px 0 -6px 14px;
    padding: 7px 14px;
    position: relative;
    z-index: 1;
}

.product-image {
    border: 0;
}

.product-card h2 {
    color: #111827;
    font-weight: 800;
}

.price-panel small {
    color: #174D7E;
}

.product-card:hover,
.home-category-grid a:hover,
.guide-card:hover {
    border-color: #B8C5D5;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .075);
    transform: translateY(-1px);
}

.product-image,
.home-deal-grid .product-image,
.related-products .product-image,
.product-media {
    background: #FFFFFF;
    border-color: #DDE3EA;
}

.product-image img,
.product-media img,
.home-deal-grid .product-image img,
.related-products .product-image img {
    background: linear-gradient(180deg, #FFFFFF, #F7F9FC);
}

.price-panel,
.results .price-panel {
    background: #FFFFFF;
    border-top-color: #E0E6EE;
}

.price-panel a,
.section-head > a,
.guide-card-link,
.pagination a,
.pagination span,
.footer-cta,
.mobile-menu-toggle {
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, .06);
}

.price-panel a {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #174D7E;
    justify-content: flex-start;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.price-panel a:hover {
    background: transparent;
    border-color: transparent;
    color: #0F766E;
}

.best-price a,
.offer-row a {
    background: #F97316;
    border-color: #F97316;
    color: #FFFFFF;
}

.best-price a:hover,
.offer-row a:hover {
    background: #EA580C;
    border-color: #EA580C;
}

.category-tabs,
.sort-links,
.active-filters {
    gap: 8px;
}

.filters h3,
.footer h3,
.footer-seo-grid h3,
.section-title h2 {
    color: #142D4A;
}

.home-hero,
.product-hero {
    border-color: #D6DEE8;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .045);
}

.home-trust-strip,
.home-focus-strip,
.home-battery-seo,
.home-photo-band {
    border-color: #DDE3EA;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}

.footer {
    background: #F5F6F8;
    border-top-color: #DDE3EA;
}

.footer-intro,
.footer-trust span {
    background: #FFFFFF;
}

@media (max-width: 980px) {
    .feed-menu {
        box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
    }
}

/* Footer accent: deep blue with green highlights. */
.footer {
    background: #0E568B;
    border-top: 0;
    color: #FFFFFF;
}

.footer-intro,
.footer-main,
.footer-seo-directory,
.footer-trust span {
    background: transparent;
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.footer-intro {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    border-top: 0;
}

.footer-brand img {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 10px;
}

.footer-brand span,
.footer-eyebrow,
.footer-seo-head span {
    color: #86EFAC;
}

.footer-intro h2,
.footer-trust strong,
.footer h3,
.footer-seo-head h2,
.footer-seo-grid h3 {
    color: #FFFFFF;
}

.footer p,
.footer-trust small,
.footer-bottom,
.footer-seo-head p {
    color: rgba(255, 255, 255, .78);
}

.footer a,
.footer-seo-grid a {
    color: rgba(255, 255, 255, .92);
}

.footer a:hover,
.footer-seo-grid a:hover {
    color: #86EFAC;
}

.footer-cta {
    background: #159455;
    border-color: #159455;
    color: #FFFFFF;
}

.footer-cta:hover {
    background: #0D7A45;
    border-color: #0D7A45;
}

.footer-trust .ui-icon {
    background: rgba(134, 239, 172, .14);
    border-color: rgba(134, 239, 172, .34);
    color: #86EFAC;
}

.footer-main,
.footer-seo-directory {
    border-radius: 0;
}

.footer-seo-grid nav {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 18px;
}

/* Typography and review polish. */
body {
    font-family: "Arial Narrow", "Roboto Condensed", "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 500;
}

h1,
h2,
h3,
.section-head h1,
.section-head h2,
.listing-heading h1,
.listing-heading h2,
.product-card h2,
.guide-card h2,
.footer h3 {
    color: #0B1726;
    font-family: "Arial Narrow", "Roboto Condensed", "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-stretch: condensed;
    font-weight: 850;
    letter-spacing: -.01em;
}

.product-card h2,
.results .product-card h2,
.home-deal-grid .product-card h2,
.related-products .product-card h2 {
    font-size: 16px;
    font-weight: 850;
    line-height: 1.22;
}

.product-summary h1 {
    color: #081527;
    font-weight: 850;
    letter-spacing: -.015em;
}

.eyebrow,
.footer-eyebrow,
.footer-seo-head span,
.home-guide-grid span {
    font-weight: 900;
    letter-spacing: .05em;
}

.review-stars {
    align-items: center;
    color: #3B4758;
    display: inline-flex;
    gap: 6px;
    font-weight: 750;
}

.stars {
    color: #F57C22;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.review-score {
    color: #0B1726;
    font-weight: 850;
}

.review-count {
    color: #5F6B7A;
    font-weight: 600;
}

.rating-card {
    border-color: #D5DDE7;
    box-shadow: 0 3px 10px rgba(15, 23, 42, .055);
}

.rating-card strong {
    color: #050A12;
    font-family: "Arial Narrow", "Roboto Condensed", Inter, sans-serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -.025em;
}

.rating-card-wide .rating-score-block strong {
    font-size: 48px;
}

.rating-review-block .stars {
    font-size: 22px;
    letter-spacing: 2px;
}

.rating-review-block .review-score {
    font-size: 18px;
}

.rating-bar {
    background: #D1D5DB;
    height: 8px;
}

.rating-bar i {
    background: #6D5DF6;
}

.results .stars {
    font-size: 13px;
    letter-spacing: .8px;
}

.score-line {
    color: #334155;
    font-weight: 650;
}

/* Unified comparison-site theme inspired by vergelijk.nl/tablet_pc. */
:root {
    --theme-page: #F1F2F4;
    --theme-surface: #FFFFFF;
    --theme-surface-soft: #F7F8FA;
    --theme-line: #D9DEE5;
    --theme-line-strong: #C5CED8;
    --theme-blue: #0F5689;
    --theme-blue-dark: #0B4672;
    --theme-green: #159455;
    --theme-green-dark: #0D7A45;
    --theme-orange: #F58220;
    --theme-text: #101820;
    --theme-muted: #66717F;
    --theme-shadow: 0 3px 12px rgba(16, 24, 32, .10);
    --theme-shadow-soft: 0 2px 8px rgba(16, 24, 32, .06);
}

body {
    background: var(--theme-page);
    color: var(--theme-text);
}

h1,
h2,
h3,
.product-card h2,
.guide-card h2,
.section-head h2,
.listing-heading h1,
.listing-heading h2 {
    color: var(--theme-text);
    font-weight: 850;
}

.page-shell,
.detail-layout,
.admin-shell {
    background: transparent;
}

.site-header {
    background: var(--theme-surface);
    border-bottom: 1px solid var(--theme-line);
}

.header-main,
.feed-menu {
    background: var(--theme-surface);
}

.feed-menu {
    border-top: 1px solid #E7EBF0;
}

.main-nav a,
.feed-menu > a,
.feed-menu summary,
.category-tabs a,
.sort-links a,
.pagination a,
.pagination span,
.active-filters a {
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    border-radius: 999px;
    color: var(--theme-text);
    box-shadow: none;
}

.main-nav a:hover,
.feed-menu > a:hover,
.feed-menu > a.active,
.feed-menu details[open] summary,
.category-tabs a.active,
.sort-links a.active,
.pagination .is-current {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    color: #FFFFFF;
}

.top-search,
.hero-search {
    background: var(--theme-surface);
    border: 1px solid var(--theme-line-strong);
    border-radius: 10px;
    box-shadow: none;
}

.top-search button,
.hero-search button {
    background: #F3F5F7;
    border-color: var(--theme-line-strong);
    color: var(--theme-text);
}

.top-search button:hover,
.hero-search button:hover {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    color: #FFFFFF;
}

.compare-intro {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding-bottom: 8px;
}

.compare-intro h1 {
    color: #0B0F14;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
}

.breadcrumbs {
    color: #0B0F14;
    font-size: 14px;
    font-weight: 750;
}

.listing-layout {
    align-items: start;
    gap: 30px;
}

.filters {
    background: var(--theme-surface);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 14px;
}

.filter-head {
    background: var(--theme-blue);
    border: 0;
    border-radius: 0;
    color: #FFFFFF;
    margin: 0 0 18px;
    padding: 15px 16px;
}

.filter-head strong,
.filter-head a {
    color: #FFFFFF;
}

.filters section {
    padding-left: 0;
    padding-right: 0;
}

.filters section + section {
    border-top: 1px solid var(--theme-line);
    margin-top: 16px;
    padding-top: 16px;
}

.filters h3 {
    color: #0B0F14;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 12px;
}

.filters h3::after {
    border-color: #0B0F14;
}

.filters label {
    color: #202B37;
    font-size: 14px;
    min-height: 34px;
}

.filters input[type="checkbox"],
.filters input[type="radio"] {
    accent-color: var(--theme-green);
}

.active-filters {
    background: var(--theme-page);
    border-radius: 14px 14px 0 0;
    gap: 10px;
    margin: 0;
    padding: 18px 18px 0;
}

.active-filters strong {
    color: #0B0F14;
    font-weight: 900;
}

.active-filters a:not(.clear-all) {
    background: #676B70;
    border-color: #676B70;
    color: #FFFFFF;
    font-weight: 800;
}

.active-filters a.clear-all {
    background: transparent;
    border: 0;
    color: #0B0F14;
    padding-left: 6px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.listing-results {
    background: var(--theme-page);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 18px;
    margin-top: 0;
    padding: 18px;
}

.results {
    gap: 18px;
}

.product-card {
    background: var(--theme-surface);
    border: 0;
    border-radius: 13px;
    box-shadow: var(--theme-shadow);
    overflow: hidden;
}

.product-card::before {
    content: none;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(16, 24, 32, .14);
    transform: translateY(-2px);
}

.product-image,
.home-deal-grid .product-image,
.related-products .product-image {
    background: var(--theme-surface);
    border: 0;
    border-bottom: 1px solid #EDF0F3;
}

.product-image img {
    background: var(--theme-surface);
    border: 0;
    padding: 14px;
}

.product-copy {
    color: var(--theme-text);
}

.product-card h2 a {
    color: var(--theme-text);
}

.product-card h2 a:hover {
    color: var(--theme-blue);
}

.score-line,
.product-kind,
.product-brand {
    color: var(--theme-muted);
}

.review-stars {
    color: var(--theme-muted);
}

.stars {
    color: var(--theme-orange);
}

.review-score {
    color: var(--theme-text);
}

.price-panel {
    background: var(--theme-surface);
    border-top: 1px solid #EDF0F3;
}

.price-panel strong,
.best-price strong,
.offer-price strong {
    color: #081527;
    font-weight: 900;
}

.price-panel small {
    color: var(--theme-blue);
}

.price-panel a {
    background: transparent;
    border: 0;
    color: var(--theme-blue);
    font-weight: 850;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.price-panel a:hover {
    background: transparent;
    color: var(--theme-green);
}

.best-price a,
.offer-row a {
    background: var(--theme-green);
    border-color: var(--theme-green);
    color: #FFFFFF;
}

.best-price a:hover,
.offer-row a:hover {
    background: var(--theme-green-dark);
    border-color: var(--theme-green-dark);
}

.home-hero,
.home-popular-products,
.home-guide-showcase,
.home-explain,
.home-battery-seo,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.seo-copy,
.info-card,
.contact-panel,
.contact-form,
.product-media,
.product-tools article,
.offers-table,
.spec-card,
.best-price {
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    box-shadow: var(--theme-shadow-soft);
}

.home-photo-band,
.home-focus-strip,
.home-trust-strip {
    border-color: var(--theme-line);
    box-shadow: var(--theme-shadow-soft);
}

.home-guide-grid a,
.home-category-grid a,
.guide-card {
    background: var(--theme-surface);
    border-color: var(--theme-line);
    box-shadow: var(--theme-shadow-soft);
}

.home-guide-grid a:hover,
.home-category-grid a:hover,
.guide-card:hover {
    border-color: var(--theme-line-strong);
    box-shadow: var(--theme-shadow);
}

.review-summary .rating-card,
.rating-card {
    background: var(--theme-surface);
    border: 1px solid var(--theme-line);
    box-shadow: var(--theme-shadow-soft);
}

.rating-card strong {
    color: #050A12;
}

.rating-bar {
    background: #CDD2D8;
}

.rating-bar i {
    background: #6D5DF6;
}

.footer {
    background: var(--theme-blue);
    color: #FFFFFF;
}

.footer h3,
.footer-intro h2,
.footer-trust strong,
.footer-seo-head h2,
.footer-seo-grid h3 {
    color: #FFFFFF;
}

.footer a,
.footer-seo-grid a {
    color: rgba(255, 255, 255, .94);
}

.footer a:hover,
.footer-seo-grid a:hover,
.footer-brand span,
.footer-eyebrow,
.footer-seo-head span {
    color: #8EF0B2;
}

.footer-main,
.footer-intro,
.footer-seo-directory,
.footer-trust span {
    background: transparent;
    border-color: rgba(255, 255, 255, .18);
    box-shadow: none;
}

.footer-seo-grid nav {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
}

.footer-cta {
    background: var(--theme-green);
    border-color: var(--theme-green);
}

.footer-cta:hover {
    background: var(--theme-green-dark);
    border-color: var(--theme-green-dark);
}

@media (max-width: 980px) {
    .listing-results {
        padding: 14px;
    }

    .filters {
        border: 1px solid var(--theme-line);
        border-radius: 12px;
        padding: 0 12px 12px;
    }

    .filter-head {
        border-radius: 11px 11px 0 0;
        margin-left: -12px;
        margin-right: -12px;
    }

    .feed-menu {
        background: var(--theme-surface);
        border: 1px solid var(--theme-line);
        box-shadow: 0 14px 34px rgba(16, 24, 32, .18);
    }
}

/* Final visual unification: calm vergelijkingssite finish. */
body {
    font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.page-shell {
    background: var(--theme-page);
}

.logo img {
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

.site-header {
    box-shadow: 0 1px 0 rgba(16, 24, 32, .04);
}

.main-nav a,
.feed-menu > a,
.feed-menu summary {
    min-height: 42px;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.main-nav a:hover,
.feed-menu > a:hover,
.feed-menu details[open] summary {
    box-shadow: 0 2px 8px rgba(15, 86, 137, .16);
}

.feed-menu > a.active {
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .18);
}

.top-search:focus-within,
.hero-search:focus-within {
    border-color: var(--theme-blue);
    box-shadow: 0 0 0 3px rgba(15, 86, 137, .12);
}

.top-search button,
.hero-search button,
.btn,
.button,
button {
    border-radius: 8px;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.compare-intro,
.home-hero {
    border-radius: 0;
}

.category-tabs {
    gap: 10px;
}

.category-tabs a {
    border-radius: 8px;
    min-height: 45px;
}

.listing-main {
    min-width: 0;
}

.listing-results {
    border-radius: 0 0 14px 14px;
}

.product-card {
    min-height: 100%;
    transition: box-shadow .18s ease, transform .18s ease;
}

.product-card h2 {
    line-height: 1.25;
}

.product-card .meta-actions button,
.product-card .meta-actions a {
    background: #F7F8FA;
    border-color: var(--theme-line);
    color: var(--theme-blue-dark);
}

.product-card .meta-actions button:hover,
.product-card .meta-actions a:hover {
    background: #EAF2F8;
    border-color: #B8CAD8;
    color: var(--theme-blue);
}

.score-line,
.review-summary,
.review-stars {
    align-items: center;
}

.stars,
.review-stars .stars,
.score-stars {
    color: var(--theme-orange);
    letter-spacing: 1px;
}

.rating-bar i {
    background: var(--theme-green);
}

.discount-badge,
.deal-badge,
.product-card .discount {
    background: var(--theme-green);
    border-color: var(--theme-green);
    color: #FFFFFF;
}

.sort-links a {
    border-radius: 8px;
    min-height: 44px;
}

.pagination {
    justify-content: center;
    margin: 26px 0 10px;
}

.pagination a,
.pagination span {
    border-radius: 8px;
    min-width: 42px;
}

.pagination a:hover {
    background: #EAF2F8;
    border-color: #B8CAD8;
    color: var(--theme-blue);
}

.footer {
    border-top: 4px solid var(--theme-green);
}

.footer-main {
    gap: 34px;
}

.footer h3 {
    font-size: 17px;
    letter-spacing: 0;
}

.footer p,
.footer li,
.footer a {
    font-size: 14px;
    line-height: 1.65;
}

@media (min-width: 1180px) {
    .results {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .header-main {
        gap: 12px;
    }

    .top-search {
        order: 3;
        width: 100%;
    }

    .listing-layout {
        gap: 18px;
    }

    .listing-results {
        border-radius: 12px;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .compare-intro h1 {
        font-size: 30px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image {
        min-height: 190px;
    }

    .sort-links,
    .category-tabs,
    .pagination {
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }
}

/* Compact badges: prevent old full-width deal labels on product cards. */
.product-card::before,
.deal-grid .product-card::before,
.home-deal-grid .product-card::before,
.related-products .product-card::before {
    content: none !important;
    display: none !important;
}

.discount-badge,
.deal-badge,
.product-card .discount {
    align-items: center;
    align-self: flex-start;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    max-width: max-content;
    min-height: 0;
    padding: 6px 10px;
    width: auto;
}

/* Site-wide typography override. */
html,
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.product-card,
.filters,
.footer,
.main-nav,
.feed-menu,
.top-search,
.hero-search {
    font-family: Calibri, "Segoe UI", Arial, Helvetica, sans-serif !important;
}

/* Stronger contrast and clearer visual hierarchy. */
:root {
    --contrast-page: #EEF1F4;
    --contrast-panel: #FFFFFF;
    --contrast-panel-soft: #F7F9FB;
    --contrast-line: #BFC9D4;
    --contrast-line-soft: #D7DEE6;
    --contrast-ink: #061A33;
    --contrast-muted: #4D5D70;
    --contrast-blue: #0B4F83;
    --contrast-blue-dark: #002371;
    --contrast-green: #138A4E;
    --contrast-orange: #F58220;
    --contrast-shadow: 0 8px 22px rgba(6, 26, 51, .13);
    --contrast-shadow-soft: 0 3px 12px rgba(6, 26, 51, .09);
}

body {
    background: var(--contrast-page);
    color: var(--contrast-ink);
}

p,
li,
.product-kind,
.product-brand,
.score-line,
.filters label,
.breadcrumbs,
.listing-heading p,
.compare-intro p,
.seo-copy p,
.guide-card p,
.footer p {
    color: var(--contrast-muted);
}

h1,
h2,
h3,
.product-card h2,
.product-card h2 a,
.section-head h2,
.listing-heading h1,
.listing-heading h2 {
    color: var(--contrast-ink);
}

.site-header,
.header-main,
.feed-menu {
    background: #FFFFFF;
    border-color: var(--contrast-line);
}

.page-shell {
    background:
        linear-gradient(180deg, #F8FAFC 0, var(--contrast-page) 260px),
        var(--contrast-page);
}

.compare-intro,
.home-hero,
.home-popular-products,
.home-guide-showcase,
.home-explain,
.home-battery-seo,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.seo-copy,
.info-card,
.contact-panel,
.contact-form,
.product-media,
.product-tools article,
.offers-table,
.spec-card,
.best-price {
    background: var(--contrast-panel);
    border: 1px solid var(--contrast-line);
    box-shadow: var(--contrast-shadow-soft);
}

.compare-intro,
.listing-heading {
    border-left: 5px solid var(--contrast-blue);
}

.main-nav a,
.feed-menu > a,
.feed-menu summary,
.category-tabs a,
.sort-links a,
.pagination a,
.pagination span,
.active-filters a,
.product-card .meta-actions button,
.product-card .meta-actions a {
    background: #FFFFFF;
    border-color: var(--contrast-line);
    color: var(--contrast-ink);
}

.main-nav a:hover,
.feed-menu > a:hover,
.feed-menu details[open] summary,
.category-tabs a:hover,
.sort-links a:hover,
.pagination a:hover,
.product-card .meta-actions button:hover,
.product-card .meta-actions a:hover {
    background: #E7F0F7;
    border-color: var(--contrast-blue);
    color: var(--contrast-blue-dark);
}

.main-nav a.active,
.main-nav a:first-child,
.feed-menu > a.active,
.category-tabs a.active,
.sort-links a.active,
.pagination .is-current {
    background: var(--contrast-blue-dark);
    border-color: var(--contrast-blue-dark);
    color: #FFFFFF;
}

.top-search,
.hero-search {
    background: #FFFFFF;
    border: 2px solid var(--contrast-line);
    box-shadow: 0 2px 0 rgba(6, 26, 51, .05);
}

.top-search:focus-within,
.hero-search:focus-within {
    border-color: var(--contrast-blue-dark);
    box-shadow: 0 0 0 4px rgba(11, 79, 131, .14);
}

.top-search button,
.hero-search button {
    background: var(--contrast-blue-dark);
    border-color: var(--contrast-blue-dark);
    color: #FFFFFF;
}

.top-search button:hover,
.hero-search button:hover {
    background: var(--contrast-green);
    border-color: var(--contrast-green);
    color: #FFFFFF;
}

.listing-layout {
    gap: 32px;
}

.filters {
    background: #FFFFFF;
    border: 1px solid var(--contrast-line);
    box-shadow: var(--contrast-shadow-soft);
}

.filter-head {
    background: var(--contrast-blue);
    color: #FFFFFF;
}

.filters section + section {
    border-top-color: var(--contrast-line);
}

.filters h3 {
    color: var(--contrast-ink);
}

.listing-results,
.active-filters {
    background: #E9EDF1;
}

.active-filters {
    border: 1px solid var(--contrast-line);
    border-bottom: 0;
}

.active-filters a:not(.clear-all) {
    background: var(--contrast-blue);
    border-color: var(--contrast-blue);
    color: #FFFFFF;
}

.product-card,
.home-guide-grid a,
.home-category-grid a,
.guide-card,
.review-summary .rating-card,
.rating-card {
    background: #FFFFFF;
    border: 1px solid var(--contrast-line);
    box-shadow: var(--contrast-shadow-soft);
}

.product-card:hover,
.home-guide-grid a:hover,
.home-category-grid a:hover,
.guide-card:hover {
    border-color: var(--contrast-blue);
    box-shadow: var(--contrast-shadow);
}

.product-image,
.home-deal-grid .product-image,
.related-products .product-image {
    background: #FAFBFC;
    border-bottom: 1px solid var(--contrast-line-soft);
}

.price-panel {
    background: #FAFBFC;
    border-top: 1px solid var(--contrast-line);
}

.price-panel strong,
.best-price strong,
.offer-price strong {
    color: #03152B;
}

.price-panel a,
.best-price a,
.offer-row a,
.footer-cta {
    background: var(--contrast-green);
    border-color: var(--contrast-green);
    color: #FFFFFF;
    text-decoration: none;
}

.price-panel a:hover,
.best-price a:hover,
.offer-row a:hover,
.footer-cta:hover {
    background: #0F6F40;
    border-color: #0F6F40;
    color: #FFFFFF;
}

.stars,
.review-stars .stars,
.score-stars {
    color: var(--contrast-orange);
}

.rating-bar i {
    background: var(--contrast-green);
}

.footer {
    background: var(--contrast-blue);
    border-top-color: var(--contrast-green);
}

.footer-main,
.footer-intro,
.footer-seo-directory,
.footer-trust span,
.footer-seo-grid nav {
    border-color: rgba(255, 255, 255, .28);
}

@media (max-width: 980px) {
    .compare-intro,
    .listing-heading {
        border-left-width: 4px;
    }

    .listing-results,
    .active-filters {
        background: #EEF1F4;
    }
}

/* Freshen the palette: lighter surfaces, less grey, clearer green/blue accents. */
:root {
    --fresh-page: #F7FAFC;
    --fresh-mist: #F2F8F5;
    --fresh-blue-mist: #F0F7FC;
    --fresh-line: #C9D8E5;
    --fresh-line-soft: #E1EAF1;
    --fresh-ink: #06203E;
    --fresh-muted: #536579;
    --fresh-blue: #0B5B91;
    --fresh-blue-dark: #002371;
    --fresh-green: #179755;
    --fresh-green-soft: #E8F7EF;
    --fresh-shadow: 0 7px 20px rgba(10, 55, 91, .10);
}

body {
    background: var(--fresh-page);
    color: var(--fresh-ink);
}

.page-shell {
    background:
        radial-gradient(circle at 8% 0%, rgba(23, 151, 85, .09), transparent 28%),
        radial-gradient(circle at 86% 4%, rgba(11, 91, 145, .10), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0, var(--fresh-page) 360px);
}

.site-header,
.header-main,
.feed-menu {
    background: rgba(255, 255, 255, .98);
    border-color: var(--fresh-line);
}

.compare-intro,
.listing-heading,
.home-hero {
    background:
        linear-gradient(135deg, #FFFFFF 0%, #FFFFFF 56%, var(--fresh-blue-mist) 100%);
    border-color: var(--fresh-line);
    border-left-color: var(--fresh-green);
    box-shadow: var(--fresh-shadow);
}

.home-popular-products,
.home-guide-showcase,
.home-explain,
.home-battery-seo,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.seo-copy,
.info-card,
.contact-panel,
.contact-form,
.product-media,
.product-tools article,
.offers-table,
.spec-card,
.best-price {
    background: #FFFFFF;
    border-color: var(--fresh-line);
    box-shadow: var(--fresh-shadow);
}

.listing-results,
.active-filters {
    background:
        linear-gradient(180deg, #F8FBFD 0, #F3F8FB 100%);
    border-color: var(--fresh-line);
}

.filters {
    background: #FFFFFF;
    border-color: var(--fresh-line);
    box-shadow: var(--fresh-shadow);
}

.filter-head {
    background: var(--fresh-blue);
    border-bottom: 3px solid var(--fresh-green);
}

.filters section + section {
    border-top-color: var(--fresh-line-soft);
}

.product-card,
.home-guide-grid a,
.home-category-grid a,
.guide-card,
.review-summary .rating-card,
.rating-card {
    background: #FFFFFF;
    border-color: var(--fresh-line);
    box-shadow: 0 4px 14px rgba(10, 55, 91, .09);
}

.product-card:hover,
.home-guide-grid a:hover,
.home-category-grid a:hover,
.guide-card:hover {
    border-color: var(--fresh-green);
    box-shadow: 0 10px 26px rgba(10, 55, 91, .15);
}

.product-image,
.home-deal-grid .product-image,
.related-products .product-image {
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F7FBFD 100%);
    border-bottom-color: var(--fresh-line-soft);
}

.price-panel {
    background: #FFFFFF;
    border-top-color: var(--fresh-line-soft);
}

.main-nav a,
.feed-menu > a,
.feed-menu summary,
.category-tabs a,
.sort-links a,
.pagination a,
.pagination span,
.active-filters a,
.product-card .meta-actions button,
.product-card .meta-actions a {
    background: #FFFFFF;
    border-color: var(--fresh-line);
    color: var(--fresh-ink);
}

.main-nav a:hover,
.feed-menu > a:hover,
.feed-menu details[open] summary,
.category-tabs a:hover,
.sort-links a:hover,
.pagination a:hover,
.product-card .meta-actions button:hover,
.product-card .meta-actions a:hover {
    background: var(--fresh-green-soft);
    border-color: var(--fresh-green);
    color: #075733;
}

.main-nav a.active,
.main-nav a:first-child,
.feed-menu > a.active,
.category-tabs a.active,
.sort-links a.active,
.pagination .is-current {
    background: var(--fresh-blue-dark);
    border-color: var(--fresh-blue-dark);
    color: #FFFFFF;
}

.top-search,
.hero-search {
    border-color: var(--fresh-line);
    box-shadow: 0 4px 12px rgba(10, 55, 91, .08);
}

.top-search button,
.hero-search button {
    background: var(--fresh-blue);
    border-color: var(--fresh-blue);
}

.top-search button:hover,
.hero-search button:hover,
.price-panel a:hover,
.best-price a:hover,
.offer-row a:hover,
.footer-cta:hover {
    background: var(--fresh-green);
    border-color: var(--fresh-green);
}

p,
li,
.product-kind,
.product-brand,
.score-line,
.filters label,
.breadcrumbs,
.listing-heading p,
.compare-intro p,
.seo-copy p,
.guide-card p {
    color: var(--fresh-muted);
}

h1,
h2,
h3,
.product-card h2,
.product-card h2 a,
.section-head h2,
.listing-heading h1,
.listing-heading h2 {
    color: var(--fresh-ink);
}

.active-filters a:not(.clear-all),
.discount-badge,
.deal-badge,
.product-card .discount {
    background: var(--fresh-green);
    border-color: var(--fresh-green);
}

.footer {
    background:
        linear-gradient(135deg, #0B5B91 0%, #073D68 62%, #062D50 100%);
    border-top-color: var(--fresh-green);
}

@media (max-width: 980px) {
    .listing-results,
    .active-filters {
        background: #F7FAFC;
    }
}

/* Footer hero polish: stronger alignment and a more lively branded block. */
.footer {
    background:
        linear-gradient(180deg, #F5FAF8 0, #EAF5F1 92px, #0B5B91 92px, #073D68 100%);
    border-top: 0;
    padding-top: 26px;
}

.footer-intro {
    align-items: center;
    background:
        radial-gradient(circle at 14% 20%, rgba(23, 151, 85, .34), transparent 24%),
        linear-gradient(135deg, #FFFFFF 0%, #F1FAF5 33%, #EAF4FF 100%);
    border: 1px solid #BFD5C9;
    border-left: 6px solid var(--fresh-green);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(6, 32, 62, .13);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(210px, 280px) minmax(0, 1fr) auto;
    margin-bottom: 18px;
    padding: clamp(22px, 3vw, 34px);
}

.footer-brand {
    align-items: start;
    gap: 10px;
}

.footer-brand img {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    max-height: 62px;
    max-width: 260px;
    object-fit: contain;
}

.footer-brand span,
.footer-eyebrow {
    color: #06203E;
    font-size: 12px;
    letter-spacing: .08em;
}

.footer-intro h2 {
    color: #06203E;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.04;
    margin: 0 0 10px;
    max-width: 780px;
}

.footer-intro p {
    color: #35526B;
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
}

.footer-cta {
    align-items: center;
    align-self: center;
    background: var(--fresh-blue-dark);
    border: 1px solid var(--fresh-blue-dark);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 35, 113, .18);
    color: #FFFFFF;
    display: inline-flex;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    white-space: nowrap;
}

.footer-cta .ui-icon {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #FFFFFF;
    height: 28px;
    width: 28px;
}

.footer-cta:hover {
    background: var(--fresh-green);
    border-color: var(--fresh-green);
    color: #FFFFFF;
}

.footer-trust {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 20px;
}

.footer-trust span {
    align-items: center;
    background:
        linear-gradient(135deg, #FFFFFF 0%, #F5FBF8 100%);
    border: 1px solid #BCD5C8;
    border-radius: 14px;
    box-shadow: 0 7px 18px rgba(6, 32, 62, .10);
    column-gap: 14px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 88px;
    padding: 16px 18px;
}

.footer-trust .ui-icon {
    align-items: center;
    background: #E8F7EF;
    border: 1px solid #BFE5CF;
    border-radius: 999px;
    color: var(--fresh-green);
    display: inline-flex;
    grid-row: span 2;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.footer-trust strong {
    color: #06203E;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.15;
}

.footer-trust small {
    color: #4A6278;
    font-size: 14px;
    line-height: 1.35;
}

.footer-main,
.footer-seo-directory {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .20);
    border-radius: 14px;
}

@media (max-width: 1080px) {
    .footer-intro {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        justify-self: start;
    }

    .footer-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 16px;
    }

    .footer-intro {
        border-left-width: 4px;
        gap: 18px;
        padding: 20px;
    }

    .footer-intro h2 {
        font-size: 30px;
    }

    .footer-brand img {
        max-width: 230px;
    }

    .footer-trust {
        grid-template-columns: 1fr;
    }
}

/* Premium navigation polish inspired by Stripe-like layered surfaces. */
.site-header {
    background:
        radial-gradient(circle at 18% 0%, rgba(23, 151, 85, .16), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(11, 91, 145, .18), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FBFF 100%);
    border-bottom: 1px solid #BFD0DF;
    box-shadow: 0 10px 28px rgba(6, 32, 62, .08);
}

.header-main {
    background: transparent;
}

.feed-menu {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(240, 247, 252, .86));
    border: 1px solid rgba(190, 211, 226, .94);
    border-radius: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 14px 34px rgba(6, 32, 62, .10);
    display: flex;
    gap: 8px;
    margin: 0 auto 12px;
    max-width: 1780px;
    padding: 12px 14px;
    position: relative;
}

.feed-menu::before {
    background:
        linear-gradient(90deg, rgba(23, 151, 85, .22), rgba(11, 91, 145, .20), transparent);
    border-radius: 999px;
    content: "";
    height: 3px;
    left: 22px;
    pointer-events: none;
    position: absolute;
    right: 22px;
    top: -1px;
}

.feed-menu::after {
    background: rgba(0, 35, 113, .12);
    content: "";
    height: 30px;
    margin-left: auto;
    order: 20;
    width: 1px;
}

.feed-menu > a,
.feed-menu summary {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(176, 198, 216, .88);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    color: #08233F;
    font-size: 15px;
    font-weight: 800;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
}

.feed-menu > a:nth-last-child(-n+3) {
    background: rgba(255, 255, 255, .54);
    border-color: rgba(0, 35, 113, .22);
}

.feed-menu > a:hover,
.feed-menu details[open] summary {
    background: #FFFFFF;
    border-color: #179755;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .95),
        0 8px 20px rgba(23, 151, 85, .16);
    color: #075733;
    transform: translateY(-1px);
}

.feed-menu > a.active,
.feed-menu > a:first-child {
    background:
        linear-gradient(135deg, #002371 0%, #0B5B91 100%);
    border-color: #002371;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .18),
        0 12px 24px rgba(0, 35, 113, .24);
    color: #FFFFFF;
}

.feed-menu .ui-icon {
    align-items: center;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(0, 35, 113, .14);
    border-radius: 999px;
    color: currentColor;
    display: inline-flex;
    height: 24px;
    justify-content: center;
    width: 24px;
}

.feed-menu > a.active .ui-icon,
.feed-menu > a:first-child .ui-icon {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .24);
    color: #FFFFFF;
}

.main-nav a {
    background: rgba(255, 255, 255, .72);
    border-color: rgba(176, 198, 216, .88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.main-nav a:hover {
    background: #FFFFFF;
    border-color: #179755;
    color: #075733;
}

.mobile-menu-toggle {
    background: #FFFFFF;
    border-color: #BFD0DF;
    box-shadow: 0 8px 20px rgba(6, 32, 62, .10);
}

@media (max-width: 980px) {
    .feed-menu {
        background:
            linear-gradient(180deg, #FFFFFF 0%, #F2F8F5 100%);
        border-radius: 18px;
        margin: 0;
        padding: 16px;
    }

    .feed-menu::before,
    .feed-menu::after {
        display: none;
    }

    .feed-menu > a,
    .feed-menu summary {
        border-radius: 12px;
        justify-content: flex-start;
        min-height: 48px;
        width: 100%;
    }

    .feed-menu > a:nth-last-child(-n+3) {
        background: #F7FBFF;
    }
}

/* Mobile guide overflow fix: keep keuzehulpen inside the viewport. */
.guides-index,
.guide-detail,
.home-guide-showcase,
.guide-index-hero,
.guide-hero,
.guide-content,
.guide-products,
.guide-related,
.guide-card,
.home-guide-grid a {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .guides-index,
    .guide-detail,
    .home-guide-showcase {
        overflow-x: clip;
        width: 100%;
    }

    .breadcrumbs,
    .section-head {
        align-items: flex-start;
        flex-wrap: wrap;
        min-width: 0;
    }

    .section-head > *,
    .guide-index-hero > *,
    .guide-hero > *,
    .guide-card > *,
    .home-guide-grid a > * {
        min-width: 0;
        max-width: 100%;
    }

    .home-guide-grid,
    .guide-card-grid,
    .guide-content,
    .guide-product-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100%;
    }

    .guide-hero {
        grid-template-columns: minmax(0, 1fr) !important;
        padding: 20px;
    }

    .guide-index-hero,
    .guide-content,
    .guide-products,
    .guide-related,
    .home-guide-showcase {
        padding-left: 16px;
        padding-right: 16px;
    }

    .guide-index-hero h1,
    .guide-hero h1 {
        font-size: 32px;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .guide-topic-nav,
    .guide-jump-nav {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        overflow: hidden;
        padding: 12px;
        position: relative;
        top: auto;
        width: 100%;
    }

    .guide-topic-nav div,
    .guide-jump-nav div {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .guide-topic-nav a,
    .guide-jump-nav a {
        flex: 0 0 auto;
        max-width: calc(100vw - 52px);
        white-space: nowrap;
    }

    .guide-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .guide-hero-actions a,
    .guide-featured-product a,
    .guide-card-link,
    .section-head > a {
        justify-content: center;
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        width: 100%;
    }

    .guide-featured-product {
        max-width: 100%;
        width: 100%;
    }

    .guide-featured-product img {
        max-width: 100%;
    }

    .guide-card-products {
        display: grid;
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
        overflow: hidden;
    }

    .guide-card-products img {
        height: 58px;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .home-guide-grid strong,
    .guide-card h2,
    .guide-card h2 a,
    .guide-card p {
        overflow-wrap: anywhere;
    }
}

/* Normal desktop menu: cleaner bar, no washed-out gradient, no second-row contact. */
@media (min-width: 981px) {
    .site-header {
        background: #FFFFFF;
        border-bottom: 1px solid #C8D7E4;
        box-shadow: 0 6px 18px rgba(6, 32, 62, .08);
    }

    .header-main {
        background: #FFFFFF;
        border-bottom: 1px solid #E0E8EF;
        grid-template-columns: 250px minmax(360px, 1fr) auto;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .brand-logo img {
        max-height: 56px;
        object-fit: contain;
    }

    .feed-menu {
        background: #FFFFFF;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        margin: 0 auto;
        max-width: 1780px;
        overflow: visible;
        padding: 10px clamp(16px, 3vw, 32px);
    }

    .feed-menu::before,
    .feed-menu::after {
        display: none;
    }

    .feed-menu .menu-fill {
        display: block;
        flex: 1 1 auto;
        min-width: 18px;
    }

    .feed-menu > a,
    .feed-menu summary {
        background: transparent;
        border: 1px solid transparent;
        border-radius: 8px;
        box-shadow: none;
        color: #0B223C;
        flex: 0 0 auto;
        font-size: 15px;
        font-weight: 800;
        gap: 7px;
        min-height: 40px;
        padding: 0 11px;
        white-space: nowrap;
    }

    .feed-menu details {
        flex: 0 0 auto;
    }

    .feed-menu > a.menu-feature {
        background: #F3F8F6;
        border-color: #BFD8CA;
        color: #083D29;
    }

    .feed-menu > a.menu-soft,
    .feed-menu > a.menu-contact,
    .feed-menu > a:nth-last-child(-n+3) {
        background: #F7FAFD;
        border-color: #CEDCE8;
        color: #0B223C;
    }

    .feed-menu > a:hover,
    .feed-menu summary:hover,
    .feed-menu details[open] summary {
        background: #EDF7F2;
        border-color: #179755;
        box-shadow: none;
        color: #075733;
        transform: none;
    }

    .feed-menu > a.active,
    .feed-menu > a:first-child {
        background: #002371;
        border-color: #002371;
        box-shadow: 0 6px 14px rgba(0, 35, 113, .20);
        color: #FFFFFF;
    }

    .feed-menu .ui-icon {
        background: transparent;
        border: 0;
        height: 18px;
        width: 18px;
    }

    .feed-menu > a.active .ui-icon,
    .feed-menu > a:first-child .ui-icon {
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
        height: 24px;
        width: 24px;
    }

    .mega-panel {
        border-color: #C8D7E4;
        box-shadow: 0 18px 38px rgba(6, 32, 62, .16);
    }

    .top-search {
        border-color: #B9CAD9;
        box-shadow: 0 2px 8px rgba(6, 32, 62, .06);
    }

    .top-search button {
        background: #0B5B91;
        border-color: #0B5B91;
    }

    .top-search button:hover {
        background: #179755;
        border-color: #179755;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .feed-menu {
        gap: 4px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .feed-menu > a,
    .feed-menu summary {
        font-size: 14px;
        min-height: 38px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .feed-menu .ui-icon {
        display: none;
    }
}

/* Listing breakpoint repair: prevent filters from pushing products off-screen. */
.listing-layout,
.listing-results,
.results,
.filters {
    min-width: 0;
}

@media (max-width: 1180px) {
    .listing-layout {
        display: grid;
        gap: 18px;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100%;
    }

    .filters {
        position: static;
        top: auto;
        width: 100%;
    }

    .filter-head {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

    .filter-toggle {
        display: inline-flex;
    }

    .filters:not(.is-open) {
        padding-bottom: 0;
    }

    .filters:not(.is-open) form > section,
    .filters:not(.is-open) form > button[type="submit"] {
        display: none;
    }

    .filters.is-open form {
        display: block;
    }

    .listing-results {
        border-radius: 14px;
        overflow: visible;
        padding: 14px;
        width: 100%;
    }

    .results {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100%;
    }
}

@media (max-width: 860px) {
    .category-tabs,
    .sort-links,
    .pagination {
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .category-tabs a,
    .sort-links a,
    .pagination a,
    .pagination span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .results {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .page-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .compare-intro,
    .listing-heading {
        border-left-width: 4px;
        padding: 18px;
    }

    .listing-heading h1,
    .compare-intro h1 {
        font-size: 30px;
        line-height: 1.08;
    }

    .results {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .results .product-card {
        grid-template-rows: 180px minmax(104px, auto) auto;
        min-height: 0;
    }

    .results .product-image,
    .results .product-image img {
        height: 180px;
        min-height: 180px;
    }

    .filters label {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }
}

/* Flat footer reset: no gradients and correct icon circles. */
.footer {
    background: #0E5A89;
    border-top: 0;
    color: #FFFFFF;
    padding-top: 26px;
}

.footer-intro {
    background: #FFFFFF;
    border: 1px solid #BFD0DF;
    border-left: 5px solid #179755;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .12);
}

.footer-trust span {
    background: #FFFFFF;
    border: 1px solid #BFD0DF;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(6, 32, 62, .10);
    grid-template-columns: 38px minmax(0, 1fr);
}

.footer-trust .ui-icon {
    align-items: center;
    background: #E9F7EF;
    border: 1px solid #B9E3CB;
    border-radius: 999px;
    color: #179755;
    display: inline-flex;
    flex: 0 0 38px;
    height: 38px;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    padding: 0;
    width: 38px;
}

.footer-trust .ui-icon svg {
    display: block;
    height: 18px;
    width: 18px;
}

.footer-cta .ui-icon {
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: #FFFFFF;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    min-height: 28px;
    min-width: 28px;
    padding: 0;
    width: 28px;
}

.footer-cta .ui-icon svg {
    height: 15px;
    width: 15px;
}

.footer-main,
.footer-seo-directory {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 12px;
}

.footer-seo-grid nav {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
}

.footer h3,
.footer-seo-head h2,
.footer-seo-grid h3 {
    color: #FFFFFF;
}

.footer a,
.footer-seo-grid a {
    color: rgba(255, 255, 255, .92);
}

.footer a:hover,
.footer-seo-grid a:hover {
    color: #A7F3C1;
}

@media (max-width: 640px) {
    .footer {
        padding-top: 16px;
    }

    .footer-trust span {
        grid-template-columns: 38px minmax(0, 1fr);
    }
}

/* Pagination alignment polish. */
.pagination {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(6, 32, 62, .08);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin: 22px 0 8px;
    overflow: visible;
    padding: 14px 16px;
}

.pagination-top {
    margin-top: 0;
}

.pagination-status {
    align-items: start;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    flex: 0 0 auto;
    gap: 3px;
    min-width: 170px;
    padding: 0;
}

.pagination-status strong,
.pagination-status span {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #06203E;
    display: block;
    min-height: 0;
    min-width: 0;
    padding: 0;
}

.pagination-status strong {
    font-size: 14px;
    font-weight: 850;
}

.pagination-status span {
    color: #536579;
    font-size: 13px;
    font-weight: 650;
}

.pagination-links {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
    min-width: 0;
}

.pagination a,
.pagination .pagination-links span {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-radius: 8px;
    color: #06203E;
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 40px;
    min-width: 42px;
    padding: 0 13px;
    text-decoration: none;
}

.pagination a:hover {
    background: #E9F7EF;
    border-color: #179755;
    color: #075733;
}

.pagination .is-current {
    background: #002371;
    border-color: #002371;
    color: #FFFFFF;
}

.pagination .is-disabled {
    background: #F5F7FA;
    color: #8C9BAA;
}

.pagination .pagination-dots {
    background: transparent;
    border-color: transparent;
    min-width: 20px;
    padding-left: 0;
    padding-right: 0;
}

.pagination-step {
    min-width: 96px;
}

@media (max-width: 760px) {
    .pagination {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin: 16px 0 8px;
        overflow: visible;
    }

    .pagination-status {
        min-width: 0;
        text-align: left;
    }

    .pagination-links {
        justify-content: flex-start;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .pagination a,
    .pagination .pagination-links span {
        flex: 0 0 auto;
    }
}

/* Listing header makeover: cleaner category hero and result toolbar. */
.compare-intro {
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-left: 0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .08);
    margin-bottom: 16px;
    overflow: hidden;
    padding: clamp(20px, 3vw, 30px);
    position: relative;
}

.compare-intro::before {
    background: #179755;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.compare-intro .breadcrumbs {
    background: #F7FAFD;
    border: 1px solid #D6E3EE;
    box-shadow: none;
    margin-bottom: 22px;
    padding: 6px;
    width: fit-content;
}

.compare-intro .breadcrumbs a,
.compare-intro .breadcrumbs strong {
    background: #FFFFFF;
    border: 1px solid #D6E3EE;
    border-radius: 999px;
    color: #06203E;
    font-size: 13px;
    min-height: 34px;
    padding: 0 12px;
}

.compare-intro h1 {
    color: #06203E;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 0;
    line-height: 1.05;
    margin: 0 0 14px;
    max-width: 1050px;
}

.compare-intro p {
    color: #42566B;
    font-size: 16px;
    line-height: 1.55;
    max-width: 1080px;
}

.category-tabs {
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(6, 32, 62, .06);
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px;
}

.category-tabs a {
    background: #F7FAFD;
    border: 1px solid #D0DEEA;
    border-radius: 9px;
    color: #06203E;
    font-weight: 800;
    min-height: 42px;
    padding: 0 13px;
}

.category-tabs a:hover {
    background: #E9F7EF;
    border-color: #179755;
    color: #075733;
}

.category-tabs a.active {
    background: #002371;
    border-color: #002371;
    color: #FFFFFF;
}

.category-tabs span {
    color: #002371;
    font-weight: 900;
}

.category-tabs a.active span {
    color: #FFFFFF;
}

.listing-heading {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-left: 0;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .08);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 18px;
    overflow: hidden;
    padding: 22px 24px;
    position: relative;
}

.listing-heading::before {
    background: #179755;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    width: 4px;
}

.listing-heading .eyebrow {
    color: #0B5B91;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.listing-heading h1,
.listing-heading h2 {
    color: #06203E;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    margin: 0 0 10px;
}

.listing-heading p {
    color: #536579;
    font-size: 15px;
    margin: 0;
}

.sort-box {
    align-items: end;
    display: grid;
    gap: 8px;
    justify-items: end;
    min-width: 0;
}

.sort-box > span {
    color: #536579;
    font-size: 13px;
    font-weight: 700;
}

.sort-links {
    background: #F7FAFD;
    border: 1px solid #D0DEEA;
    border-radius: 10px;
    display: flex;
    gap: 6px;
    padding: 5px;
}

.sort-links a {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #06203E;
    font-weight: 800;
    min-height: 38px;
    padding: 0 13px;
}

.sort-links a:hover {
    background: #FFFFFF;
    border-color: #BFD0DF;
    color: #075733;
}

.sort-links a.active {
    background: #002371;
    border-color: #002371;
    color: #FFFFFF;
}

@media (max-width: 860px) {
    .compare-intro,
    .listing-heading {
        border-radius: 12px;
        padding: 18px;
    }

    .listing-heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .sort-box {
        align-items: start;
        justify-items: start;
        width: 100%;
    }

    .sort-links {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .category-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Final alignment harmony: one grid, one rhythm, no runaway hero/header pieces. */
:root {
    --layout-max: 1780px;
    --layout-gutter: clamp(18px, 3vw, 44px);
    --ui-border: #C8D7E4;
    --ui-border-soft: #DCE7F0;
    --ui-ink: #06203E;
    --ui-muted: #536579;
    --ui-blue: #002371;
    --ui-green: #179755;
    --ui-surface: #FFFFFF;
    --ui-page: #F3F8FA;
}

body {
    background: var(--ui-page);
}

.header-main,
.feed-menu,
.page-shell,
.detail-layout,
.admin-shell {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--layout-max);
    padding-left: var(--layout-gutter);
    padding-right: var(--layout-gutter);
    width: 100%;
}

.site-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--ui-border);
    box-shadow: 0 3px 14px rgba(6, 32, 62, .08);
}

.header-main {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 230px minmax(360px, 1fr) auto;
    min-height: 82px;
    padding-bottom: 12px;
    padding-top: 12px;
}

.brand,
.brand-logo {
    align-items: center;
    display: flex;
    min-width: 0;
}

.brand-logo {
    height: 54px;
    justify-content: flex-start;
    width: 230px;
}

.brand-logo img,
.logo img {
    height: auto;
    max-height: 54px;
    max-width: 230px;
    object-fit: contain;
    width: auto;
}

.top-search {
    align-self: center;
    border: 2px solid #B8CADB;
    border-radius: 10px;
    box-shadow: none;
    height: 52px;
    max-width: none;
    min-width: 0;
    width: 100%;
}

.top-search input {
    min-width: 0;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    white-space: nowrap;
}

.main-nav a {
    border-radius: 8px;
    min-height: 42px;
    padding: 0 13px;
}

.feed-menu {
    align-items: center;
    background: #FFFFFF;
    border-top: 1px solid #E1EAF2;
    box-shadow: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 58px;
    overflow: visible;
    padding-bottom: 9px;
    padding-top: 9px;
}

.feed-menu::before,
.feed-menu::after {
    display: none !important;
}

.feed-menu > a,
.feed-menu summary {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: none;
    color: var(--ui-ink);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 7px;
    min-height: 40px;
    padding: 0 10px;
    white-space: nowrap;
}

.feed-menu > a.menu-soft,
.feed-menu > a.menu-contact {
    background: #F7FAFD;
    border-color: #D2DFEA;
}

.feed-menu > a.active,
.feed-menu > a:first-child {
    background: var(--ui-blue);
    border-color: var(--ui-blue);
    box-shadow: 0 6px 14px rgba(0, 35, 113, .18);
    color: #FFFFFF;
}

.feed-menu > a:hover,
.feed-menu summary:hover,
.feed-menu details[open] summary {
    background: #E9F7EF;
    border-color: var(--ui-green);
    color: #075733;
}

.feed-menu .ui-icon {
    align-items: center;
    background: transparent;
    border: 0;
    color: currentColor;
    display: inline-flex;
    height: 18px;
    justify-content: center;
    min-height: 18px;
    min-width: 18px;
    padding: 0;
    width: 18px;
}

.feed-menu .ui-icon svg {
    height: 15px;
    width: 15px;
}

.feed-menu > a.active .ui-icon,
.feed-menu > a:first-child .ui-icon {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    height: 24px;
    min-height: 24px;
    min-width: 24px;
    width: 24px;
}

.page-shell {
    padding-bottom: 44px;
    padding-top: 24px;
}

.home-hero,
.compare-intro,
.listing-heading,
.category-tabs,
.filters,
.listing-results {
    border-color: var(--ui-border);
}

.home-hero {
    background: #FFFFFF;
    border: 1px solid var(--ui-border);
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .08);
    min-height: 0;
}

.home-hero-inner {
    align-items: center;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    min-height: 0;
    padding: clamp(28px, 4vw, 44px);
}

.home-hero-copy {
    align-self: center;
    max-width: 760px;
    min-width: 0;
}

.home-hero h1 {
    font-size: clamp(34px, 3.8vw, 50px);
    line-height: 1.07;
    margin-bottom: 16px;
}

.home-hero p {
    max-width: 700px;
}

.home-hero-visual-card {
    align-self: center;
    max-width: 520px;
    min-width: 0;
    width: 100%;
}

.home-hero-mosaic {
    min-height: 210px;
}

.home-hero-mosaic .hero-mosaic-main {
    min-height: 210px;
}

.home-hero-mosaic figure.is-loading::after,
.home-hero-mosaic figure.is-loading::before {
    display: none !important;
}

.home-hero-mosaic figure.is-loading img {
    opacity: 1 !important;
}

.breadcrumbs {
    align-items: center;
    display: inline-flex;
    max-width: 100%;
    min-width: 0;
}

.compare-intro {
    border-left: 0;
    padding: clamp(20px, 3vw, 30px);
}

.compare-intro::before,
.listing-heading::before {
    background: var(--ui-green);
}

.category-tabs {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
}

.category-tabs a {
    align-items: center;
    display: inline-flex;
    min-height: 40px;
}

.listing-heading {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
}

.listing-layout {
    align-items: start;
}

.filters {
    border-radius: 0;
    overflow: hidden;
}

.filter-head {
    min-height: 60px;
    padding: 0 18px;
}

.filters label {
    gap: 10px;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    min-width: 0;
    padding-right: 2px;
}

.filters label span,
.filters label em {
    min-width: 0;
}

.filters em {
    justify-self: end;
}

@media (min-width: 1181px) and (max-width: 1500px) {
    .header-main {
        grid-template-columns: 220px minmax(300px, 1fr) auto;
        gap: 16px;
    }

    .brand-logo,
    .brand-logo img,
    .logo img {
        max-width: 220px;
    }

    .feed-menu {
        gap: 5px;
    }

    .feed-menu > a,
    .feed-menu summary {
        font-size: 13px;
        padding: 0 8px;
    }

    .feed-menu .ui-icon {
        display: none;
    }
}

@media (max-width: 1180px) {
    .header-main {
        grid-template-columns: 220px minmax(0, 1fr) auto;
    }

    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-hero-visual-card {
        max-width: none;
    }
}

@media (max-width: 980px) {
    .site-header {
        position: sticky;
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 0;
    }

    .brand-logo {
        width: 220px;
    }

    .top-search {
        grid-column: 1 / -1;
        height: auto;
        min-height: 48px;
        order: 3;
    }

    .main-nav {
        display: none;
    }

    .feed-menu {
        align-items: stretch;
        border-radius: 14px;
        display: none;
        flex-wrap: nowrap;
        gap: 8px;
        min-height: 0;
        padding: 14px;
    }

    .site-header.menu-open .feed-menu {
        display: grid;
    }

    .feed-menu > a,
    .feed-menu summary {
        background: #FFFFFF;
        border: 1px solid #D2DFEA;
        justify-content: flex-start;
        width: 100%;
    }

    .listing-heading {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .header-main,
    .feed-menu,
    .page-shell,
    .detail-layout,
    .admin-shell {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-logo,
    .brand-logo img,
    .logo img {
        max-width: 210px;
    }

    .home-hero-inner {
        padding: 22px;
    }

    .home-hero h1 {
        font-size: 31px;
    }

    .home-hero-mosaic {
        min-height: 170px;
    }

    .home-hero-mosaic .hero-mosaic-main {
        min-height: 170px;
    }
}

/* Compact home hero: no duplicate search, no stuck hero image loader. */
.home-hero {
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .08);
    margin-bottom: 18px;
    overflow: hidden;
}

.home-hero-inner {
    align-items: center;
    gap: clamp(22px, 3vw, 38px);
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .75fr);
    padding: clamp(28px, 4vw, 46px);
}

.home-hero-copy {
    max-width: 820px;
}

.home-hero h1 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    margin-bottom: 16px;
}

.home-hero p {
    font-size: 18px;
    line-height: 1.55;
    max-width: 760px;
}

.home-search {
    display: none !important;
}

.home-quicklinks {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.home-quicklinks span {
    color: #536579;
    font-size: 14px;
    font-weight: 850;
}

.home-quicklinks a {
    background: #F7FAFD;
    border: 1px solid #C8D7E4;
    border-radius: 999px;
    color: #06203E;
    font-size: 14px;
    font-weight: 800;
    min-height: 36px;
    padding: 0 13px;
}

.home-quicklinks a:hover {
    background: #E9F7EF;
    border-color: #179755;
    color: #075733;
}

.home-hero-points {
    gap: 8px;
    margin-top: 18px;
}

.home-hero-points span {
    background: #FFFFFF;
    border: 1px solid #D6E3EE;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(6, 32, 62, .04);
    min-height: 38px;
}

.home-hero-visual-card {
    border: 1px solid #C8D7E4;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .08);
    padding: 18px;
}

.home-hero-mosaic {
    gap: 8px;
    grid-template-columns: 1.05fr .95fr;
    margin-bottom: 14px;
    min-height: 220px;
}

.home-hero-mosaic figure {
    border: 1px solid #D6E3EE;
    border-radius: 12px;
    box-shadow: none;
}

.home-hero-mosaic .hero-mosaic-main {
    min-height: 220px;
}

.home-hero-mosaic figure.is-loading::after {
    display: none !important;
}

.home-hero-mosaic figure.is-loading img {
    opacity: 1;
}

.hero-mosaic-stat {
    border-radius: 0 16px 16px 0;
    bottom: 14px;
    left: 14px;
    padding: 10px 14px;
}

.home-visual-copy h2 {
    font-size: 20px;
    margin-bottom: 6px;
}

.home-visual-copy p {
    font-size: 14px;
    line-height: 1.5;
}

.choice-list {
    gap: 7px;
}

.choice-list a {
    border-radius: 8px;
    min-height: 46px;
    padding: 8px 10px;
}

.choice-list a .ui-icon {
    height: 30px;
    width: 30px;
}

.choice-note {
    margin-top: 10px;
    padding: 10px 12px;
}

@media (max-width: 980px) {
    .home-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding: 24px;
    }

    .home-hero-visual-card {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .home-hero h1 {
        font-size: 32px;
    }

    .home-hero p {
        font-size: 16px;
    }

    .home-hero-mosaic {
        grid-template-columns: 1fr 1fr;
        min-height: 180px;
    }

    .home-hero-mosaic .hero-mosaic-main {
        grid-column: 1 / -1;
        min-height: 170px;
    }
}

/* Final listing cleanup: calm category pages, no broken green strips. */
.page-shell {
    background: #F3F7FA;
}

.compare-intro,
.listing-heading,
.category-tabs,
.filters,
.listing-results {
    border: 1px solid #C8D7E4;
    box-shadow: 0 8px 22px rgba(6, 32, 62, .07);
}

.compare-intro,
.listing-heading {
    background: #FFFFFF !important;
    border-left: 1px solid #C8D7E4 !important;
    border-radius: 14px !important;
    margin-bottom: 18px;
    min-height: 0 !important;
    overflow: hidden;
    padding: 24px 28px !important;
}

.compare-intro::before,
.compare-intro::after,
.listing-heading::before,
.listing-heading::after {
    display: none !important;
}

.compare-intro .breadcrumbs,
.listing-heading .breadcrumbs {
    margin: 0 0 18px;
}

.compare-intro h1,
.listing-heading h1,
.listing-heading h2 {
    color: #06203E;
    font-size: clamp(30px, 3vw, 42px) !important;
    letter-spacing: 0;
    line-height: 1.1;
    margin: 0 0 12px;
    max-width: 1040px;
    overflow-wrap: anywhere;
}

.compare-intro p,
.listing-heading p {
    color: #40566E;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
    max-width: 1120px !important;
}

.category-tabs {
    background: #FFFFFF !important;
    border-radius: 12px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 18px;
    padding: 10px !important;
}

.category-tabs a {
    background: #FFFFFF !important;
    border: 1px solid #BFD0DE !important;
    border-radius: 8px !important;
    color: #06203E !important;
    font-weight: 800;
    min-height: 40px;
    padding: 0 13px !important;
}

.category-tabs a:hover {
    background: #EDF6F1 !important;
    border-color: #169B5B !important;
    color: #06203E !important;
}

.category-tabs a.active {
    background: #002371 !important;
    border-color: #002371 !important;
    color: #FFFFFF !important;
}

.category-tabs a.active span {
    color: #FFFFFF !important;
}

.listing-heading {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto !important;
}

.listing-layout {
    align-items: start !important;
    display: grid !important;
    gap: 24px !important;
    grid-template-columns: 260px minmax(0, 1fr) !important;
    margin-top: 0;
    min-width: 0;
}

.filters {
    background: #FFFFFF !important;
    border-radius: 12px !important;
    overflow: hidden;
    position: sticky;
    top: 148px;
}

.filter-head {
    background: #0E5A89 !important;
    border-bottom: 0 !important;
    color: #FFFFFF !important;
    min-height: 56px !important;
    padding: 0 16px !important;
}

.filter-head::before,
.filter-head::after {
    display: none !important;
}

.filter-head strong,
.filter-head span,
.filter-head a {
    color: #FFFFFF !important;
}

.filters section {
    background: #FFFFFF;
    border-top: 1px solid #E1EAF2;
    margin: 0 !important;
    padding: 16px !important;
}

.filters section:first-of-type {
    border-top: 0;
}

.filters h3 {
    align-items: center;
    color: #06203E;
    display: flex;
    font-size: 15px !important;
    justify-content: space-between;
    line-height: 1.3;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.filters h3::after {
    background: none !important;
    border-color: #06203E;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: static !important;
    transform: rotate(-135deg);
    width: 8px;
}

.filters label {
    align-items: center;
    color: #40566E;
    display: grid;
    font-size: 14px;
    gap: 10px;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    min-height: 34px;
    min-width: 0;
    padding: 0 !important;
}

.filters label span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filters em {
    color: #617286;
    font-size: 13px;
    justify-self: end;
    min-width: 0;
}

.listing-results {
    background: #F7FAFC !important;
    border-radius: 12px !important;
    min-width: 0;
    overflow: hidden;
    padding: 18px !important;
}

.listing-results > .results {
    min-width: 0;
}

.listing-results .pagination-bar {
    background: #FFFFFF;
    border-color: #C8D7E4;
    box-shadow: 0 5px 14px rgba(6, 32, 62, .05);
}

@media (max-width: 1280px) {
    .listing-layout {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .filters {
        position: static !important;
        top: auto !important;
        width: 100%;
    }
}

@media (max-width: 980px) {
    .compare-intro,
    .listing-heading {
        padding: 20px !important;
    }

    .listing-heading {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .category-tabs a {
        flex: 0 0 auto;
    }

    .listing-results {
        padding: 14px !important;
    }
}

@media (max-width: 640px) {
    .compare-intro,
    .listing-heading {
        border-radius: 10px !important;
        padding: 16px !important;
    }

    .compare-intro h1,
    .listing-heading h1,
    .listing-heading h2 {
        font-size: 28px !important;
    }

    .filters,
    .listing-results,
    .category-tabs {
        border-radius: 10px !important;
    }
}

/* Mobile header QA fix: make the menu button visible and intentional. */
.mobile-menu-toggle {
    color: #002371 !important;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    background: #002371 !important;
}

.site-header.menu-open .mobile-menu-toggle {
    background: #002371 !important;
    border-color: #002371 !important;
    color: #FFFFFF !important;
}

.site-header.menu-open .mobile-menu-toggle span {
    background: transparent !important;
}

.site-header.menu-open .mobile-menu-toggle span::before,
.site-header.menu-open .mobile-menu-toggle span::after {
    background: #FFFFFF !important;
}

@media (max-width: 980px) {
    .mobile-menu-toggle {
        align-items: center !important;
        display: inline-flex !important;
        font-size: 13px;
        justify-content: center;
        line-height: 1;
        min-width: 92px;
        white-space: nowrap;
    }
}

@media (max-width: 430px) {
    .mobile-menu-toggle {
        min-width: 86px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Home hero v2: rebuilt as one complete premium banner. */
.home-hero-v2 {
    background: #FFFFFF !important;
    border: 1px solid #C8D7E4 !important;
    border-radius: 18px !important;
    box-shadow: 0 14px 34px rgba(6, 32, 62, .10) !important;
    margin-bottom: 22px !important;
    overflow: hidden;
    padding: 0 !important;
}

.home-hero-v2::before,
.home-hero-v2::after {
    display: none !important;
}

.hero-v2-main {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, .92fr) minmax(460px, .68fr);
    min-height: 500px;
}

.hero-v2-copy {
    align-content: center;
    background:
        radial-gradient(circle at 0% 0%, rgba(23, 151, 85, .10), transparent 34%),
        linear-gradient(135deg, #FFFFFF 0%, #F7FAFD 100%);
    border-right: 1px solid #D7E4EE;
    display: grid;
    padding: clamp(44px, 5vw, 76px);
}

.hero-v2-copy .eyebrow {
    color: #176B43;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.hero-v2-copy h1 {
    color: #06203E;
    font-size: clamp(42px, 4.8vw, 68px) !important;
    letter-spacing: 0;
    line-height: 1.03;
    margin: 0;
    max-width: 870px;
}

.hero-v2-copy > p:not(.eyebrow) {
    color: #43586F;
    font-size: 18px;
    line-height: 1.65;
    margin: 22px 0 0;
    max-width: 760px;
}

.hero-v2-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-v2-actions a {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 900;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
}

.hero-v2-actions .primary-action {
    background: #0F9654;
    border: 1px solid #0F9654;
    box-shadow: 0 10px 18px rgba(15, 150, 84, .20);
    color: #FFFFFF;
}

.hero-v2-actions .primary-action:hover {
    background: #0C7E47;
    border-color: #0C7E47;
    color: #FFFFFF;
}

.hero-v2-actions .secondary-action {
    background: #FFFFFF;
    border: 1px solid #BFD0DE;
    color: #002371;
}

.hero-v2-actions .secondary-action:hover {
    background: #EEF6FB;
    border-color: #0E5A89;
    color: #002371;
}

.hero-v2-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-v2-proof span {
    background: #FFFFFF;
    border: 1px solid #D6E3EE;
    border-radius: 12px;
    color: #536579;
    font-size: 14px;
    min-height: 44px;
    padding: 9px 13px;
}

.hero-v2-proof strong {
    color: #06203E;
    font-size: 18px;
    margin-right: 4px;
}

.hero-v2-visual {
    background: #0E5A89;
    display: grid;
    gap: 12px;
    grid-template-columns: 1.18fr .82fr;
    min-height: 500px;
    padding: 16px;
    position: relative;
}

.hero-v2-visual::before {
    background: linear-gradient(180deg, rgba(0, 35, 113, 0), rgba(0, 35, 113, .20));
    border-radius: 14px;
    content: "";
    inset: 16px;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.hero-v2-visual img {
    background: #EFF5F9;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(6, 32, 62, .18);
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-v2-photo-main {
    min-height: 468px;
}

.hero-v2-photo-stack {
    display: grid;
    gap: 12px;
    grid-template-rows: 1fr 1fr;
    min-height: 0;
}

.hero-v2-highlight {
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #C8D7E4;
    border-radius: 14px;
    bottom: 30px;
    box-shadow: 0 16px 30px rgba(6, 32, 62, .20);
    color: #06203E;
    display: flex;
    gap: 12px;
    left: 30px;
    max-width: min(420px, calc(100% - 60px));
    padding: 14px 16px;
    position: absolute;
    z-index: 3;
}

.hero-v2-highlight .ui-icon {
    background: #E9F7EF;
    border: 1px solid #BEE7CE;
    color: #0F9654;
    flex: 0 0 auto;
    height: 42px;
    width: 42px;
}

.hero-v2-highlight strong,
.hero-v2-highlight small {
    display: block;
}

.hero-v2-highlight strong {
    font-size: 15px;
    margin-bottom: 3px;
}

.hero-v2-highlight small {
    color: #536579;
    font-size: 13px;
    line-height: 1.35;
}

.hero-v2-category-row {
    background: #F7FAFC;
    border-top: 1px solid #D7E4EE;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-v2-category-row a {
    align-items: center;
    background: #FFFFFF;
    color: #06203E;
    display: grid;
    gap: 4px 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 92px;
    padding: 16px;
}

.hero-v2-category-row a:hover {
    background: #F1F8F4;
    color: #06203E;
}

.hero-v2-category-row .ui-icon {
    background: #EDF6FB;
    border: 1px solid #C8D7E4;
    color: #002371;
    grid-row: span 2;
    height: 42px;
    width: 42px;
}

.hero-v2-category-row span {
    font-weight: 900;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-v2-category-row small {
    color: #617286;
    font-size: 13px;
}

.hero-v2-visual.image-unavailable,
.hero-v2-photo-stack.image-unavailable {
    background: #EEF6FB;
}

.hero-v2-visual.image-unavailable img,
.hero-v2-photo-stack.image-unavailable img {
    opacity: .18;
}

@media (max-width: 1180px) {
    .hero-v2-main {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-v2-copy {
        border-right: 0;
        border-bottom: 1px solid #D7E4EE;
    }

    .hero-v2-visual {
        min-height: 360px;
    }

    .hero-v2-photo-main {
        min-height: 330px;
    }

    .hero-v2-category-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .home-hero-v2 {
        border-radius: 12px !important;
    }

    .hero-v2-copy {
        padding: 26px 22px 24px;
    }

    .hero-v2-copy h1 {
        font-size: 36px !important;
    }

    .hero-v2-copy > p:not(.eyebrow) {
        font-size: 16px;
        margin-top: 16px;
    }

    .hero-v2-actions {
        margin-top: 22px;
    }

    .hero-v2-actions a {
        justify-content: center;
        width: 100%;
    }

    .hero-v2-visual {
        gap: 8px;
        grid-template-columns: 1fr 1fr;
        min-height: 330px;
        padding: 12px;
    }

    .hero-v2-visual::before {
        inset: 12px;
    }

    .hero-v2-photo-main {
        grid-column: 1 / -1;
        min-height: 190px;
    }

    .hero-v2-photo-stack {
        display: contents;
    }

    .hero-v2-photo-stack img {
        min-height: 118px;
    }

    .hero-v2-highlight {
        bottom: 22px;
        left: 22px;
        max-width: calc(100% - 44px);
        padding: 12px;
    }

    .hero-v2-category-row {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 10px;
        scrollbar-width: thin;
    }

    .hero-v2-category-row a {
        border: 1px solid #C8D7E4;
        border-radius: 10px;
        flex: 0 0 230px;
        min-height: 78px;
    }
}

@media (max-width: 430px) {
    .hero-v2-copy h1 {
        font-size: 32px !important;
    }

    .hero-v2-proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-v2-highlight {
        position: static;
        grid-column: 1 / -1;
        max-width: none;
    }
}

/* Home hero v2 refinement: one strong visual, less height, no fragile photo stack. */
.hero-v2-main {
    grid-template-columns: minmax(0, .98fr) minmax(420px, .62fr) !important;
    min-height: 440px !important;
}

.hero-v2-copy {
    padding: clamp(38px, 4.2vw, 58px) !important;
}

.hero-v2-copy h1 {
    font-size: clamp(40px, 4.1vw, 58px) !important;
    max-width: 780px;
}

.hero-v2-visual {
    display: block !important;
    min-height: 440px !important;
    padding: 0 !important;
}

.hero-v2-visual::before {
    background: linear-gradient(180deg, rgba(6, 32, 62, .02), rgba(6, 32, 62, .38)) !important;
    border-radius: 0 !important;
    inset: 0 !important;
}

.hero-v2-photo-main {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: 100% !important;
    min-height: 440px !important;
}

.hero-v2-photo-stack {
    display: none !important;
}

.hero-v2-floating {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(200, 215, 228, .9);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(6, 32, 62, .16);
    color: #06203E;
    display: grid;
    gap: 2px 11px;
    grid-template-columns: 40px minmax(0, 1fr);
    min-width: 230px;
    padding: 13px 14px;
    position: absolute;
    z-index: 3;
}

.hero-v2-floating .ui-icon {
    background: #EDF6FB;
    border: 1px solid #C8D7E4;
    color: #002371;
    grid-row: span 2;
    height: 40px;
    width: 40px;
}

.hero-v2-floating strong {
    font-size: 15px;
    font-weight: 900;
}

.hero-v2-floating small {
    color: #536579;
    font-size: 13px;
}

.hero-v2-floating-top {
    right: 24px;
    top: 24px;
}

.hero-v2-floating-side {
    right: 24px;
    top: 112px;
}

.hero-v2-highlight {
    bottom: 24px !important;
    left: 24px !important;
}

@media (max-width: 1180px) {
    .hero-v2-main {
        grid-template-columns: minmax(0, 1fr) !important;
        min-height: 0 !important;
    }

    .hero-v2-visual,
    .hero-v2-photo-main {
        min-height: 320px !important;
    }
}

@media (max-width: 760px) {
    .hero-v2-copy {
        padding: 26px 22px !important;
    }

    .hero-v2-copy h1 {
        font-size: 34px !important;
    }

    .hero-v2-visual {
        min-height: 260px !important;
    }

    .hero-v2-photo-main {
        min-height: 260px !important;
    }

    .hero-v2-floating {
        display: none !important;
    }

    .hero-v2-highlight {
        bottom: 14px !important;
        left: 14px !important;
        max-width: calc(100% - 28px) !important;
        position: absolute !important;
    }
}

@media (max-width: 430px) {
    .hero-v2-copy h1 {
        font-size: 30px !important;
    }

    .hero-v2-copy > p:not(.eyebrow) {
        line-height: 1.55;
    }

    .hero-v2-proof {
        display: none !important;
    }
}

/* Header and CTA harmony: one type rhythm, one icon system, calmer buttons. */
body,
button,
input,
select,
textarea {
    font-family: Calibri, Arial, sans-serif !important;
}

.site-header {
    background: #FFFFFF !important;
    border-bottom: 1px solid #D7E4EE !important;
    box-shadow: 0 6px 18px rgba(6, 32, 62, .06) !important;
}

.header-main {
    align-items: center !important;
    gap: 18px !important;
}

.brand-logo img,
.logo img {
    height: auto !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

.top-search {
    background: #FFFFFF !important;
    border: 2px solid #B7C9DA !important;
    border-radius: 10px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), 0 3px 10px rgba(6, 32, 62, .05) !important;
    height: 52px !important;
}

.top-search:focus-within {
    border-color: #0E5A89 !important;
    box-shadow: 0 0 0 3px rgba(14, 90, 137, .12), 0 4px 14px rgba(6, 32, 62, .08) !important;
}

.top-search input {
    color: #06203E !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

.top-search button {
    background: #0E5A89 !important;
    border: 1px solid #0E5A89 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    height: 40px !important;
    min-width: 86px !important;
}

.top-search button:hover {
    background: #0B4C75 !important;
    border-color: #0B4C75 !important;
}

.main-nav,
.feed-menu {
    font-family: Calibri, Arial, sans-serif !important;
}

.feed-menu {
    align-items: center !important;
    flex-wrap: wrap !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
}

.feed-menu .menu-fill {
    flex: 1 1 20px !important;
    min-width: 12px !important;
}

.main-nav a,
.feed-menu > a,
.feed-menu summary {
    align-items: center !important;
    border-radius: 9px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    gap: 8px !important;
    height: 42px !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    padding: 0 13px !important;
    white-space: nowrap !important;
}

.main-nav a {
    background: #F8FBFD !important;
    border: 1px solid #C6D6E5 !important;
    color: #06203E !important;
    box-shadow: none !important;
}

.main-nav a:hover,
.feed-menu > a:hover,
.feed-menu summary:hover,
.feed-menu details[open] summary {
    background: #EEF6FB !important;
    border-color: #0E5A89 !important;
    color: #06203E !important;
}

.main-nav a:first-child,
.feed-menu > a.active,
.feed-menu > a:first-child {
    background: #002371 !important;
    border-color: #002371 !important;
    box-shadow: 0 6px 14px rgba(0, 35, 113, .16) !important;
    color: #FFFFFF !important;
}

.feed-menu > a.menu-feature {
    background: #EEF8F2 !important;
    border-color: #BEE4CC !important;
    color: #123525 !important;
}

.feed-menu > a.menu-feature:hover {
    background: #E1F4E9 !important;
    border-color: #169B5B !important;
}

.main-nav span {
    background: #EAF1F8 !important;
    color: #002371 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.main-nav a:first-child span,
.feed-menu > a.active span,
.feed-menu > a:first-child span {
    color: #FFFFFF !important;
}

.ui-icon,
.main-nav a .ui-icon,
.feed-menu .ui-icon,
button .ui-icon {
    align-items: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: currentColor !important;
    display: inline-flex !important;
    flex: 0 0 18px !important;
    height: 18px !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 18px !important;
}

.ui-icon svg,
.main-nav a .ui-icon svg,
.feed-menu .ui-icon svg {
    display: block !important;
    height: 18px !important;
    stroke-width: 2 !important;
    width: 18px !important;
}

.price-panel a,
.results .price-panel a,
.home-deal-grid .price-panel a,
.related-products .price-panel a {
    align-items: center !important;
    background: #EAF1F8 !important;
    border: 1px solid #AFC3D7 !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    color: #06203E !important;
    display: inline-flex !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    gap: 8px !important;
    justify-content: center !important;
    min-height: 42px !important;
    padding: 0 15px !important;
    text-decoration: none !important;
    width: 100% !important;
}

.price-panel a::after,
.results .price-panel a::after,
.home-deal-grid .price-panel a::after,
.related-products .price-panel a::after {
    background: none !important;
    border: solid currentColor !important;
    border-width: 0 2px 2px 0 !important;
    content: "" !important;
    display: inline-block !important;
    height: 7px !important;
    margin-left: 2px !important;
    position: static !important;
    transform: rotate(-45deg) !important;
    width: 7px !important;
}

.price-panel a:hover,
.results .price-panel a:hover,
.home-deal-grid .price-panel a:hover,
.related-products .price-panel a:hover {
    background: #0E5A89 !important;
    border-color: #0E5A89 !important;
    color: #FFFFFF !important;
}

.product-card:hover .price-panel a {
    background: #0E5A89 !important;
    border-color: #0E5A89 !important;
    color: #FFFFFF !important;
}

.product-card h2,
.product-card h2 a {
    font-family: Calibri, Arial, sans-serif !important;
    font-weight: 800 !important;
}

@media (max-width: 1180px) {
    .main-nav a,
    .feed-menu > a,
    .feed-menu summary {
        font-size: 14px !important;
        padding-left: 11px !important;
        padding-right: 11px !important;
    }
}

@media (min-width: 981px) and (max-width: 1500px) {
    .feed-menu {
        gap: 6px !important;
        padding-left: 34px !important;
        padding-right: 34px !important;
    }

    .feed-menu > a,
    .feed-menu summary {
        font-size: 14px !important;
        gap: 6px !important;
        height: 40px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .feed-menu .menu-fill {
        display: none !important;
    }

    .feed-menu > a.menu-contact {
        display: none !important;
    }

    .feed-menu > a[href$="/vergelijken"] {
        display: none !important;
    }
}

/* Restore decorative icon treatment outside the header after header normalization. */
.hero-v2-category-row .ui-icon,
.hero-v2-floating .ui-icon,
.hero-v2-highlight .ui-icon,
.home-focus-strip .ui-icon,
.home-step-grid .ui-icon,
.home-category-grid .ui-icon,
.best-price-benefits .ui-icon,
.product-tools .ui-icon,
.footer-trust .ui-icon,
.footer-cta .ui-icon,
.choice-list a .ui-icon {
    align-items: center !important;
    background: #EDF6FB !important;
    border: 1px solid #C8D7E4 !important;
    border-radius: 999px !important;
    color: #002371 !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    height: 40px !important;
    justify-content: center !important;
    width: 40px !important;
}

.hero-v2-actions .primary-action .ui-icon,
.price-panel a .ui-icon {
    background: rgba(255, 255, 255, .18) !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: currentColor !important;
    height: 22px !important;
    width: 22px !important;
}

.hero-v2-category-row .ui-icon svg,
.hero-v2-floating .ui-icon svg,
.hero-v2-highlight .ui-icon svg,
.home-focus-strip .ui-icon svg,
.home-step-grid .ui-icon svg,
.home-category-grid .ui-icon svg,
.best-price-benefits .ui-icon svg,
.product-tools .ui-icon svg,
.footer-trust .ui-icon svg,
.footer-cta .ui-icon svg,
.choice-list a .ui-icon svg {
    height: 18px !important;
    width: 18px !important;
}

.site-header .ui-icon {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: currentColor !important;
    flex: 0 0 18px !important;
    height: 18px !important;
    max-height: 18px !important;
    max-width: 18px !important;
    min-height: 18px !important;
    min-width: 18px !important;
    width: 18px !important;
}

.site-header .ui-icon svg {
    height: 18px !important;
    stroke-width: 2 !important;
    width: 18px !important;
}

.price-panel a::after,
.results .price-panel a::after,
.home-deal-grid .price-panel a::after,
.related-products .price-panel a::after {
    border-width: 0 2.5px 2.5px 0 !important;
    height: 8px !important;
    margin-left: 8px !important;
    width: 8px !important;
}

/* Header alignment reset: keep logo, search, action buttons and menu on one clean grid. */
.site-header {
    padding: 0 !important;
}

.header-main,
.feed-menu {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1780px !important;
    width: 100% !important;
}

.header-main {
    align-items: center !important;
    display: grid !important;
    gap: 22px !important;
    grid-template-columns: 250px minmax(360px, 1fr) auto !important;
    min-height: 86px !important;
    padding: 14px clamp(24px, 3.2vw, 56px) 12px !important;
}

.brand,
.brand-logo {
    align-items: center !important;
    display: flex !important;
    height: 54px !important;
    justify-content: flex-start !important;
    line-height: 0 !important;
    min-width: 0 !important;
    width: 250px !important;
}

.brand-logo img,
.logo img {
    display: block !important;
    height: auto !important;
    max-height: 46px !important;
    max-width: 230px !important;
    object-fit: contain !important;
    object-position: left center !important;
    width: auto !important;
}

.top-search {
    align-items: center !important;
    align-self: center !important;
    display: grid !important;
    gap: 8px !important;
    grid-template-columns: minmax(0, 1fr) 86px !important;
    height: 52px !important;
    justify-self: stretch !important;
    margin: 0 !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 4px !important;
}

.top-search input {
    height: 42px !important;
    line-height: 42px !important;
    padding: 0 14px !important;
}

.top-search button {
    align-items: center !important;
    align-self: center !important;
    display: inline-flex !important;
    height: 42px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    min-width: 86px !important;
    padding: 0 14px !important;
}

.header-main .main-nav {
    align-items: center !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    min-width: max-content !important;
    padding: 0 !important;
    width: auto !important;
}

.header-main .main-nav a {
    align-items: center !important;
    display: inline-flex !important;
    height: 46px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 16px !important;
    white-space: nowrap !important;
}

.header-main .main-nav a:first-child {
    background: #002371 !important;
    border-color: #002371 !important;
    color: #FFFFFF !important;
}

.header-main .main-nav a span {
    align-items: center !important;
    background: #EEF4FA !important;
    border-radius: 999px !important;
    color: #002371 !important;
    display: inline-flex !important;
    height: 20px !important;
    justify-content: center !important;
    line-height: 1 !important;
    min-width: 20px !important;
    padding: 0 6px !important;
}

.feed-menu {
    align-items: center !important;
    border-top: 1px solid #DCE7F0 !important;
    display: flex !important;
    gap: 10px !important;
    min-height: 62px !important;
    padding: 10px clamp(24px, 3.2vw, 56px) !important;
}

.feed-menu details {
    align-items: center !important;
    display: flex !important;
    height: 42px !important;
    margin: 0 !important;
    position: relative !important;
}

.feed-menu > a,
.feed-menu summary {
    align-items: center !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    height: 42px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 14px !important;
    vertical-align: middle !important;
}

.feed-menu summary {
    list-style: none !important;
}

.feed-menu summary::-webkit-details-marker {
    display: none !important;
}

.feed-menu .menu-fill {
    flex: 1 1 auto !important;
    min-width: 12px !important;
}

.site-header .ui-icon {
    align-items: center !important;
    display: inline-flex !important;
    height: 18px !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    transform: none !important;
    width: 18px !important;
}

.site-header .ui-icon svg {
    display: block !important;
    height: 18px !important;
    margin: 0 !important;
    width: 18px !important;
}

@media (min-width: 981px) and (max-width: 1380px) {
    .header-main {
        gap: 16px !important;
        grid-template-columns: 220px minmax(300px, 1fr) auto !important;
    }

    .brand,
    .brand-logo {
        width: 220px !important;
    }

    .brand-logo img,
    .logo img {
        max-width: 210px !important;
    }

    .header-main .main-nav a:nth-child(n+3),
    .feed-menu > a.menu-contact,
    .feed-menu > a[href$="/vergelijken"] {
        display: none !important;
    }
}

@media (max-width: 980px) {
    .header-main {
        grid-template-columns: 1fr auto !important;
        min-height: 70px !important;
        padding: 10px 16px !important;
    }

    .brand,
    .brand-logo {
        height: 46px !important;
        width: 210px !important;
    }

    .brand-logo img,
    .logo img {
        max-height: 40px !important;
        max-width: 205px !important;
    }

    .top-search {
        grid-column: 1 / -1 !important;
        grid-template-columns: minmax(0, 1fr) 76px !important;
        order: 3 !important;
        width: 100% !important;
    }

    .feed-menu {
        align-items: stretch !important;
        gap: 8px !important;
        max-height: calc(100vh - 86px) !important;
        overflow-y: auto !important;
        padding: 12px 16px !important;
    }
}

/* Final CTA readability guard. */
body a[href*="redirect.php"].btn,
body a[href*="redirect.php"].button,
body a[href*="redirect.php"].deal-button,
body a[href*="redirect.php"].compare-deal-button,
body .price-panel a[href*="redirect.php"],
body .results .price-panel a[href*="redirect.php"],
body article.product-card .price-panel a[href*="redirect.php"],
body .product-card a[href*="redirect.php"],
body .offer-row a[href*="redirect.php"],
body .best-price a[href*="redirect.php"],
body .sticky-product-cta a[href*="redirect.php"] {
    color: #fff !important;
    text-shadow: none !important;
}

body a[href*="redirect.php"].btn *,
body a[href*="redirect.php"].button *,
body a[href*="redirect.php"].deal-button *,
body a[href*="redirect.php"].compare-deal-button *,
body .price-panel a[href*="redirect.php"] *,
body .results .price-panel a[href*="redirect.php"] *,
body article.product-card .price-panel a[href*="redirect.php"] *,
body .product-card a[href*="redirect.php"] *,
body .offer-row a[href*="redirect.php"] *,
body .best-price a[href*="redirect.php"] *,
body .sticky-product-cta a[href*="redirect.php"] * {
    color: #fff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

body a[href*="redirect.php"]::before,
body a[href*="redirect.php"]::after,
body .price-panel a[href*="redirect.php"]::before,
body .price-panel a[href*="redirect.php"]::after,
body article.product-card .price-panel a[href*="redirect.php"]::before,
body article.product-card .price-panel a[href*="redirect.php"]::after {
    color: #fff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

