/* ═══════════════════════════════════════════════════════════════════════════════
   FindHandsFree.com — Main Stylesheet
   Premium Dark Glassmorphism Design
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables / Design Tokens ─────────────────────────────────────────── */
:root {
    /* Colors */
    --bg-primary:      #0D0F14;
    --bg-secondary:    #12141B;
    --bg-card:         #1A1D25;
    --bg-card-hover:   #1F222B;
    --bg-elevated:     #22252F;
    --bg-glass:        rgba(26, 29, 37, 0.65);
    --bg-glass-border: rgba(255, 255, 255, 0.06);

    --accent:          #00C9A7;
    --accent-light:    #33D4B8;
    --accent-dark:     #00A88C;
    --accent-glow:     rgba(0, 201, 167, 0.25);
    --accent-subtle:   rgba(0, 201, 167, 0.08);

    --highlight:       #FF6B35;
    --highlight-light: #FF8A5C;
    --highlight-glow:  rgba(255, 107, 53, 0.25);

    --amazon-orange:   #FF9900;
    --amazon-dark:     #232F3E;
    --noon-yellow:     #F5D100;

    --text-primary:    #E8E8ED;
    --text-secondary:  #9B9DB1;
    --text-muted:      #6B6D80;
    --text-inverse:    #0D0F14;

    --border:          rgba(255, 255, 255, 0.06);
    --border-strong:   rgba(255, 255, 255, 0.12);
    --border-accent:   rgba(0, 201, 167, 0.3);

    --star-filled:     #FFC107;
    --star-half:       #FFC107;
    --star-empty:      #3A3D47;

    --success:         #22C55E;
    --warning:         #F59E0B;
    --danger:          #EF4444;
    --info:            #3B82F6;

    --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md:       0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg:       0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow:     0 0 40px var(--accent-glow);

    /* Typography */
    --font-heading:    'Outfit', sans-serif;
    --font-body:       'Inter', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --header-height:   72px;
    --radius-sm:       8px;
    --radius-md:       12px;
    --radius-lg:       16px;
    --radius-xl:       24px;
    --radius-pill:     9999px;

    /* Transitions */
    --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast:   0.15s;
    --duration-base:   0.3s;
    --duration-slow:   0.5s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-elevated) var(--bg-primary);
}

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--duration-fast);
}
a:hover { color: var(--accent-light); }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1em; color: var(--text-secondary); }

ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    white-space: nowrap;
    text-decoration: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-inverse);
    box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
    color: var(--text-inverse);
}

.btn-highlight {
    background: linear-gradient(135deg, var(--highlight), #E55A28);
    color: white;
    box-shadow: 0 4px 16px var(--highlight-glow);
}
.btn-highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--highlight-glow);
    color: white;
}

.btn-amazon {
    background: linear-gradient(135deg, var(--amazon-orange), #E88A00);
    color: var(--amazon-dark);
    font-weight: 700;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.3);
}
.btn-amazon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 153, 0, 0.4);
    color: var(--amazon-dark);
}
.btn-amazon i { font-size: 18px; }

.btn-noon {
    background: linear-gradient(135deg, var(--noon-yellow), #E0BF00);
    color: #1A1A1A;
    font-weight: 700;
    padding: 14px 28px;
    box-shadow: 0 4px 16px rgba(245, 209, 0, 0.3);
}
.btn-noon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 209, 0, 0.4);
    color: #1A1A1A;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-primary);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
}

.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 8px 16px;
}
.btn-ghost:hover { background: var(--accent-subtle); }

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 20px;
    transition: all var(--duration-fast);
}
.icon-btn:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

/* ─── Announcement Bar ──────────────────────────────────────────────────────── */
.announce-bar {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-dark));
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-inverse);
}
.announce-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.announce-text i { font-size: 16px; }

/* ─── Header / Navigation ──────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--bg-glass-border);
    transition: all var(--duration-base);
}

.site-header.scrolled {
    background: rgba(13, 15, 20, 0.92);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-inverse);
    font-size: 22px;
}
.logo-text { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.logo-primary { color: var(--text-primary); }
.logo-accent { color: var(--accent); }

/* Navigation */
.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
    background: var(--accent-subtle);
}
.nav-link i { font-size: 18px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle .ph-caret-down {
    font-size: 14px;
    transition: transform var(--duration-fast);
}
.has-dropdown:hover .ph-caret-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--duration-base) var(--ease-out);
    z-index: 100;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    transition: all var(--duration-fast);
}
.dropdown-menu a:hover {
    background: var(--accent-subtle);
    color: var(--accent);
}
.cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.cat-count {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-muted);
    background: var(--bg-primary);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
}

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

