/* ==========================================================================
   The Robots HQ — Slick, Warm, Professional
   Cohesive palette · Monochrome accents · Clean layout
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Neutral Palette */
    --color-bg:             #ffffff;
    --color-bg-soft:        #f8f7f4;
    --color-bg-card:        #ffffff;
    --color-bg-hover:       #f4f3f0;
    --color-bg-input:       #f5f4f1;

    /* Dark section palette — futuristic tech backgrounds */
    --color-bg-dark:            #0f172a;
    --color-bg-dark-soft:       #1e293b;
    --color-bg-dark-card:       #1e293b;
    --color-text-on-dark:       #e2e8f0;
    --color-text-on-dark-muted: #94a3b8;
    --color-border-dark:        rgba(148, 163, 184, 0.12);

    /* Accent surface bands — alternating section backgrounds */
    --color-bg-accent-subtle:   #eef2ff;
    --color-bg-warm-gray:       #f1f0ec;

    /* Text — sharp, high-contrast */
    --color-text:           #0f172a;
    --color-text-secondary: #475569;
    --color-text-muted:     #64748b;
    --color-text-inverse:   #ffffff;

    /* Single Accent — Deep Indigo (distinctive, premium, tech-forward) */
    --color-accent:         #4f46e5;
    --color-accent-hover:   #4338ca;
    --color-accent-muted:   rgba(79, 70, 229, 0.07);
    --color-accent-soft:    rgba(79, 70, 229, 0.04);
    --color-accent-shadow:  rgba(79, 70, 229, 0.20);

    /* Semantic */
    --color-success:        #16a34a;
    --color-warning:        #d97706;
    --color-danger:         #dc2626;

    /* Borders */
    --color-border:         #e2e1dc;
    --color-border-light:   #efeeea;

    /* Shadows */
    --shadow-sm:   0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.02);
    --shadow-lg:   0 4px 20px rgba(15, 23, 42, 0.08);
    --shadow-xl:   0 12px 40px rgba(15, 23, 42, 0.10);

    /* Typography */
    --font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Futura, sans-serif;
    --font-size-xs:   0.75rem;
    --font-size-sm:   0.875rem;
    --font-size-base: 1rem;
    --font-size-lg:   1.125rem;
    --font-size-xl:   1.25rem;
    --font-size-2xl:  1.5rem;
    --font-size-3xl:  2rem;
    --font-size-4xl:  2.75rem;
    --font-size-5xl:  3.5rem;

    /* Radius — subtle, not bubbly */
    --radius-sm: 4px;
    --radius:    8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;

    /* Layout */
    --container-max: 1320px;
    --header-height: 70px;

    /* Spacing — generous breathing room */
    --section-padding:    6rem;
    --section-padding-lg: 8rem;
    --card-gap:           1.5rem;
    --card-gap-lg:        2rem;

    /* Pattern/gradient helpers */
    --grid-line-color:      rgba(79, 70, 229, 0.04);
    --grid-line-color-dark: rgba(79, 70, 229, 0.08);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    border-radius: var(--radius-lg);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
a:hover { opacity: 0.8; }

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.12;
    font-weight: 600;
    color: var(--color-text);
}
h1 { font-size: var(--font-size-5xl); letter-spacing: -0.04em; }
h2 { font-size: var(--font-size-3xl); letter-spacing: -0.02em; }
h3 { font-size: var(--font-size-xl); letter-spacing: -0.01em; }
h4 { font-size: var(--font-size-lg); }

p { margin-bottom: 1rem; }

::selection {
    background: var(--color-accent);
    color: var(--color-text-inverse);
}

/* --- Layout --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-main { padding-top: 2.5rem; padding-bottom: var(--section-padding); }
.home .site-main,
.page-template-page-compare .site-main,
.page-template-page-deals .site-main,
.page-template-page-about .site-main { padding-top: 0; }
.about-hero { margin-top: 0; }

/* ==========================================================================
   SECTION BACKGROUND SYSTEM — Alternating bands + tech patterns
   ========================================================================== */

/* --- Light alternating bands --- */
.section-bg-white    { background: var(--color-bg); }
.section-bg-soft     { background: var(--color-bg-soft); }
.section-bg-accent   { background: var(--color-bg-accent-subtle); }
.section-bg-warm     { background: var(--color-bg-warm-gray); }

/* --- Dark tech band --- */
.section-bg-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
}
.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 { color: #ffffff; }
.section-bg-dark a:not(.btn) { color: var(--color-text-on-dark); }
.section-bg-dark a:not(.btn):hover { color: #ffffff; opacity: 1; }
.section-bg-dark p,
.section-bg-dark .home-section__link { color: var(--color-text-on-dark-muted); }
.section-bg-dark .home-section__link:hover { color: #ffffff; }
.section-bg-dark .product-card {
    background: #ffffff;
    border: none;
}
.section-bg-dark .product-card__brand { color: var(--color-accent); }
.section-bg-dark .product-card__title a { color: var(--color-text); }
.section-bg-dark .product-card__title a:hover { color: var(--color-accent); }
.section-bg-dark .product-card__description { color: var(--color-text-secondary); }
.section-bg-dark .product-card__price { color: var(--color-text); }
.section-bg-dark .product-card__footer { border-color: var(--color-border-light); }
.section-bg-dark .product-card__image { border-bottom: none; }
.section-bg-dark .product-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.section-bg-dark .category-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(79, 70, 229, 0.12);
    border-left: 3px solid rgba(99, 102, 241, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.section-bg-dark .category-card__name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.015em;
}
.section-bg-dark .category-card__count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}
.section-bg-dark .category-card__arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    transition: transform 0.3s, color 0.3s;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}
.section-bg-dark .category-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    border-left-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 16px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}
.section-bg-dark .category-card:hover .category-card__arrow { color: var(--color-accent); transform: translateX(4px); }

/* Category section — custom background image */
.section-hexagons { position: relative; overflow: hidden; }
.section-hexagons::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/category-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.section-hexagons > * { position: relative; z-index: 1; }

/* --- CSS-only dot grid pattern (futuristic) --- */
.section-pattern-dots { position: relative; }
.section-pattern-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, var(--grid-line-color) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.section-pattern-dots > * { position: relative; z-index: 1; }

/* Dark version of dot grid */
.section-bg-dark.section-pattern-dots::before {
    background-image: radial-gradient(circle, var(--grid-line-color-dark) 1px, transparent 1px);
}

/* --- CSS-only circuit/grid lines pattern --- */
.section-pattern-grid { position: relative; }
.section-pattern-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line-color) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
.section-pattern-grid > * { position: relative; z-index: 1; }

/* --- Gradient glow overlay (for dark sections) --- */
.section-glow { position: relative; overflow: hidden; }
.section-glow::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
    z-index: 0;
}
.section-glow > * { position: relative; z-index: 1; }

/* --- Full-width section wrapper (breaks out of container) --- */
.section-full {
    padding: var(--section-padding) 0;
}
.section-full > .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Full-bleed band for single-product sections --- */
.product-section--banded {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}
.product-section--banded-soft { background: transparent; }
.product-section--banded-accent { background: var(--color-bg-accent-subtle); }
.product-section--banded-dark {
    background: linear-gradient(160deg, #1a1f2e 0%, #111827 40%, #0f1520 100%);
    color: var(--color-text-on-dark);
    position: relative;
    overflow: hidden;
}
/* Futuristic accent glow on related products */
.product-section--banded-dark::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
}
/* Top gradient fade for seamless transition from white */
.product-section--banded-dark::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.product-section--banded-dark > * { position: relative; z-index: 2; }
.product-section--banded-dark h2,
.product-section--banded-dark h3 { color: #ffffff; }
.product-section--banded-dark .product-card {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(79, 70, 229, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.product-section--banded-dark .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 70, 229, 0.1);
}
.product-section--banded-dark .product-card__title a { color: var(--color-text-on-dark); }
.product-section--banded-dark .product-card__description { color: var(--color-text-on-dark-muted); }
.product-section--banded-dark .product-card__price { color: var(--color-text-on-dark); }
.product-section--banded-dark .product-card__footer { border-color: rgba(255,255,255,0.08); }
.product-section--banded-dark .product-card__brand { color: rgba(79, 70, 229, 0.8); }

/* ==========================================================================
   HEADER — Clean white, minimal
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--color-border-light);
    will-change: transform;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: var(--header-height);
}

.site-header__logo { flex-shrink: 0; }

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-weight: 700;
    font-size: var(--font-size-lg);
    letter-spacing: -0.03em;
}
.site-logo:hover { color: var(--color-text); opacity: 1; }
.site-logo__icon { font-size: 1.25rem; }

/* Custom logo (image-based) */
.site-header__logo .custom-logo-link { display: flex; align-items: center; }
.site-header__logo .custom-logo { display: block; width: 200px !important; height: auto !important; max-height: none !important; }

.site-header__nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
}

.nav-menu li a {
    color: var(--color-text);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 0.4rem 1rem;
    transition: color 0.2s, background 0.2s;
    opacity: 1;
    border-radius: var(--radius-full);
    display: block;
}
.nav-menu li a:hover {
    color: var(--color-accent);
    background: var(--color-accent-muted);
    opacity: 1;
}

.site-header__search { flex-shrink: 0; }

.search-form {
    display: flex;
    align-items: center;
    background: var(--color-bg-input);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form:focus-within {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-muted);
}

