/*
Theme Name: LumirHome
Theme URI: https://lumirhome.com
Description: Standalone affiliate review theme — Expanse-inspired.
Author: LumirHome
Author URI: https://lumirhome.com
Version: 3.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumirhome
*/

/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
    --lh-navy: #1a1a1a;
    --lh-navy-light: #333333;
    --lh-navy-dark: #0d0d0d;
    --lh-orange: #1a1a1a;
    --lh-orange-hover: #333333;
    --lh-orange-light: #f7f7f7;
    --lh-bg: #ffffff;
    --lh-bg-white: #ffffff;
    --lh-bg-surface: #f7f7f7;
    --lh-bg-tertiary: #ededed;
    --lh-text-primary: #1a1a1a;
    --lh-text-secondary: #6b6b6b;
    --lh-text-muted: #999999;
    --lh-border: #e0e0e0;
    --lh-border-light: #f0f0f0;
    --lh-green: #2e7d32;
    --lh-green-light: #e8f5e9;
    --lh-red: #c1272d;
    --lh-red-light: #fef2f2;
    --lh-amber: #f5a623;
    --lh-header-h: 52px;
    --lh-announce-h: 28px;
    --lh-container-pad: 0.875rem;
    --lh-section-pad: 1.75rem;
    --lh-grid-gap: 0.75rem;
    --lh-radius: 6px;
    --lh-font-heading: 'Plus Jakarta Sans', sans-serif;
    --lh-font-body: 'DM Sans', sans-serif;
    --lh-font-mono: 'JetBrains Mono', monospace;
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--lh-font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--lh-text-primary);
    background: var(--lh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--lh-text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--lh-text-secondary);
}

a:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

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

button:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

figure {
    margin: 0;
}

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

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--lh-font-heading);
    color: var(--lh-text-primary);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 1.75rem;
    font-weight: 400;
}

h2 {
    font-size: 1.375rem;
    font-weight: 400;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

h4 {
    font-size: 1.1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
}

small {
    font-size: 0.8125rem;
}

.lh-mono {
    font-family: var(--lh-font-mono);
}

/* ═══════════════════════════════════════════════════════
   4. LAYOUT
   ═══════════════════════════════════════════════════════ */
.lh-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--lh-container-pad);
    padding-right: var(--lh-container-pad);
}

.lh-section {
    padding: var(--lh-section-pad) 0;
}

.lh-section-header {
    margin-bottom: 0.875rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.lh-section-header h2 {
    margin: 0;
}

.lh-section-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--lh-text-secondary);
    transition: color 0.2s ease;
}

.lh-section-link:hover {
    color: var(--lh-text-primary);
}

.lh-section-link:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-section-link:active {
    opacity: 0.7;
}

.lh-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lh-grid-gap);
}

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

.lh-content-narrow {
    max-width: 780px;
}

/* ═══════════════════════════════════════════════════════
   5. ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.lh-announce {
    background: var(--lh-navy);
    color: #fff;
    height: var(--lh-announce-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.lh-announce.is-hidden {
    display: none;
}

.lh-announce-track {
    display: flex;
    white-space: nowrap;
    animation: lh-marquee 30s linear infinite;
}

.lh-announce-track span {
    padding: 0 2rem;
}

@keyframes lh-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.lh-announce-close {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    z-index: 2;
    background: var(--lh-navy);
}

.lh-announce-close:hover {
    opacity: 1;
}

.lh-announce-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.lh-announce-close:active {
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════
   6. HEADER
   ═══════════════════════════════════════════════════════ */
.lh-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--lh-bg);
    height: var(--lh-header-h);
    border-bottom: 1px solid var(--lh-border-light);
    transition: box-shadow 0.3s ease;
}

.lh-header.is-scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.lh-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 1rem;
}

.lh-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--lh-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--lh-text-primary);
    flex-shrink: 0;
}

.lh-logo:hover {
    color: var(--lh-text-primary);
}

.lh-logo:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-logo img {
    height: 28px;
    width: auto;
}

.lh-nav {
    display: none;
}

.lh-nav-list {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.lh-nav-item {
    position: relative;
}

.lh-nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lh-text-primary);
    padding: 0.25rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.lh-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lh-text-primary);
    transition: width 0.3s ease;
}

.lh-nav-link:hover::after,
.lh-nav-link:focus-visible::after {
    width: 100%;
}

.lh-nav-link:active {
    opacity: 0.7;
}

/* Mega menu */
.lh-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lh-bg);
    border: 1px solid var(--lh-border-light);
    border-radius: var(--lh-radius);
    padding: 1.25rem;
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lh-nav-item:hover .lh-mega,
.lh-nav-item.is-open .lh-mega {
    opacity: 1;
    visibility: visible;
}

.lh-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.lh-mega-link {
    display: block;
    padding: 0.5rem;
    border-radius: var(--lh-radius);
    font-size: 0.8125rem;
    transition: background 0.2s ease;
}