/* Search Overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base) var(--ease-out);
    z-index: 50;
}
.search-overlay.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 4px 16px;
    transition: border-color var(--duration-fast);
}
.search-form:focus-within { border-color: var(--accent); }
.search-icon { font-size: 22px; color: var(--text-muted); }
.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    padding: 14px 0;
    font-family: var(--font-body);
    outline: none;
}
.search-form input::placeholder { color: var(--text-muted); }
.search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}
.search-close:hover { background: var(--bg-elevated); color: var(--text-primary); }

.search-results-live {
    margin-top: 12px;
    max-height: 360px;
    overflow-y: auto;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: background var(--duration-fast);
    cursor: pointer;
}
.search-result-item:hover { background: var(--bg-elevated); }
.search-result-item img {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.search-result-item .sr-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}
.search-result-item .sr-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ─── Mobile Drawer ─────────────────────────────────────────────────────────── */
.mobile-toggle { display: none; }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 2000;
    overflow-y: auto;
    transition: right var(--duration-slow) var(--ease-out);
    padding: 24px;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-base);
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--duration-fast);
}
.mobile-nav-link:hover { background: var(--accent-subtle); color: var(--accent); }
.mobile-nav-divider {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 16px 16px 8px;
    font-weight: 600;
}

/* ─── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--accent-subtle);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-pill);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}
.hero-badge i { font-size: 16px; }

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-search {
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 0 auto 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    padding: 6px 6px 6px 20px;
    transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.hero-search:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.hero-search i { font-size: 20px; color: var(--text-muted); margin-right: 12px; }
.hero-search input {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    padding: 12px 0;
}
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search .btn { border-radius: var(--radius-lg); padding: 12px 24px; }

.hero-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--duration-fast);
}
.hero-cat-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
    transform: translateY(-2px);
}

/* ─── Section Styles ────────────────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.section-title {
    font-family: var(--font-heading);
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin-top: 10px;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

/* ─── Post Card (Glass) ─────────────────────────────────────────────────────── */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(0, 201, 167, 0.06);
}

.post-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}
.post-card:hover .post-card-image img { transform: scale(1.05); }

.post-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}
.post-card-verdict {
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-inverse);
    text-transform: uppercase;
}

.post-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.post-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-muted);
}
.post-card-meta .cat-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.post-card-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}
.post-card-title a {
    color: var(--text-primary);
    transition: color var(--duration-fast);
}
.post-card-title a:hover { color: var(--accent); }

.post-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.star-rating { display: inline-flex; align-items: center; gap: 2px; font-size: 14px; }
.star-full { color: var(--star-filled); }
.star-half { color: var(--star-half); opacity: 0.6; }
.star-empty { color: var(--star-empty); }
.rating-count { font-size: 12px; color: var(--text-muted); margin-left: 4px; }

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--duration-fast);
}
.read-more:hover { gap: 8px; }

/* ─── Featured Card (Large) ─────────────────────────────────────────────────── */
.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-out);
}
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.featured-card .post-card-image { aspect-ratio: auto; min-height: 260px; }
.featured-card .post-card-body { padding: 28px; justify-content: center; }
.featured-card .post-card-title { font-size: 20px; }

/* ─── Top Picks Row ─────────────────────────────────────────────────────────── */
.picks-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.picks-scroll::-webkit-scrollbar { height: 6px; }
.picks-scroll::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }

.pick-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.pick-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.pick-card-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 16px;
}
.pick-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}
.pick-card-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.pick-card-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--highlight);
    margin-bottom: 4px;
}
.pick-card a { color: var(--text-primary); text-decoration: none; }

/* ─── Single Post / Review ──────────────────────────────────────────────────── */
.single-header {
    padding: 60px 0 40px;
    text-align: center;
}
.single-header h1 { margin-bottom: 16px; }

.single-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.single-content h2 { margin: 40px 0 16px; }
.single-content h3 { margin: 32px 0 12px; }
.single-content p { font-size: 16px; line-height: 1.85; color: var(--text-secondary); }
.single-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}
.single-content ul, .single-content ol {
    padding-left: 24px;
    margin-bottom: 1.2em;
}
.single-content li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.single-content ol li { list-style: decimal; }
.single-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--accent-subtle);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--text-secondary);
    font-style: italic;
}