.search-form__input {
    border: none;
    background: transparent;
    padding: 0.5rem 0.875rem;
    font-size: var(--font-size-sm);
    font-family: var(--font-family);
    font-weight: 400;
    width: 180px;
    outline: none;
    color: var(--color-text);
}
.search-form__input::placeholder { color: var(--color-text-muted); }

.search-form__button {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--color-text-muted);
    display: flex;
    transition: color 0.2s;
}
.search-form__button:hover { color: var(--color-text); }

/* Mobile toggle */
.site-header__toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    position: relative;
    transition: background 0.3s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    left: 0;
    transition: transform 0.3s;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* ==========================================================================
   MEGA MENU — Tesla-style dropdown
   ========================================================================== */
.nav-menu__item--has-mega {
    position: static;
}

.nav-menu__trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu__chevron {
    transition: transform 0.2s;
    opacity: 0.5;
}
.nav-menu__item--active .nav-menu__chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.mega-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg) url('../images/mega-menu-bg.png') center / cover no-repeat;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
    pointer-events: none;
}
.mega-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 0;
    pointer-events: none;
}
.mega-menu--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2rem;
    padding: 2rem 2rem;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.mega-menu .mega-menu__card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.mega-menu__card:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 12px rgba(79, 70, 229, 0.08);
    opacity: 1;
}

.mega-menu__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: transform 0.2s;
    background: rgba(79, 70, 229, 0.08);
    border-radius: var(--radius);
    color: var(--color-accent);
}
.mega-menu__card-icon svg {
    width: 20px;
    height: 20px;
}
.mega-menu__card-text {
    flex: 1;
    min-width: 0;
}
.mega-menu__card:hover .mega-menu__card-icon {
    transform: scale(1.12);
}

.mega-menu__card-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}

.mega-menu__card-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 0.1rem;
}

.mega-menu__sidebar {
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    padding-left: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: -0.25rem 0;
}

.mega-menu__sidebar-heading {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.375rem;
}

.mega-menu__sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 0.3rem 0;
    transition: color 0.2s;
}
.mega-menu__sidebar-link svg {
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.mega-menu__sidebar-link:hover {
    color: var(--color-accent);
    opacity: 1;
}
.mega-menu__sidebar-link:hover svg {
    opacity: 1;
}
.mega-menu__sidebar-link--all {
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 0.25rem;
}

/* Robozine Mega Menu */
.mega-menu--robozine .mega-menu__inner--robozine {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
}
.mega-menu__robozine-hero {
    display: block;
    position: relative;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    text-decoration: none;
    height: 240px;
}
.mega-menu__robozine-hero img.mega-menu__robozine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
}
.mega-menu__robozine-hero:hover img.mega-menu__robozine-img {
    transform: scale(1.03);
}
.mega-menu__robozine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.mega-menu__robozine-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: var(--color-accent);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.35rem;
}
.mega-menu__robozine-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.mega-menu__robozine-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.25rem 0;
}
.mega-menu__robozine-list .mega-menu__sidebar-heading {
    margin-bottom: 0.25rem;
}
.mega-menu__robozine-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
}
.mega-menu__robozine-item:hover {
    background: rgba(79, 70, 229, 0.06);
}
.mega-menu__robozine-item:hover .mega-menu__robozine-item-title {
    color: var(--color-accent);
}
.mega-menu__robozine-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.mega-menu__robozine-item-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
    transition: color 0.2s;
}
.mega-menu__robozine-date {
    display: block;
    font-size: 0.68rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}
.mega-menu__robozine-list .mega-menu__sidebar-link--all {
    margin-top: 0.5rem;
    padding-left: 0.5rem;
}
.mega-menu__blog-featured {
    display: block;
    text-decoration: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.2s;
    margin-bottom: 0.5rem;
}
.mega-menu__blog-featured:hover {
    box-shadow: 0 2px 12px rgba(79, 70, 229, 0.12);
}
.mega-menu__blog-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}
.mega-menu__blog-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}
.mega-menu__blog-featured:hover .mega-menu__blog-title {
    color: var(--color-accent);
}

/* ==========================================================================
   BUTTONS — Clean, solid, rounded
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    font-family: var(--font-family);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    line-height: 1.2;
}
.btn:hover { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn--primary {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    box-shadow: 0 1px 3px var(--color-accent-shadow);
}
.btn--primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 4px 12px var(--color-accent-shadow);
}

.btn--secondary {
    background: var(--color-text);
    color: var(--color-text-inverse);
}
.btn--secondary:hover { background: #333; }

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}
.btn--outline:hover { border-color: var(--color-text); }

.btn--ghost {
    background: transparent;
    color: var(--color-accent);
    padding: 0.5rem 0;
    border-radius: 0;
}
.btn--ghost:hover { color: var(--color-accent-hover); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--font-size-xs); }
.btn--lg { padding: 0.9rem 2.5rem; font-size: var(--font-size-base); font-weight: 600; }
.btn--full { width: 100%; }

/* ==========================================================================
   BADGES
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    line-height: 1.4;
    border-radius: var(--radius-sm);
}
.badge--success { color: var(--color-success); background: rgba(52, 199, 89, 0.1); }
.badge--danger  { color: var(--color-danger); background: rgba(255, 59, 48, 0.1); }
.badge--warning { color: var(--color-warning); background: rgba(255, 159, 10, 0.1); }

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
}
.product-badge--bestseller { color: #d97706; background: #fef3c7; }
.product-badge--new { color: var(--color-accent); background: #e0e7ff; }
.product-badge--deal { color: var(--color-danger); background: #fee2e2; }
.product-badge--editors_choice { color: #7c3aed; background: #ede9fe; }

/* ==========================================================================
   HOMEPAGE — HERO (Conversion-Focused, Split Layout)
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    max-height: 520px;
    min-height: 320px;
}

/* Full-width background — image drives layout */
.hero__bg {
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 520px;
    object-fit: cover;
    object-position: center 20%;
}

/* Text overlay gradient — stronger left side */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.8) 25%,
        rgba(15, 23, 42, 0.3) 45%,
        rgba(15, 23, 42, 0) 65%
    );
    z-index: 1;
    pointer-events: none;
}

.hero__inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: 3rem 3rem 3rem 5vw;
}

.hero__content {
    text-align: left;
    max-width: 50%;
    color: #e2e8f0;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.875rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero__title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
    color: #ffffff;
}
.hero__title-accent {
    color: #818cf8;
    -webkit-text-fill-color: #818cf8;
}

.hero__subtitle {
    font-size: var(--font-size-base);
    color: rgba(226, 232, 240, 0.85);
    max-width: 460px;
    margin: 0 0 1.75rem;
    line-height: 1.7;
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Trust badges — compact 2×2 grid with checkmarks */
.hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item__check {
    flex-shrink: 0;
    color: var(--color-accent);
}

.trust-item__label {
    font-weight: 500;
    color: rgba(226, 232, 240, 0.8);
    font-size: var(--font-size-sm);
}

/* Outline button on hero — light variant */
.hero .btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

/* Hero visual / image area (legacy split-layout — kept for fallback) */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.hero__visual::after {
    content: '';
    position: absolute;
    inset: -8%;
    background: radial-gradient(circle at center, var(--color-accent-muted) 0%, transparent 65%);
    z-index: -1;
    border-radius: 50%;
}

.hero__placeholder {
    width: 100%;
    aspect-ratio: 6/5;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
}
.hero__placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.25;
}
.hero__placeholder span {
    font-size: var(--font-size-xs);
    font-weight: 500;
    opacity: 0.4;
}

/* ==========================================================================
   HOME SECTIONS
   ========================================================================== */
.home-section {
    padding: var(--section-padding) 0;
}

.home-section__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.home-section__title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.home-section__link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent);
}
.home-section__link:hover { color: var(--color-accent-hover); opacity: 1; }

/* Category Cards — Visual tiles with gradient backgrounds */
.category-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap-lg);
}

.category-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}
.category-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent-muted);
    transform: translateY(-1px);
    opacity: 1;
}
.category-card:hover::before { opacity: 1; }

/* Single accent tint on hover — no rainbow */
.category-card::before { background: var(--color-accent-soft); }

.category-card__name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    position: relative;
}

.category-card__count {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    position: relative;
}

.category-card__arrow {
    color: var(--color-text-muted);
    transition: color 0.2s, transform 0.2s;
    font-size: var(--font-size-xl);
    flex-shrink: 0;
    margin-left: 1rem;
    position: relative;
}
.category-card:hover .category-card__arrow {
    color: var(--color-accent);
    transform: translateX(4px);
}

/* ==========================================================================
   PRODUCT FILTERS — Category filter pills
   ========================================================================== */
.product-filters {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-filters__bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
    max-height: 2.625rem;
    overflow: hidden;
}

.product-filters__bar--expanded {
    max-height: none;
    overflow: visible;
}

.product-filters__toggle--expanded svg {
    transform: rotate(180deg);
}

.product-filters__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-bg);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-filters__btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-bg);
}

.product-filters__btn--active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.product-filters__btn--active:hover {
    background: var(--color-accent-hover);
    color: #fff;
}

.product-filters__count {
    font-size: 0.6875rem;
    opacity: 0.55;
    font-weight: 400;
}

.product-filters__btn--active .product-filters__count {
    opacity: 0.85;
}

/* Dropdown */
.product-filters__dropdown {
    position: relative;
    flex-shrink: 0;
}

.product-filters__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-bg);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.product-filters__toggle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-bg);
}

.product-filters__toggle[aria-expanded="true"] {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-accent-bg);
}

.product-filters__chevron {
    transition: transform 0.2s ease;
}