.lh-mega-link:hover {
    background: var(--lh-bg-surface);
}

.lh-mega-link:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: -2px;
}

/* Header actions */
.lh-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lh-header-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--lh-radius);
    color: var(--lh-text-primary);
    transition: background 0.2s ease;
}

.lh-header-btn:hover {
    background: var(--lh-bg-surface);
}

.lh-header-btn:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-header-btn:active {
    background: var(--lh-bg-tertiary);
}

.lh-header-btn svg {
    width: 20px;
    height: 20px;
}

.lh-hamburger {
    display: flex;
}

.lh-hamburger-line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--lh-text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lh-hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lh-hamburger.is-active .lh-hamburger-line:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}

.lh-hamburger.is-active .lh-hamburger-line:nth-child(2) {
    opacity: 0;
}

.lh-hamburger.is-active .lh-hamburger-line:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════
   7. MOBILE NAV
   ═══════════════════════════════════════════════════════ */
.lh-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
}

.lh-mobile-nav.is-open {
    pointer-events: auto;
}

.lh-mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lh-mobile-nav.is-open .lh-mobile-overlay {
    opacity: 1;
}

.lh-mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--lh-bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    padding-top: calc(var(--lh-header-h) + 0.5rem);
}

.lh-mobile-nav.is-open .lh-mobile-drawer {
    transform: translateX(0);
}

.lh-mobile-menu-item {
    border-bottom: 1px solid var(--lh-border-light);
}

.lh-mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    min-height: 44px;
    color: var(--lh-text-primary);
}

.lh-mobile-menu-link:hover {
    color: var(--lh-text-secondary);
}

.lh-mobile-menu-link:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: -2px;
}

.lh-mobile-menu-link:active {
    opacity: 0.7;
}

.lh-mobile-submenu {
    display: none;
    padding-bottom: 0.5rem;
}

.lh-mobile-submenu.is-open {
    display: block;
}

.lh-mobile-submenu a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--lh-text-secondary);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.lh-mobile-submenu a:hover {
    color: var(--lh-text-primary);
}

/* ═══════════════════════════════════════════════════════
   8. SEARCH OVERLAY
   ═══════════════════════════════════════════════════════ */
.lh-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lh-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.lh-search-overlay-inner {
    width: min(560px, 90vw);
}

.lh-search-overlay-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lh-text-primary);
    transition: opacity 0.2s ease;
}

.lh-search-overlay-close:hover {
    opacity: 0.6;
}

.lh-search-overlay-close:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-search-overlay-close:active {
    opacity: 0.4;
}

.lh-search-overlay-close svg {
    width: 24px;
    height: 24px;
}

.lh-search-overlay input[type="search"] {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--lh-navy);
    padding: 0.75rem 0;
    font-family: var(--lh-font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    background: transparent;
    color: var(--lh-text-primary);
    outline: none;
}

.lh-search-overlay input[type="search"]::placeholder {
    color: var(--lh-text-muted);
}

/* ═══════════════════════════════════════════════════════
   9. BUTTONS
   ═══════════════════════════════════════════════════════ */
.lh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--lh-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    border-radius: var(--lh-radius);
    transition: background 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    width: 100%;
}

.lh-btn:active {
    transform: scale(0.98);
}

.lh-btn-primary {
    background: var(--lh-navy);
    color: #fff;
}

.lh-btn-primary:hover {
    background: var(--lh-navy-light);
    color: #fff;
}

.lh-btn-primary:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-btn-secondary {
    background: var(--lh-bg-surface);
    color: var(--lh-text-primary);
    border: 1px solid var(--lh-border);
}

.lh-btn-secondary:hover {
    background: var(--lh-bg-tertiary);
    color: var(--lh-text-primary);
}

.lh-btn-secondary:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-btn-sm {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
    min-height: 36px;
}

.lh-btn-lg {
    font-size: 1rem;
    padding: 1rem 2rem;
    min-height: 52px;
}

/* ═══════════════════════════════════════════════════════
   10. CARDS — EXPANSE STYLE (NO BORDER/SHADOW)
   ═══════════════════════════════════════════════════════ */
.lh-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.lh-card:hover {
    color: inherit;
}

.lh-card:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 4px;
    border-radius: var(--lh-radius);
}

.lh-card-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--lh-radius);
    aspect-ratio: 4 / 3;
    background: var(--lh-bg-surface);
}

.lh-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lh-card:hover .lh-card-img img {
    transform: scale(1.03);
}

.lh-card-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--lh-bg);
    color: var(--lh-text-primary);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    z-index: 1;
}

.lh-card-body {
    padding-top: 0.375rem;
}

.lh-card-cat {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lh-text-muted);
    margin-bottom: 0.125rem;
}

.lh-card-title {
    font-family: var(--lh-font-heading);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--lh-text-primary);
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lh-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
}