/* ─── Product Review Box ────────────────────────────────────────────────────── */
.product-box {
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    position: relative;
    overflow: hidden;
}
.product-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--highlight));
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.product-image img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    transition: transform var(--duration-base);
}
.product-box:hover .product-image img { transform: scale(1.05); }

.product-details { display: flex; flex-direction: column; gap: 16px; }
.product-brand {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 700;
}
.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-rating .star-rating { font-size: 20px; }
.product-rating .rating-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--star-filled);
    font-family: var(--font-heading);
}
.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--highlight);
    font-family: var(--font-heading);
}
.product-price-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.product-verdict {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--text-inverse);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
}

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

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}
.pros-list, .cons-list {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.pros-list { border: 1px solid rgba(34, 197, 94, 0.2); }
.cons-list { border: 1px solid rgba(239, 68, 68, 0.2); }

.pros-list h4, .cons-list h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 16px;
}
.pros-list h4 { color: var(--success); }
.cons-list h4 { color: var(--danger); }

.pros-list li, .cons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    list-style: none;
}
.pros-list li::before { content: '✓'; color: var(--success); font-weight: 700; }
.cons-list li::before { content: '✕'; color: var(--danger); font-weight: 700; }

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}
.specs-table th, .specs-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.specs-table th {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}
.specs-table td {
    color: var(--text-primary);
    font-weight: 500;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }

/* ─── Category Page ─────────────────────────────────────────────────────────── */
.category-header {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}
.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}
.category-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    font-size: 28px;
    margin-bottom: 16px;
}
.category-header h1 { margin-bottom: 8px; }
.category-desc { color: var(--text-muted); font-size: 16px; }
.category-count {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-subtle);
    color: var(--accent);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

/* ─── Search Results ────────────────────────────────────────────────────────── */
.search-header {
    padding: 60px 0 40px;
    text-align: center;
}
.search-header .search-query {
    color: var(--accent);
    font-weight: 600;
}
.search-count {
    color: var(--text-muted);
    margin-top: 8px;
}

/* ─── Breadcrumb ────────────────────────────────────────────────────────────── */
.breadcrumb {
    padding: 16px 0;
}
.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb li + li::before {
    content: '/';
    margin-right: 8px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:last-child span { color: var(--text-secondary); }

/* ─── Pagination ────────────────────────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}
.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--duration-fast);
    text-decoration: none;
}
.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.page-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-inverse);
    font-weight: 700;
}
.page-dots {
    color: var(--text-muted);
    padding: 0 4px;
}

/* ─── Newsletter ────────────────────────────────────────────────────────────── */
.newsletter-section {
    padding: 80px 0;
}
.newsletter-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--highlight), var(--accent));
}
.newsletter-icon {
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    background: var(--accent-subtle);
    border-radius: var(--radius-lg);
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 16px;
}
.newsletter-title { margin-bottom: 8px; }
.newsletter-desc { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }

.newsletter-input-group {
    display: flex;
    gap: 8px;
    max-width: 440px;
}
.newsletter-input-group input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--duration-fast);
}
.newsletter-input-group input:focus { border-color: var(--accent); }
.newsletter-input-group input::placeholder { color: var(--text-muted); }
.newsletter-msg {
    margin-top: 10px;
    font-size: 13px;
}
.newsletter-msg.success { color: var(--success); }
.newsletter-msg.error { color: var(--danger); }

.newsletter-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-glow {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    border-radius: 50%;
    position: absolute;
}
.newsletter-bell {
    font-size: 72px;
    color: var(--accent);
    position: relative;
    z-index: 1;
    animation: bellSwing 3s ease-in-out infinite;
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-about {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 18px;
    transition: all var(--duration-fast);
}
.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--duration-fast);
}
.footer-links a:hover { color: var(--accent); }
.footer-links i { font-size: 12px; }

.footer-disclosure {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border-left: 3px solid var(--warning);
}
.footer-disclosure i {
    font-size: 22px;
    color: var(--warning);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-disclosure p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Back to Top ───────────────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: var(--text-inverse);
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* ─── Flash Messages ────────────────────────────────────────────────────────── */
.flash {
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    max-width: var(--container-width);
    margin: 16px auto;
    animation: slideDown 0.4s var(--ease-out);
}
.flash-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: var(--success); }
.flash-error   { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: var(--danger); }