.product-filters__toggle[aria-expanded="true"] .product-filters__chevron {
    transform: rotate(180deg);
}

.product-filters__panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.375rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.product-filters__toggle[aria-expanded="true"] + .product-filters__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-filters__panel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
}

.product-filters__panel-item:hover {
    background: var(--color-accent-bg);
    color: var(--color-accent);
}

.product-filters__panel-item .product-filters__count {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    opacity: 1;
}

/* ==========================================================================
   PRODUCT CARD — Clean white, image-forward, shadow on hover
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap-lg);
}

.product-card {
    background: var(--color-bg-card);
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.product-card__badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    z-index: 2;
}

/* Product card image container */
.product-card__image {
    aspect-ratio: 1/1;
    background: linear-gradient(145deg, #f8f9fb 0%, #eef0f4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Shared image styles */
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1.25rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Primary: in-flow, visible by default */
.product-card__img--primary {
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Secondary: stacked on top, hidden */
.product-card__img--secondary {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover crossfade — only when secondary exists */
.product-card:hover .product-card__image--has-swap .product-card__img--primary {
    opacity: 0;
}
.product-card:hover .product-card__image--has-swap .product-card__img--secondary {
    opacity: 1;
}

/* Fallback zoom for cards without secondary */
.product-card:hover .product-card__image:not(.product-card__image--has-swap) img {
    transform: scale(1.06);
}

/* Touch devices: hide secondary entirely */
@media (hover: none) {
    .product-card__img--secondary { display: none; }
}

.product-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.product-card__brand {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card__title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 0.375rem;
    line-height: 1.3;
}
.product-card__title a { color: var(--color-text); }
.product-card__title a:hover { color: var(--color-accent); opacity: 1; }

.product-card__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 3em; /* 2 lines × 1.5 line-height = 3em fallback */
}

/* Push rating + footer to the bottom of the card */
.product-card__body > .rating-stars {
    margin-top: auto;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.875rem;
    border-top: 1px solid var(--color-border-light);
}
.product-card__footer .product-card__price {
    margin-right: auto;
}

.product-card__price {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text);
}
.product-card__price--quote {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.02em;
}

/* Product image placeholder */
.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(145deg, #f1f3f7 0%, #e4e7ed 100%);
}
.product-card__placeholder svg {
    color: var(--color-accent);
    opacity: 0.12;
    width: 56px;
    height: 56px;
}
.product-card__placeholder span {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    font-weight: 500;
    opacity: 0.6;
}

/* Single product image placeholder */
.product-hero__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-bg-accent-subtle) 100%);
}
.product-hero__placeholder svg {
    color: var(--color-accent);
    opacity: 0.15;
}
.product-hero__placeholder span {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   RATING STARS
   ========================================================================== */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.stars { display: flex; gap: 1px; }

.star { font-size: 0.8125rem; line-height: 1; }
.star--full { color: #fbbf24; }
.star--half { color: #fbbf24; opacity: 0.5; }
.star--empty { color: var(--color-text-muted); opacity: 0.3; }

.rating-number {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
}

.rating-count {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.rating-label {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */
.product-page { padding: 0; }

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2.5rem 0 3.5rem;
}

.product-hero__media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-hero__image {
    background: linear-gradient(145deg, #f8f9fb 0%, #eef0f4 100%);
    border-radius: 0;
    border: 1px solid var(--color-border);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.product-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}
.product-hero__image:hover img { transform: scale(1.04); }

/* Gallery thumbnails */
.product-hero__thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
}
.product-hero__thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    border: 2px solid var(--color-border);
    background: var(--color-bg-soft);
    cursor: pointer;
    padding: 4px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-hero__thumb:hover {
    border-color: var(--color-accent);
}
.product-hero__thumb--active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.product-hero__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem 0;
}

.product-hero__brand {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

/* Hero Pricing CTA (enquiry-first) */
.product-hero__pricing-cta {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.product-hero__verdict {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 1.25rem 1.5rem;
    background: var(--color-bg-accent-subtle);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}
.product-hero__verdict strong {
    color: var(--color-accent);
    font-weight: 600;
}

.product-hero__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}
.product-hero__description p:last-child {
    margin-bottom: 0;
}

/* Affiliate Buttons */
.affiliate-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.5rem;
}

.affiliate-buttons .btn { width: 100%; justify-content: center; }

.affiliate-disclosure {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    line-height: 1.5;
}
.affiliate-disclosure--short { font-size: var(--font-size-xs); color: var(--color-text-muted); }

/* Specs Card + Table */
.specs-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 1.5rem 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 0.6rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-sm);
    font-size: var(--font-size-sm);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }

.specs-table__row--even { background: var(--color-bg-soft); }

.specs-table th {
    font-weight: 600;
    color: var(--color-text);
    width: 35%;
    padding-left: 1.75rem;
    position: relative;
}
.specs-table th::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5px;
    height: 50%;
    background: var(--color-accent);
    border-radius: 2px;
}

.specs-table td {
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Pros & Cons */
/* Pros & Cons — centered header */
.pros-cons-header {
    text-align: center;
    margin-bottom: 2rem;
}
.pros-cons-header__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
}
.pros-cons-header__subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--card-gap-lg);
    margin: 0;
}

.pros-cons__col {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pros-cons__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
}
.pros-cons__col--pros .pros-cons__header {
    background: linear-gradient(135deg, #10b981 0%, #6ee7b7 50%, #d1fae5 100%);
}
.pros-cons__col--cons .pros-cons__header {
    background: linear-gradient(135deg, var(--color-accent) 0%, #a5b4fc 50%, #e0e7ff 100%);
}

.pros-cons__header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}
.pros-cons__col--pros .pros-cons__header-badge {
    background: rgba(255, 255, 255, 0.35);
    color: #065f46;
}
.pros-cons__col--cons .pros-cons__header-badge {
    background: rgba(255, 255, 255, 0.35);
    color: #312e81;
}

.pros-cons__title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 0;
}
.pros-cons__col--pros .pros-cons__title { color: #065f46; }
.pros-cons__col--cons .pros-cons__title { color: #312e81; }

.pros-cons__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 2rem;
}

.pros-cons__item {
    font-size: var(--font-size-base);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    color: var(--color-text);
    font-weight: 500;
}

.pros-cons__icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.pros-cons__col--pros .pros-cons__icon { color: var(--color-success); }
.pros-cons__col--cons .pros-cons__icon { color: var(--color-accent); }

/* Product Sections */
.product-section {
    margin: 0;
    padding: 3.5rem 0;
    border-top: 1px solid var(--color-border);
}

.product-section__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Use Cases */
.use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.use-case-tag {
    background: var(--color-bg-soft);
    border: none;
    border-radius: var(--radius);
    padding: 0.35rem 0.75rem;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: default;
    pointer-events: none;
    user-select: none;
}

/* Where to Buy */
.where-to-buy { margin-top: 1rem; }
.where-to-buy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--card-gap);
}
.where-to-buy__item { text-align: center; }
.where-to-buy__network {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.affiliate-buttons__empty {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-style: italic;
}

.affiliate-buttons__note {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    text-align: center;
    margin-top: 0.5rem;
}

/* ==========================================================================
   QUOTE FORM
   ========================================================================== */
.quote-form-wrapper {
    max-width: 540px;
    margin: 0 auto;
}

.quote-form__intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 2rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.quote-form__field {
    margin-bottom: 1.25rem;
}

.quote-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.375rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}

.quote-form label .required {
    color: #ef4444;
}

.quote-form label .optional {
    color: var(--color-text-muted);
    font-weight: 400;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-form input[type="text"]:focus,
.quote-form input[type="email"]:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: var(--color-text-muted);
}

.quote-form textarea {
    resize: vertical;
    min-height: 80px;
}

.quote-form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

.quote-form__submit {
    width: 100%;
    margin-top: 0.5rem;
}

.quote-form__error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}

.quote-form__privacy {
    text-align: center;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.quote-form__success {
    text-align: center;
    padding: 3rem 1rem;
}

.quote-form__success-icon {
    color: #10b981;
    margin-bottom: 1rem;
}

.quote-form__success h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.quote-form__success p {
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enquiry Form (universal product enquiry) */
#enquiry-section {
    text-align: center;
}
#enquiry-section .product-section__title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.enquiry-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.enquiry-form__intro {
    text-align: center;
    max-width: 100%;
    margin: 0 0 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.enquiry-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 480px) {
    .enquiry-form__row { grid-template-columns: 1fr; }
}
.enquiry-form__field {
    margin-bottom: 1.25rem;
}
.enquiry-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.375rem;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}
.enquiry-form label .required {
    color: #ef4444;
}
.enquiry-form label .optional {
    color: var(--color-text-muted);
    font-weight: 400;
}
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.enquiry-form input[type="text"]:focus,
.enquiry-form input[type="email"]:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: var(--color-text-muted);
}
.enquiry-form textarea {
    resize: vertical;
    min-height: 80px;
}
.enquiry-form__hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
.enquiry-form__submit {
    width: 100%;
    margin-top: 0.5rem;
}
.enquiry-form__error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
}
.enquiry-form__privacy {
    text-align: left;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 1rem;
}
.enquiry-form__success {
    text-align: center;
    padding: 3rem 1rem;
}
.enquiry-form__success-icon {
    color: #10b981;
    margin-bottom: 1rem;
}
.enquiry-form__success h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}
.enquiry-form__success p {
    color: var(--color-text-secondary);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}