.lh-card-price {
    font-family: var(--lh-font-mono);
    font-weight: 500;
    color: var(--lh-text-primary);
    font-size: 0.875rem;
}

.lh-card-score {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lh-text-primary);
}

.lh-card-score svg {
    width: 14px;
    height: 14px;
    fill: var(--lh-amber);
}

/* ═══════════════════════════════════════════════════════
   11. HERO
   ═══════════════════════════════════════════════════════ */
.lh-hero {
    background: var(--lh-navy);
    color: #fff;
    padding: 2rem 0 2.5rem;
    text-align: center;
}

.lh-hero h1 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.lh-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.lh-hero-search {
    max-width: 480px;
    margin: 0 auto 1.25rem;
    position: relative;
}

.lh-hero-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: none;
    border-radius: var(--lh-radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.875rem;
    outline: none;
    min-height: 44px;
    transition: background 0.2s ease;
}

.lh-hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lh-hero-search input:focus {
    background: rgba(255, 255, 255, 0.18);
}

.lh-hero-search svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.lh-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.lh-hero-stat {
    text-align: center;
}

.lh-hero-stat-num {
    font-family: var(--lh-font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    display: block;
}

.lh-hero-stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════
   12. HORIZONTAL SCROLL (TRENDING)
   ═══════════════════════════════════════════════════════ */
.lh-hscroll {
    display: flex;
    gap: var(--lh-grid-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.lh-hscroll::-webkit-scrollbar {
    display: none;
}

.lh-hscroll > * {
    flex: 0 0 72%;
    scroll-snap-align: start;
    min-width: 0;
}

/* ═══════════════════════════════════════════════════════
   13. CATEGORY GRID
   ═══════════════════════════════════════════════════════ */
.lh-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--lh-grid-gap);
}

.lh-cat-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--lh-radius);
    aspect-ratio: 3 / 2;
    background: var(--lh-bg-surface);
    display: flex;
    align-items: flex-end;
    padding: 0.75rem;
    text-decoration: none;
}

.lh-cat-item:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-cat-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lh-cat-item:hover img {
    transform: scale(1.03);
}

.lh-cat-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    mix-blend-mode: multiply;
}

.lh-cat-label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--lh-font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.lh-cat-count {
    display: block;
    font-family: var(--lh-font-body);
    font-size: 0.6875rem;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 0.125rem;
}

/* ═══════════════════════════════════════════════════════
   14. PROMO TILES
   ═══════════════════════════════════════════════════════ */
.lh-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lh-grid-gap);
}

.lh-promo-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--lh-radius);
    background: var(--lh-bg-surface);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 180px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.lh-promo-tile:hover {
    color: inherit;
}

.lh-promo-tile:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-promo-tile:active {
    transform: scale(0.99);
}

.lh-promo-tile h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.lh-promo-tile p {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   15. NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.lh-newsletter {
    background: var(--lh-bg-surface);
    border-radius: var(--lh-radius);
    padding: 1.5rem;
    text-align: center;
}

.lh-newsletter h2 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.lh-newsletter p {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    margin-bottom: 0.75rem;
}

.lh-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 420px;
    margin: 0 auto;
}

.lh-newsletter-form input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius);
    min-height: 44px;
    background: var(--lh-bg);
    outline: none;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.lh-newsletter-form input[type="email"]:focus {
    border-color: var(--lh-navy);
}

.lh-newsletter-form button {
    min-height: 44px;
}

/* ═══════════════════════════════════════════════════════
   16. TRUST SECTION
   ═══════════════════════════════════════════════════════ */
.lh-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lh-grid-gap);
}

.lh-trust-item {
    text-align: center;
    padding: 1rem;
}

.lh-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: var(--lh-bg-surface);
    color: var(--lh-text-primary);
}

.lh-trust-icon svg {
    width: 20px;
    height: 20px;
}

.lh-trust-item h3 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.lh-trust-item p {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
}

/* ═══════════════════════════════════════════════════════
   17. FOOTER
   ═══════════════════════════════════════════════════════ */
.lh-footer {
    background: var(--lh-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0 0;
}

.lh-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.lh-footer a:hover {
    color: #fff;
}

.lh-footer a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.lh-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}