/* ─── 404 ───────────────────────────────────────────────────────────────────── */
.page-404 {
    text-align: center;
    padding: 120px 24px;
}
.page-404 .error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--highlight));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.page-404 h2 { margin-bottom: 12px; }
.page-404 p { color: var(--text-muted); margin-bottom: 32px; }

/* ─── Related Posts ─────────────────────────────────────────────────────────── */
.related-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-card { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .product-box { grid-template-columns: 200px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }

    .main-nav { display: none; }
    .mobile-toggle { display: flex; }

    .hero { padding: 48px 0 64px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 15px; }
    .hero-search { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; }
    .hero-search input { text-align: center; }
    .hero-search .btn { width: 100%; justify-content: center; }

    .section { padding: 48px 0; }
    .section-header { flex-direction: column; text-align: center; }

    .post-grid { grid-template-columns: 1fr; }
    .featured-card { grid-template-columns: 1fr; }

    .product-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .product-image { padding: 20px; }
    .product-buy-buttons { flex-direction: column; }

    .pros-cons { grid-template-columns: 1fr; }

    .newsletter-card { grid-template-columns: 1fr; padding: 32px; }
    .newsletter-visual { display: none; }
    .newsletter-input-group { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .picks-scroll { gap: 14px; }
    .pick-card { flex: 0 0 240px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .announce-bar { font-size: 12px; padding: 6px 0; }
    .hero h1 { font-size: 1.5rem; }
    .post-card-body { padding: 16px; }
    .product-box { padding: 16px; }
}

/* ─── Print ─────────────────────────────────────────────────────────────────── */
@media print {
    .site-header, .announce-bar, .newsletter-section, .site-footer,
    .back-to-top, .search-overlay, .mobile-drawer, .mobile-drawer-overlay { display: none !important; }
    body { background: white; color: #222; }
    .single-content { max-width: 100%; }
}

/* ─── AdSense ad units ─────────────────────────────────────────────────────── */
.ad-unit {
    margin: 24px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    min-height: 90px;
}
.ad-unit ins { display: block; }
.ad-unit.ad-in_article { margin: 32px auto; }
.single-content .ad-unit { clear: both; }

/* ─── Single post: two-column layout + sidebar ─────────────────────────────── */
.single-layout {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 44px;
    align-items: start;
}
.single-main { min-width: 0; }
.single-layout .single-content { max-width: 100%; margin: 0; padding: 0 0 32px; }
.single-sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.sb-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
}
.sb-ad-widget { padding: 0; background: none; border: none; }
.sb-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}
.sb-title i { color: var(--accent); }

/* Popular list */
.sb-popular { display: flex; flex-direction: column; gap: 6px; }
.sb-pop-item {
    display: flex; align-items: center; gap: 12px;
    padding: 8px; border-radius: 12px; text-decoration: none;
    transition: background .2s;
}
.sb-pop-item:hover { background: var(--bg-elevated); }
.sb-pop-rank {
    flex-shrink: 0; width: 22px; text-align: center;
    font-family: var(--font-heading); font-weight: 800; font-size: 16px;
    color: var(--accent); opacity: .7;
}
.sb-pop-thumb {
    flex-shrink: 0; width: 54px; height: 54px; border-radius: 10px;
    background-size: cover; background-position: center; background-color: var(--bg-elevated);
}
.sb-pop-thumb-ph { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 22px; }
.sb-pop-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sb-pop-title {
    font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--text-primary);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.sb-pop-meta { font-size: 11.5px; color: var(--text-muted); }

/* Categories list */
.sb-cats { display: flex; flex-direction: column; gap: 2px; }
.sb-cat {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 10px; text-decoration: none;
    color: var(--text-secondary); font-size: 14px; transition: background .2s, color .2s;
}
.sb-cat:hover { background: var(--bg-elevated); color: var(--text-primary); }
.sb-cat-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c, var(--accent)); flex-shrink: 0; }
.sb-cat span:nth-child(2) { flex: 1; }
.sb-cat-count {
    font-size: 12px; color: var(--text-muted);
    background: var(--bg-elevated); border-radius: 999px; padding: 2px 9px; min-width: 26px; text-align: center;
}