.compare-cta__card-verdict {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* ==========================================================================
   COMPARISON TOOL — HERO
   ========================================================================== */
.compare-hero {
    padding: 4rem 0 3.5rem;
    text-align: center;
    background: url('../images/compare-hero-bg.png') center center / cover no-repeat;
    color: #1e293b;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
}
.compare-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(248, 247, 244, 0.15) 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}
.compare-hero .container {
    position: relative;
    z-index: 1;
}
.compare-hero .breadcrumbs--light a { color: rgba(30, 41, 59, 0.75); }
.compare-hero .breadcrumbs--light a:hover { color: var(--color-accent); }
.compare-hero .breadcrumbs--light span { color: rgba(30, 41, 59, 0.6); }
.compare-hero__title {
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: #0f172a;
    margin: 1rem 0 0.625rem;
    letter-spacing: -0.035em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.compare-hero__subtitle {
    color: #1e293b;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   COMPARISON TOOL — PRODUCT SELECTOR
   ========================================================================== */

/* --- Selected product slots --- */
.compare-selector { padding: 2.5rem 0 2rem; }

.compare-slots {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.compare-slot {
    flex: 1 1 220px;
    max-width: 280px;
    min-height: 120px;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.compare-slot:hover { border-color: var(--color-accent); }

.compare-slot__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 100%;
    min-height: 120px;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
    padding: 1rem;
    text-align: center;
}
.compare-slot__empty svg { opacity: 0.4; }

.compare-slot__filled {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    height: 100%;
    min-height: 120px;
}
.compare-slot__img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    object-fit: contain;
    background: var(--color-bg-soft);
    flex-shrink: 0;
}
.compare-slot__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.compare-slot__brand {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    font-weight: 600;
}
.compare-slot__name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.compare-slot__remove {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0,0,0,0.06);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.compare-slot__remove:hover { background: rgba(220,38,38,0.12); color: var(--color-danger); }

.compare-slot__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--color-accent);
    flex-shrink: 0;
    width: 40px;
}

/* --- Compare button --- */
.compare-actions { text-align: center; margin-bottom: 2rem; }
.compare-btn { gap: 0.5rem; min-width: 220px; }
.compare-btn svg { flex-shrink: 0; }

/* --- Search & filter bar --- */
.compare-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.compare-search__input-wrap {
    flex: 1;
    position: relative;
}
.compare-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}
.compare-search__input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.compare-search__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.compare-search__select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    background: #fff;
    min-width: 200px;
    cursor: pointer;
}

/* --- Product browser grid --- */
.compare-browser {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.75rem;
    max-height: 480px;
    overflow-y: auto;
    padding: 0.25rem;
    scrollbar-width: thin;
}
.compare-browser__loading,
.compare-browser__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- Product pick card --- */
.compare-pick {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    position: relative;
    width: 100%;
    font-family: inherit;
}
.compare-pick:hover:not(:disabled) {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.compare-pick--selected {
    border-color: var(--color-accent);
    background: rgba(79,70,229,0.04);
    opacity: 0.6;
}
.compare-pick:disabled { cursor: default; }
.compare-pick__img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-pick__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.compare-pick__no-img { color: var(--color-text-muted); opacity: 0.4; }
.compare-pick__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.compare-pick__brand {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-accent);
    font-weight: 600;
}
.compare-pick__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.compare-pick__meta {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 0.5rem;
}
.compare-pick__rating { color: #fbbf24; }
.compare-pick__action {
    flex-shrink: 0;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    background: rgba(79,70,229,0.06);
}
.compare-pick--selected .compare-pick__action {
    color: var(--color-success);
    background: rgba(22,163,74,0.08);
}
.compare-pick__badge {
    position: absolute;
    top: -1px;
    right: -1px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.4rem;
    border-radius: 0 var(--radius-md) 0 var(--radius-sm);
}
.compare-pick__badge--bestseller { background: #f59e0b; color: #fff; }
.compare-pick__badge--editors_choice { background: var(--color-accent); color: #fff; }
.compare-pick__badge--best_value { background: #16a34a; color: #fff; }
.compare-pick__badge--new { background: #3b82f6; color: #fff; }

/* ==========================================================================
   COMPARISON RESULTS — COLUMN CARDS
   ========================================================================== */
.compare-results { padding: 3rem 0 4rem; }
.compare-results__title {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.compare-columns {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.compare-columns--2 { grid-template-columns: repeat(2, 1fr); }
.compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
.compare-columns--4 { grid-template-columns: repeat(4, 1fr); }

.compare-col {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s, transform 0.3s;
}
.compare-col:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.compare-col__header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
}
.compare-col__img {
    width: 100%;
    max-width: 200px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
    border-radius: var(--radius-md);
}
.compare-col__img-placeholder {
    width: 100%;
    max-width: 200px;
    height: 180px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin: 0 auto 1rem;
}
.compare-col__brand {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.compare-col__name {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.compare-col__name a {
    color: var(--color-text);
    text-decoration: none;
}
.compare-col__name a:hover { color: var(--color-accent); }
.compare-col__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
.compare-col__rating .star--full { color: #fbbf24; }
.compare-col__rating .star--half { color: #fbbf24; opacity: 0.5; }
.compare-col__rating .star--empty { color: #d1d5db; }

.compare-col__body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.compare-col__stat {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--color-bg-soft);
    text-align: center;
}
.compare-col__stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}
.compare-col__stat-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
}
.compare-col__stat-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.1rem;
}
.compare-col__highlight {
    background: rgba(22,163,74,0.06);
    border: 1px solid rgba(22,163,74,0.15);
}
.compare-col__highlight .compare-col__stat-value { color: var(--color-success); }
.compare-col__winner {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--color-success);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
}

.compare-col__stat-value--quote {
    color: var(--color-accent);
    font-style: italic;
}

.compare-col > .btn {
    align-self: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* ==========================================================================
   COMPARISON RESULTS — SPEC TABLE (enhanced)
   ========================================================================== */
.compare-specs-wrap {
    margin-bottom: 3rem;
}
.compare-specs__heading,
.compare-section-heading {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
}

.compare-specs-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 0.875rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
}

.comparison-table th {
    background: var(--color-bg-soft);
    font-weight: 600;
    color: var(--color-text);
    position: sticky;
    top: 0;
    z-index: 1;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-bg-soft);
    white-space: nowrap;
    min-width: 160px;
}

.comparison-table .specs-table__row--even td {
    background: rgba(0,0,0,0.015);
}
.comparison-table .specs-table__row--even td:first-child {
    background: var(--color-bg-soft);
}

/* ==========================================================================
   COMPARISON RESULTS — PROS & CONS
   ========================================================================== */
.compare-proscons { margin-bottom: 3rem; }
.compare-proscons__grid {
    display: grid;
    gap: 1.5rem;
}
.compare-proscons__grid.compare-columns--2 { grid-template-columns: repeat(2, 1fr); }
.compare-proscons__grid.compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
.compare-proscons__grid.compare-columns--4 { grid-template-columns: repeat(4, 1fr); }

.compare-pc {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.compare-pc__product {
    font-size: var(--font-size-sm);
    font-weight: 700;
    padding: 0.875rem 1.25rem;
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-border);
    margin: 0;
}
.compare-pc__section { padding: 1rem 1.25rem; }
.compare-pc__section h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
    font-weight: 700;
}
.compare-pc__section--pros { border-bottom: 1px solid var(--color-border); }
.compare-pc__section--pros h5 { color: var(--color-success); }
.compare-pc__section--cons h5 { color: var(--color-danger); }
.compare-pc__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.compare-pc__section li {
    font-size: var(--font-size-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    line-height: 1.4;
}
.compare-pc__section li svg { flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   COMPARISON RESULTS — VERDICTS
   ========================================================================== */
.compare-verdicts { margin-bottom: 2rem; }
.compare-verdicts__grid {
    display: grid;
    gap: 1.5rem;
}
.compare-verdicts__grid.compare-columns--2 { grid-template-columns: repeat(2, 1fr); }
.compare-verdicts__grid.compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
.compare-verdicts__grid.compare-columns--4 { grid-template-columns: repeat(4, 1fr); }

.compare-verdict-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.compare-verdict-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.compare-verdict-card__head h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    margin: 0;
}
.compare-verdict-card__rating {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.compare-verdict-card__rating .star--full { color: #fbbf24; }
.compare-verdict-card__rating .star--half { color: #fbbf24; opacity: 0.5; }
.compare-verdict-card__rating .star--empty { color: #d1d5db; }
.compare-verdict-card p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 1rem;
}

/* --- Spinner --- */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.spinner--sm { width: 16px; height: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   CATEGORY PAGE
   ========================================================================== */
.category-hero {
    padding: 0;
    text-align: center;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    background: #eceef1;
    min-height: 320px;
}
/* Full-width 4K hero pattern */
.category-hero__bg {
    position: absolute !important;
    inset: 0;
    z-index: 0 !important;
    overflow: hidden;
}
.category-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0) scale(1.002);
    will-change: transform;
    filter: contrast(1.08) saturate(1.12);
}
/* Categories variant: toned-down teal/green region, minimal & airy */
.category-hero__bg--categories {
    opacity: 0.85;
}
.category-hero__bg--categories img {
    object-position: 85% 80%;
    transform: translateZ(0) scale(1.002);
    filter: contrast(1.0) saturate(0.7) brightness(1.12);
}

/* Text content overlaid on pattern */
.category-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--section-padding-lg) 0 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.category-hero__title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    color: #1a1f2e;
}

.category-hero__description {
    font-size: var(--font-size-lg);
    color: #4b5563;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.category-hero__count {
    font-size: var(--font-size-sm);
    color: #6b7280;
    margin-top: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    margin-bottom: 1rem;
}

.filter-bar__sort select {
    padding: 0.5rem 2.25rem 0.5rem 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: var(--font-size-sm);
    font-family: var(--font-family);
    font-weight: 500;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.625rem center;
}

.filter-bar__count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
    padding: 1rem 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.breadcrumbs a { color: var(--color-text-secondary); }
.breadcrumbs a:hover { color: var(--color-accent); opacity: 1; }

.breadcrumbs__separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Dark hero breadcrumbs */
.category-hero .breadcrumbs { color: rgba(255,255,255,0.85); }
.category-hero .breadcrumbs a { color: rgba(255,255,255,0.75); }
.category-hero .breadcrumbs a:hover { color: #ffffff; opacity: 1; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--color-bg-soft);
    color: var(--color-text-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 0.8fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Footer categories — two-column list */
.site-footer__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

/* Footer social icons */
.site-footer__social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-bg-hover);
    color: var(--color-text-secondary);
    transition: background 0.2s, color 0.2s;
}
.site-footer__social-link:hover {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    opacity: 1;
}

/* Footer newsletter */
.site-footer__newsletter-wrap {
    margin-top: 1.5rem;
}
.site-footer__newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.site-footer__newsletter input[type="email"] {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-family: inherit;
    min-width: 0;
}
.site-footer__newsletter input[type="email"]:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}
.site-footer__newsletter .btn {
    padding: 0.6rem 1.25rem;
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.site-footer__heading {
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer__text {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.site-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__links a {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--color-accent); opacity: 1; }

.site-footer__disclosure {
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.site-footer__disclosure .affiliate-disclosure--short { color: var(--color-text-muted); }

.site-footer__bottom {
    text-align: center;
    padding-top: 1.25rem;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
.site-footer__legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.site-footer__legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.site-footer__legal a:hover {
    color: var(--color-accent);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--color-text);
    color: #fff;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}
.cookie-banner__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-banner__text {
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}
.cookie-banner__text a {
    color: var(--color-accent-light, #a5b4fc);
    text-decoration: underline;
}
.cookie-banner__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.cookie-banner__actions .btn--outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.cookie-banner__actions .btn--outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination { margin-top: 3rem; text-align: center; }

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.pagination .page-numbers:hover {
    background: var(--color-bg-soft);
    color: var(--color-text);
    opacity: 1;
}

.pagination .page-numbers.current {
    background: var(--color-accent);
    color: var(--color-text-inverse);
}

.pagination .prev, .pagination .next {
    min-width: auto;
    padding: 0 1rem;
    font-weight: 500;
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 3rem;
}
.load-more__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.5rem;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-accent);
    background: transparent;
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s;
}
.load-more__btn:hover {
    background: var(--color-accent);
    color: var(--color-text-inverse);
    opacity: 1;
}
.load-more__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.load-more__btn--loading {
    pointer-events: none;
}
.load-more__spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
.load-more__btn--loading .load-more__spinner { display: inline-block; }
.load-more__btn--loading .load-more__text { display: none; }

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

/* ==========================================================================
   SEARCH / 404
   ========================================================================== */
.no-results, .search-results-page, .error-404 {
    text-align: center;
    padding: var(--section-padding) 0;
}

.no-results h2, .error-404 h1 { margin-bottom: 1rem; }

.error-404 .error-icon {
    font-size: 4rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   PRODUCT VIDEO
   ========================================================================== */
.product-video { margin: 1.5rem 0; }

.product-video__embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-bg-soft);
}

.product-video__embed iframe,
.product-video__embed object,
.product-video__embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   INDUSTRY HERO
   ========================================================================== */
.industry-hero {
    background: var(--color-bg-soft);
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.industry-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 35% 50%, var(--color-accent-soft) 0%, transparent 70%);
    pointer-events: none;
}

.industry-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.industry-hero__content { display: flex; flex-direction: column; gap: 1rem; }

.industry-hero__icon { line-height: 1; color: var(--color-accent); }
.industry-hero__icon svg { width: 40px; height: 40px; }

.industry-hero__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.industry-hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 480px;
    line-height: 1.6;
}

.industry-hero__visual { display: flex; align-items: center; justify-content: center; }

.industry-hero__visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    max-height: 400px;
}

.industry-hero__placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--color-bg);
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-hero__placeholder-icon { font-size: 4rem; opacity: 0.25; }

/* Industry Stats */
.industry-stats {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.industry-stat {
    padding: 1rem 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 120px;
}

.industry-stat__number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.industry-stat__label {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}
.industry-stats__disclaimer {
    display: none;
}

/* ==========================================================================
   INDUSTRY SECTIONS
   ========================================================================== */
.industry-section {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

.industry-section:first-of-type { border-top: none; }

.industry-section__title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.industry-description p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* Industry Use Cases */
.industry-use-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
}

.industry-use-case {
    padding: 1.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
}

.industry-use-case:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent-muted);
    transform: translateY(-1px);
}

.industry-use-case__icon {
    margin-bottom: 0.75rem;
    line-height: 1;
    color: var(--color-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-muted, rgba(79,70,229,0.08));
    border-radius: var(--radius-lg);
    font-size: 0;
}
.industry-use-case__icon svg {
    width: 24px;
    height: 24px;
}

.industry-use-case__title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.industry-use-case__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   INDUSTRY CARDS (Homepage + Archive + Related)
   ========================================================================== */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
}