.lh-footer-heading {
    color: #fff;
    font-family: var(--lh-font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.lh-footer-links li {
    margin-bottom: 0.375rem;
}

.lh-footer-links a {
    font-size: 0.8125rem;
    display: inline-block;
    padding: 0.125rem 0;
}

.lh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.lh-footer-disclosure {
    font-size: 0.6875rem;
    opacity: 0.5;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   18. SINGLE POST — LAYOUT
   ═══════════════════════════════════════════════════════ */
.lh-single-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lh-single-content {
    max-width: 780px;
    min-width: 0;
}

.lh-single-sidebar {
    display: none;
}

/* Disclosure */
.lh-disclosure {
    background: var(--lh-bg-surface);
    border-radius: var(--lh-radius);
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
    color: var(--lh-text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Breadcrumb */
.lh-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--lh-text-muted);
    margin-bottom: 0.75rem;
}

.lh-breadcrumb a {
    color: var(--lh-text-secondary);
}

.lh-breadcrumb a:hover {
    color: var(--lh-text-primary);
}

.lh-breadcrumb-sep {
    color: var(--lh-text-muted);
}

/* Post title & meta */
.lh-single-header {
    margin-bottom: 1.25rem;
}

.lh-single-header h1 {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.lh-single-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
}

.lh-single-meta time {
    color: var(--lh-text-muted);
}

/* Image gallery */
.lh-gallery {
    margin-bottom: 1.25rem;
}

.lh-gallery-main {
    position: relative;
    border-radius: var(--lh-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--lh-bg-surface);
    margin-bottom: 0.5rem;
}

.lh-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-gallery-thumbs {
    display: flex;
    gap: 0.375rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.lh-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.lh-gallery-thumb {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    border: 2px solid transparent;
}

.lh-gallery-thumb:hover,
.lh-gallery-thumb:focus-visible {
    opacity: 0.8;
}

.lh-gallery-thumb.is-active {
    opacity: 1;
    border-color: var(--lh-navy);
}

.lh-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════
   19. VERDICT BOX
   ═══════════════════════════════════════════════════════ */
.lh-verdict {
    background: var(--lh-bg-surface);
    border-radius: var(--lh-radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.lh-verdict-top {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.lh-verdict-score {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lh-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lh-font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    flex-shrink: 0;
}

.lh-verdict-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--lh-text-primary);
}

.lh-verdict-text strong {
    display: block;
    font-family: var(--lh-font-heading);
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.lh-verdict-bullets {
    margin-bottom: 0.75rem;
}

.lh-verdict-bullets li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.lh-verdict-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lh-navy);
}

/* ═══════════════════════════════════════════════════════
   20. SPECS TABLE
   ═══════════════════════════════════════════════════════ */
.lh-specs {
    margin-bottom: 1.25rem;
}

.lh-specs h2 {
    margin-bottom: 0.625rem;
}

.lh-specs-table {
    width: 100%;
    font-size: 0.8125rem;
}

.lh-specs-table tr:nth-child(even) {
    background: var(--lh-bg-surface);
}

.lh-specs-table td {
    padding: 0.5rem 0.625rem;
    vertical-align: top;
}

.lh-specs-table td:first-child {
    font-weight: 500;
    color: var(--lh-text-primary);
    width: 40%;
    white-space: nowrap;
}

.lh-specs-table td:last-child {
    color: var(--lh-text-secondary);
}

/* ═══════════════════════════════════════════════════════
   21. PRICE COMPARISON
   ═══════════════════════════════════════════════════════ */
.lh-price-compare {
    margin-bottom: 1.25rem;
}

.lh-price-compare h2 {
    margin-bottom: 0.625rem;
}

.lh-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.75rem;
    border-bottom: 1px solid var(--lh-border-light);
    gap: 0.75rem;
}

.lh-price-row:last-child {
    border-bottom: none;
}

.lh-price-row.is-best {
    background: var(--lh-green-light);
    border-radius: var(--lh-radius);
    border-bottom: none;
    margin-bottom: 2px;
}

.lh-price-platform {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lh-price-best-badge {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--lh-green);
    background: var(--lh-green-light);
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
}

.is-best .lh-price-best-badge {
    background: rgba(46, 125, 50, 0.15);
}

.lh-price-amount {
    font-family: var(--lh-font-mono);
    font-size: 0.9375rem;
    font-weight: 500;
}

.lh-price-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--lh-text-primary);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: opacity 0.2s ease;
}

.lh-price-link:hover {
    opacity: 0.6;
}

.lh-price-link:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-price-link:active {
    opacity: 0.4;
}

.lh-price-updated {
    font-size: 0.6875rem;
    color: var(--lh-text-muted);
    margin-top: 0.375rem;
}

/* ═══════════════════════════════════════════════════════
   22. POST CONTENT
   ═══════════════════════════════════════════════════════ */
.lh-post-content {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.lh-post-content h2 {
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
}

.lh-post-content h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.lh-post-content p {
    margin-bottom: 0.875rem;
}

.lh-post-content ul,
.lh-post-content ol {
    margin-bottom: 0.875rem;
    padding-left: 1.25rem;
}

.lh-post-content ul {
    list-style: disc;
}

.lh-post-content ol {
    list-style: decimal;
}

.lh-post-content li {
    margin-bottom: 0.25rem;
}

.lh-post-content a {
    color: var(--lh-text-primary);
    border-bottom: 1px solid var(--lh-border);
    transition: border-color 0.2s ease;
}

.lh-post-content a:hover {
    border-color: var(--lh-text-primary);
}

.lh-post-content img {
    border-radius: var(--lh-radius);
    margin: 1rem 0;
}

.lh-post-content figure {
    margin: 1rem 0;
}

.lh-post-content figcaption {
    font-size: 0.75rem;
    color: var(--lh-text-muted);
    margin-top: 0.375rem;
    text-align: center;
}

.lh-post-content blockquote {
    border-left: 3px solid var(--lh-navy);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--lh-text-secondary);
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════
   23. PROS & CONS
   ═══════════════════════════════════════════════════════ */
.lh-proscons {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lh-grid-gap);
    margin-bottom: 1.25rem;
}

.lh-pros, .lh-cons {
    padding: 1rem;
    border-radius: var(--lh-radius);
}

.lh-pros {
    background: var(--lh-green-light);
}

.lh-cons {
    background: var(--lh-red-light);
}

.lh-pros h3,
.lh-cons h3 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.lh-pros li,
.lh-cons li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
}