/* Follow us widget */
.sb-follow-desc { font-size: 13px; color: var(--text-muted); margin: -6px 0 14px; line-height: 1.5; }
.sb-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.sb-socials a {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-elevated); border: 1px solid var(--border);
    color: var(--text-secondary); font-size: 20px; text-decoration: none;
    transition: all .25s;
}
.sb-socials a:hover { background: var(--accent); color: #001b16; border-color: var(--accent); transform: translateY(-2px); }

/* In-article "Read also" cards */
.inpost-card {
    display: block; margin: 32px 0; clear: both;
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--accent-subtle), transparent 60%),
        var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.inpost-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,0,0,.28); border-color: var(--accent); }
.inpost-card-link { display: flex; align-items: stretch; gap: 0; text-decoration: none; }
.inpost-thumb {
    flex-shrink: 0; width: 132px; align-self: stretch; min-height: 108px;
    background-size: cover; background-position: center; background-color: var(--bg-elevated);
}
.inpost-thumb-ph { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 34px; }
.inpost-body { display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 16px 20px; min-width: 0; }
.inpost-label {
    font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); display: inline-flex; align-items: center; gap: 6px;
}
.inpost-heading {
    font-family: var(--font-heading); font-weight: 700; font-size: 18px; line-height: 1.3;
    color: var(--text-primary);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.inpost-card:hover .inpost-heading { color: var(--accent); }
.inpost-meta { display: flex; align-items: center; gap: 14px; margin-top: 2px; }
.inpost-rating { font-size: 13px; font-weight: 700; color: #F5D100; display: inline-flex; align-items: center; gap: 4px; }
.inpost-cta {
    font-size: 13px; font-weight: 700; color: var(--accent);
    display: inline-flex; align-items: center; gap: 6px;
}
.inpost-card:hover .inpost-cta i { transform: translateX(3px); }
.inpost-cta i { transition: transform .2s; }
@media (max-width: 560px) {
    .inpost-thumb { width: 96px; }
    .inpost-heading { font-size: 15px; }
}

@media (max-width: 980px) {
    .single-layout { grid-template-columns: 1fr; gap: 0; }
    .single-sidebar { position: static; margin-top: 32px; }
}

/* ─── Image polish ─────────────────────────────────────────────────────────── */
.post-card-image::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,.42), transparent 52%);
    opacity: .9; transition: opacity .3s;
}
.post-card:hover .post-card-image::after { opacity: .6; }
.post-card:hover .post-card-image img { transform: scale(1.08); }
.post-card-badge, .post-card-verdict { z-index: 2; }

.single-hero-img {
    margin: 0 0 28px; position: relative; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    box-shadow: 0 22px 55px rgba(0,0,0,.4);
}
.single-hero-img img { display: block; width: 100%; height: auto; }
.single-hero-img::after {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(160deg, rgba(255,255,255,.06), transparent 40%);
}

/* Product image gets a soft glow frame */
.product-image {
    position: relative;
    background:
        radial-gradient(circle at 50% 35%, var(--accent-subtle), transparent 70%),
        var(--bg-elevated);
    border-radius: var(--radius-lg);
}

/* ─── Verdict card (top of review) ─────────────────────────────────────────── */
.verdict-card {
    background:
        linear-gradient(135deg, var(--accent-subtle), transparent 55%),
        var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    padding: 26px 28px;
    margin: 0 0 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.verdict-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.verdict-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
}
.verdict-eyebrow i { font-size: 15px; }
.verdict-heading h2 { font-size: clamp(20px, 3vw, 26px); margin: 8px 0 0; }
.verdict-score {
    flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
    background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 16px;
    padding: 12px 18px; min-width: 96px;
}
.verdict-score-num { font-family: var(--font-heading); font-weight: 800; font-size: 34px; line-height: 1; color: var(--accent); }
.verdict-score-out { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.verdict-stars { margin-top: 6px; font-size: 13px; }
.verdict-summary { font-size: 16px; line-height: 1.7; color: var(--text-secondary); margin: 18px 0 0; }
.verdict-price { margin-top: 16px; font-size: 15px; color: var(--text-secondary); }
.verdict-price strong { color: var(--text-primary); font-size: 20px; }
.verdict-card .product-buy-buttons { margin-top: 20px; }
.commission-note { font-size: 12px; color: var(--text-muted); margin: 12px 0 0; }

/* ─── Review blocks (pros/cons, specs) ─────────────────────────────────────── */
.review-block { margin: 0 0 36px; }
.block-title {
    font-size: 22px; margin: 0 0 20px; display: flex; align-items: center; gap: 10px;
}
.block-title i { color: var(--accent); font-size: 22px; }