.industry-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.25s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-accent-soft);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: inherit;
}

.industry-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent-muted);
    transform: translateY(-2px);
    opacity: 1;
}

.industry-card:hover::before { opacity: 1; }

.industry-card__icon {
    line-height: 1;
    position: relative;
    color: var(--color-accent);
}
.industry-card__icon svg { width: 24px; height: 24px; }

.industry-card__title {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    line-height: 1.3;
}

.industry-card__desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
    position: relative;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.industry-card__count {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    font-weight: 500;
    position: relative;
    margin-top: auto;
}

/* Large industry card variant (archive page) */
.industry-cards--archive {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-card--large {
    padding: 0;
    flex-direction: column;
}

.industry-card--large .industry-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.industry-card--large .industry-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card--large:hover .industry-card__image img {
    transform: scale(1.03);
}

.industry-card--large .industry-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-card--large .industry-card__title {
    font-size: var(--font-size-lg);
}

/* Mega Menu — Industries variant */
.mega-menu__card-icon--emoji {
    font-size: 1.25rem;
    background: rgba(79, 70, 229, 0.08);
    width: 36px;
    height: 36px;
}

.mega-menu__grid--industries {
    grid-template-columns: repeat(2, minmax(0, 260px));
    justify-content: center;
}

.mega-menu__inner--industries {
    grid-template-columns: 1fr 180px;
}

/* Mega Menu — Brands variant */
.mega-menu__grid--brands {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
}
.mega-menu__inner--brands {
    grid-template-columns: 1fr 160px;
}
.mega-menu__card--brand {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex; align-items: center; gap: 0.5rem;
}
.mega-menu__brand-favicon {
    max-width: 36px; max-height: 28px; width: auto; height: auto;
    border-radius: 4px; flex-shrink: 0; object-fit: contain;
}
.mega-menu__card--brand .mega-menu__card-name {
    font-weight: 600;
    font-size: var(--font-size-sm);
}
.mega-menu__card--brand .mega-menu__card-desc {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ==========================================================================
   BRAND PAGES
   ========================================================================== */
.brand-hero {
    padding: 3rem 0 2.5rem;
    background: url('../images/brand-hero-bg.png') center right/cover no-repeat, linear-gradient(135deg, #f8f9fc 0%, #eef1f6 100%);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    image-rendering: -webkit-optimize-contrast;
}
.brand-hero__inner { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.brand-hero__logo {
    width: 140px; min-height: 90px; border-radius: var(--radius-xl); overflow: hidden;
    background: #ffffff; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm); flex-shrink: 0; padding: 0.75rem;
}
.brand-hero__logo img { max-width: 100%; max-height: 100px; object-fit: contain; width: auto; height: auto; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.brand-hero__logo-initial {
    font-size: 2.5rem; font-weight: 700; color: #ffffff;
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, #6366f1 100%);
}
.brand-hero__title { font-size: var(--font-size-3xl); font-weight: 800; margin-bottom: 0.25rem; color: #0f172a; letter-spacing: -0.02em; }
.brand-hero__tagline { font-size: var(--font-size-lg); color: #475569; margin-bottom: 1.25rem; font-style: italic; font-weight: 500; }
.brand-hero__meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.25rem; align-items: flex-start; }
.brand-hero__meta-item {
    display: flex; align-items: center; gap: 0.5rem;
}
.brand-hero__meta-item > svg {
    flex-shrink: 0; color: var(--color-accent);
}
.brand-hero__meta-item > div {
    display: flex; flex-direction: column; line-height: 1.3;
}
.brand-hero__meta-label {
    font-size: 0.65rem; color: #64748b;
    text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
    display: block; margin-bottom: 0.125rem;
}
.brand-hero__meta-value { font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text); display: block; white-space: nowrap; }
.brand-hero__meta-value a { color: var(--color-accent); }
.brand-hero__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Brand Facts Bar */
.brand-facts {
    display: flex; flex-wrap: wrap; gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-border);
}
.brand-facts__item { display: flex; flex-direction: column; gap: 0.375rem; }
.brand-facts__label {
    font-size: 0.65rem; color: var(--color-text-muted);
    text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.brand-facts__value { font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text); }
.brand-facts__tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.brand-facts__tag {
    display: inline-block; padding: 0.2rem 0.625rem;
    background: var(--color-accent-muted); color: var(--color-accent);
    border-radius: var(--radius-full); font-size: var(--font-size-xs);
    font-weight: 500; text-decoration: none; transition: background 0.2s;
}
.brand-facts__tag:hover { background: var(--color-accent); color: #ffffff; opacity: 1; }
.brand-facts__tag--product {
    background: transparent; color: var(--color-text-secondary);
    border: none; padding: 0; font-weight: 500;
}
.brand-facts__tag--product + .brand-facts__tag--product::before {
    content: '·'; margin-right: 0.375rem; color: var(--color-text-muted);
}

.brand-section { padding: 2.5rem 0; }
.brand-section + .brand-section { border-top: 1px solid var(--color-border); }
.brand-section__title { font-size: var(--font-size-xl); font-weight: 700; margin-bottom: 1.5rem; }
.brand-description { max-width: 72ch; line-height: 1.8; color: var(--color-text-secondary); }
.brand-description p + p { margin-top: 1rem; }
.brand-description strong { color: var(--color-text); font-weight: 600; }
.brand-description ul { margin: 1rem 0; padding-left: 1.25rem; }
.brand-description li { margin-bottom: 0.5rem; }
.brand-description--collapsed {
    max-height: 8.5em; overflow: hidden; position: relative;
    transition: max-height 0.4s ease;
}
.brand-description--collapsed::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3em; background: linear-gradient(transparent, var(--color-bg));
    pointer-events: none; transition: opacity 0.3s;
}
.brand-description--expanded { max-height: 200em; }
.brand-description--expanded::after { opacity: 0; }
.brand-readmore {
    display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.75rem;
    background: none; border: none; cursor: pointer; padding: 0.35rem 0;
    color: var(--color-accent); font-size: var(--font-size-sm); font-weight: 600;
    font-family: inherit; transition: gap 0.2s;
}
.brand-readmore:hover { gap: 0.5rem; }
.brand-readmore__icon { transition: transform 0.3s; }
.brand-readmore--expanded .brand-readmore__icon { transform: rotate(180deg); }

.brand-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.brand-card {
    display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
    border-radius: var(--radius-lg); border: 1px solid var(--color-border);
    background: var(--color-bg); transition: box-shadow 0.2s, border-color 0.2s; text-decoration: none;
}
.brand-card:hover { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.brand-card__initial {
    width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent-muted);
    color: var(--color-accent); font-size: 1.1rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-card__favicon {
    width: 32px; height: 32px; border-radius: var(--radius-sm); flex-shrink: 0;
    object-fit: contain; background: #fff; padding: 2px;
}
.brand-card__info { flex: 1; min-width: 0; }
.brand-card__name {
    font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-card__count { font-size: var(--font-size-xs); color: var(--color-text-muted); }
.brand-card__arrow { color: var(--color-text-muted); font-size: 1.25rem; flex-shrink: 0; }

.brand-letter-nav {
    display: flex; flex-wrap: wrap; gap: 0.25rem; margin-bottom: 2rem;
    position: sticky; top: var(--header-height); background: var(--color-bg);
    padding: 0.75rem 0; z-index: 10; border-bottom: 1px solid var(--color-border);
}
/* Brands archive: compact spacing between filter → letter nav */
.post-type-archive-brand .product-filters { margin-bottom: 0.75rem; }
.post-type-archive-brand .brand-letter-nav { margin-top: 0; border-bottom: none; }
.brand-letter-nav a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--radius-md);
    font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text-secondary);
    transition: background 0.15s, color 0.15s;
}
.brand-letter-nav a:hover { background: var(--color-accent-muted); color: var(--color-accent); }
.brand-letter-heading {
    font-size: var(--font-size-2xl); font-weight: 700; color: var(--color-accent);
    margin: 2rem 0 1rem; padding-top: 1rem;
}

/* ==========================================================================
   BLOG / SINGLE POST
   ========================================================================== */
.post-content { max-width: 720px; margin: 0 auto; }

.post-content p,
.post-content li,
.product-description p,
.product-description li {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.post-content h2, .post-content h3,
.product-description h2, .product-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ---------- Robozine Hero ---------- */
.robozine-hero {
    background: var(--color-bg-soft) url('../images/blog-background.png') center / cover no-repeat;
    padding: 4rem 0 3.5rem;
    text-align: center;
    border-bottom: none;
    position: relative;
}
.robozine-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}
.robozine-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--color-bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.robozine-hero .container {
    position: relative;
    z-index: 1;
}
.robozine-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: rgba(79, 70, 229, 0.08);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}
.robozine-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.robozine-hero__desc {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

/* ---------- Blog Archive ---------- */
.blog-archive__header {
    text-align: center;
    margin: 2rem 0 2.5rem;
}
.blog-archive__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.blog-archive__desc {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
    max-width: 480px;
    margin: 0 auto;
}
.blog-archive__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.blog-archive__filter {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-bg-soft);
    border-radius: var(--radius-full);
    transition: all 0.2s;
}
.blog-archive__filter:hover {
    color: var(--color-accent);
    background: rgba(79, 70, 229, 0.08);
    opacity: 1;
}
.blog-archive__filter--active {
    color: #fff;
    background: var(--color-accent);
}
.blog-archive__filter--active:hover {
    color: #fff;
    opacity: 0.9;
}

/* ---------- Blog Card Grid ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); }

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-2px);
}

.blog-card__image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card__image {
    transform: scale(1.03);
}
.blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-soft);
    color: var(--color-text-muted);
}

.blog-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.blog-card__category:hover { opacity: 0.8; }

.blog-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.blog-card__title a {
    color: var(--color-text);
    transition: color 0.2s;
}
.blog-card__title a:hover {
    color: var(--color-accent);
    opacity: 1;
}
.blog-card__title--sm {
    font-size: 0.95rem;
}

.blog-card__excerpt {
    flex: 1;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
.blog-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    object-fit: cover;
}
.blog-card__author {
    font-weight: 500;
    color: var(--color-text-secondary);
}
.blog-card__date::before {
    content: "\00b7";
    margin-right: 0.5rem;
}

/* ---------- Blog Card Compact (Related / About) ---------- */
.blog-card--compact .blog-card__image-link {
    aspect-ratio: 16 / 9;
}
.blog-card--compact .blog-card__body {
    padding: 1rem;
}

/* ---------- Single Blog Post ---------- */
.blog-post__header {
    margin: 1.5rem 0 2rem;
}
.blog-post__title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin: 0.5rem 0 1rem;
}
.blog-post__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.blog-post__avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    object-fit: cover;
}
.blog-post__author {
    display: block;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text);
}
.blog-post__date {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
.blog-post__featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.blog-post__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- Related Posts ---------- */
.blog-related {
    margin-top: 4rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--color-border);
}
.blog-related__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.blog-card--compact .blog-card__meta {
    margin-top: auto;
    padding-top: 0.5rem;
}
.blog-card--compact .blog-card__date::before {
    content: "";
    margin-right: 0;
}