.lh-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--lh-green);
    font-weight: 700;
}

.lh-cons li::before {
    content: '\2013';
    position: absolute;
    left: 0;
    color: var(--lh-red);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   24. BUYER REVIEWS
   ═══════════════════════════════════════════════════════ */
.lh-buyer-reviews {
    margin-bottom: 1.25rem;
}

.lh-buyer-reviews h2 {
    margin-bottom: 0.625rem;
}

.lh-review-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--lh-border-light);
}

.lh-review-avg {
    font-family: var(--lh-font-heading);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
}

.lh-review-stars {
    display: flex;
    gap: 2px;
    color: var(--lh-amber);
}

.lh-review-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.lh-review-count {
    font-size: 0.8125rem;
    color: var(--lh-text-muted);
}

.lh-review-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--lh-border-light);
}

.lh-review-item:last-child {
    border-bottom: none;
}

.lh-review-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.lh-review-author {
    font-size: 0.8125rem;
    font-weight: 500;
}

.lh-review-item-stars {
    display: flex;
    gap: 1px;
    color: var(--lh-amber);
}

.lh-review-item-stars svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.lh-review-item p {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   25. WHO BUY / WHO AVOID
   ═══════════════════════════════════════════════════════ */
.lh-who {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lh-grid-gap);
    margin-bottom: 1.25rem;
}

.lh-who-buy, .lh-who-avoid {
    padding: 1rem;
    border-radius: var(--lh-radius);
}

.lh-who-buy {
    background: var(--lh-bg-surface);
    border-left: 3px solid var(--lh-green);
}

.lh-who-avoid {
    background: var(--lh-bg-surface);
    border-left: 3px solid var(--lh-red);
}

.lh-who-buy h3,
.lh-who-avoid h3 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.lh-who-buy li,
.lh-who-avoid li {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    margin-bottom: 0.25rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.lh-who-buy li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--lh-green);
    font-size: 0.75rem;
}

.lh-who-avoid li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: var(--lh-red);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════
   26. COMPARISON TABLE
   ═══════════════════════════════════════════════════════ */
.lh-compare {
    margin-bottom: 1.25rem;
    overflow-x: auto;
}

.lh-compare h2 {
    margin-bottom: 0.625rem;
}

.lh-compare-table {
    width: 100%;
    min-width: 500px;
    font-size: 0.8125rem;
}

.lh-compare-table th {
    text-align: left;
    font-weight: 500;
    padding: 0.5rem;
    border-bottom: 2px solid var(--lh-navy);
    font-size: 0.8125rem;
    white-space: nowrap;
}

.lh-compare-table td {
    padding: 0.5rem;
    border-bottom: 1px solid var(--lh-border-light);
    vertical-align: top;
}

.lh-compare-table tr:last-child td {
    border-bottom: none;
}

.lh-compare-highlight {
    background: var(--lh-bg-surface);
}

/* ═══════════════════════════════════════════════════════
   27. FINAL CTA
   ═══════════════════════════════════════════════════════ */
.lh-final-cta {
    background: var(--lh-navy);
    border-radius: var(--lh-radius);
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 1.25rem;
}

.lh-final-cta h2 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.lh-final-cta .lh-final-price {
    font-family: var(--lh-font-mono);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    display: block;
}

.lh-final-cta .lh-btn {
    background: #fff;
    color: var(--lh-navy);
    max-width: 320px;
    margin: 0 auto;
}

.lh-final-cta .lh-btn:hover {
    background: var(--lh-bg-surface);
    color: var(--lh-navy);
}

.lh-final-cta .lh-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════
   28. FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.lh-faq {
    margin-bottom: 1.25rem;
}

.lh-faq h2 {
    margin-bottom: 0.625rem;
}

.lh-faq-item {
    border-bottom: 1px solid var(--lh-border-light);
}

.lh-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lh-text-primary);
    min-height: 44px;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
}

.lh-faq-q:hover {
    color: var(--lh-text-secondary);
}

.lh-faq-q:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: -2px;
}

.lh-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lh-faq-item.is-open .lh-faq-icon {
    transform: rotate(45deg);
}

.lh-faq-a {
    display: none;
    padding-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    line-height: 1.6;
}

.lh-faq-item.is-open .lh-faq-a {
    display: block;
}

/* ═══════════════════════════════════════════════════════
   29. RELATED REVIEWS
   ═══════════════════════════════════════════════════════ */
.lh-related {
    margin-bottom: 1.25rem;
}

.lh-related h2 {
    margin-bottom: 0.625rem;
}

/* ═══════════════════════════════════════════════════════
   30. STICKY CTA BAR (MOBILE)
   ═══════════════════════════════════════════════════════ */
.lh-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--lh-bg);
    border-top: 1px solid var(--lh-border-light);
    padding: 0.5rem var(--lh-container-pad);
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
}

.lh-sticky-cta.is-visible {
    transform: translateY(0);
}

.lh-sticky-cta-info {
    flex: 1;
    min-width: 0;
}

.lh-sticky-cta-name {
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lh-sticky-cta-price {
    font-family: var(--lh-font-mono);
    font-size: 0.875rem;
    font-weight: 500;
}

.lh-sticky-cta .lh-btn {
    width: auto;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    min-height: 40px;
    font-size: 0.8125rem;
}

/* ═══════════════════════════════════════════════════════
   31. SIDEBAR
   ═══════════════════════════════════════════════════════ */
.lh-sidebar-box {
    background: var(--lh-bg-surface);
    border-radius: var(--lh-radius);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.lh-sidebar-box h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.lh-sidebar-box ul li {
    margin-bottom: 0.25rem;
}

.lh-sidebar-box ul li a {
    font-size: 0.8125rem;
    color: var(--lh-text-secondary);
    display: block;
    padding: 0.25rem 0;
}

.lh-sidebar-box ul li a:hover {
    color: var(--lh-text-primary);
}

/* ═══════════════════════════════════════════════════════
   32. ARCHIVE & SEARCH
   ═══════════════════════════════════════════════════════ */
.lh-archive-header {
    margin-bottom: 1rem;
}

.lh-archive-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.lh-archive-header p {
    font-size: 0.875rem;
    color: var(--lh-text-secondary);
}

.lh-archive-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.lh-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
}

.lh-sort-bar select {
    padding: 0.375rem 0.5rem;
    border: 1px solid var(--lh-border);
    border-radius: 4px;
    background: var(--lh-bg);
    min-height: 36px;
    font-size: 0.8125rem;
}

.lh-result-count {
    color: var(--lh-text-muted);
}

/* Search form */
.lh-searchform {
    display: flex;
    gap: 0.5rem;
}

.lh-searchform input[type="search"] {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius);
    min-height: 44px;
    background: var(--lh-bg);
    outline: none;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.lh-searchform input[type="search"]:focus {
    border-color: var(--lh-navy);
}

.lh-searchform button {
    min-height: 44px;
    padding: 0.625rem 1rem;
    background: var(--lh-navy);
    color: #fff;
    border-radius: var(--lh-radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.lh-searchform button:hover {
    background: var(--lh-navy-light);
}

.lh-searchform button:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-searchform button:active {
    background: var(--lh-navy-dark);
}

/* ═══════════════════════════════════════════════════════
   33. DEALS PAGE
   ═══════════════════════════════════════════════════════ */
.lh-deal-card {
    border-bottom: 1px solid var(--lh-border-light);
    padding: 0.75rem 0;
}

.lh-deal-card:last-child {
    border-bottom: none;
}

.lh-deal-inner {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.lh-deal-img {
    flex: 0 0 80px;
    height: 80px;
    border-radius: var(--lh-radius);
    overflow: hidden;
    background: var(--lh-bg-surface);
}

.lh-deal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lh-deal-body {
    flex: 1;
    min-width: 0;
}

.lh-deal-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.125rem;
    line-height: 1.3;
}

.lh-deal-prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.lh-deal-price-current {
    font-family: var(--lh-font-mono);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--lh-green);
}

.lh-deal-price-original {
    font-family: var(--lh-font-mono);
    font-size: 0.75rem;
    color: var(--lh-text-muted);
    text-decoration: line-through;
}

.lh-deal-platform {
    font-size: 0.6875rem;
    color: var(--lh-text-muted);
}

.lh-deal-countdown {
    font-family: var(--lh-font-mono);
    font-size: 0.75rem;
    color: var(--lh-red);
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   34. COMPARISON PAGE
   ═══════════════════════════════════════════════════════ */
.lh-comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.lh-comparison-header h1 {
    margin-bottom: 0.5rem;
}

.lh-comparison-header p {
    color: var(--lh-text-secondary);
    font-size: 0.9375rem;
}

/* ═══════════════════════════════════════════════════════
   35. 404 PAGE
   ═══════════════════════════════════════════════════════ */
.lh-404 {
    text-align: center;
    padding: 3rem 0;
}

.lh-404 h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.lh-404 p {
    color: var(--lh-text-secondary);
    margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   36. PAGINATION
   ═══════════════════════════════════════════════════════ */
.lh-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
}

.lh-pagination a,
.lh-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.lh-pagination a:hover {
    background: var(--lh-bg-surface);
    color: var(--lh-text-primary);
}

.lh-pagination a:focus-visible {
    outline: 2px solid var(--lh-navy);
    outline-offset: 2px;
}

.lh-pagination .current {
    background: var(--lh-navy);
    color: #fff;
}

.lh-pagination .dots {
    color: var(--lh-text-muted);
}

/* ═══════════════════════════════════════════════════════
   37. NO RESULTS
   ═══════════════════════════════════════════════════════ */
.lh-no-results {
    text-align: center;
    padding: 3rem 1rem;
}

.lh-no-results h2 {
    margin-bottom: 0.5rem;
}

.lh-no-results p {
    color: var(--lh-text-secondary);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════
   38. SCROLL REVEAL
   ═══════════════════════════════════════════════════════ */
.lh-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.lh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   39. UTILITIES
   ═══════════════════════════════════════════════════════ */
.lh-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;
}

.lh-text-muted {
    color: var(--lh-text-muted);
}

.lh-text-secondary {
    color: var(--lh-text-secondary);
}

.lh-text-center {
    text-align: center;
}

.lh-mb-0 {
    margin-bottom: 0;
}

.lh-mt-1 {
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   40. RESPONSIVE — TABLET (768px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    :root {
        --lh-container-pad: 1.25rem;
        --lh-grid-gap: 1rem;
    }

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

    .lh-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lh-promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lh-trust {
        grid-template-columns: repeat(3, 1fr);
    }

    .lh-proscons {
        grid-template-columns: repeat(2, 1fr);
    }

    .lh-who {
        grid-template-columns: repeat(2, 1fr);
    }

    .lh-newsletter-form {
        flex-direction: row;
    }

    .lh-newsletter-form input[type="email"] {
        flex: 1;
    }

    .lh-newsletter-form button {
        width: auto;
    }

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

    .lh-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .lh-hscroll > * {
        flex: 0 0 42%;
    }

    .lh-btn {
        width: auto;
    }

    .lh-hero p {
        font-size: 1rem;
    }

    .lh-deal-img {
        flex: 0 0 100px;
        height: 100px;
    }
}

/* ═══════════════════════════════════════════════════════
   41. RESPONSIVE — DESKTOP (1024px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
    :root {
        --lh-container-pad: 1.5rem;
        --lh-header-h: 56px;
        --lh-section-pad: 2.5rem;
    }

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .lh-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lh-cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .lh-nav {
        display: block;
    }

    .lh-hamburger {
        display: none;
    }

    .lh-hero {
        padding: 3rem 0 3.5rem;
        text-align: left;
    }

    .lh-hero h1 {
        font-size: 2.75rem;
    }

    .lh-hero p {
        margin-left: 0;
        margin-right: 0;
    }

    .lh-hero-search {
        margin-left: 0;
    }

    .lh-hero-stats {
        justify-content: flex-start;
    }

    .lh-single-layout {
        grid-template-columns: 1fr 280px;
    }

    .lh-single-sidebar {
        display: block;
    }

    .lh-sticky-cta {
        display: none;
    }

    .lh-archive-layout {
        grid-template-columns: 220px 1fr;
    }

    .lh-footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }

    .lh-hscroll > * {
        flex: 0 0 30%;
    }

    .lh-single-header h1 {
        font-size: 2rem;
    }

    .lh-hero-stat-num {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════
   42. RESPONSIVE — WIDE (1400px+)
   ═══════════════════════════════════════════════════════ */
@media (min-width: 1400px) {
    :root {
        --lh-section-pad: 3rem;
    }

    .lh-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .lh-hscroll > * {
        flex: 0 0 23%;
    }
}

/* ═══════════════════════════════════════════════════════
   43. ACCESSIBILITY — 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;
    }

    .lh-reveal {
        opacity: 1;
        transform: none;
    }

    .lh-card-img img {
        transition: none;
    }

    .lh-announce-track {
        animation: none;
    }
}

/* ═══════════════════════════════════════════════════════
   44. PRINT
   ═══════════════════════════════════════════════════════ */
@media print {
    .lh-header,
    .lh-announce,
    .lh-sticky-cta,
    .lh-mobile-nav,
    .lh-search-overlay,
    .lh-footer,
    .lh-newsletter {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .lh-container {
        max-width: 100%;
        padding: 0;
    }
}


/* ═══════════════════════════════════════════════════════
   PATCH: 28 Missing CSS Classes + Fixes
   ═══════════════════════════════════════════════════════ */

/* --- Gallery main image (single.php) --- */
#lh-gallery-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--lh-radius-md);
}

/* --- Hero input (front-page.php search) --- */
#lh-hero-input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--lh-radius-md);
    font-size: 0.9375rem;
    font-family: var(--lh-font-body);
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: border-color 0.2s, background 0.2s;
}

#lh-hero-input::placeholder {
    color: rgba(255,255,255,0.5);
}

#lh-hero-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.15);
}

/* --- Search button + close (header.php) --- */
#lh-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}

#lh-search-btn:hover {
    background: var(--lh-bg-surface);
}