/* ==========================================================================
   COMPARE CTA — Homepage comparison tool promo
   ========================================================================== */
.compare-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}
.compare-cta__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.compare-cta__desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.compare-cta__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.compare-cta__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}
.compare-cta__feature svg { flex-shrink: 0; }

/* Comparison CTA — real product cards */
.compare-cta__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.compare-cta__card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.compare-cta__card-img {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.compare-cta__card-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    border-radius: var(--radius-md);
}
.compare-cta__card-brand {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}
.compare-cta__card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}
.compare-cta__card-rating {
    margin-bottom: 0.25rem;
}
.compare-cta__card-price-box,
.compare-cta__card-rating-box {
    width: 100%;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}
.compare-cta__card-price-box--best {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.2);
}
.compare-cta__card-rating-box--best {
    background: rgba(34, 197, 94, 0.06);
    border-color: rgba(34, 197, 94, 0.2);
}
.compare-cta__card-price-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}
.compare-cta__card-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
}
.compare-cta__card-price-box--best .compare-cta__card-price {
    color: #16a34a;
}
.compare-cta__card-price-aud {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
.compare-cta__card-rating-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
}
.compare-cta__card-rating-value--best {
    color: #16a34a;
}

@media (max-width: 768px) {
    .compare-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .compare-cta__title { font-size: 1.5rem; }
    .compare-cta__visual { order: -1; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-hero { grid-template-columns: 1fr; gap: 2rem; }
    .category-cards { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .site-footer__col--categories { grid-column: span 2; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .mega-menu__grid { grid-template-columns: repeat(3, 1fr); }
    .mega-menu__inner { grid-template-columns: 1fr 180px; gap: 1rem; }
    .industry-cards { grid-template-columns: repeat(2, 1fr); }
    .industry-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .industry-use-cases { grid-template-columns: repeat(2, 1fr); }
    .brand-cards { grid-template-columns: repeat(3, 1fr); }
    .brand-hero__inner { grid-template-columns: 1fr; }
    .mega-menu__grid--brands { grid-template-columns: repeat(2, 1fr); }

    /* Comparison tool */
    .compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
    .compare-columns--4 { grid-template-columns: repeat(4, 1fr); }
    .compare-proscons__grid.compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
    .compare-proscons__grid.compare-columns--4 { grid-template-columns: repeat(4, 1fr); }
    .compare-verdicts__grid.compare-columns--3 { grid-template-columns: repeat(3, 1fr); }
    .compare-verdicts__grid.compare-columns--4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --section-padding: 4rem;
        --section-padding-lg: 5rem;
        --card-gap: 1.25rem;
        --card-gap-lg: 1.5rem;
    }

    h1 { font-size: var(--font-size-3xl); }
    h2 { font-size: var(--font-size-2xl); }

    .site-header__nav { display: none; }
    .site-header__search { display: none; }
    .site-header__toggle { display: block; margin-left: auto; }
    .site-header__logo { margin-left: -1rem; padding-top: 4px; }
    .site-header__logo .custom-logo { width: 170px !important; }

    .site-header--open .site-header__nav {
        display: block;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--color-border);
        padding: 0.5rem 1.25rem 1rem;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        animation: menuSlideIn 0.25s ease-out;
    }
    @keyframes menuSlideIn {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .site-header--open .nav-menu {
        flex-direction: column;
        gap: 0.125rem;
    }

    .site-header--open .nav-menu li a,
    .site-header--open .nav-menu li .nav-menu__trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.875rem 0.75rem;
        border-bottom: none;
        border-radius: var(--radius);
        opacity: 1;
        font-size: var(--font-size-base);
        font-weight: 600;
        color: #1e293b;
        transition: background 0.15s ease, color 0.15s ease;
    }
    .site-header--open .nav-menu li a:hover,
    .site-header--open .nav-menu li .nav-menu__trigger:hover {
        background: var(--color-bg-soft);
        color: var(--color-accent);
    }
    .site-header--open .nav-menu__chevron {
        opacity: 0.4;
    }

    /* Mega menu in mobile: stack below trigger */
    .mega-menu {
        display: none;
        position: static;
        box-shadow: none;
        border-bottom: none;
        transform: none;
        background-image: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .mega-menu--open {
        display: block;
        transform: none;
        max-height: 65vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mega-menu__inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    .mega-menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .mega-menu__card { padding: 0.625rem 0.5rem; }
    .mega-menu__card-icon { font-size: 1.125rem; width: 32px; height: 32px; }
    .mega-menu__sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 1rem;
    }

    .brand-cards { grid-template-columns: repeat(2, 1fr); }
    .brand-hero__logo { width: 80px; min-height: 60px; padding: 0.5rem; margin-top: 0.5rem; }
    .brand-hero__inner { gap: 1rem; }
    .brand-hero__title { font-size: var(--font-size-2xl); color: #0f172a; font-weight: 800; }
    .brand-hero__tagline { font-size: var(--font-size-base); color: #334155; }
    .brand-hero__meta { gap: 1rem; }
    .brand-hero__meta-value { font-size: 0.8rem; color: #1e293b; }
    .brand-hero__meta-label { color: #475569; }

    /* Robozine mega menu mobile — hide featured hero, show compact list */
    .mega-menu--robozine .mega-menu__inner--robozine {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    .mega-menu__robozine-featured { display: none; }
    .mega-menu__robozine-list { padding: 0; gap: 0.25rem; }
    .mega-menu__robozine-item { grid-template-columns: 40px 1fr; gap: 0.5rem; padding: 0.4rem 0.25rem; }
    .mega-menu__robozine-thumb { width: 40px; height: 40px; }
    .mega-menu__robozine-item-title { font-size: 0.75rem; }
    .mega-menu__robozine-date { font-size: 0.62rem; }
    .mega-menu__robozine-list .mega-menu__sidebar-heading { font-size: 0.7rem; }

    .site-header--open .site-header__search {
        display: block;
        position: static;
        padding: 0.75rem 0 0;
    }
    .site-header--open .search-form__input { width: 100%; }

    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card__image { aspect-ratio: 1/1; }
    .pros-cons { grid-template-columns: 1fr; }
    .category-cards { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .category-card { padding: 1rem; }
    .category-card__name { font-size: var(--font-size-sm); }
    .category-card__arrow { display: none; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .blog-grid, .blog-grid--3 { grid-template-columns: 1fr; }
    .blog-post__title { font-size: 1.5rem; }
    .blog-archive__title { font-size: 1.5rem; }
    .robozine-hero__title { font-size: 1.5rem; }
    .robozine-hero { padding: 2.5rem 0 2rem; }

    .hero {
        max-height: none;
        min-height: auto;
    }
    .hero__bg img {
        min-height: 600px;
        object-position: 78% 20%;
    }
    .hero__inner {
        padding: 2.5rem 1.25rem;
        align-items: flex-end;
        padding-bottom: 3rem;
    }
    .hero::before {
        background: linear-gradient(
            to bottom,
            rgba(15, 23, 42, 0.45) 0%,
            rgba(15, 23, 42, 0.72) 30%,
            rgba(15, 23, 42, 0.9) 60%,
            rgba(15, 23, 42, 0.96) 100%
        );
    }
    .hero__content { text-align: center; max-width: 100%; }
    .hero__label { font-size: 0.7rem; margin-bottom: 1rem; }
    .hero__title {
        font-size: var(--font-size-2xl);
        margin-bottom: 0.75rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    .hero__subtitle {
        margin: 0 auto 1.5rem;
        font-size: var(--font-size-sm);
        max-width: 100%;
        color: rgba(226, 232, 240, 0.95);
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }
    .hero__cta { justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .hero__cta .btn--lg {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }
    .hero__trust { max-width: 320px; margin: 0 auto; gap: 0.375rem 1rem; }
    .hero__trust .trust-item__label { font-size: var(--font-size-xs); color: rgba(226, 232, 240, 0.95); }
    .hero__trust .trust-item__check { filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3)); }

    .comparison-table { font-size: var(--font-size-xs); }
    .comparison-table th, .comparison-table td { padding: 0.625rem; }

    .filter-bar { flex-direction: column; align-items: flex-start; }

    .category-hero__content { padding: 3rem 1rem 2rem; }
    .category-hero__title { font-size: var(--font-size-3xl); }
    .category-hero__bg img {
        object-fit: cover;
        object-position: 75% center;
        width: 100%;
        height: 100%;
        position: static;
        transform: none;
        image-rendering: -webkit-optimize-contrast;
        filter: contrast(1.08) saturate(1.12);
    }
    .category-hero { min-height: 260px; }

    .product-hero { padding: 1.5rem 0; }

    .industry-cards { grid-template-columns: 1fr; }
    .industry-cards--archive { grid-template-columns: 1fr; }
    .industry-card { flex-wrap: nowrap; padding: 1rem 1.25rem; }
    .industry-card__desc { display: none; }
    .industry-card__count { margin-left: auto; white-space: nowrap; }
    .industry-use-cases { grid-template-columns: 1fr; }
    .industry-stats { flex-wrap: wrap; gap: 1rem; }
    .industry-hero { padding: 2rem 0 2.5rem; }
    .industry-hero__title { font-size: var(--font-size-3xl); }

    /* Comparison tool — mobile */
    .compare-slots { flex-direction: row; align-items: stretch; gap: 0.75rem; justify-content: center; }
    .compare-slot { flex: 1 1 0; max-width: 150px; min-height: 100px; border-radius: var(--radius-lg); }
    .compare-slot__empty { padding: 0.75rem 0.5rem; gap: 0.5rem; }
    .compare-slot__empty svg { width: 24px; height: 24px; }
    .compare-slot__empty span { font-size: 0.7rem; }
    .compare-slot__vs { font-size: 0.7rem; min-width: 28px; }
    .compare-slot--optional { display: none; }
    .compare-slot__vs--3, .compare-slot__vs--4 { display: none !important; }
    .compare-search { flex-direction: column; }
    .compare-search__select { min-width: 100%; }
    .compare-browser { grid-template-columns: 1fr; max-height: 360px; }
    .compare-columns--2,
    .compare-columns--3,
    .compare-columns--4 { grid-template-columns: 1fr; }
    .compare-proscons__grid.compare-columns--2,
    .compare-proscons__grid.compare-columns--3,
    .compare-proscons__grid.compare-columns--4 { grid-template-columns: 1fr; }
    .compare-verdicts__grid.compare-columns--2,
    .compare-verdicts__grid.compare-columns--3,
    .compare-verdicts__grid.compare-columns--4 { grid-template-columns: 1fr; }
    .compare-col__img { max-width: 160px; height: 140px; }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem;
        --section-padding-lg: 4rem;
        --card-gap-lg: 1.25rem;
    }
    .hero__title { font-size: var(--font-size-xl); }
    .hero__bg img { min-height: 520px; }
    .hero__trust { grid-template-columns: 1fr 1fr; gap: 0.25rem 0.75rem; }
    .hero__cta { flex-direction: column; align-items: center; gap: 0.5rem; }
    .hero__cta .btn--lg { width: 100%; max-width: 280px; }
    .container { padding: 0 1rem; }
    .product-card__body { padding: 1rem; }
    .product-card__image { aspect-ratio: 4/3; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card__footer { gap: 0.375rem; }
    .product-card__footer .btn--sm { padding: 0.4rem 1rem; font-size: 0.7rem; }
    .home-section__header { flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
    .home-section__title { font-size: var(--font-size-xl); }
    .pros-cons__list { padding: 1.25rem; }
    .pros-cons__header { padding: 1rem 1.25rem; }
    .pros-cons-header__title { font-size: var(--font-size-xl); }
    .enquiry-form-wrapper { max-width: 100%; padding: 0 1rem; }
    .product-section--banded {
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .specs-table th, .specs-table td { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
    .specs-table th { padding-left: 1.5rem; width: 40%; }
    .specs-table th::before { left: 0.4rem; }
    .specs-table td { word-break: break-word; }
    .category-card { padding: 1.125rem; }
    .compare-cta__title { font-size: var(--font-size-xl); }
}

/* ==========================================================================
   P0 UX Fixes — Accessibility & Core
   ========================================================================== */

/* --- Skip-to-Content Link --- */
.skip-link {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100001;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-text-inverse);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0.75rem;
}

/* --- Focus-Visible Keyboard Styles --- */
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}
*:focus:not(:focus-visible) {
    outline: none;
}
.btn:focus-visible {
    outline-offset: 3px;
    box-shadow: 0 0 0 3px var(--color-accent-shadow);
}
.product-card:focus-visible {
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}
.nav-menu a:focus-visible,
.mega-menu__card:focus-visible {
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* --- Screen Reader Only (Aria-Live) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Newsletter Feedback --- */
.newsletter-feedback {
    margin-top: 0.5rem;
    font-size: var(--font-size-sm);
    min-height: 1.5em;
}
.newsletter-feedback--success {
    color: var(--color-success);
}
.newsletter-feedback--error {
    color: var(--color-danger);
}
.site-footer__newsletter .btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==========================================================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
   ========================================================================== */
.legal-hero {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0 2.5rem;
}
.legal-hero__title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text);
    margin: 0.75rem 0 0;
}
.legal-content {
    max-width: 760px;
    padding: 3rem 0 4rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}
.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1.5rem 0 0.5rem;
}
.legal-content p {
    margin: 0 0 1rem;
}
.legal-content ul {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}
.legal-content li {
    margin-bottom: 0.4rem;
}
.legal-content strong {
    color: var(--color-text);
}
.legal-content em {
    color: var(--color-text-muted);
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--color-accent);
    color: var(--color-text-inverse);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}
.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* --- Mobile Menu Body Lock --- */
body.menu-open {
    overflow: hidden;
}

/* --- Search Autocomplete Suggestions --- */
.search-autocomplete {
    position: relative;
    display: flex;
    align-items: center;
}
.search-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10010;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
}
.search-suggestions--open {
    display: block;
}
.search-suggestion {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.15s ease;
}
.search-suggestion:hover,
.search-suggestion--active {
    background: var(--color-bg-soft);
}
.search-suggestion__thumb {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-bg-soft);
}
.search-suggestion__thumb--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}
.search-suggestion__info {
    flex: 1;
    min-width: 0;
}
.search-suggestion__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-suggestion__meta {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}
.search-suggestions__empty {
    padding: 1rem;
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}
@media (max-width: 768px) {
    .search-suggestions {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        border-radius: 0;
        max-height: 60vh;
    }
}

/* --- Product Filter Controls (sort + count) --- */
.product-filters__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-bottom: 0.5rem;
}
.product-filters__result-count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}
.product-filters__sort {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-bg-input);
    font-size: var(--font-size-sm);
    font-family: var(--font-family);
    color: var(--color-text);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    transition: border-color 0.2s ease;
}
.product-filters__sort:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-muted);
}
@media (max-width: 480px) {
    .product-filters__controls {
        flex-wrap: wrap;
    }
}