#lh-search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s;
}

#lh-search-close:hover {
    background: var(--lh-bg-surface);
}

/* --- Mobile menu (header.php nav) --- */
.lh-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lh-mobile-menu-item {
    border-bottom: 1px solid var(--lh-border-light);
}

.lh-mobile-menu-link,
.lh-mobile-menu li a {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--lh-text-primary);
    transition: background 0.15s, color 0.15s;
}

.lh-mobile-menu li a:hover {
    background: var(--lh-bg-surface);
    color: var(--lh-text-primary);
}

/* --- Search overlay input (header.php) --- */
#lh-overlay-search {
    width: 100%;
    height: 52px;
    padding: 0 1rem;
    border: 2px solid var(--lh-text-primary);
    border-radius: var(--lh-radius-md);
    font-size: 1.125rem;
    font-family: var(--lh-font-body);
    background: var(--lh-bg-white);
}

#lh-overlay-search:focus {
    outline: none;
    border-color: var(--lh-text-secondary);
}

/* --- Sort select (archive.php) --- */
#lh-sort-select {
    height: 40px;
    padding: 0 2rem 0 0.75rem;
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-md);
    font-size: 0.8125rem;
    font-family: var(--lh-font-body);
    background: var(--lh-bg-white);
    appearance: auto;
    cursor: pointer;
}

/* --- Gallery thumbnails (single.php) --- */
.lh-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--lh-radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.lh-thumb:hover,
.lh-thumb.is-active {
    border-color: var(--lh-text-primary);
}

/* --- Mega menu description (Walker) --- */
.lh-mega-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--lh-text-muted);
    margin-top: 0.125rem;
    font-weight: 400;
}

/* --- Deal card inner (page-deals.php) --- */
.lh-deal-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- Searchform input (searchform.php) --- */
#lh-search-input {
    width: 100%;
    height: 44px;
    padding: 0 0.75rem;
    border: 1px solid var(--lh-border);
    border-radius: var(--lh-radius-md);
    font-size: 0.9375rem;
    font-family: var(--lh-font-body);
    background: var(--lh-bg-white);
    transition: border-color 0.15s;
}

#lh-search-input:focus {
    outline: none;
    border-color: var(--lh-text-primary);
}

/* --- Grid columns variable (single.php related) --- */
.lh-grid[style*="--lh-cols:3"] {
    grid-template-columns: repeat(3, 1fr);
}

.lh-grid[style*="--lh-cols:2"] {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
    .lh-grid[style*="--lh-cols:3"],
    .lh-grid[style*="--lh-cols:2"] {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .lh-grid[style*="--lh-cols:3"] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Utility color classes (used as CSS var references) --- */
/* These are CSS variable names, not classes — no CSS needed.
   lh-bg, lh-bg-surface, lh-green, lh-red, lh-navy, lh-text-primary
   are used as var(--lh-*) in style attributes, not as classes. */

/* --- Section heading IDs (used for aria-labelledby, not styling) --- */
/* lh-hero-title, lh-cat-title, lh-nl-title, lh-newsletter-heading,
   lh-promo-title, lh-latest-title, lh-trending-title, lh-trust-title
   are HTML IDs for accessibility, not CSS classes. No styling needed
   beyond existing h2 styles. */


/* ═══════════════════════════════════════════════════════
   PAGE TEMPLATE (About, Privacy, Terms, etc.)
   ═══════════════════════════════════════════════════════ */
.lh-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 1.5rem 0 3rem;
}

.lh-page-header {
    margin-bottom: 1.5rem;
}

.lh-page-header h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.lh-page-image {
    margin-bottom: 1.5rem;
    border-radius: var(--lh-radius-md);
    overflow: hidden;
}

.lh-page-content h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.625rem;
}

.lh-page-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.lh-page-content p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.lh-page-content a {
    color: var(--lh-text-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lh-page-content a:hover {
    color: var(--lh-text-secondary);
}

@media (min-width: 1024px) {
    .lh-page {
        padding: 2.5rem 0 4rem;
    }

    .lh-page-header h1 {
        font-size: 2.75rem;
        font-weight: 400;
    }
}