/* --- Sticky Explore Bar (mobile product pages) --- */
.sticky-explore-bar {
    display: none;
}
@media (max-width: 768px) {
    .sticky-explore-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9980;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        border-top: 1px solid var(--color-border-light);
        box-shadow: 0 -2px 12px rgba(15, 23, 42, 0.08);
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .sticky-explore-bar--visible {
        transform: translateY(0);
    }
    .sticky-explore-bar__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        max-width: var(--container-max);
        margin: 0 auto;
        gap: 0.75rem;
    }
    .sticky-explore-bar__info {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }
    .sticky-explore-bar__title {
        font-size: var(--font-size-sm);
        font-weight: 600;
        color: var(--color-text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .sticky-explore-bar__cta {
        flex-shrink: 0;
        white-space: nowrap;
    }
    /* Offset footer content so sticky bar doesn't cover it */
    .product-page {
        padding-bottom: 80px;
    }
    /* Move back-to-top above sticky bar */
    .back-to-top {
        bottom: 5.5rem;
    }
}

/* --- Product Gallery: mobile swipe + counter --- */
.product-hero__gallery-scroll {
    display: none;
}
.product-hero__counter {
    display: none;
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}
@media (max-width: 768px) {
    .product-hero__media {
        position: relative;
    }
    .product-hero__gallery-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        scrollbar-width: none;
    }
    .product-hero__gallery-scroll::-webkit-scrollbar {
        display: none;
    }
    .product-hero__gallery-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    .product-hero__gallery-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
    .product-hero__counter {
        display: inline-block;
    }
    .product-hero__gallery-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.75rem;
    }
    .product-hero__gallery-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--color-border);
        background: var(--color-bg);
        color: var(--color-text);
        cursor: pointer;
        transition: all 0.15s;
    }
    .product-hero__gallery-btn:hover {
        border-color: var(--color-accent);
        color: var(--color-accent);
    }
    .product-hero__thumbs {
        display: none;
    }
    /* Only hide static image when gallery exists (multiple images) */
    .product-hero__media--has-gallery > .product-hero__image {
        display: none;
    }
}

/* --- Comparison: mobile horizontal scroll --- */
@media (max-width: 768px) {
    .comparison-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table-wrap table {
        min-width: 500px;
    }
    .comparison-table-wrap th:first-child,
    .comparison-table-wrap td:first-child {
        position: sticky;
        left: 0;
        z-index: 2;
        background: var(--color-bg);
    }
    .compare-columns {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 0.5rem;
    }
    .compare-col {
        flex: 0 0 80%;
        scroll-snap-align: start;
        min-width: 260px;
    }
}

/* ==========================================================================
   P3 — Polish & Delight
   ========================================================================== */

/* --- Micro-interactions: card hover lift --- */
.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* --- Button press feedback --- */
.btn:active {
    transform: scale(0.97);
}

/* --- Scroll-reveal animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Staggered load-more entrance --- */
.product-card--entering {
    animation: cardEnter 0.4s ease forwards;
    opacity: 0;
}
@keyframes cardEnter {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* --- Comparison slot fill animation --- */
.compare-slot__filled {
    animation: slotFill 0.3s ease;
}
@keyframes slotFill {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* --- Category card hover --- */
.category-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Blog card hover --- */
.blog-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Link underline animation --- */
.product-card__title a,
.blog-card__title a {
    background-image: linear-gradient(var(--color-accent), var(--color-accent));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}
.product-card__title a:hover,
.blog-card__title a:hover {
    background-size: 100% 2px;
}

/* --- Archive Hero (BEM cleanup) --- */
.category-hero--archive {
    position: relative;
}
.category-hero__bg {
    position: absolute;
    inset: 0;
    background-position: center 40%;
    background-size: cover;
    background-repeat: no-repeat;
}
.category-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,15,40,0.7) 0%, rgba(30,30,80,0.6) 50%, rgba(79,70,229,0.4) 100%);
}
.category-hero__content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 3rem;
}
.category-hero--archive .category-hero__title {
    color: #fff;
    text-align: left;
}
.category-hero--archive .category-hero__description {
    color: rgba(255,255,255,0.8);
    text-align: left;
}

/* --- Breadcrumbs on dark backgrounds --- */
.breadcrumbs--light {
    color: rgba(255,255,255,0.85);
}
.breadcrumbs--light a {
    color: rgba(255,255,255,0.8);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.breadcrumbs--light a:hover {
    color: #ffffff;
}
.breadcrumbs--light .breadcrumbs__separator {
    color: rgba(255,255,255,0.5);
}
.breadcrumbs--light span:last-child {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* --- 404 Page (BEM cleanup) --- */
.error-404 {
    text-align: center;
    padding: 3rem 0 4rem;
}
.error-404__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.error-404__title {
    margin-bottom: 0.5rem;
}
.error-404__text {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}
.error-404__search {
    max-width: 420px;
    margin: 0 auto 2.5rem;
    display: flex;
    gap: 0.5rem;
}
.error-404__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-family);
    background: var(--color-bg-input);
}
.error-404__input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-muted);
    outline: none;
}
.error-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}
.error-404__categories {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}
.error-404__categories-title {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
    text-align: center;
}
.error-404__categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* --- Print Styles --- */
@media print {
    .site-header,
    .site-footer,
    .mega-menu,
    .load-more,
    .compare-selector,
    .product-filters,
    .sticky-explore-bar,
    .back-to-top,
    .skip-link,
    .site-header__toggle,
    .product-card__footer .btn--outline,
    .affiliate-disclosure,
    .product-hero__thumbs,
    .product-hero__gallery-scroll,
    .product-hero__counter,
    #robotmart-announce {
        display: none !important;
    }
    body {
        font-size: 11pt;
        color: #000;
        background: #fff;
        line-height: 1.5;
    }
    .container {
        max-width: 100%;
        padding: 0;
    }
    .product-hero {
        grid-template-columns: 1fr 1fr;
    }
    .product-hero__image {
        display: block !important;
    }
    .product-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.75em;
        color: #666;
        word-break: break-all;
    }
    a[href^="#"]::after,
    a[href^="javascript"]::after {
        content: none;
    }
    .specs-table {
        width: 100%;
        border-collapse: collapse;
    }
    .specs-table th,
    .specs-table td {
        border: 1px solid #ddd;
        padding: 0.4em 0.6em;
    }
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* --- prefers-reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html {
        scroll-behavior: auto;
    }
    .back-to-top,
    .skip-link {
        transition: none;
    }
}
