/**
 * ReviewPanel - Women-Friendly Design
 * Warm, Readable, Mobile-First
 * Target: Women & Easy Reading
 */

/* ========================================
   CSS VARIABLES & THEME
   ======================================== */
:root {
    /* Light Theme - Warm & Feminine */
    --bg-primary: #FFFBFC;
    --bg-secondary: #FDF2F8;
    --bg-tertiary: #FCE7F3;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;

    --text-primary: #1E1B4B;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;

    /* Vibrant Pink - Warm & Inviting */
    --accent: #EC4899;
    --accent-hover: #DB2777;
    --accent-light: #F9A8D4;
    --accent-muted: rgba(236, 72, 153, 0.1);
    --accent-bg: #FDF2F8;

    /* Secondary - Soft Lavender */
    --secondary: #A855F7;
    --secondary-light: #E9D5FF;

    --success: #34D399;
    --success-light: #D1FAE5;
    --danger: #F87171;
    --warning: #FBBF24;

    --border: #F3E8FF;
    --border-hover: #DDD6FE;

    /* Beautiful Gradients */
    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F472B6 50%, #FBCFE8 100%);
    --gradient-warm: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%);
    --gradient-hero: linear-gradient(180deg, #FFFBFC 0%, #FDF2F8 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #FFFBFC 100%);

    /* Soft Dreamy Shadows */
    --shadow-xs: 0 1px 3px rgba(236, 72, 153, 0.08);
    --shadow-sm: 0 4px 12px rgba(236, 72, 153, 0.1);
    --shadow-md: 0 12px 32px rgba(236, 72, 153, 0.12);
    --shadow-lg: 0 24px 64px rgba(236, 72, 153, 0.16);
    --shadow-glow: 0 0 60px rgba(236, 72, 153, 0.2);
    --shadow-card: 0 8px 30px rgba(236, 72, 153, 0.08);

    /* Smooth Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Typography - Large & Readable */
    --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'DM Sans', sans-serif;

    /* Base font size - LARGER for readability */
    --text-base: 18px;
    --text-lg: 20px;
    --text-xl: 24px;
    --text-2xl: 30px;
    --text-3xl: 36px;
    --text-4xl: 48px;
    --text-5xl: 60px;

    /* Spacing - More generous */
    --container-max: 1200px;
    --header-height: 60px;

    /* Sharp corners - Modern & Clean */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    --radius-full: 9999px;

    /* Touch targets - Minimum 48px for mobile */
    --touch-target: 48px;
}

/* Dark Theme - Warm & Cozy */
[data-theme="dark"] {
    --bg-primary: #1A1625;
    --bg-secondary: #221D2E;
    --bg-tertiary: #2D2640;
    --bg-card: #251F33;
    --bg-elevated: #2D2640;

    --text-primary: #FAF5FF;
    --text-secondary: #C4B5FD;
    --text-tertiary: #A78BFA;

    --accent: #F472B6;
    --accent-hover: #EC4899;
    --accent-light: #831843;
    --accent-muted: rgba(244, 114, 182, 0.15);
    --accent-bg: #2D1F35;

    --secondary: #C084FC;
    --secondary-light: #581C87;

    --border: #3D3450;
    --border-hover: #4C4160;

    /* Dark mode gradients */
    --gradient-accent: linear-gradient(135deg, #F472B6 0%, #EC4899 50%, #831843 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #221D2E 50%, #2D2640 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);
    --gradient-card: linear-gradient(145deg, #251F33 0%, #1A1625 100%);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background var(--transition-base), color var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

::selection {
    background: var(--accent);
    color: #000000;
}

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

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

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

.accent-text {
    color: var(--accent);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.display-xl {
    font-size: clamp(56px, 12vw, 140px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.display-lg {
    font-size: clamp(42px, 8vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.display-md {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-xl {
    font-size: var(--text-xl);
    line-height: 1.5;
}

.text-lg {
    font-size: var(--text-lg);
    line-height: 1.7;
}

.text-sm {
    font-size: 16px;
}

.text-xs {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    min-height: var(--touch-target);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: var(--accent-muted);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #ffffff;
}

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

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent-muted);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--accent-muted);
    color: var(--accent);
}

.btn-icon {
    width: var(--touch-target);
    height: var(--touch-target);
    padding: 0;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 2px solid var(--border);
}

.btn-icon:hover {
    border-color: var(--accent-light);
    background: var(--accent-muted);
    color: var(--accent);
}

/* ========================================
   ANNOUNCEMENT BAR - Fixed neutral design
   ======================================== */
.announcement-bar {
    background: #111;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    border-bottom: 1px solid #222;
}

[data-theme="dark"] .announcement-bar {
    background: #000;
    border-bottom-color: #1a1a1a;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-icon {
    color: #10B981;
    flex-shrink: 0;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
}

.announcement-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .announcement-bar {
        padding: 6px 0;
    }

    .announcement-content {
        gap: 10px;
    }

    .announcement-divider,
    .announcement-text:last-child {
        display: none;
    }

    .announcement-text {
        font-size: 12px;
    }
}

/* ========================================
   HEADER / NAVIGATION - Clean minimal design
   ======================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 10, 10, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-icon .logo-dark {
    fill: #1a1a1a;
    transition: fill 0.2s ease;
}

.logo-icon .logo-accent {
    fill: var(--logo-accent, #EC4899);
}

/* Dark mode logo fix */
[data-theme="dark"] .logo-icon .logo-dark {
    fill: #FAF5FF;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo:hover .logo-accent {
    fill: var(--accent);
}

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

/* Category-based logo accent colors */
[data-category-theme="electronics"] .logo-icon .logo-accent { fill: #3B82F6; }
[data-category-theme="home-kitchen"] .logo-icon .logo-accent { fill: #EA580C; }
[data-category-theme="beauty-personal-care"] .logo-icon .logo-accent,
[data-category-theme="beauty-skincare"] .logo-icon .logo-accent { fill: #EC4899; }
[data-category-theme="health-household"] .logo-icon .logo-accent { fill: #10B981; }
[data-category-theme="sports-outdoors"] .logo-icon .logo-accent { fill: #EF4444; }
[data-category-theme="toys-games"] .logo-icon .logo-accent { fill: #8B5CF6; }
[data-category-theme="baby-products"] .logo-icon .logo-accent { fill: #38BDF8; }
[data-category-theme="pet-supplies"] .logo-icon .logo-accent { fill: #D97706; }
[data-category-theme="office-products"] .logo-icon .logo-accent { fill: #6366F1; }
[data-category-theme="tools-home-improvement"] .logo-icon .logo-accent { fill: #EAB308; }
[data-category-theme="lego"] .logo-icon .logo-accent { fill: #E3000B; }

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
}

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

/* Theme Toggle Icons */
.header-btn .icon-moon {
    display: none;
}

[data-theme="dark"] .header-btn .icon-sun {
    display: none;
}

[data-theme="dark"] .header-btn .icon-moon {
    display: block;
}

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

.mobile-toggle .icon-close {
    display: none;
}

.mobile-toggle.active .icon-menu {
    display: none;
}

.mobile-toggle.active .icon-close {
    display: block;
}

/* Mobile Navigation - Premium Redesign */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 9999;
    overflow-y: auto;
    padding: 0;
    animation: mobileNavSlide 0.3s ease;
}

@keyframes mobileNavSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav.open {
    display: flex;
    flex-direction: column;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.mobile-nav-logo img,
.mobile-nav-logo svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-close:hover {
    background: var(--bg-tertiary);
}

/* Mobile Nav Content */
.mobile-nav-content {
    flex: 1;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 0;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    background: transparent;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
}

.mobile-link:first-child {
    border-top: 1px solid var(--border);
}

.mobile-link:hover,
.mobile-link:active {
    background: var(--bg-secondary);
    color: var(--accent);
}

.mobile-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-tertiary);
}

.mobile-link:hover svg {
    color: var(--accent);
}

/* Mobile Search - Improved */
.mobile-search {
    margin-top: 8px;
}

.mobile-search form {
    display: flex;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.mobile-search form:focus-within {
    border-color: var(--accent);
}

.mobile-search input {
    flex: 1;
    padding: 14px 18px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
}

.mobile-search input::placeholder {
    color: var(--text-muted);
}

.mobile-search input:focus {
    outline: none;
}

.mobile-search button {
    padding: 14px 18px;
    background: var(--accent);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-search button:hover {
    background: var(--accent-dark);
}

/* Mobile User Section - Enhanced */
.mobile-user-section {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-secondary);
    margin-bottom: 16px;
}

.mobile-user-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-user-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.mobile-user-email {
    font-size: 13px;
    color: var(--text-muted);
}

.mobile-user-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-user-links .mobile-link {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
}

.mobile-logout {
    color: #EF4444 !important;
}

.mobile-logout:hover {
    background: rgba(239, 68, 68, 0.08) !important;
}

/* Mobile Auth Buttons - Premium Style */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth-buttons .btn {
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-auth-buttons .btn-primary {
    background: var(--accent);
    color: #fff;
}

.mobile-auth-buttons .btn-primary:hover {
    background: var(--accent-dark);
}

.mobile-auth-buttons .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.mobile-auth-buttons .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Header Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-inner {
        height: 56px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 80px) 0 120px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Hero after slider - reduce padding */
.hero-slider + .hero,
.hero-slider-v2 + .hero {
    min-height: auto;
    padding: 32px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-muted);
    border: 1px solid var(--accent-light);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-text, .hero-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stat {
    position: relative;
}

.hero-stat::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-stat:first-child::before {
    display: none;
}

.stat-number {
    display: block;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 500px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 0;
    left: -60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 280px;
    box-shadow: var(--shadow-lg);
}

.floating-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.floating-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.floating-card-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
}

.rating-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 1s ease;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.section-header.with-action .btn {
    flex-shrink: 0;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 24px;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    background: var(--border);
}

.category-card {
    background: var(--bg-primary);
    padding: 48px 32px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-4px);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--accent);
    transition: all var(--transition-base);
}

.category-card:hover .category-icon {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.category-name {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 8px;
}

.category-count {
    font-size: 15px;
    color: var(--text-tertiary);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.products-section {
    background: var(--bg-primary);
}

.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product Card - Editorial Style */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}

.product-card-image {
    position: relative;
    aspect-ratio: 3/4; /* Better card format - fits 9:16 images nicely */
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.product-card-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
}

.product-card-content {
    padding: 24px;
}

.product-card-category {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 12px;
}

.product-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    transition: color var(--transition-fast);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:hover .product-card-title {
    color: var(--accent);
}

.product-card-excerpt {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-tertiary);
}

.product-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Featured Product Card */
.product-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-card.featured .product-card-image {
    aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
    height: auto;
    min-height: 400px;
    max-height: 600px;
}

.product-card.featured .product-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card.featured .product-card-title {
    font-size: var(--text-2xl);
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-hero {
    padding: calc(var(--header-height) + 60px) 0 80px;
    border-bottom: 1px solid var(--border);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    overflow: hidden;
    max-height: 700px;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.product-breadcrumb a:hover {
    color: var(--accent);
}

.product-breadcrumb .separator {
    color: var(--border);
}

.product-category-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.product-rating-display {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.rating-big-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.rating-big-label {
    font-size: 15px;
    color: var(--text-tertiary);
}

.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-breakdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rating-breakdown-label {
    width: 110px;
    font-size: 14px;
    color: var(--text-secondary);
}

.rating-breakdown-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    position: relative;
}

.rating-breakdown-fill {
    height: 100%;
    background: var(--accent);
}

.rating-breakdown-value {
    width: 30px;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
}

/* Old verdict style - disabled, now using plain text */

.product-verdict-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 10px;
}

.product-verdict-text {
    font-size: var(--text-base);
    line-height: 1.7;
}

.product-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-price {
    margin-top: 16px;
    font-size: 16px;
    color: var(--text-tertiary);
}

/* ========================================
   CONTENT AREA
   ======================================== */
/* Note: .content-section styles are in the Product Content section below */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.content-main {
    min-width: 0;
}

.content-block {
    margin-bottom: 80px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

/* Article Content */
.article-content {
    font-size: 19px;
    line-height: 1.85;
    color: var(--text-primary);
}

.article-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 64px 0 28px;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.article-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 48px 0 22px;
}

.article-content p {
    margin-bottom: 26px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 26px;
    padding-left: 28px;
}

.article-content li {
    margin-bottom: 14px;
    font-size: 19px;
}

.article-content strong {
    font-weight: 600;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.pros-list,
.cons-list {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.pros-list {
    border-top: 4px solid var(--success);
}

.cons-list {
    border-top: 4px solid var(--danger);
}

.pros-cons-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pros-cons-title svg {
    width: 24px;
    height: 24px;
}

.pros-list .pros-cons-title {
    color: var(--success);
}

.cons-list .pros-cons-title {
    color: var(--danger);
}

.pros-cons-items {
    list-style: none;
}

.pros-cons-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.pros-cons-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pros-cons-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.pros-list .pros-cons-icon {
    color: var(--success);
}

.cons-list .pros-cons-icon {
    color: var(--danger);
}

.pros-cons-content strong {
    display: block;
    margin-bottom: 4px;
}

.pros-cons-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

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

.specs-table th,
.specs-table td {
    padding: 18px 22px;
    text-align: left;
    font-size: 16px;
}

.specs-table th {
    width: 40%;
    color: var(--text-secondary);
    font-weight: 500;
    background: var(--bg-tertiary);
}

/* FAQ - Legacy section removed, see modern FAQ styles in product section */

/* Sidebar */
.content-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 96px; /* 64px header + 32px spacing */
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 24px;
}

.sidebar-rating {
    text-align: center;
    margin-bottom: 24px;
}

.sidebar-rating-score {
    font-size: 72px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.sidebar-rating-label {
    font-size: 15px;
    color: var(--text-tertiary);
    margin-top: 10px;
}

.sidebar-cta {
    margin-bottom: 24px;
}

.sidebar-disclosure {
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 16px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-tertiary);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade"] {
    transform: none;
}

[data-animate="slide-left"] {
    transform: translateX(-40px);
}

[data-animate="slide-left"].animated {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(40px);
}

[data-animate="slide-right"].animated {
    transform: translateX(0);
}

/* ========================================
   NEW HOMEPAGE ELEMENTS
   ======================================== */

/* Hero Text & Badge */
.text-accent {
    color: var(--accent);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Hero Search */
.hero-search {
    margin-bottom: 60px;
}

.search-form {
    display: flex;
    gap: 12px;
    max-width: 520px;
}

.search-input-wrap {
    flex: 1;
    position: relative;
}

.search-input-wrap .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.search-input-wrap input {
    width: 100%;
    padding: 16px 16px 16px 52px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.search-input-wrap input:focus {
    outline: none;
    border-color: var(--accent);
}

.search-input-wrap input::placeholder {
    color: var(--text-tertiary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual & Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.floating-card.card-1 {
    top: 60px;
    right: 0;
}

.floating-card.card-2 {
    top: 200px;
    left: 40px;
}

.floating-card.card-3 {
    bottom: 100px;
    right: 60px;
}

.fc-rating {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.fc-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent);
}

.fc-check {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--success);
    color: #000;
}

.fc-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Categories Strip */
.categories-strip {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.strip-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.link-arrow:hover {
    color: var(--accent);
}

.categories-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.categories-scroll::-webkit-scrollbar {
    height: 6px;
}

.categories-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.category-chip:hover {
    border-color: var(--accent);
    background: var(--accent-muted);
}

.chip-name {
    font-size: 14px;
    font-weight: 500;
}

.chip-count {
    font-size: 12px;
    padding: 2px 8px;
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
}

/* ========================================
   FEATURED SECTION - Modern Bento Grid
   ======================================== */
.featured-section {
    padding: 80px 0;
    background: #000;
}

.featured-header {
    margin-bottom: 32px;
}

.featured-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.featured-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 500px;
}

.featured-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.featured-card-large {
    grid-row: span 2;
}

.featured-card-bg {
    position: absolute;
    inset: 0;
}

.featured-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .featured-card-bg img {
    transform: scale(1.05);
}

.featured-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    transition: background 0.3s;
}

.featured-card:hover .featured-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.featured-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    z-index: 2;
}

.featured-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 700;
}

.featured-category {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.featured-card-bottom h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.featured-card-large .featured-card-bottom h3 {
    font-size: 22px;
}

.featured-card-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 8px 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-card-large .featured-rating {
    width: 44px;
    height: 44px;
    font-size: 15px;
}

.featured-card-large .featured-card-content {
    padding: 24px;
}

@media (max-width: 1024px) {
    .featured-grid-modern {
        grid-template-columns: 1fr 1fr;
        height: 450px;
    }

    .featured-card:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 640px) {
    .featured-section {
        padding: 40px 0;
        background: var(--bg-primary);
    }

    .featured-header h2 {
        color: var(--text-primary);
    }

    .featured-grid-modern {
        display: flex;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }

    .featured-card {
        height: auto;
        min-height: 120px;
        display: flex;
        flex-direction: row;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
    }

    .featured-card-large {
        grid-row: span 1;
        height: auto;
        min-height: 120px;
    }

    .featured-card .featured-card-bg {
        position: relative;
        width: 120px;
        min-width: 120px;
        height: 120px;
    }

    .featured-card .featured-card-overlay {
        display: none;
    }

    .featured-card .featured-card-content {
        position: relative;
        flex: 1;
        padding: 12px 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: transparent;
    }

    .featured-card .featured-card-top {
        margin-bottom: 8px;
    }

    .featured-card .featured-rating {
        background: var(--accent);
        color: #000;
    }

    .featured-card .featured-category {
        background: var(--bg-tertiary);
        color: var(--text-secondary);
    }

    .featured-card .featured-card-bottom h3 {
        font-size: 15px;
        color: var(--text-primary);
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .featured-card-large .featured-card-bottom h3 {
        font-size: 15px;
    }

    .featured-card .featured-card-bottom p {
        display: none;
    }

    /* Hide compare button on mobile featured cards */
    .featured-card .compare-btn {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }
}

/* Old Featured Grid - kept for compatibility */
.featured-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.featured-grid .review-card-main {
    grid-row: span 3;
}

/* Review Cards */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.review-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-media {
    display: block;
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.review-card:hover .card-media img {
    transform: scale(1.05);
}

.media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
}

/* Card Score Badge */
.card-score {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 14px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.card-score-sm {
    padding: 6px 10px;
    top: 12px;
    right: 12px;
}

.score-value {
    font-weight: 800;
    font-size: 16px;
}

.card-score-sm .score-value {
    font-size: 14px;
}

/* Card Body */
.card-body {
    padding: 24px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.meta-category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.meta-dot {
    width: 4px;
    height: 4px;
    background: var(--text-tertiary);
    border-radius: var(--radius-full);
}

.meta-time, .meta-views {
    font-size: 13px;
    color: var(--text-tertiary);
}

.card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.card-title a {
    transition: color var(--transition-fast);
}

.review-card:hover .card-title a {
    color: var(--accent);
}

.card-excerpt {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.read-more:hover {
    gap: 12px;
}

.card-views {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Review Card Main */
.review-card-main .card-media {
    height: 100%;
    min-height: 400px;
}

.review-card-main .card-body {
    padding: 32px;
}

.review-card-main .card-title {
    font-size: 24px;
}

.review-card-main .card-excerpt {
    -webkit-line-clamp: 4;
}

/* Review Card Side */
.review-card-side {
    display: grid;
    grid-template-columns: 140px 1fr;
}

.review-card-side .card-media {
    height: 100%;
}

.review-card-side .card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card-side .card-title {
    font-size: 15px;
    margin-bottom: 8px;
}

.review-card-side .meta-time {
    font-size: 12px;
}

/* Review Card Compact */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card-compact .card-media {
    aspect-ratio: 3/4;
    display: block;
}

.review-card-compact .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card-compact .card-body {
    padding: 20px;
}

.review-card-compact .card-title {
    font-size: 16px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card-compact .card-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 2;
    margin-bottom: 16px;
}

.review-card-compact .card-footer {
    border-top: none;
    padding-top: 0;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ========================================
   LATEST REVIEWS - Modern 9:16 Cards
   ======================================== */
.section-latest-modern {
    padding: 80px 0;
    background: var(--bg-primary);
}

.latest-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.latest-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--accent);
}

.view-all-link svg {
    transition: transform 0.2s;
}

.view-all-link:hover svg {
    transform: translateX(3px);
}

/* 9:16 Card Grid */
.latest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.latest-card {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.latest-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.latest-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.latest-card:hover .latest-card-image img {
    transform: scale(1.05);
}

.latest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        transparent 100%
    );
    transition: opacity 0.3s;
}

.latest-card:hover .latest-card-overlay {
    opacity: 0.9;
}

.latest-card-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.latest-card-rating svg {
    color: #FBBF24;
}

.latest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}

.latest-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.latest-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1200px) {
    .latest-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .latest-card:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-latest-modern {
        padding: 60px 0;
    }

    .latest-header h2 {
        font-size: 22px;
    }

    .latest-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .latest-card:nth-child(n+4) {
        display: none;
    }

    .latest-card-content {
        padding: 12px;
    }

    .latest-card-title {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .latest-card:nth-child(n+5) {
        display: none;
    }

    .latest-card-rating {
        padding: 4px 8px;
        font-size: 11px;
    }

    .latest-card-content {
        padding: 10px;
    }

    .latest-card-category {
        font-size: 9px;
    }

    .latest-card-title {
        font-size: 12px;
    }
}

/* ========================================
   LATEST REVIEWS SECTION - HOMEPAGE
   Uses Related Products Card Design
   ======================================== */
.latest-reviews-section {
    padding: 80px 0;
}

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

.latest-reviews-footer {
    text-align: center;
    margin-top: 48px;
}

.btn-outline-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #fff;
}

.btn-outline-accent svg {
    transition: transform 0.3s ease;
}

.btn-outline-accent:hover svg {
    transform: translateX(4px);
}

/* Latest Reviews Responsive */
@media (max-width: 1200px) {
    .latest-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .latest-reviews-grid .related-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 900px) {
    .latest-reviews-section {
        padding: 60px 0;
    }

    .latest-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .latest-reviews-grid .related-card:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 480px) {
    .latest-reviews-section {
        padding: 48px 0;
    }

    .latest-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .latest-reviews-grid .related-card:nth-child(n+3) {
        display: block;
    }

    .latest-reviews-grid .related-card:nth-child(n+5) {
        display: none;
    }

    .latest-reviews-footer {
        margin-top: 32px;
    }

    .btn-outline-accent {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* Newsletter Section */
.section-newsletter {
    padding: 100px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.newsletter-form {
    text-align: right;
}

.newsletter-form .form-row {
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-fast);
}

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

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-tertiary);
}

.newsletter-form .form-note {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 12px;
}

/* ========================================
   BLOG SECTION - HOMEPAGE
   ======================================== */
.section-blog {
    padding: 80px 0;
    background: var(--bg-primary);
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.blog-header-left h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-top: 8px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.blog-card-content {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.blog-card-author {
    font-weight: 500;
    color: var(--text-secondary);
}

/* Featured Blog Card - First Item */
.blog-card-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.blog-card-featured .blog-card-image {
    aspect-ratio: 4/3;
}

.blog-card-featured .blog-card-content {
    padding: 28px;
}

.blog-card-featured .blog-card-title {
    font-size: 22px;
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    .section-blog {
        padding: 60px 0;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

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

    .blog-card-featured {
        grid-column: 1;
        grid-row: auto;
    }

    .blog-card-featured .blog-card-image {
        aspect-ratio: 16/9;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-featured .blog-card-title {
        font-size: 18px;
    }
}

/* Dark Mode - Blog Section */
[data-theme="dark"] .blog-card {
    background: var(--bg-card);
}

[data-theme="dark"] .blog-card:hover {
    background: var(--bg-elevated);
}

/* ========================================
   TRUST / HOW WE REVIEW SECTION
   ======================================== */
.section-trust {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.section-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.trust-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.trust-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.trust-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.trust-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Process Steps - Horizontal Timeline */
.trust-process {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 280px;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-step:first-child {
    border-left: none;
}

.process-step:hover {
    background: var(--bg-elevated);
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-step:hover .step-icon {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1);
}

.step-number {
    display: none;
}

.step-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border);
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-connector {
    display: none;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-top: 48px;
}

.trust-stat {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    border-right: 1px solid var(--border);
}

.trust-stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive - Trust Section */
@media (max-width: 1024px) {
    .trust-process {
        flex-wrap: wrap;
        gap: 16px;
    }

    .process-step {
        flex: 1 1 calc(50% - 8px);
        max-width: none;
    }

    .process-step:first-child {
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }

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

    .trust-stat:nth-child(2) {
        border-right: none;
    }

    .trust-stat:nth-child(1),
    .trust-stat:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 640px) {
    .section-trust {
        padding: 60px 0;
    }

    .trust-header {
        margin-bottom: 40px;
    }

    .trust-label {
        font-size: 10px;
        padding: 5px 10px;
    }

    .trust-process {
        flex-direction: column;
        gap: 0;
    }

    .process-step {
        flex: 1 1 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 20px;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .process-step:first-child {
        border-top: none;
    }

    .process-step:hover {
        transform: none;
    }

    .step-number {
        display: none;
    }

    .step-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

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

    .step-content {
        flex: 1;
    }

    .step-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .step-content p {
        font-size: 13px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 32px;
    }

    .trust-stat {
        padding: 20px 16px;
    }

    .trust-stat:nth-child(2) {
        border-right: none;
    }

    .trust-stat:nth-child(1),
    .trust-stat:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .trust-stat:nth-child(3),
    .trust-stat:nth-child(4) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-text {
        font-size: 11px;
    }
}

/* Dark Mode - Trust Section */
[data-theme="dark"] .section-trust {
    background: var(--bg-secondary);
}

[data-theme="dark"] .process-step {
    background: var(--bg-card);
}

[data-theme="dark"] .process-step:hover {
    background: var(--bg-elevated);
}

[data-theme="dark"] .trust-stats {
    background: var(--bg-tertiary);
}

/* Search Modal */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

.search-modal.active {
    display: flex;
}

.search-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
}

.search-modal-form {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.search-modal-form .search-modal-icon {
    margin: 0 12px;
    color: var(--text-tertiary);
    flex-shrink: 0;
}

.search-modal-form input {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-family: inherit;
}

.search-modal-form input:focus {
    outline: none;
}

.search-modal-form input::placeholder {
    color: var(--text-tertiary);
}

.search-modal-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.search-modal-close:hover {
    color: var(--text-primary);
}

/* ========================================
   PRE-FOOTER CTA
   ======================================== */
.pre-footer {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.pre-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.pre-footer-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pre-footer-content p {
    font-size: 16px;
    color: var(--text-secondary);
}

.pre-footer-form {
    flex-shrink: 0;
}

.pre-footer-form .input-group {
    display: flex;
    gap: 12px;
}

.pre-footer-form input[type="email"] {
    width: 280px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
}

.pre-footer-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.pre-footer-form .form-hint {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: right;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

/* Footer Brand */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EC4899;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 28px;
    height: 28px;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-mission {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 320px;
}

.footer-stats {
    display: flex;
    gap: 32px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
}

.footer-stat-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.footer-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Links */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    gap: 40px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.footer-disclosure {
    font-size: 12px;
    color: var(--text-tertiary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-muted);
}

/* Theme Switch */
.theme-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: none;
    border: none;
}

.theme-switch-label {
    font-size: 12px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-switch-toggle {
    display: flex;
    position: relative;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    padding: 4px;
}

.theme-option {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-tertiary);
    z-index: 1;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.theme-switch-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--accent);
    transition: transform var(--transition-base);
}

[data-theme="dark"] .theme-switch-indicator {
    transform: translateX(100%);
}

[data-theme="dark"] .theme-option[data-theme="dark"],
[data-theme="light"] .theme-option[data-theme="light"] {
    color: #000;
}

/* Search Modal Updates */
.search-modal-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 20px;
}

.search-modal-input {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
}

.search-modal-input svg {
    flex-shrink: 0;
    color: var(--text-tertiary);
}

.search-modal-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-family: inherit;
}

.search-modal-input input:focus {
    outline: none;
}

.search-modal-input input::placeholder {
    color: var(--text-tertiary);
}

.search-kbd {
    padding: 6px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    font-size: 11px;
    font-family: inherit;
    color: var(--text-tertiary);
}

.search-modal-hints {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-top: none;
}

.search-hint-label {
    font-size: 12px;
    color: var(--text-tertiary);
}

.search-hint-tag {
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.search-hint-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 1024px) {
    .pre-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .pre-footer-form {
        width: 100%;
    }

    .pre-footer-form .input-group {
        flex-direction: column;
    }

    .pre-footer-form input[type="email"] {
        width: 100%;
    }

    .pre-footer-form .form-hint {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-stats {
        justify-content: space-between;
    }
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 20px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.breadcrumb-link {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--accent);
}

.breadcrumb-sep {
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========================================
   PRODUCT HEADER - COMPACT DESIGN
   Clean, user-focused, minimal
   ======================================== */

/* Main Header Container */
.product-header {
    padding: 40px 0 48px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

/* Header Grid - Two Column Layout */
.product-header .header-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}

/* Left Column: Image + Verdict */
.product-header .header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Image Wrapper with Decorative Frame */
.header-image-wrapper {
    position: relative;
    padding: 16px;
}

/* Decorative L-Frame Corners - Smooth & Subtle */
.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.header-image-wrapper:hover .frame-corner {
    opacity: 0.7;
}

.frame-top-left {
    top: 0;
    left: 0;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.frame-bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
}

/* Product Image - 9:16 Pinterest Format */
.product-header .header-image {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--bg-tertiary);
    overflow: visible;
}

.product-header .header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Pinterest Widget Save Button - Keep visible on hover */
.product-header .header-image-wrapper {
    overflow: visible;
}

.product-header .header-image span[data-pin-log],
.product-header span[data-pin-log] {
    z-index: 9999 !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    position: absolute !important;
}

.product-header .header-image:hover span[data-pin-log] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Pinterest button container */
.product-header .header-image span[data-pin-zero],
.product-header span[data-pin-zero] {
    z-index: 9999 !important;
}

/* Top Rated Badge */
.product-header .image-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Product Gallery Thumbnails */
.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.gallery-thumb {
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid var(--border);
    background: var(--bg-primary);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.gallery-thumb:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.gallery-thumb:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

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

.gallery-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
}

.gallery-thumb.gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.gallery-thumb.gallery-more:hover {
    background: var(--accent);
    color: white;
}

/* Quick Verdict - Completely Plain */
.product-verdict {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-tertiary);
    margin: 0;
    padding: 0;
}

/* Right Column: Info + Actions */
.product-header .header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Category Tag - Prominent with Icon */
.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding: 8px 14px;
    background: var(--accent-muted);
    border: 1px solid rgba(236, 72, 153, 0.2);
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-category:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.product-category svg {
    opacity: 0.8;
}

/* Product Title */
.product-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Brand */
.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-brand:hover {
    color: var(--accent);
}

.product-brand .brand-arrow {
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-brand:hover .brand-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Buy Section */
.buy-section {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

/* Store Buttons - Modern Style */
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.store-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.store-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

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

.store-btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.store-btn svg {
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.store-btn:hover svg {
    transform: translate(2px, -2px);
}

/* Price Line */
.price-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-line .price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Score Section */
.score-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.score-circle {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.score-circle .score-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.score-circle .score-max {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.score-section .score-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding-left: 12px;
    border-left: 2px solid var(--border);
}

/* Header Verdict - Plain text under score */
.header-verdict {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

/* Review Meta Info with Icons - Product Header */
.product-header .review-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.product-header .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-tertiary);
    white-space: nowrap;
    flex-shrink: 0;
}

.product-header .meta-item svg {
    color: var(--accent);
    opacity: 0.7;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.share-section .share-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-section .share-buttons {
    display: flex;
    gap: 8px;
}

.share-section .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.share-section .share-btn:hover {
    transform: translateY(-2px);
}

.share-section .share-pinterest:hover {
    background: #E60023;
    border-color: #E60023;
    color: white;
}

.share-section .share-twitter:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.share-section .share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-section .share-copy:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.share-section .share-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

/* ========================================
   PRODUCT HEADER - RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .product-header .header-grid {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }

    .header-image-wrapper {
        padding: 12px;
    }

    .frame-corner {
        width: 50px;
        height: 50px;
    }

    .product-title {
        font-size: clamp(22px, 3.5vw, 30px);
    }

    .score-circle .score-value {
        font-size: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .product-header {
        padding: 24px 0 32px;
    }

    .product-header .header-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-header .header-left {
        max-width: 280px;
        margin: 0 auto;
    }

    .header-image-wrapper {
        padding: 10px;
    }

    .frame-corner {
        width: 40px;
        height: 40px;
    }

    .product-header .header-image {
        aspect-ratio: 3/4;
    }

    .product-gallery-thumbs {
        gap: 6px;
        margin-top: 10px;
    }

    .gallery-thumb {
        width: 48px;
        height: 48px;
    }

    .gallery-thumb.gallery-more {
        font-size: 12px;
    }

    .product-header .header-content {
        text-align: center;
    }

    .product-category {
        margin: 0 auto;
    }

    .product-title {
        font-size: 22px;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .price-line {
        justify-content: center;
    }

    .score-section {
        justify-content: center;
    }

    .product-header .review-meta {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .share-section {
        justify-content: center;
        flex-direction: column;
        gap: 8px;
    }

    .share-section .share-buttons {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-header {
        padding: 16px 0 24px;
    }

    .product-header .header-left {
        max-width: 240px;
    }

    .product-title {
        font-size: 20px;
    }

    .score-circle .score-value {
        font-size: 28px;
    }

    .score-section .score-label {
        display: none;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .product-header .header-grid {
        grid-template-columns: 380px 1fr;
        gap: 64px;
    }

    .frame-corner {
        width: 80px;
        height: 80px;
    }

    .product-title {
        font-size: 42px;
    }

    .score-circle .score-value {
        font-size: 42px;
    }
}

/* TOC Sticky Navigation - Fixed at TOP (no header space) */
.toc-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; /* Above header */
    padding: 14px 0;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #FFFBFC;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.toc-sticky.visible {
    transform: translateY(0);
}

/* Content sections scroll-margin - only TOC height when scrolled */
.content-section[id] {
    scroll-margin-top: 80px; /* ~56px TOC + 24px padding */
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.5);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

/* ===== Sticky Buy Bar (Mobile) ===== */
.sticky-buy-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-buy-bar.visible {
    display: block;
    transform: translateY(0);
}
.sticky-buy-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.sticky-buy-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sticky-product-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
}
.sticky-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--accent);
    color: white;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.sticky-buy-btn:hover {
    background: var(--accent-hover);
    color: white;
}
@media (min-width: 1024px) {
    .sticky-buy-bar { display: none !important; }
}
.sticky-buy-bar.visible + .scroll-top-btn.visible {
    bottom: 80px;
}

/* ===== Compare Section ===== */
.compare-section {
    padding: 48px 0;
}
.compare-section .section-title {
    margin-bottom: 32px;
}
.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.compare-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.compare-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}
.compare-card-header {
    margin-bottom: 12px;
}
.compare-vs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary, #f3f4f6);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.compare-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.4;
}
.compare-card-rating {
    margin-bottom: 8px;
}
.compare-rating-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}
.compare-rating-max {
    font-size: 14px;
    color: var(--text-secondary);
}
.compare-card-price {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.compare-card-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
}

[data-theme="dark"] .toc-sticky {
    background: #1A1625;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.toc-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.toc-inner::-webkit-scrollbar {
    display: none;
}

.toc-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    white-space: nowrap;
    flex-shrink: 0;
}

.toc-inner a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.toc-inner a:hover {
    color: var(--accent);
    background: var(--accent-muted);
}

.toc-inner a.active {
    color: var(--accent);
    background: var(--accent-muted);
    font-weight: 600;
}

/* Content Grid */
.product-content {
    padding: 40px 0 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.content-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.content-section:first-child {
    padding-top: 0;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

/* Review Content */
.review-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.review-content h2,
.review-content h3 {
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 18px;
}

/* First heading in review content - no top margin */
.review-content > h2:first-child,
.review-content > h3:first-child {
    margin-top: 0;
}

.review-content h2 {
    font-size: 28px;
}

.review-content h3 {
    font-size: 24px;
}

.review-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}

.review-content p {
    margin-bottom: 24px;
}

.review-content ul,
.review-content ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.review-content li {
    margin-bottom: 12px;
    font-size: 19px;
}

/* Features Grid */
/* Quick Verdict Box - Structured Data */
.quick-verdict-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

.quick-verdict-box .verdict-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--accent-muted), transparent);
    border-bottom: 1px solid var(--border);
}

.quick-verdict-box .verdict-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    flex-shrink: 0;
}

.quick-verdict-box .verdict-label {
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.quick-verdict-box .verdict-details {
    padding: 16px 20px;
}

.quick-verdict-box .verdict-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.quick-verdict-box .verdict-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-verdict-box .verdict-item:first-child {
    padding-top: 0;
}

.quick-verdict-box .verdict-item-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    min-width: 110px;
    flex-shrink: 0;
}

.quick-verdict-box .verdict-item-value {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Features Table - Modern Design */
.features-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.features-table-inner {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.15s ease;
}

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

.feature-row:hover {
    background: var(--bg-hover);
}

.feature-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.feature-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

/* Legacy Features Grid (keep for backwards compatibility) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent);
    flex-shrink: 0;
}

.feature-card span {
    font-size: 14px;
    font-weight: 500;
}

/* ========================================
   Save for Later (Pinterest) Section
   ======================================== */
.pin-save-section {
    margin-top: 48px;
}

.pin-save-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--accent-bg);
}

.pin-save-image {
    flex: 0 0 280px;
    display: block;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 200px;
    background: var(--bg-tertiary);
}

.pin-save-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.pin-save-image img {
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

.pin-save-content {
    flex: 1;
}

.pin-save-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 8px;
}

.pin-save-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}

.pin-save-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0 0 20px;
    line-height: 1.6;
}

.pin-save-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #E60023;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pin-save-btn:hover {
    background: #C7001E;
    transform: translateY(-2px);
}

.pin-save-btn svg {
    fill: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .pin-save-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }

    .pin-save-image {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }

    .pin-save-title {
        font-size: 1.25rem;
    }

    .pin-save-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Buyer Cards (Perfect for, Skip if, etc.)
   ======================================== */
.buyer-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.buyer-card__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.buyer-card__content {
    flex: 1;
}

.buyer-card__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.buyer-card--perfect .buyer-card__label {
    color: #84CC16;
}

.buyer-card--skip .buyer-card__label {
    color: #EF4444;
}

.buyer-card--alt .buyer-card__label {
    color: #3B82F6;
}

.buyer-card__content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.buyer-card__list {
    margin: 0;
}

.buyer-card__list ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.buyer-card__list li {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.buyer-card__list li::marker {
    color: inherit;
}

.buyer-card--perfect .buyer-card__list li::marker {
    color: #84CC16;
}

.buyer-card--skip .buyer-card__list li::marker {
    color: #EF4444;
}

.buyer-card--alt .buyer-card__list li::marker {
    color: #3B82F6;
}

/* Perfect for - Green */
.buyer-card--perfect {
    background: rgba(132, 204, 22, 0.05);
    border-color: rgba(132, 204, 22, 0.2);
}

.buyer-card--perfect .buyer-card__icon {
    color: #84CC16;
    background: rgba(132, 204, 22, 0.15);
}

/* Skip if - Red */
.buyer-card--skip {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.buyer-card--skip .buyer-card__icon {
    color: #EF4444;
    background: rgba(239, 68, 68, 0.15);
}

/* Alternatives - Blue */
.buyer-card--alt {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.buyer-card--alt .buyer-card__icon {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.15);
}

/* Dark mode */
[data-theme="dark"] .buyer-card--perfect {
    background: rgba(132, 204, 22, 0.08);
}

[data-theme="dark"] .buyer-card--skip {
    background: rgba(239, 68, 68, 0.08);
}

[data-theme="dark"] .buyer-card--alt {
    background: rgba(59, 130, 246, 0.08);
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.pros-card,
.cons-card {
    padding: 24px;
    border: 1px solid var(--border);
}

.pros-card {
    background: rgba(132, 204, 22, 0.05);
    border-color: rgba(132, 204, 22, 0.2);
}

.cons-card {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.pros-card h3,
.cons-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pros-card h3 {
    color: var(--success);
}

.cons-card h3 {
    color: var(--danger);
}

.pros-card ul,
.cons-card ul {
    list-style: none;
}

.pros-card li,
.cons-card li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

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

.cons-card li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.pros-card li strong,
.cons-card li strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pros-card li p,
.cons-card li p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Specs Table */
.specs-table {
    border: 1px solid var(--border);
    overflow: hidden;
}

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

.specs-table tr {
    border-bottom: 1px solid var(--border);
}

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

.specs-table th,
.specs-table td {
    padding: 18px 22px;
    text-align: left;
    font-size: 16px;
}

.specs-table th {
    width: 40%;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

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

/* FAQ - Modern Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.faq-item:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 26px;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--accent);
    background: var(--accent-muted);
}

.faq-item.active .faq-question {
    color: var(--accent);
    background: var(--accent-muted);
}

.faq-question svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--text-tertiary);
    transition: all var(--transition-base);
    background: var(--bg-secondary);
    border-radius: 50%;
    padding: 4px;
}

.faq-question:hover svg {
    color: var(--accent);
    background: var(--accent-light);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: #ffffff;
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 26px 24px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    border-top: 1px solid var(--border);
    margin-top: 0;
    padding-top: 20px;
}

/* Verdict Section */
.verdict-box {
    display: flex;
    gap: 40px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.verdict-rating {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--border);
}

.rating-big {
    font-size: 64px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.rating-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

.verdict-summary {
    flex: 1;
    display: flex;
    align-items: center;
}

.verdict-summary p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.verdict-extended {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.verdict-extended h2 {
    display: none; /* Hide duplicate heading */
}

.verdict-extended p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.verdict-extended p:last-child {
    margin-bottom: 0;
}

.rating-breakdown {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.breakdown-item .category {
    width: 120px;
    font-size: 13px;
    color: var(--text-secondary);
}

.breakdown-bar {
    flex: 1;
    height: 6px;
    background: var(--border);
}

.breakdown-bar .bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 1s ease;
}

.breakdown-item .score {
    width: 40px;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

/* Sidebar */
.content-sidebar {
    position: relative;
}

/* Sidebar Sticky Wrapper */
.sidebar-sticky-wrapper {
    position: sticky;
    top: 180px; /* 64px header + 56px TOC + 60px spacing */
}

/* ========================================
   SIDEBAR TOC - Sticky Table of Contents
   HIDDEN: Redundant with sticky jump-to nav
   ======================================== */
.sidebar-toc {
    display: none; /* Removed - using sticky TOC nav instead */
}

.sidebar-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sidebar-toc-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.sidebar-toc-top {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-toc-top:hover {
    color: var(--accent);
    background: var(--accent-muted);
}

.sidebar-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-toc-list li {
    margin: 0;
    padding: 0;
}

.sidebar-toc-link {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    padding: 8px 12px 8px 16px;
    line-height: 1.4;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Left border indicator */
.sidebar-toc-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: transparent;
    transition: background-color var(--transition-fast);
}

.sidebar-toc-link:hover {
    color: var(--text-primary);
}

/* Read/passed state */
.sidebar-toc-link.read {
    color: var(--text-primary);
}

.sidebar-toc-link.read::before {
    background: var(--accent);
}

/* Active state */
.sidebar-toc-link.active {
    color: var(--accent);
    font-weight: 500;
}

.sidebar-toc-link.active::before {
    background: var(--accent);
}

/* Progress bar */
.sidebar-toc-progress {
    margin-top: 16px;
    height: 4px;
    background: var(--border);
    overflow: hidden;
}

.sidebar-toc-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    transition: width 0.3s ease;
}

/* Dark theme adjustments */
[data-theme="dark"] .sidebar-toc {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .sidebar-toc-title {
    color: var(--text-primary);
}

[data-theme="dark"] .sidebar-toc-link {
    color: var(--text-secondary);
}

[data-theme="dark"] .sidebar-toc-link:hover,
[data-theme="dark"] .sidebar-toc-link.read {
    color: var(--text-primary);
}

[data-theme="dark"] .sidebar-toc-link.active {
    color: var(--accent);
}

/* Sidebar CTA */
.sidebar-cta {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
}

.sidebar-rating {
    margin-bottom: 24px;
}

.sidebar-rating .rating-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
}

.sidebar-rating .rating-label {
    font-size: 18px;
    color: var(--text-tertiary);
}

.btn-block {
    width: 100%;
    margin-bottom: 16px;
}

.sidebar-price {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.affiliate-note {
    font-size: 11px;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* Sidebar Share Buttons */
.sidebar-share {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--border);
}

.sidebar-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sidebar-share-btn:hover {
    transform: translateY(-2px);
}

.sidebar-share-btn.share-pinterest:hover {
    background: #E60023;
    border-color: #E60023;
    color: white;
}

.sidebar-share-btn.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.sidebar-share-btn.share-twitter:hover {
    background: #000;
    border-color: #000;
    color: white;
}

.sidebar-share-btn.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.sidebar-share-btn.share-reddit:hover {
    background: #FF4500;
    border-color: #FF4500;
    color: white;
}

.sidebar-share-btn.share-copy:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.sidebar-share-btn.share-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

/* ========================================
   RELATED REVIEWS - PREMIUM MAGAZINE STYLE
   ======================================== */

/* Related Section Container */
.related-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.related-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-muted) 0%, transparent 70%);
    pointer-events: none;
}

.related-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

/* Section Header */
.related-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.related-section .section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.related-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Decorative line under title */
.related-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 20px auto 0;
}

/* Related Reviews Grid - Fixed Height Cards */
.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Related Card - Premium Glass Design */
.related-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    padding: 0 !important;
}

/* Glass morphism overlay on hover */
.related-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.related-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(236, 72, 153, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-light);
}

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

/* Card Link */
.related-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    padding: 0 !important;
    margin: 0 !important;
}

/* Card Image Container - Pinterest 9:16 vertical format */
.related-card-image {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 9/16 !important;
    overflow: hidden !important;
    background: var(--bg-tertiary);
    flex-shrink: 0;
    margin: 0 !important;
    padding: 0 !important;
}

.related-card-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card:hover .related-card-image img {
    transform: scale(1.1);
}

/* Image overlay gradient */
.related-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-card:hover .related-card-image::after {
    opacity: 1;
}

/* Placeholder for missing images */
.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--accent-muted) 100%);
    color: var(--text-tertiary);
}

.related-placeholder svg {
    opacity: 0.5;
}

/* Rating Badge - Premium Corner Position */
.related-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text-primary);
    padding: 6px 10px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.related-card-badge::before {
    content: '★';
    color: #FBBF24;
    font-size: 12px;
}

.related-card-badge .badge-score {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

[data-theme="dark"] .related-card-badge {
    background: rgba(30, 25, 40, 0.9);
    border-color: var(--border);
}

/* Card Content Area - Fixed structure for equal heights */
.related-card-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    padding: 8px 10px;
    background: var(--bg-card);
    position: relative;
}

/* Category Tag - Integrated subtle design */
.related-card-category {
    display: inline-flex;
    align-items: center;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 4px;
    position: relative;
    padding-left: 10px;
}

.related-card-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
}

/* Product Title */
.related-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    padding-bottom: 4px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.related-card:hover .related-card-title {
    color: var(--accent);
}

/* Star Rating Visual */
.related-card-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.related-stars-wrapper {
    display: flex;
    gap: 2px;
}

.related-star {
    width: 14px;
    height: 14px;
    color: var(--warning);
}

.related-star.empty {
    color: var(--border);
}

.related-star.half {
    position: relative;
}

.related-star.half::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--warning);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.related-rating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* CTA Button - Premium style */
.related-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    background: var(--accent-muted);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.related-card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card-cta {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.related-card:hover .related-card-cta svg {
    transform: translateX(4px);
}

/* Dark Theme Adjustments */
[data-theme="dark"] .related-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .related-section::before,
[data-theme="dark"] .related-section::after {
    opacity: 0.15;
}

[data-theme="dark"] .related-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .related-card:hover {
    box-shadow:
        0 25px 50px rgba(236, 72, 153, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

[data-theme="dark"] .related-card::before {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
}

[data-theme="dark"] .related-card-content {
    background: var(--bg-card);
}

[data-theme="dark"] .related-card-cta {
    background: rgba(236, 72, 153, 0.15);
}

[data-theme="dark"] .related-card:hover .related-card-cta {
    background: var(--accent);
}

/* ========================================
   AUTHOR SECTION
   ======================================== */
.author-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.author-box {
    display: flex;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.author-info {
    flex: 1;
}

.author-header {
    margin-bottom: 16px;
}

.author-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.author-title {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.author-name-link {
    text-decoration: none;
    color: inherit;
}

.author-name-link:hover .author-name {
    color: var(--accent);
}

.author-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 8px;
}

.author-location svg {
    flex-shrink: 0;
}

.author-expertise {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 500;
}

.author-expertise .divider {
    color: var(--text-tertiary);
    font-weight: 400;
}

.author-bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.author-social-link:hover {
    background: var(--accent);
    color: #fff;
}

/* Author Section Dark Mode */
[data-theme="dark"] .author-box {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .author-social-link {
    background: var(--bg-tertiary);
}

/* Author Section Responsive */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .author-social {
        justify-content: center;
    }
}

/* Related Grid Responsive */
@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .related-section {
        padding: 60px 0;
    }

    .related-section .section-title {
        font-size: 28px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .related-grid {
        gap: 16px;
    }

    .related-card-content {
        padding: 16px;
    }

    .related-card-title {
        font-size: 15px;
        min-height: 44px;
    }

    .related-card:hover {
        transform: translateY(-6px);
    }

    .related-card-cta {
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .related-section {
        padding: 48px 0;
    }

    .related-header {
        margin-bottom: 32px;
    }

    .related-section .section-title {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
        margin: 0 auto;
    }

    .related-card-image {
        aspect-ratio: 3/4;
    }

    .related-card-content {
        padding: 18px;
    }

    .related-card-title {
        font-size: 17px;
        min-height: auto;
    }

    .related-card:hover {
        transform: translateY(-4px);
    }
}

/* Product Card Rating Inline - Related Reviews (Legacy Support) */
.product-card-rating-inline {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-top: 12px;
}

.product-card-rating-inline .rating-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.product-card-rating-inline .rating-max {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Placeholder Image */
.placeholder-image {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image.large {
    min-height: 300px;
}

/* Header States */
.header.scrolled {
    height: 64px;
    background: var(--bg-primary);
}

.header.hidden {
    transform: translateY(-100%);
}

/* Mobile Nav Open */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 40px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 24px;
        font-weight: 600;
    }

    .nav-actions {
        margin-top: auto;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .featured-grid .review-card-main {
        grid-row: span 1;
    }

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

    .newsletter-box {
        padding: 40px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-grid {
        gap: 60px;
    }

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

    .product-card.featured {
        grid-column: span 2;
    }

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

@media (max-width: 1024px) {
    .hero-grid {
        gap: 60px;
    }

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

    .product-card.featured {
        grid-column: span 2;
    }

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

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 48px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .content-sidebar {
        order: -1;
    }

    .sidebar-sticky-wrapper {
        position: static;
    }

    .sidebar-toc {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile TOC sticky adjustments */
    .toc-sticky {
        top: 0;
        padding: 10px 0;
    }

    .content-section[id] {
        scroll-margin-top: 60px; /* Only TOC height */
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 80px;
    }

    .hero-slider + .hero,
    .hero-slider-v2 + .hero {
        padding: 40px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }

    .hero-stat::before {
        display: none;
    }

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

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

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

    .product-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .product-card.featured .product-card-content {
        padding: 24px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 14px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .feature-card span {
        font-size: 13px;
        line-height: 1.4;
    }

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

    /* Quick Verdict Box Mobile */
    .quick-verdict-box .verdict-header {
        flex-wrap: wrap;
        padding: 14px 16px;
        gap: 10px;
    }

    .quick-verdict-box .verdict-icon {
        width: 32px;
        height: 32px;
    }

    .quick-verdict-box .verdict-label {
        font-size: 12px;
    }

    .quick-verdict-box .verdict-details {
        padding: 12px 16px;
    }

    .quick-verdict-box .verdict-item {
        flex-direction: column;
        gap: 4px;
        padding: 10px 0;
    }

    .quick-verdict-box .verdict-item-label {
        width: auto;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
    }

    .quick-verdict-box .verdict-item-value {
        font-size: 13px;
    }

    /* Features Table Mobile */
    .feature-row {
        padding: 14px 16px;
        gap: 14px;
    }

    .feature-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 12px;
    }

    .feature-check {
        width: 24px;
        height: 24px;
    }

    /* Buyer Section Mobile */
    .buyer-card {
        padding: 16px 18px;
        gap: 12px;
    }

    .buyer-card__icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .buyer-card__content {
        font-size: 13px;
    }

    .verdict-box {
        flex-direction: column;
        gap: 24px;
    }

    .verdict-rating {
        padding-right: 0;
        border-right: none;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--border);
    }

    .section-header.with-action {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* FAQ Mobile */
    .faq-list {
        gap: 12px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-question svg {
        width: 20px;
        height: 20px;
        padding: 3px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
        padding-top: 16px;
    }
}

/* Features Grid - Small Mobile */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        padding: 16px 20px;
        gap: 16px;
        border-left: none;
        border-right: none;
        border-top: none;
        border-bottom: 1px solid var(--border);
        background: transparent;
    }

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

    .feature-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

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

    .feature-card span {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        flex: 1;
    }
}

/* ========================================
   ERROR PAGES
   ======================================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

.error-content {
    text-align: center;
    max-width: 500px;
}

.error-code {
    font-size: clamp(100px, 25vw, 200px);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
    margin-bottom: 24px;
}

.error-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.error-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ========================================
   SEARCH PAGE
   ======================================== */

/* Search Hero */
.search-hero {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.search-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-hero-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.search-hero-meta {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.search-hero-form {
    max-width: 640px;
    margin: 0 auto;
}

.search-input-large {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 8px 8px 8px 20px;
}

.search-input-large svg {
    flex-shrink: 0;
    color: var(--text-tertiary);
}

.search-input-large input {
    flex: 1;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-primary);
    outline: none;
    padding: 12px 0;
}

.search-input-large input::placeholder {
    color: var(--text-tertiary);
}

.search-input-large .btn {
    padding: 14px 28px;
}

/* Search Layout */
.search-results {
    padding: 60px 0 120px;
}

.search-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
}

/* Sidebar */
.search-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
}

.filter-section {
    margin-bottom: 32px;
}

.filter-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.filter-list {
    list-style: none;
}

.filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    margin-bottom: 2px;
}

.filter-item:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.filter-item.active {
    background: var(--accent);
    color: #000;
    font-weight: 500;
}

.filter-item.active .filter-count {
    background: rgba(0,0,0,0.2);
    color: #000;
}

.filter-count {
    font-size: 12px;
    background: var(--bg-tertiary);
    padding: 2px 8px;
    color: var(--text-tertiary);
}

.sort-select {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

/* Sort Bar */
.sort-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.sort-label {
    font-size: 13px;
    color: var(--text-tertiary);
}

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

.sort-option {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.sort-option:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

.sort-option.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

/* Search Grid */
.search-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 16px;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.pagination-page:hover {
    border-color: var(--border);
}

.pagination-page.active {
    background: var(--accent);
    color: #000;
}

.pagination-dots {
    color: var(--text-tertiary);
    padding: 0 8px;
}

/* Empty State */
.search-empty {
    padding: 100px 0 140px;
}

.empty-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.empty-icon {
    margin-bottom: 32px;
    color: var(--text-tertiary);
}

.empty-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 16px;
}

.empty-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.empty-suggestions,
.empty-categories {
    margin-bottom: 40px;
}

.suggestions-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.suggestion-tag {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.suggestion-tag:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #000;
}

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

.category-mini-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    text-align: left;
    transition: all var(--transition-fast);
}

.category-mini-card:hover {
    border-color: var(--accent);
}

.category-mini-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.category-mini-count {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* Search Autocomplete */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-top: none;
    z-index: 100;
    max-height: 400px;
    overflow-y: auto;
    display: none;
}

.search-autocomplete.active {
    display: block;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.autocomplete-item:hover {
    background: var(--bg-secondary);
}

.autocomplete-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.autocomplete-info {
    flex: 1;
    min-width: 0;
}

.autocomplete-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-category {
    font-size: 12px;
    color: var(--text-tertiary);
}

.autocomplete-rating {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.autocomplete-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.autocomplete-footer a {
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

/* Search Responsive */
@media (max-width: 1024px) {
    .search-layout {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }

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

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

@media (max-width: 768px) {
    .search-hero {
        padding: 60px 0 40px;
    }

    .search-input-large {
        flex-wrap: wrap;
        padding: 12px;
    }

    .search-input-large svg {
        display: none;
    }

    .search-input-large input {
        width: 100%;
        font-size: 16px;
        padding: 8px 0;
    }

    .search-input-large .btn {
        width: 100%;
    }

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

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

    .search-sidebar {
        position: static;
        display: none;
    }

    .mobile-only {
        display: block;
        margin-bottom: 24px;
    }

    .search-main .mobile-only {
        display: block;
    }

    .sort-bar {
        display: none;
    }

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

    .pagination {
        flex-wrap: wrap;
    }

    .pagination-pages {
        width: 100%;
        justify-content: center;
        order: -1;
        margin: 0 0 16px;
    }

    .categories-mini-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.page-header-content {
    max-width: 700px;
}

.page-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
    color: var(--text-primary);
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Category Header */
.category-header {
    padding: 60px 0 50px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 24px;
}

.breadcrumb-simple a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-simple a:hover {
    color: var(--accent);
}

.category-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
}

.category-count {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ========================================
   REVIEWS PAGE - Modern Design
   ======================================== */

/* Reviews Header */
.reviews-header {
    padding: 48px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.reviews-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.reviews-header-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.reviews-header-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Sort Tabs */
.sort-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-secondary);
    padding: 4px;
}

.sort-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.sort-tab:hover {
    color: var(--text-primary);
}

.sort-tab.active {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 600;
}

/* Reviews Listing */
.reviews-listing {
    padding: 48px 0 100px;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
}

/* Sidebar */
.reviews-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
}

.sidebar-block {
    background: var(--bg-secondary);
    padding: 24px;
}

.sidebar-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    margin: 0 -12px;
}

.sidebar-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.sidebar-link-count {
    font-size: 12px;
    color: var(--text-tertiary);
    background: var(--bg-tertiary);
    padding: 2px 8px;
    min-width: 28px;
    text-align: center;
}

/* Modern Product Card Grid */
.reviews-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Modern Product Card */
.product-card-modern {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.product-card-modern:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.product-card-link {
    display: block;
}

.product-card-modern .product-card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card-modern .product-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-modern:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
}

.product-card-score {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.product-card-content {
    padding: 20px;
}

.product-card-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color var(--transition-fast);
}

.product-card-modern:hover .product-card-title {
    color: var(--accent);
}

.product-card-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Responsive Reviews */
@media (max-width: 1200px) {
    .reviews-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .reviews-sidebar {
        position: static;
        order: -1;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .sidebar-link {
        margin: 0;
        padding: 8px 12px;
        background: var(--bg-tertiary);
    }
}

@media (max-width: 640px) {
    .reviews-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-grid-modern {
        grid-template-columns: 1fr;
    }

    .product-card-modern .product-card-image {
        aspect-ratio: 4/3;
    }
}

/* Listing Layout (Legacy) */
.listing-section {
    padding: 60px 0 120px;
}

.listing-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
}

.listing-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    align-self: start;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 24px;
}

/* Categories Grid Large */
.categories-section {
    padding: 60px 0 120px;
}

.categories-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.category-card-large {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition-base);
}

.category-card-large:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.category-card-large:hover .category-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.category-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--accent);
}

.category-card-content {
    min-width: 0;
}

.category-card-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.category-card-meta {
    text-align: right;
}

.category-card-count {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.category-card-updated {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
}

.category-card-arrow {
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

/* Empty State (inline) */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Meta Brand */
.meta-brand {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Responsive */
@media (max-width: 1024px) {
    .listing-layout {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }

    .categories-grid-large {
        grid-template-columns: 1fr;
    }

    .category-card-large {
        grid-template-columns: auto 1fr auto;
    }

    .category-card-meta {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .category-header {
        padding: 40px 0 30px;
    }

    .listing-section {
        padding: 40px 0 80px;
    }

    .listing-layout {
        grid-template-columns: 1fr;
    }

    .listing-sidebar {
        position: static;
        display: none;
    }

    .category-card-large {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .category-card-icon {
        margin: 0 auto;
    }

    .category-card-arrow {
        display: none;
    }
}

/* ========================================
   COMPARE PAGE
   ======================================== */
.compare-header {
    padding: 80px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.compare-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
}

.compare-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
}

/* Compare Table */
.compare-section {
    padding: 60px 0;
}

.compare-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 20px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.compare-label-cell {
    width: 160px;
    min-width: 160px;
}

.compare-product-cell {
    width: calc((100% - 160px) / 4);
    min-width: 200px;
}

/* Product Header */
.compare-product-header {
    position: relative;
    text-align: center;
}

.compare-product-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    background: var(--bg-tertiary);
}

.compare-product-img.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-product-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 4px;
}

.compare-product-name:hover {
    color: var(--accent);
}

.compare-product-brand {
    font-size: 13px;
    color: var(--text-tertiary);
}

.compare-remove {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-tertiary);
    border: none;
    padding: 6px;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.compare-remove:hover {
    background: var(--danger);
    color: #fff;
}

/* Compare Rows */
.compare-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-value {
    font-size: 15px;
}

.compare-row.highlight {
    background: var(--bg-secondary);
}

.compare-row.actions td {
    padding: 24px 16px;
    border-bottom: none;
}

/* Rating */
.compare-rating {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.compare-rating .rating-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.compare-rating .rating-max {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Text & Lists */
.compare-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.compare-list {
    list-style: none;
    font-size: 14px;
}

.compare-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.compare-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--text-tertiary);
}

.compare-list.pros li::before {
    background: var(--success);
}

.compare-list.cons li::before {
    background: var(--danger);
}

.compare-link {
    color: var(--accent);
    text-decoration: none;
}

.compare-link:hover {
    text-decoration: underline;
}

.compare-price {
    font-weight: 600;
    color: var(--text-primary);
}

.no-data {
    color: var(--text-tertiary);
    font-style: italic;
}

/* Add Products Section */
.compare-add-section {
    padding: 60px 0 120px;
    background: var(--bg-secondary);
}

.compare-add-header {
    text-align: center;
    margin-bottom: 40px;
}

.compare-add-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.compare-add-header p {
    color: var(--text-secondary);
}

/* Compare Search */
.compare-search {
    max-width: 500px;
    margin: 0 auto 48px;
    position: relative;
}

.compare-search-form input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    outline: none;
}

.compare-search-form input:focus {
    border-color: var(--accent);
}

.compare-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-top: none;
    display: none;
    z-index: 100;
    max-height: 320px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--transition-fast);
}

.search-result-item:hover {
    background: var(--bg-secondary);
}

.result-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.result-category {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
}

.result-rating {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.no-results {
    padding: 16px;
    text-align: center;
    color: var(--text-tertiary);
}

/* Suggestions Grid */
.compare-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.compare-suggestion-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
}

.compare-suggestion-card:hover {
    border-color: var(--accent);
}

.suggestion-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-category {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
}

.suggestion-rating {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .compare-suggestions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .compare-header {
        padding: 60px 0 40px;
    }

    .compare-section {
        padding: 40px 0;
    }

    .compare-add-section {
        padding: 40px 0 80px;
    }

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

    .compare-suggestion-card {
        flex-direction: column;
        text-align: center;
    }

    .suggestion-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .compare-suggestions-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   COMPARE PAGE - MOBILE TAB LAYOUT
   ======================================== */

/* Hide mobile elements on desktop */
.compare-mobile-tabs,
.compare-mobile-view,
.compare-mobile-dots {
    display: none;
}

/* Show desktop table on larger screens */
.compare-desktop-view {
    display: block;
}

/* Winner Badge (Desktop) */
.compare-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.compare-winner-badge svg {
    flex-shrink: 0;
}

.winner-cell {
    background: rgba(var(--accent-rgb, 255, 204, 0), 0.08);
}

/* Comparison Summary */
.compare-summary {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.summary-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    padding: 32px;
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.summary-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    position: relative;
}

.summary-item.winner {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb, 255, 204, 0), 0.05);
}

.summary-item-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.winner-crown {
    color: var(--accent);
}

.summary-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-rating {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.summary-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.summary-max {
    font-size: 14px;
    color: var(--text-tertiary);
}

.no-rating {
    font-size: 18px;
    color: var(--text-tertiary);
}

.winner-label {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    /* Hide desktop table on mobile */
    .compare-desktop-view {
        display: none;
    }

    /* Show mobile elements */
    .compare-mobile-tabs {
        display: block;
        position: sticky;
        top: 60px;
        z-index: 100;
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
    }

    .mobile-tabs-wrapper {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }

    .mobile-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .mobile-tab {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 12px 16px;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        cursor: pointer;
        transition: all var(--transition-fast);
        position: relative;
    }

    .mobile-tab.active {
        background: var(--bg-primary);
        border-color: var(--accent);
        box-shadow: 0 0 0 1px var(--accent);
    }

    .mobile-tab-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .mobile-tab-rating {
        font-size: 16px;
        font-weight: 700;
        color: var(--accent);
    }

    .mobile-tab-winner {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 20px;
        height: 20px;
        background: var(--accent);
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Cards View */
    .compare-mobile-view {
        display: block;
        padding: 24px 0;
    }

    .compare-mobile-card {
        display: none;
        background: var(--bg-primary);
        border: 1px solid var(--border);
    }

    .compare-mobile-card.active {
        display: block;
        animation: compareFadeIn 0.3s ease;
    }

    @keyframes compareFadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Card Header */
    .mobile-card-header {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        border-bottom: 1px solid var(--border);
    }

    .mobile-card-img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        background: var(--bg-tertiary);
        flex-shrink: 0;
    }

    .mobile-card-img.placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-card-info {
        flex: 1;
        min-width: 0;
    }

    .mobile-card-name {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        text-decoration: none;
        margin-bottom: 4px;
    }

    .mobile-card-name:hover {
        color: var(--accent);
    }

    .mobile-card-brand {
        display: block;
        font-size: 13px;
        color: var(--text-tertiary);
        margin-bottom: 8px;
    }

    .mobile-card-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        background: var(--accent);
        color: #000;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .mobile-card-remove {
        flex-shrink: 0;
        background: var(--bg-tertiary);
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--text-tertiary);
        transition: all var(--transition-fast);
    }

    .mobile-card-remove:hover {
        background: var(--danger);
        color: #fff;
    }

    /* Mobile Card Rating */
    .mobile-card-rating {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: var(--bg-secondary);
    }

    .mobile-card-rating .rating-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-card-rating .rating-display {
        display: flex;
        align-items: baseline;
        gap: 2px;
    }

    .mobile-card-rating .rating-value {
        font-size: 36px;
        font-weight: 700;
        color: var(--accent);
    }

    .mobile-card-rating .rating-max {
        font-size: 16px;
        color: var(--text-tertiary);
    }

    /* Mobile Collapsible Sections */
    .mobile-card-sections {
        border-top: 1px solid var(--border);
    }

    .mobile-section {
        border-bottom: 1px solid var(--border);
    }

    .mobile-section:last-child {
        border-bottom: none;
    }

    .mobile-section-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 20px;
        background: none;
        border: none;
        cursor: pointer;
        text-align: left;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-primary);
        transition: background var(--transition-fast);
    }

    .mobile-section-toggle:hover {
        background: var(--bg-secondary);
    }

    .mobile-section-toggle span:first-child {
        flex: 1;
    }

    .section-count {
        padding: 2px 8px;
        background: var(--bg-tertiary);
        font-size: 12px;
        font-weight: 500;
        color: var(--text-secondary);
    }

    .toggle-icon {
        transition: transform var(--transition-fast);
        color: var(--text-tertiary);
    }

    .mobile-section-toggle[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
    }

    .mobile-section-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 20px;
    }

    .mobile-section-content.expanded {
        max-height: 500px;
        padding: 0 20px 20px;
    }

    /* Mobile Detail Rows */
    .mobile-detail-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
    }

    .mobile-detail-row:last-child {
        border-bottom: none;
    }

    .detail-label {
        font-size: 13px;
        color: var(--text-tertiary);
    }

    /* Mobile Card Action */
    .mobile-card-action {
        padding: 20px;
        border-top: 1px solid var(--border);
    }

    .btn-block {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Mobile Navigation Dots */
    .compare-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .mobile-dot {
        width: 10px;
        height: 10px;
        background: var(--border);
        border: none;
        cursor: pointer;
        transition: all var(--transition-fast);
    }

    .mobile-dot.active {
        background: var(--accent);
        width: 24px;
    }

    .mobile-dot:hover {
        background: var(--text-tertiary);
    }

    /* Summary responsive adjustments */
    .compare-summary .summary-card {
        padding: 20px;
    }

    .compare-summary .summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .compare-summary .summary-item {
        padding: 16px 12px;
    }

    .compare-summary .summary-score {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .compare-summary .summary-grid {
        grid-template-columns: 1fr;
    }

    .mobile-tab {
        min-width: 120px;
    }
}

/* ========================================
   BEST LISTS - COLLECTION PAGE
   ======================================== */

/* Best Lists Header */
.best-lists-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.best-lists-header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.header-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.best-lists-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.best-lists-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Category Tags */
.best-lists-categories {
    text-align: center;
}

.categories-label {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.categories-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.category-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.tag-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: var(--bg-tertiary);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Year Sections */
.best-lists-section {
    padding: 80px 0;
}

.best-lists-section:nth-child(even) {
    background: var(--bg-secondary);
}

.best-lists-section .section-header {
    margin-bottom: 40px;
}

.best-lists-section .section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: #000;
    font-size: 18px;
    font-weight: 700;
}

/* Best Lists Grid */
.best-lists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.best-list-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.best-list-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.list-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.list-card-image {
    position: relative;
    aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
    overflow: hidden;
    background: var(--bg-tertiary);
    max-height: 500px;
}

.list-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.best-list-card:hover .list-card-image img {
    transform: scale(1.05);
}

.list-card-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    color: var(--text-tertiary);
    opacity: 0.5;
}

.list-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.list-card-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.list-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.best-list-card:hover .list-card-title {
    color: var(--accent);
}

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

.list-card-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.list-card-count,
.list-card-updated {
    display: flex;
    align-items: center;
    gap: 6px;
}

.list-card-count svg,
.list-card-updated svg {
    opacity: 0.7;
}

.list-card-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.best-list-card:hover .list-card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--accent);
    color: #000;
}

/* Empty State */
.best-lists-empty {
    padding: 120px 0;
}

.empty-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.empty-icon {
    margin-bottom: 24px;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.empty-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.empty-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* SEO Content */
.best-lists-seo {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.seo-content {
    max-width: 800px;
}

.seo-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.seo-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   BEST LISTS - SINGLE PAGE
   ======================================== */

/* List Header */
.list-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.list-header-content {
    max-width: 800px;
}

.list-year-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.list-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.list-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.list-category:hover {
    background: var(--accent);
    color: #000;
}

.list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.meta-item svg {
    opacity: 0.7;
}

/* Table of Contents - List Page */
.list-toc {
    padding: 14px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 64px; /* Fixed - header shrinks to 64px on scroll */
    z-index: 90;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .list-toc {
    background: var(--bg-secondary);
}

.toc-item {
    display: inline-flex;
    padding: 8px 14px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.toc-item:hover {
    background: var(--accent-muted);
    color: var(--accent);
}

.toc-item.active {
    background: var(--accent-muted);
    color: var(--accent);
    font-weight: 600;
}

/* List Layout */
.list-content {
    padding: 60px 0 100px;
}

.list-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.list-main {
    min-width: 0;
}

/* Prose Content */
.list-intro,
.list-conclusion {
    margin-bottom: 48px;
}

.list-intro .prose,
.list-conclusion .prose {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.list-intro .prose p,
.list-conclusion .prose p {
    margin-bottom: 16px;
}

.list-conclusion h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Rankings */
.list-rankings {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.ranking-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    transition: all var(--transition-base);
}

.ranking-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

/* Rank Badge */
.ranking-badge-wrap {
    position: absolute;
    top: -1px;
    left: -1px;
    display: flex;
    z-index: 10;
}

.ranking-position {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.ranking-item:first-child .ranking-position {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.ranking-label {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ranking-label.best-pick {
    background: var(--accent);
    color: #000;
}

.ranking-label.runner-up {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-left: none;
    color: var(--text-secondary);
}

.ranking-label.custom {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-left: none;
    color: var(--text-secondary);
}

/* Ranking Content */
.ranking-content {
    padding: 32px;
    padding-top: 72px;
}

/* Ranking Header */
.ranking-header {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.ranking-image {
    position: relative;
    width: 180px;
    aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
    flex-shrink: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    overflow: hidden;
}

.ranking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    opacity: 0.5;
}

.ranking-score {
    position: absolute;
    bottom: -1px;
    right: -1px;
    display: flex;
    align-items: baseline;
    gap: 2px;
    padding: 8px 14px;
    background: var(--accent);
    color: #000;
}

.score-value {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.score-max {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

.ranking-info {
    flex: 1;
    min-width: 0;
}

.ranking-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ranking-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ranking-title a:hover {
    color: var(--accent);
}

.ranking-brand {
    display: inline-block;
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ranking-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Verdict */
.ranking-verdict {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--accent);
}

.ranking-verdict p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Pros & Cons */
.ranking-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.pros-list,
.cons-list {
    padding: 20px;
    background: var(--bg-secondary);
}

.pros-list h3,
.cons-list h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.pros-list h3 {
    color: var(--success);
}

.cons-list h3 {
    color: var(--danger);
}

.pros-list ul,
.cons-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pros-list li,
.cons-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.pros-list li::before,
.cons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
}

.pros-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2384cc16' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
}

.cons-list li::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E") no-repeat center;
}

/* Ranking Actions */
.ranking-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* FAQ Section - List Page Wrapper */
.list-faq {
    margin-bottom: 48px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.list-faq h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* List page FAQ uses the modern styles from product section */

/* Methodology */
.list-methodology {
    padding: 24px;
    background: var(--bg-secondary);
    border-left: 3px solid var(--text-tertiary);
}

.list-methodology h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    color: var(--text-tertiary);
}

.list-methodology p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.list-methodology a {
    color: var(--accent);
    text-decoration: none;
}

.list-methodology a:hover {
    text-decoration: underline;
}

/* Sidebar */
.list-sidebar {
    position: relative;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
}

.sidebar-widget.sticky {
    position: sticky;
    top: calc(var(--header-height) + 80px);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Quick Picks */
.quick-picks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-pick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.quick-pick-item:hover {
    background: var(--bg-tertiary);
}

.pick-rank {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.quick-pick-item:first-child .pick-rank {
    background: var(--accent);
    border-color: var(--accent);
    color: #000;
}

.pick-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-score {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.affiliate-note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-tertiary);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Related Lists */
.related-lists {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.related-lists .section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
}

.related-lists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-list-card {
    display: block;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.related-list-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.related-year {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.related-list-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.related-list-card:hover h3 {
    color: var(--accent);
}

/* ========================================
   BEST LISTS - RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .best-lists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }

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

@media (max-width: 1024px) {
    .list-layout {
        grid-template-columns: 1fr;
    }

    .list-sidebar {
        order: -1;
    }

    .sidebar-widget.sticky {
        position: relative;
        top: 0;
    }

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

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

@media (max-width: 768px) {
    .best-lists-header {
        padding: 80px 0 40px;
    }

    .best-lists-grid {
        grid-template-columns: 1fr;
    }

    .list-header {
        padding: 80px 0 40px;
    }

    .list-toc {
        display: none;
    }

    .list-content {
        padding: 40px 0 60px;
    }

    .ranking-header {
        flex-direction: column;
        gap: 20px;
    }

    .ranking-image {
        width: 100%;
        height: auto;
        aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
        max-height: 450px;
    }

    .ranking-content {
        padding: 24px;
        padding-top: 64px;
    }

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

    .ranking-actions {
        flex-direction: column;
    }

    .ranking-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .list-faq {
        padding: 24px;
    }

    .quick-picks {
        grid-template-columns: 1fr;
    }

    .related-lists {
        padding: 60px 0;
    }

    .related-lists-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .related-list-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .list-meta {
        flex-direction: column;
        gap: 12px;
    }

    .ranking-badge-wrap {
        flex-direction: column;
    }

    .ranking-position {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ranking-label {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 12px 0;
    }

    .ranking-content {
        padding-top: 56px;
    }

    .ranking-title {
        font-size: 22px;
    }
}

/* ========================================
   COMPARISON PAGE
   ======================================== */

.comparison-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.comparison-title .vs {
    display: inline-block;
    padding: 4px 16px;
    margin: 0 12px;
    background: var(--accent);
    color: #000;
    font-size: 0.6em;
    font-weight: 700;
    vertical-align: middle;
}

.comparison-title .more {
    font-size: 0.5em;
    color: var(--text-tertiary);
    font-weight: 400;
}

.comparison-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Product Cards Overview */
.comparison-overview {
    padding: 60px 0;
}

.comparison-products {
    display: grid;
    grid-template-columns: repeat(var(--product-count, 2), 1fr);
    gap: 24px;
}

.comparison-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
}

.comparison-product-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.comparison-product-card .product-image {
    position: relative;
    aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
    margin-bottom: 20px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 400px;
}

.comparison-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover to fill 9:16 vertical format */
}

.comparison-product-card .product-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.comparison-product-card .product-brand {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 8px;
}

.comparison-product-card .product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.comparison-product-card .product-name a {
    color: inherit;
    text-decoration: none;
}

.comparison-product-card .product-name a:hover {
    color: var(--accent);
}

.comparison-product-card .product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.comparison-product-card .product-verdict {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 20px;
}

.comparison-product-card .product-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Winner Card */
.comparison-winner {
    padding: 40px 0;
}

.winner-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    background: linear-gradient(135deg, var(--accent) 0%, #22d3ee 100%);
    color: #000;
    text-align: center;
}

.winner-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0,0,0,0.2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.winner-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.winner-card p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.winner-card .btn-primary {
    background: #000;
    color: #fff;
}

/* Ratings Comparison */
.comparison-ratings {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.ratings-chart {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.ratings-row {
    display: grid;
    grid-template-columns: 200px repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    background: var(--border);
}

.ratings-row.header-row {
    background: var(--bg-tertiary);
}

.ratings-row > div {
    padding: 16px;
    background: var(--bg-card);
}

.ratings-row.header-row > div {
    background: var(--bg-tertiary);
}

.rating-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.rating-product {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.rating-value {
    text-align: center;
}

.rating-number {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.rating-bar {
    height: 6px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.5s ease;
}

.no-rating {
    color: var(--text-tertiary);
    font-size: 14px;
}

/* Specs Table */
.comparison-specs {
    padding: 60px 0;
}

.specs-table-wrapper {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.specs-table th,
.specs-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.specs-table th {
    background: var(--bg-tertiary);
    font-weight: 600;
    font-size: 14px;
}

.specs-table th:first-child {
    width: 200px;
}

.spec-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.spec-value {
    font-size: 14px;
}

/* Pros & Cons Grid */
.comparison-pros-cons {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(var(--product-count, 2), 1fr);
    gap: 24px;
}

.pros-cons-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
}

.card-product-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.pros-section,
.cons-section {
    margin-bottom: 20px;
}

.pros-section:last-child,
.cons-section:last-child {
    margin-bottom: 0;
}

.pros-section h4,
.cons-section h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.pros-section h4 {
    color: var(--success);
}

.cons-section h4 {
    color: var(--danger);
}

.pros-cons-card .pros-list,
.pros-cons-card .cons-list {
    list-style: none;
}

.pros-cons-card .pros-list li,
.pros-cons-card .cons-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pros-cons-card .pros-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.pros-cons-card .cons-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* Intro, Detailed, Conclusion */
.comparison-intro,
.comparison-detailed,
.comparison-conclusion {
    padding: 60px 0;
}

.comparison-intro .intro-content,
.comparison-detailed .detailed-content,
.comparison-conclusion .conclusion-content {
    max-width: 800px;
}

.comparison-intro h2,
.comparison-detailed h2,
.comparison-conclusion h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Related Comparisons */
.related-comparisons {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-comparisons .related-card {
    padding: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.related-card:hover {
    border-color: var(--accent);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    transition: color var(--transition-fast);
}

.related-card:hover h3 {
    color: var(--accent);
}

.related-card .view-link {
    font-size: 13px;
    color: var(--accent);
}

/* Comparison Page Responsive */
@media (max-width: 1024px) {
    .comparison-products {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .comparison-header {
        padding: 80px 0 40px;
    }

    .comparison-products {
        grid-template-columns: 1fr;
    }

    .ratings-row {
        grid-template-columns: 120px repeat(auto-fit, minmax(100px, 1fr));
    }

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

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

    .specs-table th:first-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .comparison-title .vs {
        display: block;
        margin: 12px auto;
        width: fit-content;
    }

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

    .ratings-row > div {
        padding: 12px;
    }

    .rating-label {
        background: var(--bg-tertiary) !important;
        font-weight: 600;
    }
}

/* ========================================
   STATIC PAGES
   ======================================== */

.static-page-header {
    padding: 100px 0 60px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.static-page-header .page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
}

.static-page-content {
    padding: 60px 0 100px;
}

.content-wrapper {
    max-width: 800px;
}

/* Prose Styling */
.prose {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.prose p {
    margin-bottom: 20px;
}

.prose p.lead {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 48px 0 20px;
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.prose ul, .prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
}

.prose a {
    color: var(--accent);
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* Legal Content */
.legal-content .last-updated {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
}

.disclaimer-box {
    padding: 32px;
    background: var(--accent-muted);
    border-left: 4px solid var(--accent);
    margin-bottom: 40px;
}

.disclaimer-box h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.disclaimer-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--accent-muted);
    color: var(--accent);
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    margin: 40px 0;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    display: none;
}

.process-step h3 {
    font-size: 20px;
    margin: 0 0 8px;
}

.process-step p {
    margin: 0;
    font-size: 15px;
}

/* Contact Page */
.contact-page {
    max-width: 600px;
}

.contact-intro {
    margin-bottom: 32px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-form .form-input,
.contact-form .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: border-color var(--transition-fast);
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    padding: 24px;
    background: var(--bg-secondary);
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--accent);
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-success {
    background: rgba(132, 204, 22, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
}

/* Static Page Responsive */
@media (max-width: 768px) {
    .static-page-header {
        padding: 80px 0 40px;
    }

    .static-page-content {
        padding: 40px 0 60px;
    }

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

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 24px;
    }
}

/* ========================================
   HERO SLIDER - Modern Editorial Style
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out, opacity 0.6s ease;
}

.slide.active .slide-bg img {
    transform: scale(1);
}

/* Gradient overlay - centered content friendly */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Slide inner container */
.slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide Content - Centered */
.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

/* Meta row */
.slide-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-10px);
}

.slide.active .slide-meta {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.1s;
}

.slide-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--slider-accent, var(--accent));
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.slide-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
}

.slide-rating svg {
    color: #FBBF24;
    width: 14px;
    height: 14px;
}

/* Title */
.slide-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(15px);
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
}

/* Excerpt / Quick Verdict */
.slide-excerpt {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(15px);
}

.slide.active .slide-excerpt {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.3s;
}

/* CTA Button - Modern pill style */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.slide-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.4s, background 0.25s, border-color 0.25s;
}

.slide-cta:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.slide-cta:hover svg {
    transform: translateX(3px);
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.25s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Progress Indicators - Right side vertical lines */
.slider-dots {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slider-dot {
    position: relative;
    width: 2px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dot.active {
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--slider-accent, var(--accent));
}

.slider-dot.active .dot-progress {
    animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
    from { height: 0; }
    to { height: 100%; }
}

/* Category-based accent colors */
.hero-slider[data-category="electronics"] { --slider-accent: #3B82F6; }
.hero-slider[data-category="home-kitchen"] { --slider-accent: #EA580C; }
.hero-slider[data-category="beauty-personal-care"],
.hero-slider[data-category="beauty-skincare"] { --slider-accent: #EC4899; }
.hero-slider[data-category="health-household"] { --slider-accent: #10B981; }
.hero-slider[data-category="sports-outdoors"] { --slider-accent: #EF4444; }
.hero-slider[data-category="toys-games"] { --slider-accent: #8B5CF6; }
.hero-slider[data-category="baby-products"] { --slider-accent: #38BDF8; }
.hero-slider[data-category="pet-supplies"] { --slider-accent: #D97706; }
.hero-slider[data-category="office-products"] { --slider-accent: #6366F1; }
.hero-slider[data-category="tools-home-improvement"] { --slider-accent: #EAB308; }

/* Slider Responsive */
@media (max-width: 1024px) {
    .slider-prev { left: 16px; }
    .slider-next { right: 16px; }
    .slider-dots { right: 16px; }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 65vh;
        min-height: 450px;
    }

    .slide-content {
        padding: 60px 16px;
    }

    .slider-arrow { display: none; }

    /* Dots horizontal at bottom */
    .slider-dots {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 8px;
    }

    .slider-dot {
        width: 20px;
        height: 2px;
    }

    .slider-dot.active {
        width: 32px;
        height: 2px;
    }

    .dot-progress {
        top: 0;
        height: 100%;
        width: 0;
    }

    .slider-dot.active .dot-progress {
        animation: progressFillH 5s linear forwards;
    }

    .slide-title {
        font-size: clamp(22px, 5.5vw, 30px);
    }

    .slide-excerpt {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@keyframes progressFillH {
    from { width: 0; }
    to { width: 100%; }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content {
        padding: 32px 0;
    }

    .slide-meta {
        gap: 8px;
    }

    .slide-category {
        padding: 5px 10px;
        font-size: 9px;
    }

    .slide-cta {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ========================================
   HERO SLIDER V2 - Modern Split Layout
   Left: 9:16 Product Image | Right: Info
   ======================================== */
.hero-slider-v2 {
    width: 100%;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 40px 0 32px;
}

.slider-container-v2 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.slider-track-v2 {
    position: relative;
    min-height: 480px;
}

.slide-v2 {
    display: none;
    gap: 48px;
    align-items: center;
    background: var(--bg-primary);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.slide-v2.active {
    display: grid;
    grid-template-columns: 380px 1fr;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Left: Product Image */
.slide-image-v2 {
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.5s ease;
}

.slide-v2:hover .slide-image-v2 img {
    transform: scale(1.05);
}

.slide-placeholder,
.slide-placeholder-v2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-muted);
}

.slide-placeholder-v2 .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 20px;
}

.slide-placeholder-v2 .placeholder-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.slide-placeholder-v2 .placeholder-icon {
    opacity: 0.4;
}

/* Right: Product Info */
.slide-info-v2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px 40px 0;
}

.slide-info-inner {
    max-width: 480px;
}

/* Category Badge */
.slide-category-v2 {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Product Title */
.slide-title-v2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

/* Price & Brand */
.slide-details-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.slide-brand {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.slide-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
}

/* Rating */
.slide-rating-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--bg-secondary);
}

.rating-score {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: #FFB800;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* Verdict */
.slide-verdict-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.verdict-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.verdict-value {
    display: inline-block;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}

.verdict-excellent {
    background: #10B981;
    color: #fff;
}

.verdict-good {
    background: #3B82F6;
    color: #fff;
}

.verdict-average {
    background: #F59E0B;
    color: #fff;
}

.verdict-disappointing {
    background: #EF4444;
    color: #fff;
}

/* Intro Text */
.slide-intro-v2 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
}

/* CTA Button */
.slide-cta-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.slide-cta-v2:hover {
    background: var(--accent);
    color: #fff;
}

.slide-cta-v2 svg {
    width: 16px;
    height: 16px;
}

/* Navigation */
.slider-nav-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.slider-arrow-v2 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow-v2:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.slider-dots-v2 {
    display: flex;
    gap: 8px;
}

.slider-dot-v2 {
    width: 40px;
    height: 4px;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.slider-dot-v2 .dot-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.slider-dot-v2.active .dot-fill {
    width: 100%;
    animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Slider V2 Responsive */
@media (max-width: 1024px) {
    .slide-v2.active {
        grid-template-columns: 320px 1fr;
        gap: 32px;
    }

    .slider-track-v2 {
        min-height: 420px;
    }

    .slide-info-v2 {
        padding: 32px 32px 32px 0;
    }

    .slide-title-v2 {
        font-size: 24px;
    }

    .slide-price {
        font-size: 20px;
    }

    .rating-score {
        font-size: 22px;
    }
}

/* =============================================
   MOBILE HERO SLIDER V2 - COMPLETE REDESIGN
   Clean, minimal layout optimized for mobile
   ============================================= */
@media (max-width: 768px) {
    /* Hide Pinterest buttons on mobile - Comprehensive */
    [data-pin-log],
    .PIN_,
    [data-pin-href],
    span[data-pin-log="button_pinit"],
    .PIN_btn,
    .PinItButton,
    img[data-pin-url] + span,
    .slide-image-v2 span:not(.placeholder-brand):not(.placeholder-icon) {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    /* Main container - minimal padding */
    .hero-slider-v2 {
        padding: 12px 0 16px;
        background: var(--bg-primary);
    }

    .slider-container-v2 {
        padding: 0 16px;
    }

    /* Slider track - auto height */
    .slider-track-v2 {
        min-height: auto;
    }

    /* Slide card - clean shadow */
    .slide-v2 {
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .slide-v2.active {
        display: flex;
        flex-direction: column;
        grid-template-columns: unset;
        gap: 0;
    }

    /* Image section - 16:9 aspect ratio for better mobile viewing */
    .slide-image-v2 {
        aspect-ratio: 16 / 9;
        max-height: 220px;
        width: 100%;
        background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
        position: relative;
        overflow: hidden;
    }

    .slide-image-v2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 12px;
    }

    /* Disable hover effect on mobile */
    .slide-v2:hover .slide-image-v2 img {
        transform: none;
    }

    /* Placeholder styling */
    .slide-placeholder-v2 {
        background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    }

    .slide-placeholder-v2 .placeholder-content {
        gap: 8px;
        padding: 12px;
    }

    .slide-placeholder-v2 .placeholder-brand {
        font-size: 14px;
    }

    .slide-placeholder-v2 .placeholder-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Info section - compact layout */
    .slide-info-v2 {
        padding: 14px 16px 16px;
    }

    .slide-info-inner {
        max-width: 100%;
    }

    /* Category badge - small and subtle */
    .slide-category-v2 {
        font-size: 9px;
        font-weight: 600;
        padding: 3px 8px;
        margin-bottom: 8px;
        letter-spacing: 0.3px;
    }

    /* Title - readable but compact */
    .slide-title-v2 {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.35;
        margin: 0 0 10px 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Rating - prominent inline display */
    .slide-rating-v2 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        margin-bottom: 12px;
        background: var(--bg-secondary);
    }

    .rating-score {
        font-size: 18px;
        font-weight: 800;
    }

    .rating-stars {
        gap: 2px;
    }

    .rating-stars svg {
        width: 12px;
        height: 12px;
    }

    .rating-text {
        font-size: 10px;
    }

    /* Brand and price row */
    .slide-details-v2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-bottom: 12px;
    }

    .slide-brand {
        font-size: 11px;
        color: var(--text-muted);
    }

    .slide-price {
        font-size: 16px;
        font-weight: 700;
    }

    /* Verdict - compact */
    .slide-verdict-v2 {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .verdict-label {
        font-size: 11px;
        display: none; /* Hide label on mobile - verdict badge is self-explanatory */
    }

    .verdict-value {
        font-size: 10px;
        font-weight: 600;
        padding: 4px 10px;
    }

    /* Intro text - hide on mobile for cleaner look */
    .slide-intro-v2 {
        display: none;
    }

    /* CTA Button - full width, compact */
    .slide-cta-v2 {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 12px;
        font-weight: 600;
        gap: 6px;
    }

    .slide-cta-v2 svg {
        width: 14px;
        height: 14px;
    }

    /* Navigation - minimal and clean */
    .slider-nav-v2 {
        margin-top: 12px;
        gap: 10px;
    }

    /* Arrow buttons - subtle */
    .slider-arrow-v2 {
        width: 32px;
        height: 32px;
        border: 1px solid var(--border-color);
        background: transparent;
        opacity: 0.7;
    }

    .slider-arrow-v2:hover,
    .slider-arrow-v2:active {
        opacity: 1;
        background: var(--bg-secondary);
    }

    .slider-arrow-v2 svg {
        width: 14px;
        height: 14px;
    }

    /* Dots - minimal line style */
    .slider-dots-v2 {
        gap: 4px;
    }

    .slider-dot-v2 {
        width: 20px;
        height: 2px;
        background: var(--border-color);
        opacity: 0.5;
    }

    .slider-dot-v2.active {
        opacity: 1;
    }

    .slider-dot-v2 .dot-fill {
        height: 100%;
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    .hero-slider-v2 {
        padding: 8px 0 12px;
    }

    .slider-container-v2 {
        padding: 0 12px;
    }

    /* Even more compact image - 4:3 ratio for small screens */
    .slide-image-v2 {
        aspect-ratio: 4 / 3;
        max-height: 180px;
    }

    .slide-image-v2 img {
        padding: 8px;
    }

    /* Tighter info section */
    .slide-info-v2 {
        padding: 12px 12px 14px;
    }

    /* Smaller title */
    .slide-title-v2 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Smaller category */
    .slide-category-v2 {
        font-size: 8px;
        padding: 2px 6px;
        margin-bottom: 6px;
    }

    /* Compact rating */
    .slide-rating-v2 {
        padding: 6px 10px;
        margin-bottom: 10px;
        gap: 6px;
    }

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

    .rating-stars svg {
        width: 10px;
        height: 10px;
    }

    .rating-text {
        font-size: 9px;
    }

    /* Price and brand - stack vertically */
    .slide-details-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 10px;
    }

    .slide-brand {
        font-size: 10px;
    }

    .slide-price {
        font-size: 15px;
    }

    /* Verdict */
    .slide-verdict-v2 {
        margin-bottom: 10px;
    }

    .verdict-value {
        font-size: 9px;
        padding: 3px 8px;
    }

    /* CTA */
    .slide-cta-v2 {
        padding: 10px 14px;
        font-size: 11px;
    }

    .slide-cta-v2 svg {
        width: 12px;
        height: 12px;
    }

    /* Navigation - even smaller */
    .slider-nav-v2 {
        margin-top: 10px;
        gap: 8px;
    }

    .slider-arrow-v2 {
        width: 28px;
        height: 28px;
    }

    .slider-arrow-v2 svg {
        width: 12px;
        height: 12px;
    }

    .slider-dots-v2 {
        gap: 3px;
    }

    .slider-dot-v2 {
        width: 16px;
        height: 2px;
    }
}

/* Dark Mode - Slider V2 */
[data-theme="dark"] .hero-slider-v2 {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

[data-theme="dark"] .slide-v2 {
    background: var(--bg-secondary);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .slide-image-v2,
[data-theme="dark"] .slide-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .slide-rating-v2 {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .slider-arrow-v2 {
    border-color: #333;
}

[data-theme="dark"] .slider-dot-v2 {
    background: #333;
}

/* ========================================
   DARK MODE - COMPONENT SPECIFIC STYLES
   ======================================== */

/* Dark Mode - Selection */
[data-theme="dark"] ::selection {
    background: var(--accent);
    color: #ffffff;
}

/* Dark Mode - Header */
[data-theme="dark"] .header {
    background: rgba(15, 15, 15, 0.9);
}

[data-theme="dark"] .header.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Cards */
[data-theme="dark"] .review-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .comparison-product-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .comparison-product-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .sidebar-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dark Mode - Buttons */
[data-theme="dark"] .btn-primary {
    box-shadow: 0 2px 8px rgba(251, 113, 133, 0.3);
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(251, 113, 133, 0.4);
}

[data-theme="dark"] .btn-secondary {
    background: rgba(251, 113, 133, 0.15);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--accent);
}

[data-theme="dark"] .btn-outline {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
}

/* Dark Mode - Forms */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .contact-form .form-input,
[data-theme="dark"] .contact-form .form-textarea {
    background: var(--bg-tertiary);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.15);
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
    color: var(--text-tertiary);
}

[data-theme="dark"] .newsletter-form input[type="email"] {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

[data-theme="dark"] .newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.15);
}

/* Dark Mode - Search Modal */
[data-theme="dark"] .search-modal-overlay {
    background: rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .search-modal-form,
[data-theme="dark"] .search-modal-input {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .search-modal-form input,
[data-theme="dark"] .search-modal-input input {
    color: var(--text-primary);
}

[data-theme="dark"] .search-modal-hints kbd {
    background: var(--bg-tertiary);
    border-color: var(--border);
    color: var(--text-secondary);
}

/* Dark Mode - Social Share */
[data-theme="dark"] .share-btn {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .share-btn:hover {
    background: var(--bg-elevated);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .share-section .share-twitter:hover {
    background: #333;
    border-color: #555;
}

[data-theme="dark"] .sidebar-share-btn.share-twitter:hover {
    background: #333;
    border-color: #555;
}

/* Dark Mode - Newsletter Box */
[data-theme="dark"] .newsletter-box {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Dark Mode - Pros/Cons Lists */
[data-theme="dark"] .pros-list,
[data-theme="dark"] .cons-list {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .pros-list {
    border-top-color: var(--success);
}

[data-theme="dark"] .cons-list {
    border-top-color: var(--danger);
}

/* Dark Mode - FAQ */
[data-theme="dark"] .faq-item {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .faq-item:hover {
    border-color: var(--accent-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(244, 114, 182, 0.15);
}

[data-theme="dark"] .faq-question:hover {
    background: var(--accent-muted);
}

[data-theme="dark"] .faq-question svg {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .faq-question:hover svg {
    background: var(--accent-light);
    color: var(--accent);
}

[data-theme="dark"] .faq-item.active .faq-question svg {
    background: var(--accent);
    color: #ffffff;
}

[data-theme="dark"] .faq-answer p {
    border-top-color: var(--border);
}

[data-theme="dark"] .faq-container {
    border-color: var(--border);
}

/* Dark Mode - Specs Table */
[data-theme="dark"] .specs-table {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .specs-table tr {
    border-color: var(--border);
}

[data-theme="dark"] .specs-table th {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

[data-theme="dark"] .specs-table td {
    color: var(--text-secondary);
}

[data-theme="dark"] .specs-table tr:nth-child(even) td {
    background: var(--bg-secondary);
}

/* Dark Mode - Footer */
[data-theme="dark"] .footer {
    background: var(--bg-secondary);
    border-top-color: var(--border);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: var(--border);
}

/* Dark Mode - Mobile Navigation */
[data-theme="dark"] .mobile-nav {
    background: var(--bg-primary);
}

[data-theme="dark"] .mobile-nav-header {
    background: var(--bg-primary);
    border-bottom-color: var(--border);
}

[data-theme="dark"] .mobile-nav-close {
    background: var(--bg-secondary);
}

[data-theme="dark"] .mobile-nav-close:hover {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .mobile-link {
    color: var(--text-primary);
    border-color: var(--border);
}

[data-theme="dark"] .mobile-link:hover,
[data-theme="dark"] .mobile-link:active {
    background: var(--bg-secondary);
    color: var(--accent);
}

[data-theme="dark"] .mobile-link svg {
    color: var(--text-muted);
}

[data-theme="dark"] .mobile-search form {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .mobile-search input {
    color: var(--text-primary);
}

[data-theme="dark"] .mobile-user-section {
    border-top-color: var(--border);
}

[data-theme="dark"] .mobile-user-info {
    background: var(--bg-secondary);
}

[data-theme="dark"] .mobile-auth-buttons .btn-outline {
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .mobile-auth-buttons .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Dark Mode - Dropdown Menus */
[data-theme="dark"] .dropdown-menu {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .dropdown-item:hover {
    background: var(--bg-tertiary);
}

/* Dark Mode - Tags & Badges */
[data-theme="dark"] .tag,
[data-theme="dark"] .badge {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
}

[data-theme="dark"] .tag:hover {
    background: var(--bg-elevated);
    color: var(--accent);
}

/* Dark Mode - Category Cards */
[data-theme="dark"] .category-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .category-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Rating Components */
[data-theme="dark"] .rating-badge {
    background: var(--accent-bg);
}

[data-theme="dark"] .rating-bar-fill {
    background: var(--accent);
}

[data-theme="dark"] .rating-bar-bg {
    background: var(--bg-tertiary);
}

/* Dark Mode - Alerts */
[data-theme="dark"] .alert-success {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success);
}

[data-theme="dark"] .alert-error {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--danger);
}

/* Dark Mode - Comparison Page */
[data-theme="dark"] .winner-card {
    background: var(--bg-card);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(251, 113, 133, 0.15);
}

[data-theme="dark"] .winner-card .btn-primary {
    background: var(--accent);
    color: #ffffff;
}

[data-theme="dark"] .pros-cons-card {
    background: var(--bg-card);
    border-color: var(--border);
}

/* Dark Mode - Product Header */
[data-theme="dark"] .product-header {
    background: var(--bg-primary);
}

[data-theme="dark"] .product-header .header-image {
    background: var(--bg-tertiary);
}

/* Dark Mode - Breadcrumb */
[data-theme="dark"] .breadcrumb a {
    color: var(--text-secondary);
}

[data-theme="dark"] .breadcrumb a:hover {
    color: var(--accent);
}

/* ========================================
   BREADCRUMB - MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    /* Main Breadcrumb */
    .breadcrumb {
        font-size: 13px;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        padding-bottom: 4px;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-nav {
        padding: 12px 0;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }

    .breadcrumb-current {
        max-width: 150px;
    }

    /* Simple Breadcrumb (Category Pages) */
    .breadcrumb-simple {
        font-size: 12px;
        gap: 6px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        margin-bottom: 16px;
        flex-wrap: nowrap;
    }

    .breadcrumb-simple::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-simple a,
    .breadcrumb-simple span {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
        flex-shrink: 0;
    }

    .breadcrumb-simple span:last-child {
        max-width: 140px;
    }

    /* Product Breadcrumb */
    .product-breadcrumb {
        font-size: 13px;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        white-space: nowrap;
        margin-bottom: 16px;
        flex-wrap: nowrap;
    }

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

    .product-breadcrumb a,
    .product-breadcrumb span {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
        flex-shrink: 0;
    }

    .product-breadcrumb span:last-child {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .breadcrumb {
        font-size: 12px;
        gap: 4px;
    }

    .breadcrumb-link,
    .breadcrumb-current {
        max-width: 80px;
    }

    .breadcrumb-current {
        max-width: 100px;
    }

    .breadcrumb-simple {
        font-size: 11px;
    }

    .breadcrumb-simple a,
    .breadcrumb-simple span {
        max-width: 70px;
    }

    .breadcrumb-simple span:last-child {
        max-width: 100px;
    }

    .product-breadcrumb {
        font-size: 12px;
        gap: 6px;
    }

    .product-breadcrumb a,
    .product-breadcrumb span {
        max-width: 70px;
    }

    .product-breadcrumb span:last-child {
        max-width: 120px;
    }
}

/* Dark Mode - Pagination */
[data-theme="dark"] .pagination-link {
    background: var(--bg-card);
    border-color: var(--border);
    color: var(--text-secondary);
}

[data-theme="dark"] .pagination-link:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent);
    color: var(--accent);
}

[data-theme="dark"] .pagination-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

/* Dark Mode - Code Blocks */
[data-theme="dark"] pre,
[data-theme="dark"] code {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

/* Dark Mode - Blockquote */
[data-theme="dark"] blockquote {
    background: var(--bg-secondary);
    border-left-color: var(--accent);
}

/* Dark Mode - Tables (General) */
[data-theme="dark"] table {
    border-color: var(--border);
}

[data-theme="dark"] th {
    background: var(--bg-tertiary);
}

[data-theme="dark"] td {
    border-color: var(--border);
}

/* Dark Mode - HR */
[data-theme="dark"] hr {
    border-color: var(--border);
}

/* Dark Mode - Image Placeholders */
[data-theme="dark"] .image-placeholder,
[data-theme="dark"] .no-image {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
}

/* Dark Mode - Loading States */
[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-elevated) 50%, var(--bg-tertiary) 75%);
}

/* Dark Mode - Tooltip */
[data-theme="dark"] .tooltip {
    background: var(--bg-elevated);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Dark Mode - Hero Slider */
[data-theme="dark"] .slide-overlay {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.95) 100%);
}

[data-theme="dark"] .slide-category {
    background: rgba(251, 113, 133, 0.2);
    color: var(--accent);
}

[data-theme="dark"] .slide-rating {
    background: rgba(251, 113, 133, 0.2);
}

/* Dark Mode - Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: var(--bg-elevated);
    border: 2px solid var(--bg-secondary);
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ========================================
   MOBILE-FIRST RESPONSIVE - WOMEN & READABILITY
   Target: Female audience, easy reading, mobile-first
   ======================================== */

/* Large Tablets and Below (1024px) */
@media (max-width: 1024px) {
    :root {
        --text-base: 17px;
        --text-lg: 19px;
        --text-xl: 22px;
        --text-2xl: 28px;
        --container-max: 100%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-text, .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .product-card.featured {
        grid-column: span 2;
    }

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

/* Tablets (768px) */
@media (max-width: 768px) {
    :root {
        --text-base: 17px;
        --text-lg: 18px;
        --text-xl: 21px;
        --text-2xl: 26px;
        --header-height: 56px;
        --touch-target: 52px;
    }

    body {
        font-size: var(--text-base);
    }

    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .logo-name {
        font-size: 18px;
    }

    .header-actions .search-trigger .action-hint {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 80px;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 48px);
    }

    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .hero-text, .hero-description {
        font-size: var(--text-lg);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-stat::before {
        display: none;
    }

    /* Buttons Mobile */
    .btn {
        padding: 16px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Sections Mobile */
    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header.with-action {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .product-card.featured .product-card-image {
        aspect-ratio: 9/16; /* Pinterest/Instagram vertical format - FORCED */
        max-height: 500px;
    }

    .product-card.featured .product-card-content {
        padding: 28px;
    }

    .product-card.featured .product-card-title {
        font-size: var(--text-xl);
    }

    .product-card-content {
        padding: 20px;
    }

    .product-card-title {
        font-size: var(--text-lg);
    }

    .product-card-excerpt {
        font-size: var(--text-base);
        -webkit-line-clamp: 3;
    }

    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        padding: 32px 20px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    /* Slider Mobile */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }

    .slide-meta {
        justify-content: center;
    }

    .slide-title {
        font-size: clamp(28px, 6vw, 42px);
    }

    .slide-excerpt {
        font-size: var(--text-base);
        margin-left: auto;
        margin-right: auto;
    }

    .slide-cta {
        margin: 0 auto;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --text-base: 16px;
        --text-lg: 17px;
        --text-xl: 20px;
        --text-2xl: 24px;
        --header-height: 56px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header Extra Small */
    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .logo-name {
        font-size: 16px;
    }

    .action-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Hero Extra Small */
    .hero {
        padding: calc(var(--header-height) + 30px) 0 60px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 20px;
    }

    .hero-text, .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-actions {
        margin-bottom: 50px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Buttons Extra Small */
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        max-width: 100%;
    }

    /* Sections Extra Small */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .display-md {
        font-size: clamp(26px, 6vw, 36px);
    }

    .section-description {
        font-size: 16px;
    }

    /* Cards Extra Small */
    .product-card-content {
        padding: 18px;
    }

    .product-card-category {
        font-size: 12px;
    }

    .product-card-title {
        font-size: 18px;
    }

    .product-card-excerpt {
        font-size: 15px;
    }

    .product-card-meta {
        font-size: 14px;
    }

    /* Categories Extra Small */
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .category-card {
        padding: 24px 16px;
    }

    .category-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .category-name {
        font-size: 16px;
    }

    .category-count {
        font-size: 14px;
    }

    /* Footer Extra Small */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Slider Extra Small */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: clamp(24px, 7vw, 32px);
    }

    .slide-excerpt {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .slide-category {
        font-size: 10px;
        padding: 6px 12px;
    }

    .slide-rating {
        font-size: 13px;
        padding: 6px 10px;
    }
}

/* Touch-Friendly Improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover {
        transform: none;
    }

    .product-card:hover {
        transform: none;
    }

    .category-card:hover {
        transform: none;
    }

    /* Increase touch targets */
    .nav-item {
        padding: 14px 20px;
    }

    .mobile-link {
        padding: 18px 0;
    }

    /* Better tap feedback */
    .btn:active {
        transform: scale(0.98);
    }

    .product-card:active {
        transform: scale(0.99);
    }
}

/* High DPI / Retina Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-stats {
        display: none;
    }
}

/* 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;
    }

    .slide-bg img {
        transform: none !important;
    }
}

/* ========================================
   NEWSLETTER STYLES
   ======================================== */

/* Newsletter Form Messages */
.form-message {
    margin-top: 12px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.4;
}

.form-message-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-left: 3px solid #10B981;
}

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border-left: 3px solid #EF4444;
}

/* Spin animation for loader */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Sidebar Newsletter Box */
.sidebar-newsletter {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 20px;
    margin-top: 20px;
}

/* When inside sidebar-cta */
.sidebar-cta .sidebar-newsletter {
    margin-top: 16px;
    padding-top: 16px;
    border: none;
    border-top: 1px solid var(--border);
    background: transparent;
}

.sidebar-newsletter-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-newsletter-title svg {
    color: var(--accent);
}

.sidebar-newsletter-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.sidebar-newsletter .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-newsletter .newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.sidebar-newsletter .newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
}

.sidebar-newsletter .newsletter-form input[type="email"]::placeholder {
    color: var(--text-tertiary);
}

.sidebar-newsletter .newsletter-form button {
    width: 100%;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sidebar-newsletter .form-hint {
    font-size: 11px;
    color: var(--text-tertiary);
    text-align: center;
}

/* Newsletter Popup Modal */
.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.newsletter-popup-container {
    position: relative;
    background: var(--bg-primary);
    max-width: 440px;
    width: 90%;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.newsletter-popup.active .newsletter-popup-container {
    transform: translateY(0) scale(1);
}

.newsletter-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-popup-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.newsletter-popup-content {
    text-align: center;
}

.newsletter-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-muted) 0%, rgba(245, 124, 0, 0.15) 100%);
    color: var(--accent);
}

.newsletter-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.newsletter-popup-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.newsletter-popup-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-popup-input-group input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    background: var(--bg-secondary);
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.newsletter-popup-input-group input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-primary);
}

.newsletter-popup-input-group input[type="email"]::placeholder {
    color: var(--text-tertiary);
}

.newsletter-popup-input-group button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
}

.newsletter-popup-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Responsive */
@media (max-width: 480px) {
    .newsletter-popup-container {
        padding: 32px 24px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .newsletter-popup-title {
        font-size: 20px;
    }

    .newsletter-popup-text {
        font-size: 14px;
    }

    .newsletter-popup-icon {
        width: 64px;
        height: 64px;
    }

    .newsletter-popup-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   PRODUCT BADGES
   Award badges for products (Editor's Choice, Best Value, etc.)
   ======================================== */

/* Badge Container - Product Header */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Individual Badge Pill */
.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 12%, transparent);
    color: var(--badge-color, var(--accent));
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid color-mix(in srgb, var(--badge-color, var(--accent)) 25%, transparent);
    cursor: help;
    transition: all var(--transition-fast);
}

.product-badge:hover {
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 18%, transparent);
    border-color: color-mix(in srgb, var(--badge-color, var(--accent)) 40%, transparent);
    transform: translateY(-1px);
}

.product-badge svg {
    flex-shrink: 0;
    stroke: var(--badge-color, var(--accent));
}

.product-badge__text {
    white-space: nowrap;
}

/* Badge Color Variants - Specific badge styling */
.product-badge--editors-choice {
    --badge-color: #F59E0B;
}

.product-badge--best-value {
    --badge-color: #10B981;
}

.product-badge--top-pick {
    --badge-color: #3B82F6;
}

.product-badge--premium-choice {
    --badge-color: #8B5CF6;
}

.product-badge--budget-pick {
    --badge-color: #14B8A6;
}

.product-badge--innovation-award {
    --badge-color: #F97316;
}

.product-badge--most-popular {
    --badge-color: #EF4444;
}

.product-badge--eco-friendly {
    --badge-color: #22C55E;
}

/* Related Card Badges (Compact Version) */
.related-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
}

.related-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 15%, transparent);
    color: var(--badge-color, var(--accent));
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid color-mix(in srgb, var(--badge-color, var(--accent)) 20%, transparent);
    transition: all var(--transition-fast);
}

.related-card:hover .related-badge {
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 20%, transparent);
}

/* Badge Tooltip Enhancement */
.product-badge[title] {
    position: relative;
}

.product-badge[title]::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--bg-elevated);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 250px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
    z-index: 100;
}

.product-badge[title]::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 101;
}

.product-badge[title]:hover::after,
.product-badge[title]:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Dark Mode Badge Styles */
[data-theme="dark"] .product-badge {
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 15%, transparent);
    border-color: color-mix(in srgb, var(--badge-color, var(--accent)) 30%, transparent);
}

[data-theme="dark"] .product-badge:hover {
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 22%, transparent);
    border-color: color-mix(in srgb, var(--badge-color, var(--accent)) 45%, transparent);
}

[data-theme="dark"] .related-badge {
    background: color-mix(in srgb, var(--badge-color, var(--accent)) 18%, transparent);
    border-color: color-mix(in srgb, var(--badge-color, var(--accent)) 25%, transparent);
}

[data-theme="dark"] .product-badge[title]::after {
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .product-badge[title]::before {
    border-top-color: var(--border);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-badges {
        gap: 6px;
    }

    .product-badge {
        padding: 5px 10px;
        font-size: 11px;
    }

    .product-badge svg {
        width: 12px;
        height: 12px;
    }

    .product-badge[title]::after {
        max-width: 200px;
        font-size: 11px;
    }

    .related-card-badges {
        gap: 3px;
    }

    .related-badge {
        padding: 2px 6px;
        font-size: 8px;
    }
}

/* ========================================
   PRODUCT VIDEO SECTION
   ======================================== */
.product-video-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.video-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.video-section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.video-section-title svg {
    color: var(--accent);
}

.video-section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Video Container - 16:9 Aspect Ratio */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Thumbnail (Lazy Load) */
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    transition: opacity var(--transition-base);
}

.video-thumbnail:hover::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

/* Video Play Button */
.video-play-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 56px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base), filter var(--transition-base);
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-play-button:hover .video-play-bg {
    fill: var(--accent);
    fill-opacity: 1;
}

.video-play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

/* Video Iframe Wrapper */
.video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.video-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* TOC Video Link */
.toc-video-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent) !important;
}

.toc-video-link svg {
    flex-shrink: 0;
}

/* Meta Item Video Link */
.meta-item-video {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--accent) !important;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.meta-item-video:hover {
    color: var(--accent-hover) !important;
}

.meta-item-video svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Video Icon Badge for Product Cards */
.product-card-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.product-card-video-badge svg {
    flex-shrink: 0;
}

/* Product Card Modern Video Badge */
.product-card-modern .product-card-video-badge {
    top: 12px;
    right: 12px;
}

/* Review Card (category page) Video Badge */
.review-card .product-card-video-badge,
.card-media .product-card-video-badge {
    top: 8px;
    right: 8px;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .product-video-section {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .video-thumbnail {
    background: #000;
}

[data-theme="dark"] .product-card-video-badge {
    background: rgba(0, 0, 0, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-video-section {
        padding: 40px 0;
    }

    .video-section-title {
        font-size: 22px;
        gap: 8px;
    }

    .video-section-title svg {
        width: 20px;
        height: 20px;
    }

    .video-section-subtitle {
        font-size: 14px;
    }

    .video-play-button {
        width: 60px;
        height: 42px;
    }

    .video-play-button svg {
        width: 54px;
        height: 38px;
    }

    .product-card-video-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    .product-card-video-badge svg {
        width: 12px;
        height: 12px;
    }
}

/* ========================================
   USER REVIEWS SECTION
   ======================================== */
.user-reviews-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.user-reviews-header {
    text-align: center;
    margin-bottom: 32px;
}

.user-reviews-header .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.user-reviews-header .section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Review Form Container */
.review-form-container {
    max-width: 800px;
    margin: 0 auto 40px;
}

.review-form-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--accent);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.review-form-toggle:hover {
    background: var(--accent-hover);
}

.review-form-toggle svg {
    flex-shrink: 0;
}

/* Review Form Panel */
.review-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    margin-top: 16px;
}

.user-review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.user-review-form .form-group {
    margin-bottom: 20px;
}

.user-review-form .form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.user-review-form .form-label .required {
    color: var(--danger);
}

.user-review-form .form-label .optional {
    color: var(--text-tertiary);
    font-weight: 400;
    font-size: 13px;
}

.user-review-form .form-input,
.user-review-form .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.user-review-form .form-input:focus,
.user-review-form .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-muted);
}

.user-review-form .form-input::placeholder,
.user-review-form .form-textarea::placeholder {
    color: var(--text-tertiary);
}

.user-review-form .form-textarea {
    resize: vertical;
    min-height: 120px;
}

.user-review-form .form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.user-review-form .form-error {
    display: block;
    font-size: 13px;
    color: var(--danger);
    margin-top: 4px;
}

.textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.char-count {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* Honeypot Field */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    align-items: center;
    gap: 4px;
}

.star-btn {
    padding: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-tertiary);
    transition: color 0.15s, transform 0.15s;
}

.star-btn:hover,
.star-btn.hover {
    color: var(--warning);
    transform: scale(1.1);
}

.star-btn.active {
    color: var(--warning);
}

.star-btn.active svg {
    fill: currentColor;
}

.rating-text {
    margin-left: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Tag Input for Pros/Cons */
.tag-input-container {
    border: 1px solid var(--border);
    background: var(--bg-primary);
    padding: 8px;
    min-height: 48px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.tag-list:empty {
    margin-bottom: 0;
}

.tag-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 14px;
    color: var(--text-primary);
}

.tag-input:focus {
    outline: none;
}

.tag-input::placeholder {
    color: var(--text-tertiary);
}

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
}

.tag-success {
    background: var(--success-light);
    color: #065F46;
}

.tag-danger {
    background: rgba(248, 113, 113, 0.15);
    color: #991B1B;
}

.tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.tag-remove:hover {
    opacity: 1;
}

/* reCAPTCHA Group */
.recaptcha-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
}

.recaptcha-group .g-recaptcha {
    transform-origin: left top;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.form-actions .btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
}

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

.btn-secondary:hover {
    background: var(--border);
}

/* Form Message */
.form-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    margin-top: 20px;
    font-size: 14px;
}

.form-message.success {
    background: var(--success-light);
    color: #065F46;
}

.form-message.error {
    background: rgba(248, 113, 113, 0.15);
    color: #991B1B;
}

/* User Reviews List */
.user-reviews-list {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    color: var(--text-secondary);
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* Reviews Stats */
.reviews-stats {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.stats-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stats-avg {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stats-stars {
    display: flex;
    gap: 2px;
    color: var(--warning);
}

.stats-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Review Items */
.reviews-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

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

.review-author .author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.review-author .author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-author .author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.review-author .author-location {
    font-size: 13px;
    color: var(--text-tertiary);
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

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

.review-stars .star.empty {
    color: var(--text-tertiary);
}

.review-date {
    font-size: 13px;
    color: var(--text-tertiary);
}

.review-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.review-pros-cons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-pros,
.review-cons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.pros-label,
.cons-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 50px;
}

.review-footer {
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.helpful-btn:hover {
    background: var(--accent-muted);
    border-color: var(--accent);
    color: var(--accent);
}

.helpful-btn.voted {
    background: var(--accent-muted);
    border-color: var(--accent);
    color: var(--accent);
}

/* Dark Mode */
[data-theme="dark"] .user-reviews-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .review-form-panel,
[data-theme="dark"] .review-item,
[data-theme="dark"] .reviews-stats {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .tag-success {
    background: rgba(52, 211, 153, 0.15);
    color: #6EE7B7;
}

[data-theme="dark"] .tag-danger {
    background: rgba(248, 113, 113, 0.15);
    color: #FCA5A5;
}

[data-theme="dark"] .form-message.success {
    background: rgba(52, 211, 153, 0.15);
    color: #6EE7B7;
}

[data-theme="dark"] .form-message.error {
    background: rgba(248, 113, 113, 0.15);
    color: #FCA5A5;
}

/* Mobile Responsive - User Reviews */
@media (max-width: 768px) {
    .user-reviews-section {
        padding: 40px 0;
    }

    .user-reviews-header .section-title {
        font-size: 24px;
    }

    .review-form-panel {
        padding: 20px;
    }

    .user-review-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pros-cons-row {
        gap: 0 !important;
    }

    .star-rating-input {
        flex-wrap: wrap;
    }

    .rating-text {
        width: 100%;
        margin: 8px 0 0 0;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .recaptcha-group .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left top;
    }

    .review-header {
        flex-direction: column;
        gap: 12px;
    }

    .review-meta {
        align-items: flex-start;
    }

    .stats-rating {
        flex-direction: column;
        gap: 12px;
    }

    .stats-avg {
        font-size: 36px;
    }

    .review-helpful {
        flex-wrap: wrap;
    }
}

/* ========================================
   User Menu (Header)
   ======================================== */

/* User Avatar (Small - Header) */
.user-avatar-small {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

/* User Menu Container */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    padding: 4px !important;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 260px;
    background: var(--bg-primary, #fff);
    border: 1px solid var(--border-color, #e4e4e7);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-color, #e4e4e7);
}

.user-dropdown-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary, #18181b);
    margin-bottom: 2px;
}

.user-dropdown-email {
    display: block;
    font-size: 13px;
    color: var(--text-secondary, #71717a);
}

.user-dropdown-links {
    padding: 8px 0;
}

.user-dropdown-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--text-secondary, #52525b);
    transition: all 0.15s;
}

.user-dropdown-links a:hover {
    background: var(--bg-secondary, #f4f4f5);
    color: var(--text-primary, #18181b);
}

.user-dropdown-links a svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.user-dropdown-links a:hover svg {
    opacity: 1;
}

.user-dropdown-links .badge {
    margin-left: auto;
    background: var(--text-primary, #18181b);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
}

.user-dropdown-footer {
    padding: 8px 0;
    border-top: 1px solid var(--border-color, #e4e4e7);
}

.user-dropdown-footer .logout-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-size: 14px;
    color: #dc2626;
    transition: all 0.15s;
}

.user-dropdown-footer .logout-link:hover {
    background: #fef2f2;
}

.user-dropdown-footer .logout-link svg {
    opacity: 0.8;
}


/* Mobile User Section */
.mobile-user-section {
    padding: 20px;
    border-top: 1px solid var(--border-color, #e4e4e7);
    margin-top: 16px;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.mobile-user-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.mobile-user-details {
    flex: 1;
}

.mobile-user-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary, #18181b);
}

.mobile-user-email {
    display: block;
    font-size: 13px;
    color: var(--text-secondary, #71717a);
}

.mobile-user-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-user-links .mobile-link {
    padding: 12px 16px;
    background: var(--bg-secondary, #f4f4f5);
    font-size: 14px;
}

.mobile-user-links .mobile-logout {
    color: #dc2626;
    margin-top: 8px;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-auth-buttons .btn {
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.mobile-auth-buttons .btn-primary {
    background: var(--text-primary, #18181b);
    color: #fff;
}

.mobile-auth-buttons .btn-outline {
    background: transparent;
    border: 1px solid var(--border-color, #e4e4e7);
    color: var(--text-primary, #18181b);
}

/* ========================================
   COMPARE SELECTION SYSTEM
   ======================================== */

/* Compare Badge in Navigation */
.nav-compare {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.compare-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Floating Compare Indicator - Always Visible When Products Selected */
.compare-floating-indicator {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    max-width: 280px;
}

.compare-floating-indicator.visible {
    display: flex;
}

.compare-floating-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}

.compare-floating-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-floating-count {
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
}

.compare-floating-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-floating-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--bg-secondary);
}

.compare-floating-product img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.compare-floating-product-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-floating-product-remove {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.compare-floating-product-remove:hover {
    color: #EF4444;
}

.compare-floating-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.compare-floating-btn {
    flex: 1;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.compare-floating-btn-primary {
    background: var(--accent);
    color: #fff;
}

.compare-floating-btn-primary:hover {
    background: var(--accent-dark);
}

.compare-floating-btn-clear {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.compare-floating-btn-clear:hover {
    border-color: var(--text-muted);
}

@media (max-width: 768px) {
    .compare-floating-indicator {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

/* ============================================
   Selected Products Bar (compare.php)
   Shows selected products on compare page
   ============================================ */

.compare-selected-bar {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 2px solid var(--accent);
    padding: 20px 0;
    position: sticky;
    top: 70px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.selected-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.selected-bar-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.selected-bar-label svg {
    color: var(--accent);
    flex-shrink: 0;
}

.selected-bar-products {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-wrap: nowrap;
}

/* Selected product chip */
.selected-product-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    padding: 8px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.selected-product-chip:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.selected-chip-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
}

.selected-chip-name {
    font-weight: 500;
    color: var(--text-primary);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.selected-chip-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    min-width: 36px;
}

.selected-chip-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.selected-chip-remove svg {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.selected-chip-remove:hover {
    background: #fee2e2;
    border-color: #ef4444;
}

.selected-chip-remove:hover svg {
    color: #ef4444;
}

/* Empty slot */
.selected-product-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px dashed var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.selected-product-slot svg {
    opacity: 0.5;
}

/* Compare button */
.selected-bar-compare-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.selected-bar-compare-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(244, 114, 182, 0.4);
}

.selected-bar-compare-btn svg {
    transition: transform 0.2s ease;
}

.selected-bar-compare-btn:hover svg {
    transform: translateX(4px);
}

/* Hint text */
.selected-bar-hint {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    margin-left: auto;
    padding: 12px 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .compare-selected-bar {
        padding: 16px 0;
        top: 60px;
    }

    .selected-bar-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .selected-bar-label {
        justify-content: center;
    }

    .selected-bar-products {
        justify-content: center;
    }

    .selected-product-chip {
        padding: 6px 10px;
    }

    .selected-chip-name {
        max-width: 100px;
        font-size: 13px;
    }

    .selected-chip-img {
        width: 32px;
        height: 32px;
    }

    .selected-bar-compare-btn,
    .selected-bar-hint {
        margin-left: 0;
        justify-content: center;
        text-align: center;
    }

    .selected-bar-compare-btn {
        width: 100%;
    }
}

/* Compare Button on Product Cards */
.compare-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid var(--border);
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: all 0.2s ease;
    z-index: 15;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.compare-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.compare-btn:hover {
    border-color: var(--accent);
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.compare-btn:hover svg {
    color: var(--accent);
}

/* Show compare button on card hover - already visible but enhance */
.review-card:hover .compare-btn,
.product-card-modern:hover .compare-btn,
.product-card:hover .compare-btn,
.related-card:hover .compare-btn,
.featured-card:hover .compare-btn,
.latest-card:hover .compare-btn {
    opacity: 1;
    transform: scale(1.05);
}

/* Active state - product is in compare list - VERY OBVIOUS */
.compare-btn.active {
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 20px rgba(var(--accent-rgb, 244, 114, 182), 0.5), 0 0 0 3px rgba(var(--accent-rgb, 244, 114, 182), 0.2) !important;
    transform: scale(1.1);
}

.compare-btn.active svg {
    color: #000 !important;
}

.compare-btn.active:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 24px rgba(var(--accent-rgb, 244, 114, 182), 0.6), 0 0 0 4px rgba(var(--accent-rgb, 244, 114, 182), 0.25) !important;
}

/* Card media position for compare button */
.review-card .card-media,
.product-card-modern .product-card-image,
.product-card .product-card-image,
.related-card .related-card-image,
.featured-card .featured-card-bg,
.latest-card .latest-card-image {
    position: relative;
}

/* Compare Toast Notification */
.compare-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 14px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.compare-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--success-light);
    flex-shrink: 0;
}

.compare-toast-icon svg {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.compare-toast-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.compare-toast-count {
    color: var(--accent);
    font-weight: 600;
}

/* Compare Fixed Bar */
.compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare-bar.visible {
    transform: translateY(0);
}

.compare-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.compare-bar-items {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    overflow-x: auto;
    padding: 4px 0;
}

.compare-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    min-width: max-content;
    position: relative;
}

.compare-bar-item-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.compare-bar-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 150px;
}

.compare-bar-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-bar-item-category {
    font-size: 11px;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-bar-item-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--danger);
    border: none;
    cursor: pointer;
    padding: 0;
}

.compare-bar-item-remove svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.compare-bar-item-remove:hover {
    background: #dc2626;
}

.compare-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.compare-bar-status {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.compare-bar-status strong {
    color: var(--accent);
    font-weight: 600;
}

.compare-bar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.compare-bar-btn-primary {
    background: var(--accent);
    color: #000;
}

.compare-bar-btn-primary:hover {
    background: var(--accent-hover);
}

.compare-bar-btn-primary:disabled {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    cursor: not-allowed;
}

.compare-bar-btn-clear {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.compare-bar-btn-clear:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Dark theme adjustments */
[data-theme="dark"] .compare-toast {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .compare-bar {
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .compare-toast-icon {
    background: rgba(52, 211, 153, 0.15);
}

[data-theme="dark"] .compare-btn {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .compare-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--accent);
}

[data-theme="dark"] .compare-btn svg {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .compare-bar-inner {
        flex-direction: column;
        gap: 16px;
    }

    .compare-bar-items {
        width: 100%;
        justify-content: center;
    }

    .compare-bar-actions {
        width: 100%;
        justify-content: center;
    }

    .compare-bar-item-info {
        display: none;
    }

    .compare-bar-item {
        padding: 4px;
    }

    .compare-toast {
        bottom: 160px;
        left: 20px;
        right: 20px;
        transform: translateX(0) translateY(100px);
    }

    .compare-toast.visible {
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 480px) {
    .compare-bar {
        padding: 12px 0;
    }

    .compare-bar-status {
        display: none;
    }

    .compare-bar-actions {
        flex-direction: column;
        gap: 8px;
    }

    .compare-bar-btn {
        width: 100%;
    }
}

/* Body padding when compare bar is visible - DEPRECATED on desktop (using new panel) */
body.compare-bar-active {
    padding-bottom: 0;
}

body.compare-bar-active .scroll-top-btn {
    bottom: 24px;
}

@media (max-width: 768px) {
    body.compare-bar-active {
        padding-bottom: 180px;
    }

    body.compare-bar-active .scroll-top-btn {
        bottom: 190px;
    }
}

/* Hide old compare bar on desktop - we use compare-panel instead */
@media (min-width: 769px) {
    .compare-bar {
        display: none !important;
    }
}

/* ========================================
   COMPARE PANEL (Desktop - Bottom Left)
   ======================================== */

.compare-panel {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 340px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.compare-panel.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
}

/* Ensure panel shows above everything */
.compare-panel.visible,
.compare-panel[style*="visible"],
.compare-panel.show,
.compare-panel.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.compare-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-card));
}

.compare-panel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-panel-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.compare-panel-count {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    padding: 4px 12px;
    min-width: 28px;
    text-align: center;
}

.compare-panel-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Product Slots */
.compare-panel-slots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-panel-slot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px dashed var(--border);
    min-height: 72px;
    transition: all var(--transition-fast);
}

.compare-panel-slot.filled {
    border-style: solid;
    background: var(--bg-card);
}

.compare-panel-slot:hover.filled {
    border-color: var(--accent);
}

/* Empty slot */
.compare-panel-slot-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: var(--text-tertiary);
    font-size: 13px;
}

.compare-panel-slot-empty svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

/* Filled slot */
.compare-panel-slot-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.compare-panel-slot-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.compare-panel-slot-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.compare-panel-slot-category {
    font-size: 11px;
    color: var(--text-tertiary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compare-panel-slot-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.compare-panel-slot-remove svg {
    width: 14px;
    height: 14px;
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.compare-panel-slot-remove:hover {
    background: var(--danger);
    border-color: var(--danger);
}

.compare-panel-slot-remove:hover svg {
    color: #fff;
}

/* Panel Actions */
.compare-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.compare-panel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-panel-btn-primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 4px 16px rgba(var(--accent-rgb, 244, 114, 182), 0.3);
}

.compare-panel-btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb, 244, 114, 182), 0.4);
}

.compare-panel-btn-primary:disabled {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.compare-panel-btn-primary svg {
    width: 20px;
    height: 20px;
}

.compare-panel-btn-clear {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 20px;
    font-size: 13px;
}

.compare-panel-btn-clear:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Dark theme adjustments */
[data-theme="dark"] .compare-panel {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: var(--bg-card);
    border-color: var(--accent);
}

[data-theme="dark"] .compare-panel-header {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .compare-panel-slot {
    background: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .compare-panel-slot.filled {
    background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .compare-panel-count {
    background: rgba(var(--accent-rgb), 0.2);
}

[data-theme="dark"] .compare-btn {
    background: rgba(30, 30, 30, 0.95);
    border-color: var(--border);
}

[data-theme="dark"] .compare-btn:hover {
    background: rgba(40, 40, 40, 1);
    border-color: var(--accent);
}

[data-theme="dark"] .compare-btn.active {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

/* Hide compare panel on mobile - mobile uses the bar */
@media (max-width: 768px) {
    .compare-panel {
        display: none !important;
    }

    /* Show compare bar on mobile */
    .compare-bar {
        display: block !important;
    }
}

/* ========================================
   SAVE FOR LATER (PINTEREST) SECTION
   ======================================== */
.save-for-later-section {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.save-for-later-section img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100%;
    height: auto !important;
}

/* Pinterest SDK müdahalesini engelle */
.save-for-later-section span[data-pin-log],
.save-for-later-section .PIN_btn,
.save-for-later-section .PinItButton,
.save-for-later-section [data-pin-href] {
    display: none !important;
}

.save-for-later-section a > span {
    display: none !important;
}

/* Pinterest'in görseli wrapper'a almasını engelle */
.save-for-later-section img + span,
.save-for-later-section img ~ span {
    display: none !important;
}

@media (max-width: 768px) {
    .save-for-later-section {
        flex-direction: column !important;
        text-align: center;
        padding: 24px !important;
        gap: 24px !important;
    }

    .save-for-later-section > a {
        flex: 1 1 auto !important;
        min-width: unset !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .save-for-later-section img {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
}

/* ===== Kategori vurgu renkleri (orijinal category-themes.css) ===== */
/**
 * Category-Specific Color Themes
 * Applied via data-category-theme attribute on body
 */

/* ========================================
   ELECTRONICS - Tech Blue Theme
   ======================================== */
[data-category-theme="electronics"] {
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-light: #93C5FD;
    --accent-muted: rgba(59, 130, 246, 0.1);
    --accent-bg: #EFF6FF;

    --secondary: #6366F1;
    --secondary-light: #E0E7FF;

    --gradient-accent: linear-gradient(135deg, #3B82F6 0%, #60A5FA 50%, #BFDBFE 100%);
    --gradient-warm: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #BFDBFE 100%);
    --gradient-hero: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);

    --shadow-xs: 0 1px 3px rgba(59, 130, 246, 0.08);
    --shadow-sm: 0 4px 12px rgba(59, 130, 246, 0.1);
    --shadow-md: 0 12px 32px rgba(59, 130, 246, 0.12);
    --shadow-lg: 0 24px 64px rgba(59, 130, 246, 0.16);
    --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.2);
    --shadow-card: 0 8px 30px rgba(59, 130, 246, 0.08);

    --border: #DBEAFE;
    --border-hover: #BFDBFE;
}

[data-theme="dark"][data-category-theme="electronics"] {
    --accent: #60A5FA;
    --accent-hover: #93C5FD;
    --accent-light: #1E40AF;
    --accent-muted: rgba(96, 165, 250, 0.15);
    --accent-bg: #1E3A5F;

    --gradient-accent: linear-gradient(135deg, #60A5FA 0%, #3B82F6 50%, #1E40AF 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #1E3A5F 50%, #1E40AF 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #1E293B 100%);

    --border: #1E3A5F;
    --border-hover: #2563EB;
}

/* ========================================
   AUDIO - Purple/Violet Theme
   ======================================== */
[data-category-theme="audio"] {
    --accent: #8B5CF6;
    --accent-hover: #7C3AED;
    --accent-light: #C4B5FD;
    --accent-muted: rgba(139, 92, 246, 0.1);
    --accent-bg: #F5F3FF;

    --secondary: #A855F7;
    --secondary-light: #E9D5FF;

    --gradient-accent: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #DDD6FE 100%);
    --gradient-warm: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 50%, #DDD6FE 100%);
    --gradient-hero: linear-gradient(180deg, #FAFBFF 0%, #F5F3FF 100%);

    --shadow-xs: 0 1px 3px rgba(139, 92, 246, 0.08);
    --shadow-sm: 0 4px 12px rgba(139, 92, 246, 0.1);
    --shadow-md: 0 12px 32px rgba(139, 92, 246, 0.12);
    --shadow-lg: 0 24px 64px rgba(139, 92, 246, 0.16);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.2);
    --shadow-card: 0 8px 30px rgba(139, 92, 246, 0.08);

    --border: #EDE9FE;
    --border-hover: #DDD6FE;
}

[data-theme="dark"][data-category-theme="audio"] {
    --accent: #A78BFA;
    --accent-hover: #C4B5FD;
    --accent-light: #5B21B6;
    --accent-muted: rgba(167, 139, 250, 0.15);
    --accent-bg: #3B2667;

    --gradient-accent: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 50%, #5B21B6 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #3B2667 50%, #5B21B6 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #3B2667;
    --border-hover: #7C3AED;
}

/* ========================================
   SMARTPHONES - Teal/Cyan Theme
   ======================================== */
[data-category-theme="smartphones"] {
    --accent: #14B8A6;
    --accent-hover: #0D9488;
    --accent-light: #5EEAD4;
    --accent-muted: rgba(20, 184, 166, 0.1);
    --accent-bg: #F0FDFA;

    --secondary: #06B6D4;
    --secondary-light: #CFFAFE;

    --gradient-accent: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 50%, #99F6E4 100%);
    --gradient-warm: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 50%, #99F6E4 100%);
    --gradient-hero: linear-gradient(180deg, #F8FFFE 0%, #F0FDFA 100%);

    --shadow-xs: 0 1px 3px rgba(20, 184, 166, 0.08);
    --shadow-sm: 0 4px 12px rgba(20, 184, 166, 0.1);
    --shadow-md: 0 12px 32px rgba(20, 184, 166, 0.12);
    --shadow-lg: 0 24px 64px rgba(20, 184, 166, 0.16);
    --shadow-glow: 0 0 60px rgba(20, 184, 166, 0.2);
    --shadow-card: 0 8px 30px rgba(20, 184, 166, 0.08);

    --border: #CCFBF1;
    --border-hover: #99F6E4;
}

[data-theme="dark"][data-category-theme="smartphones"] {
    --accent: #2DD4BF;
    --accent-hover: #5EEAD4;
    --accent-light: #0F766E;
    --accent-muted: rgba(45, 212, 191, 0.15);
    --accent-bg: #134E4A;

    --gradient-accent: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 50%, #0F766E 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #134E4A 50%, #0F766E 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #134E4A;
    --border-hover: #0D9488;
}

/* ========================================
   GAMING - Red/Orange Theme
   ======================================== */
[data-category-theme="gaming"] {
    --accent: #EF4444;
    --accent-hover: #DC2626;
    --accent-light: #FCA5A5;
    --accent-muted: rgba(239, 68, 68, 0.1);
    --accent-bg: #FEF2F2;

    --secondary: #F97316;
    --secondary-light: #FFEDD5;

    --gradient-accent: linear-gradient(135deg, #EF4444 0%, #F87171 50%, #FECACA 100%);
    --gradient-warm: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 50%, #FECACA 100%);
    --gradient-hero: linear-gradient(180deg, #FFFAFA 0%, #FEF2F2 100%);

    --shadow-xs: 0 1px 3px rgba(239, 68, 68, 0.08);
    --shadow-sm: 0 4px 12px rgba(239, 68, 68, 0.1);
    --shadow-md: 0 12px 32px rgba(239, 68, 68, 0.12);
    --shadow-lg: 0 24px 64px rgba(239, 68, 68, 0.16);
    --shadow-glow: 0 0 60px rgba(239, 68, 68, 0.2);
    --shadow-card: 0 8px 30px rgba(239, 68, 68, 0.08);

    --border: #FEE2E2;
    --border-hover: #FECACA;
}

[data-theme="dark"][data-category-theme="gaming"] {
    --accent: #F87171;
    --accent-hover: #FCA5A5;
    --accent-light: #991B1B;
    --accent-muted: rgba(248, 113, 113, 0.15);
    --accent-bg: #450A0A;

    --gradient-accent: linear-gradient(135deg, #F87171 0%, #EF4444 50%, #991B1B 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #450A0A 50%, #991B1B 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #450A0A;
    --border-hover: #DC2626;
}

/* ========================================
   HOME & KITCHEN - Green Theme
   ======================================== */
[data-category-theme="home-kitchen"] {
    --accent: #22C55E;
    --accent-hover: #16A34A;
    --accent-light: #86EFAC;
    --accent-muted: rgba(34, 197, 94, 0.1);
    --accent-bg: #F0FDF4;

    --secondary: #10B981;
    --secondary-light: #D1FAE5;

    --gradient-accent: linear-gradient(135deg, #22C55E 0%, #4ADE80 50%, #BBF7D0 100%);
    --gradient-warm: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 50%, #BBF7D0 100%);
    --gradient-hero: linear-gradient(180deg, #F8FFF9 0%, #F0FDF4 100%);

    --shadow-xs: 0 1px 3px rgba(34, 197, 94, 0.08);
    --shadow-sm: 0 4px 12px rgba(34, 197, 94, 0.1);
    --shadow-md: 0 12px 32px rgba(34, 197, 94, 0.12);
    --shadow-lg: 0 24px 64px rgba(34, 197, 94, 0.16);
    --shadow-glow: 0 0 60px rgba(34, 197, 94, 0.2);
    --shadow-card: 0 8px 30px rgba(34, 197, 94, 0.08);

    --border: #DCFCE7;
    --border-hover: #BBF7D0;
}

[data-theme="dark"][data-category-theme="home-kitchen"] {
    --accent: #4ADE80;
    --accent-hover: #86EFAC;
    --accent-light: #166534;
    --accent-muted: rgba(74, 222, 128, 0.15);
    --accent-bg: #14532D;

    --gradient-accent: linear-gradient(135deg, #4ADE80 0%, #22C55E 50%, #166534 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #14532D 50%, #166534 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #14532D;
    --border-hover: #16A34A;
}

/* ========================================
   TOYS & GAMES - Orange/Yellow Theme
   ======================================== */
[data-category-theme="toys-games"] {
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --accent-light: #FCD34D;
    --accent-muted: rgba(245, 158, 11, 0.1);
    --accent-bg: #FFFBEB;

    --secondary: #FB923C;
    --secondary-light: #FFEDD5;

    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #FEF3C7 100%);
    --gradient-warm: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 50%, #FDE68A 100%);
    --gradient-hero: linear-gradient(180deg, #FFFEF7 0%, #FFFBEB 100%);

    --shadow-xs: 0 1px 3px rgba(245, 158, 11, 0.08);
    --shadow-sm: 0 4px 12px rgba(245, 158, 11, 0.1);
    --shadow-md: 0 12px 32px rgba(245, 158, 11, 0.12);
    --shadow-lg: 0 24px 64px rgba(245, 158, 11, 0.16);
    --shadow-glow: 0 0 60px rgba(245, 158, 11, 0.2);
    --shadow-card: 0 8px 30px rgba(245, 158, 11, 0.08);

    --border: #FEF3C7;
    --border-hover: #FDE68A;
}

[data-theme="dark"][data-category-theme="toys-games"] {
    --accent: #FBBF24;
    --accent-hover: #FCD34D;
    --accent-light: #92400E;
    --accent-muted: rgba(251, 191, 36, 0.15);
    --accent-bg: #451A03;

    --gradient-accent: linear-gradient(135deg, #FBBF24 0%, #F59E0B 50%, #92400E 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #451A03 50%, #92400E 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #451A03;
    --border-hover: #D97706;
}

/* ========================================
   FASHION - Rose/Pink Theme
   ======================================== */
[data-category-theme="fashion"] {
    --accent: #F43F5E;
    --accent-hover: #E11D48;
    --accent-light: #FDA4AF;
    --accent-muted: rgba(244, 63, 94, 0.1);
    --accent-bg: #FFF1F2;

    --secondary: #EC4899;
    --secondary-light: #FBCFE8;

    --gradient-accent: linear-gradient(135deg, #F43F5E 0%, #FB7185 50%, #FECDD3 100%);
    --gradient-warm: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 50%, #FECDD3 100%);
    --gradient-hero: linear-gradient(180deg, #FFFBFC 0%, #FFF1F2 100%);

    --shadow-xs: 0 1px 3px rgba(244, 63, 94, 0.08);
    --shadow-sm: 0 4px 12px rgba(244, 63, 94, 0.1);
    --shadow-md: 0 12px 32px rgba(244, 63, 94, 0.12);
    --shadow-lg: 0 24px 64px rgba(244, 63, 94, 0.16);
    --shadow-glow: 0 0 60px rgba(244, 63, 94, 0.2);
    --shadow-card: 0 8px 30px rgba(244, 63, 94, 0.08);

    --border: #FFE4E6;
    --border-hover: #FECDD3;
}

[data-theme="dark"][data-category-theme="fashion"] {
    --accent: #FB7185;
    --accent-hover: #FDA4AF;
    --accent-light: #9F1239;
    --accent-muted: rgba(251, 113, 133, 0.15);
    --accent-bg: #500724;

    --gradient-accent: linear-gradient(135deg, #FB7185 0%, #F43F5E 50%, #9F1239 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #500724 50%, #9F1239 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #500724;
    --border-hover: #E11D48;
}

/* ========================================
   BEAUTY - Soft Pink Theme
   ======================================== */
[data-category-theme="beauty"] {
    --accent: #EC4899;
    --accent-hover: #DB2777;
    --accent-light: #F9A8D4;
    --accent-muted: rgba(236, 72, 153, 0.1);
    --accent-bg: #FDF2F8;

    --secondary: #A855F7;
    --secondary-light: #E9D5FF;

    --gradient-accent: linear-gradient(135deg, #EC4899 0%, #F472B6 50%, #FBCFE8 100%);
    --gradient-warm: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%);
    --gradient-hero: linear-gradient(180deg, #FFFBFC 0%, #FDF2F8 100%);

    --shadow-xs: 0 1px 3px rgba(236, 72, 153, 0.08);
    --shadow-sm: 0 4px 12px rgba(236, 72, 153, 0.1);
    --shadow-md: 0 12px 32px rgba(236, 72, 153, 0.12);
    --shadow-lg: 0 24px 64px rgba(236, 72, 153, 0.16);
    --shadow-glow: 0 0 60px rgba(236, 72, 153, 0.2);
    --shadow-card: 0 8px 30px rgba(236, 72, 153, 0.08);

    --border: #FCE7F3;
    --border-hover: #FBCFE8;
}

[data-theme="dark"][data-category-theme="beauty"],
[data-theme="dark"][data-category-theme="beauty-personal-care"] {
    --accent: #F472B6;
    --accent-hover: #F9A8D4;
    --accent-light: #831843;
    --accent-muted: rgba(244, 114, 182, 0.15);
    --accent-bg: #500724;

    --gradient-accent: linear-gradient(135deg, #F472B6 0%, #EC4899 50%, #831843 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #500724 50%, #831843 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #500724;
    --border-hover: #DB2777;
}

/* ========================================
   SPORTS & OUTDOORS - Green/Teal Theme
   ======================================== */
[data-category-theme="sports-outdoors"] {
    --accent: #059669;
    --accent-hover: #047857;
    --accent-light: #6EE7B7;
    --accent-muted: rgba(5, 150, 105, 0.1);
    --accent-bg: #ECFDF5;

    --secondary: #0891B2;
    --secondary-light: #CFFAFE;

    --gradient-accent: linear-gradient(135deg, #059669 0%, #10B981 50%, #A7F3D0 100%);
    --gradient-warm: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 50%, #A7F3D0 100%);
    --gradient-hero: linear-gradient(180deg, #F8FFFC 0%, #ECFDF5 100%);

    --shadow-xs: 0 1px 3px rgba(5, 150, 105, 0.08);
    --shadow-sm: 0 4px 12px rgba(5, 150, 105, 0.1);
    --shadow-md: 0 12px 32px rgba(5, 150, 105, 0.12);
    --shadow-lg: 0 24px 64px rgba(5, 150, 105, 0.16);
    --shadow-glow: 0 0 60px rgba(5, 150, 105, 0.2);
    --shadow-card: 0 8px 30px rgba(5, 150, 105, 0.08);

    --border: #D1FAE5;
    --border-hover: #A7F3D0;
}

[data-theme="dark"][data-category-theme="sports-outdoors"] {
    --accent: #34D399;
    --accent-hover: #6EE7B7;
    --accent-light: #065F46;
    --accent-muted: rgba(52, 211, 153, 0.15);
    --accent-bg: #064E3B;

    --gradient-accent: linear-gradient(135deg, #34D399 0%, #059669 50%, #065F46 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #064E3B 50%, #065F46 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #064E3B;
    --border-hover: #047857;
}

/* ========================================
   BOOKS & MEDIA - Indigo Theme
   ======================================== */
[data-category-theme="books-media"] {
    --accent: #6366F1;
    --accent-hover: #4F46E5;
    --accent-light: #A5B4FC;
    --accent-muted: rgba(99, 102, 241, 0.1);
    --accent-bg: #EEF2FF;

    --secondary: #8B5CF6;
    --secondary-light: #DDD6FE;

    --gradient-accent: linear-gradient(135deg, #6366F1 0%, #818CF8 50%, #C7D2FE 100%);
    --gradient-warm: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%);
    --gradient-hero: linear-gradient(180deg, #FAFBFF 0%, #EEF2FF 100%);

    --shadow-xs: 0 1px 3px rgba(99, 102, 241, 0.08);
    --shadow-sm: 0 4px 12px rgba(99, 102, 241, 0.1);
    --shadow-md: 0 12px 32px rgba(99, 102, 241, 0.12);
    --shadow-lg: 0 24px 64px rgba(99, 102, 241, 0.16);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.2);
    --shadow-card: 0 8px 30px rgba(99, 102, 241, 0.08);

    --border: #E0E7FF;
    --border-hover: #C7D2FE;
}

[data-theme="dark"][data-category-theme="books-media"] {
    --accent: #818CF8;
    --accent-hover: #A5B4FC;
    --accent-light: #3730A3;
    --accent-muted: rgba(129, 140, 248, 0.15);
    --accent-bg: #312E81;

    --gradient-accent: linear-gradient(135deg, #818CF8 0%, #6366F1 50%, #3730A3 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #312E81 50%, #3730A3 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #312E81;
    --border-hover: #4F46E5;
}

/* ========================================
   BUILDING TOYS (LEGO Parent) - Special Orange/Yellow
   ======================================== */
[data-category-theme="building-toys"] {
    --accent: #F97316;
    --accent-hover: #EA580C;
    --accent-light: #FDBA74;
    --accent-muted: rgba(249, 115, 22, 0.1);
    --accent-bg: #FFF7ED;

    --secondary: #FBBF24;
    --secondary-light: #FEF3C7;

    --gradient-accent: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FED7AA 100%);
    --gradient-warm: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%);
    --gradient-hero: linear-gradient(180deg, #FFFCF8 0%, #FFF7ED 100%);

    --shadow-xs: 0 1px 3px rgba(249, 115, 22, 0.08);
    --shadow-sm: 0 4px 12px rgba(249, 115, 22, 0.1);
    --shadow-md: 0 12px 32px rgba(249, 115, 22, 0.12);
    --shadow-lg: 0 24px 64px rgba(249, 115, 22, 0.16);
    --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.2);
    --shadow-card: 0 8px 30px rgba(249, 115, 22, 0.08);

    --border: #FFEDD5;
    --border-hover: #FED7AA;
}

[data-theme="dark"][data-category-theme="building-toys"] {
    --accent: #FB923C;
    --accent-hover: #FDBA74;
    --accent-light: #9A3412;
    --accent-muted: rgba(251, 146, 60, 0.15);
    --accent-bg: #431407;

    --gradient-accent: linear-gradient(135deg, #FB923C 0%, #F97316 50%, #9A3412 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #431407 50%, #9A3412 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #221D2E 100%);

    --border: #431407;
    --border-hover: #EA580C;
}

/* ========================================
   AUTOMOTIVE - Slate/Steel Theme
   ======================================== */
[data-category-theme="automotive"] {
    --accent: #475569;
    --accent-hover: #334155;
    --accent-light: #94A3B8;
    --accent-muted: rgba(71, 85, 105, 0.1);
    --accent-bg: #F8FAFC;

    --secondary: #64748B;
    --secondary-light: #E2E8F0;

    --gradient-accent: linear-gradient(135deg, #475569 0%, #64748B 50%, #CBD5E1 100%);
    --gradient-warm: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 50%, #E2E8F0 100%);
    --gradient-hero: linear-gradient(180deg, #FAFBFC 0%, #F8FAFC 100%);

    --shadow-xs: 0 1px 3px rgba(71, 85, 105, 0.08);
    --shadow-sm: 0 4px 12px rgba(71, 85, 105, 0.1);
    --shadow-md: 0 12px 32px rgba(71, 85, 105, 0.12);
    --shadow-lg: 0 24px 64px rgba(71, 85, 105, 0.16);
    --shadow-glow: 0 0 60px rgba(71, 85, 105, 0.2);
    --shadow-card: 0 8px 30px rgba(71, 85, 105, 0.08);

    --border: #E2E8F0;
    --border-hover: #CBD5E1;
}

[data-theme="dark"][data-category-theme="automotive"] {
    --accent: #94A3B8;
    --accent-hover: #CBD5E1;
    --accent-light: #334155;
    --accent-muted: rgba(148, 163, 184, 0.15);
    --accent-bg: #1E293B;

    --gradient-accent: linear-gradient(135deg, #94A3B8 0%, #475569 50%, #1E293B 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #1E293B 50%, #334155 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #1E293B 100%);

    --border: #334155;
    --border-hover: #475569;
}

/* ========================================
   PATIO, LAWN & GARDEN - Earthy Green Theme
   ======================================== */
[data-category-theme="patio-lawn-garden"] {
    --accent: #65A30D;
    --accent-hover: #4D7C0F;
    --accent-light: #A3E635;
    --accent-muted: rgba(101, 163, 13, 0.1);
    --accent-bg: #F7FEE7;

    --secondary: #84CC16;
    --secondary-light: #ECFCCB;

    --gradient-accent: linear-gradient(135deg, #65A30D 0%, #84CC16 50%, #D9F99D 100%);
    --gradient-warm: linear-gradient(135deg, #F7FEE7 0%, #ECFCCB 50%, #D9F99D 100%);
    --gradient-hero: linear-gradient(180deg, #FEFFF5 0%, #F7FEE7 100%);

    --shadow-xs: 0 1px 3px rgba(101, 163, 13, 0.08);
    --shadow-sm: 0 4px 12px rgba(101, 163, 13, 0.1);
    --shadow-md: 0 12px 32px rgba(101, 163, 13, 0.12);
    --shadow-lg: 0 24px 64px rgba(101, 163, 13, 0.16);
    --shadow-glow: 0 0 60px rgba(101, 163, 13, 0.2);
    --shadow-card: 0 8px 30px rgba(101, 163, 13, 0.08);

    --border: #ECFCCB;
    --border-hover: #D9F99D;
}

[data-theme="dark"][data-category-theme="patio-lawn-garden"] {
    --accent: #A3E635;
    --accent-hover: #BEF264;
    --accent-light: #3F6212;
    --accent-muted: rgba(163, 230, 53, 0.15);
    --accent-bg: #365314;

    --gradient-accent: linear-gradient(135deg, #A3E635 0%, #65A30D 50%, #3F6212 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #365314 50%, #3F6212 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #1E2E1A 100%);

    --border: #3F6212;
    --border-hover: #4D7C0F;
}

/* ========================================
   CLOTHING, SHOES & JEWELRY - Rose/Coral Theme
   ======================================== */
[data-category-theme="clothing-shoes-jewelry"] {
    --accent: #E11D48;
    --accent-hover: #BE123C;
    --accent-light: #FDA4AF;
    --accent-muted: rgba(225, 29, 72, 0.1);
    --accent-bg: #FFF1F2;

    --secondary: #F43F5E;
    --secondary-light: #FFE4E6;

    --gradient-accent: linear-gradient(135deg, #E11D48 0%, #F43F5E 50%, #FECDD3 100%);
    --gradient-warm: linear-gradient(135deg, #FFF1F2 0%, #FFE4E6 50%, #FECDD3 100%);
    --gradient-hero: linear-gradient(180deg, #FFFBFC 0%, #FFF1F2 100%);

    --shadow-xs: 0 1px 3px rgba(225, 29, 72, 0.08);
    --shadow-sm: 0 4px 12px rgba(225, 29, 72, 0.1);
    --shadow-md: 0 12px 32px rgba(225, 29, 72, 0.12);
    --shadow-lg: 0 24px 64px rgba(225, 29, 72, 0.16);
    --shadow-glow: 0 0 60px rgba(225, 29, 72, 0.2);
    --shadow-card: 0 8px 30px rgba(225, 29, 72, 0.08);

    --border: #FFE4E6;
    --border-hover: #FECDD3;
}

[data-theme="dark"][data-category-theme="clothing-shoes-jewelry"] {
    --accent: #FB7185;
    --accent-hover: #FDA4AF;
    --accent-light: #9F1239;
    --accent-muted: rgba(251, 113, 133, 0.15);
    --accent-bg: #881337;

    --gradient-accent: linear-gradient(135deg, #FB7185 0%, #E11D48 50%, #9F1239 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #881337 50%, #9F1239 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #2E1A27 100%);

    --border: #9F1239;
    --border-hover: #BE123C;
}

/* ========================================
   APPLIANCES - Cool Gray/Silver Theme
   ======================================== */
[data-category-theme="appliances"] {
    --accent: #6B7280;
    --accent-hover: #4B5563;
    --accent-light: #9CA3AF;
    --accent-muted: rgba(107, 114, 128, 0.1);
    --accent-bg: #F9FAFB;

    --secondary: #9CA3AF;
    --secondary-light: #F3F4F6;

    --gradient-accent: linear-gradient(135deg, #6B7280 0%, #9CA3AF 50%, #E5E7EB 100%);
    --gradient-warm: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 50%, #E5E7EB 100%);
    --gradient-hero: linear-gradient(180deg, #FAFBFC 0%, #F9FAFB 100%);

    --shadow-xs: 0 1px 3px rgba(107, 114, 128, 0.08);
    --shadow-sm: 0 4px 12px rgba(107, 114, 128, 0.1);
    --shadow-md: 0 12px 32px rgba(107, 114, 128, 0.12);
    --shadow-lg: 0 24px 64px rgba(107, 114, 128, 0.16);
    --shadow-glow: 0 0 60px rgba(107, 114, 128, 0.2);
    --shadow-card: 0 8px 30px rgba(107, 114, 128, 0.08);

    --border: #E5E7EB;
    --border-hover: #D1D5DB;
}

[data-theme="dark"][data-category-theme="appliances"] {
    --accent: #D1D5DB;
    --accent-hover: #E5E7EB;
    --accent-light: #374151;
    --accent-muted: rgba(209, 213, 219, 0.15);
    --accent-bg: #1F2937;

    --gradient-accent: linear-gradient(135deg, #D1D5DB 0%, #6B7280 50%, #374151 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #1F2937 50%, #374151 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #1F2937 100%);

    --border: #374151;
    --border-hover: #4B5563;
}

/* ========================================
   GROCERY & GOURMET FOOD - Warm Orange Theme
   ======================================== */
[data-category-theme="grocery-gourmet-food"] {
    --accent: #EA580C;
    --accent-hover: #C2410C;
    --accent-light: #FB923C;
    --accent-muted: rgba(234, 88, 12, 0.1);
    --accent-bg: #FFF7ED;

    --secondary: #F97316;
    --secondary-light: #FFEDD5;

    --gradient-accent: linear-gradient(135deg, #EA580C 0%, #F97316 50%, #FED7AA 100%);
    --gradient-warm: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FED7AA 100%);
    --gradient-hero: linear-gradient(180deg, #FFFCF8 0%, #FFF7ED 100%);

    --shadow-xs: 0 1px 3px rgba(234, 88, 12, 0.08);
    --shadow-sm: 0 4px 12px rgba(234, 88, 12, 0.1);
    --shadow-md: 0 12px 32px rgba(234, 88, 12, 0.12);
    --shadow-lg: 0 24px 64px rgba(234, 88, 12, 0.16);
    --shadow-glow: 0 0 60px rgba(234, 88, 12, 0.2);
    --shadow-card: 0 8px 30px rgba(234, 88, 12, 0.08);

    --border: #FFEDD5;
    --border-hover: #FED7AA;
}

[data-theme="dark"][data-category-theme="grocery-gourmet-food"] {
    --accent: #FB923C;
    --accent-hover: #FDBA74;
    --accent-light: #9A3412;
    --accent-muted: rgba(251, 146, 60, 0.15);
    --accent-bg: #7C2D12;

    --gradient-accent: linear-gradient(135deg, #FB923C 0%, #EA580C 50%, #9A3412 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #7C2D12 50%, #9A3412 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #2E1A14 100%);

    --border: #9A3412;
    --border-hover: #C2410C;
}

/* ========================================
   MUSICAL INSTRUMENTS - Deep Purple Theme
   ======================================== */
[data-category-theme="musical-instruments"] {
    --accent: #7C3AED;
    --accent-hover: #6D28D9;
    --accent-light: #A78BFA;
    --accent-muted: rgba(124, 58, 237, 0.1);
    --accent-bg: #F5F3FF;

    --secondary: #8B5CF6;
    --secondary-light: #EDE9FE;

    --gradient-accent: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 50%, #DDD6FE 100%);
    --gradient-warm: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 50%, #DDD6FE 100%);
    --gradient-hero: linear-gradient(180deg, #FAFAFF 0%, #F5F3FF 100%);

    --shadow-xs: 0 1px 3px rgba(124, 58, 237, 0.08);
    --shadow-sm: 0 4px 12px rgba(124, 58, 237, 0.1);
    --shadow-md: 0 12px 32px rgba(124, 58, 237, 0.12);
    --shadow-lg: 0 24px 64px rgba(124, 58, 237, 0.16);
    --shadow-glow: 0 0 60px rgba(124, 58, 237, 0.2);
    --shadow-card: 0 8px 30px rgba(124, 58, 237, 0.08);

    --border: #EDE9FE;
    --border-hover: #DDD6FE;
}

[data-theme="dark"][data-category-theme="musical-instruments"] {
    --accent: #A78BFA;
    --accent-hover: #C4B5FD;
    --accent-light: #5B21B6;
    --accent-muted: rgba(167, 139, 250, 0.15);
    --accent-bg: #4C1D95;

    --gradient-accent: linear-gradient(135deg, #A78BFA 0%, #7C3AED 50%, #5B21B6 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #4C1D95 50%, #5B21B6 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #2A1A4C 100%);

    --border: #5B21B6;
    --border-hover: #6D28D9;
}

/* ========================================
   ARTS, CRAFTS & SEWING - Coral/Salmon Theme
   ======================================== */
[data-category-theme="arts-crafts-sewing"] {
    --accent: #F472B6;
    --accent-hover: #EC4899;
    --accent-light: #F9A8D4;
    --accent-muted: rgba(244, 114, 182, 0.1);
    --accent-bg: #FDF2F8;

    --secondary: #E879F9;
    --secondary-light: #FAE8FF;

    --gradient-accent: linear-gradient(135deg, #F472B6 0%, #E879F9 50%, #FBCFE8 100%);
    --gradient-warm: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%);
    --gradient-hero: linear-gradient(180deg, #FFFBFD 0%, #FDF2F8 100%);

    --shadow-xs: 0 1px 3px rgba(244, 114, 182, 0.08);
    --shadow-sm: 0 4px 12px rgba(244, 114, 182, 0.1);
    --shadow-md: 0 12px 32px rgba(244, 114, 182, 0.12);
    --shadow-lg: 0 24px 64px rgba(244, 114, 182, 0.16);
    --shadow-glow: 0 0 60px rgba(244, 114, 182, 0.2);
    --shadow-card: 0 8px 30px rgba(244, 114, 182, 0.08);

    --border: #FCE7F3;
    --border-hover: #FBCFE8;
}

[data-theme="dark"][data-category-theme="arts-crafts-sewing"] {
    --accent: #F9A8D4;
    --accent-hover: #FBCFE8;
    --accent-light: #9D174D;
    --accent-muted: rgba(249, 168, 212, 0.15);
    --accent-bg: #831843;

    --gradient-accent: linear-gradient(135deg, #F9A8D4 0%, #F472B6 50%, #9D174D 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #831843 50%, #9D174D 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #2E1A2E 100%);

    --border: #9D174D;
    --border-hover: #DB2777;
}

/* ========================================
   INDUSTRIAL & SCIENTIFIC - Steel Blue Theme
   ======================================== */
[data-category-theme="industrial-scientific"] {
    --accent: #0284C7;
    --accent-hover: #0369A1;
    --accent-light: #38BDF8;
    --accent-muted: rgba(2, 132, 199, 0.1);
    --accent-bg: #F0F9FF;

    --secondary: #0EA5E9;
    --secondary-light: #E0F2FE;

    --gradient-accent: linear-gradient(135deg, #0284C7 0%, #0EA5E9 50%, #BAE6FD 100%);
    --gradient-warm: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #BAE6FD 100%);
    --gradient-hero: linear-gradient(180deg, #F8FDFF 0%, #F0F9FF 100%);

    --shadow-xs: 0 1px 3px rgba(2, 132, 199, 0.08);
    --shadow-sm: 0 4px 12px rgba(2, 132, 199, 0.1);
    --shadow-md: 0 12px 32px rgba(2, 132, 199, 0.12);
    --shadow-lg: 0 24px 64px rgba(2, 132, 199, 0.16);
    --shadow-glow: 0 0 60px rgba(2, 132, 199, 0.2);
    --shadow-card: 0 8px 30px rgba(2, 132, 199, 0.08);

    --border: #E0F2FE;
    --border-hover: #BAE6FD;
}

[data-theme="dark"][data-category-theme="industrial-scientific"] {
    --accent: #38BDF8;
    --accent-hover: #7DD3FC;
    --accent-light: #075985;
    --accent-muted: rgba(56, 189, 248, 0.15);
    --accent-bg: #0C4A6E;

    --gradient-accent: linear-gradient(135deg, #38BDF8 0%, #0284C7 50%, #075985 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #0C4A6E 50%, #075985 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #0C2D4E 100%);

    --border: #075985;
    --border-hover: #0369A1;
}

/* ========================================
   BOOKS - Warm Indigo Theme
   ======================================== */
[data-category-theme="books"] {
    --accent: #4F46E5;
    --accent-hover: #4338CA;
    --accent-light: #818CF8;
    --accent-muted: rgba(79, 70, 229, 0.1);
    --accent-bg: #EEF2FF;

    --secondary: #6366F1;
    --secondary-light: #E0E7FF;

    --gradient-accent: linear-gradient(135deg, #4F46E5 0%, #6366F1 50%, #C7D2FE 100%);
    --gradient-warm: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%);
    --gradient-hero: linear-gradient(180deg, #FAFBFF 0%, #EEF2FF 100%);

    --shadow-xs: 0 1px 3px rgba(79, 70, 229, 0.08);
    --shadow-sm: 0 4px 12px rgba(79, 70, 229, 0.1);
    --shadow-md: 0 12px 32px rgba(79, 70, 229, 0.12);
    --shadow-lg: 0 24px 64px rgba(79, 70, 229, 0.16);
    --shadow-glow: 0 0 60px rgba(79, 70, 229, 0.2);
    --shadow-card: 0 8px 30px rgba(79, 70, 229, 0.08);

    --border: #E0E7FF;
    --border-hover: #C7D2FE;
}

[data-theme="dark"][data-category-theme="books"] {
    --accent: #818CF8;
    --accent-hover: #A5B4FC;
    --accent-light: #3730A3;
    --accent-muted: rgba(129, 140, 248, 0.15);
    --accent-bg: #312E81;

    --gradient-accent: linear-gradient(135deg, #818CF8 0%, #4F46E5 50%, #3730A3 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #312E81 50%, #3730A3 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #1E1A4C 100%);

    --border: #3730A3;
    --border-hover: #4338CA;
}

/* ========================================
   MOVIES, MUSIC & GAMES - Vibrant Purple Theme
   ======================================== */
[data-category-theme="movies-music-games"] {
    --accent: #9333EA;
    --accent-hover: #7E22CE;
    --accent-light: #C084FC;
    --accent-muted: rgba(147, 51, 234, 0.1);
    --accent-bg: #FAF5FF;

    --secondary: #A855F7;
    --secondary-light: #F3E8FF;

    --gradient-accent: linear-gradient(135deg, #9333EA 0%, #A855F7 50%, #E9D5FF 100%);
    --gradient-warm: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 50%, #E9D5FF 100%);
    --gradient-hero: linear-gradient(180deg, #FEFAFF 0%, #FAF5FF 100%);

    --shadow-xs: 0 1px 3px rgba(147, 51, 234, 0.08);
    --shadow-sm: 0 4px 12px rgba(147, 51, 234, 0.1);
    --shadow-md: 0 12px 32px rgba(147, 51, 234, 0.12);
    --shadow-lg: 0 24px 64px rgba(147, 51, 234, 0.16);
    --shadow-glow: 0 0 60px rgba(147, 51, 234, 0.2);
    --shadow-card: 0 8px 30px rgba(147, 51, 234, 0.08);

    --border: #F3E8FF;
    --border-hover: #E9D5FF;
}

[data-theme="dark"][data-category-theme="movies-music-games"] {
    --accent: #C084FC;
    --accent-hover: #D8B4FE;
    --accent-light: #6B21A8;
    --accent-muted: rgba(192, 132, 252, 0.15);
    --accent-bg: #581C87;

    --gradient-accent: linear-gradient(135deg, #C084FC 0%, #9333EA 50%, #6B21A8 100%);
    --gradient-warm: linear-gradient(135deg, #1A1625 0%, #581C87 50%, #6B21A8 100%);
    --gradient-hero: linear-gradient(180deg, #1A1625 0%, #2E1A4C 100%);

    --border: #6B21A8;
    --border-hover: #7E22CE;
}

/* ========================================
   CATEGORY HEADER ENHANCEMENTS
   ======================================== */
.category-header {
    background: var(--gradient-hero);
    border-bottom: 1px solid var(--border);
}

.category-header-content {
    position: relative;
}

/* Category icon badge when themed */
[data-category-theme] .category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

/* Category count badge */
.category-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-muted);
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
}

/* ========================================
   jekcms KÖPRÜSÜ — özelleştirici değişkenleri, eklenti kutuları, çekirdek bileşenler
   ======================================== */
:root {
    --container-max: var(--jek-container, 1200px);
    --text-base: var(--jek-font-size, 18px);
    --line-height: var(--jek-line-height, 1.7);
    --font-sans: var(--font-body, 'DM Sans'), 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
body { line-height: var(--line-height); }
/* Eklenti (jek-products) kutuları temanın kendi bölümleriyle çizilir; otomatik yerleşim kutusu gizlenir */
.review-content .jp-box, .review-content .jp-proscons, .review-content .jp-specs, .review-content .jp-faq, .review-content .jp-features, .review-content .jp-disclosure { display: none; }
.prose .jp-box { --jp-accent: var(--accent); --jp-accent-ink: #fff; --jp-radius: 0; --jp-border: var(--border); --jp-surface: var(--bg-card); }
/* Çekirdek yorum/paylaşım/gezinti bileşenleri için nötr yüzey */
.jek-post-nav, .jek-share, .comments-section { margin-top: 40px; }
.content-sidebar .sidebar-card + .sidebar-card { margin-top: 24px; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h3, .sidebar-widget h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.sidebar-widget a { color: var(--text-secondary); }
.sidebar-widget a:hover { color: var(--accent); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
/* Sayfalama (çekirdek partial) */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 48px 0 16px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--bg-card); font-weight: 600; font-size: 15px; color: var(--text-secondary); }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current, .pagination a.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
/* Alt bilgi standart satırı (telif · yasal · altyapı) orijinal alt bilgi çizgisinde */
.footer-bottom .jek-footbar { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; font-size: 13px; color: var(--text-tertiary); }
.footer-bottom .jek-footbar__legal { display: inline-flex; flex-wrap: wrap; gap: 6px 10px; }
.footer-bottom .jek-footbar__legal a, .footer-bottom .jek-footbar__credit a { color: var(--text-secondary); }
.footer-bottom .jek-footbar__legal a:hover { color: var(--accent); }
/* Yorumlar (çekirdek yorum kutusu) */
.comments-section { max-width: 800px; }
.comments-section .comment { border-bottom: 1px solid var(--border); padding: 20px 0; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); font: inherit; }
.comment-form textarea { min-height: 140px; }
.comment-form .btn { margin-top: 12px; }
/* Yazı kartı çekirdek anahtarları: köşe/oran özelleştiriciden */
.related-card-image, .review-card-compact .card-media, .blog-card-image { border-radius: var(--jek-card-radius, 0); }

/* ===== Orijinal kategori sayfası (category.php <style>) ===== */
/* Subcategories Grid */
.subcategories-section {
    padding: 40px 0 60px;
}

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

@media (max-width: 992px) {
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
}

/* Subcategory Card */
.subcategory-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s ease;
}

.subcategory-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.subcategory-content {
    flex: 1;
    min-width: 0;
}

.subcategory-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.subcategory-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.subcategory-meta {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.subcategory-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.subcategory-meta .meta-item svg {
    opacity: 0.6;
}

.subcategory-arrow {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.2s ease;
}

.subcategory-card:hover .subcategory-arrow {
    transform: translateX(4px);
    color: var(--accent);
}

/* Back to Parent */
.back-to-parent {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.back-to-parent a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.back-to-parent a:hover {
    color: var(--accent);
}

/* Filter & Sort Bar */
.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    gap: 24px;
    flex-wrap: wrap;
}

.filter-bar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-bar-right {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.sort-results {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.active-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}

.active-filter-badge .clear-filter {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
}

.active-filter-badge .clear-filter:hover {
    color: #fff;
}

/* Filter Dropdowns */
.filter-dropdown {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
}

.filter-select {
    padding: 10px 36px 10px 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-width: 160px;
    transition: border-color 0.2s ease;
}

.filter-select:hover {
    border-color: var(--accent);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Listing Section */
.listing-section {
    padding: 40px 0 60px;
}

/* Reviews Grid - 4 columns for 24 products */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .filter-sort-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .filter-bar-right {
        width: 100%;
    }

    .filter-dropdown {
        flex: 1;
        min-width: 140px;
    }

    .filter-select {
        width: 100%;
    }
}

/* ===== jekcms köprüsü 2 ===== */
/* LayoutEngine bölümleri display:contents sarmalayıcıda → kardeş seçici çalışmaz: slider'lı ana sayfa manşeti kısa */
.hero { min-height: auto; padding: 32px 0 60px; }
.hero-stats .stat-item { display: flex; flex-direction: column; }
.hero-stats .stat-value + .stat-label { margin-top: 6px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-secondary); }
.empty-state .btn { margin-top: 20px; }
/* Statik sayfalar */
.static-page-header { padding: 56px 0 32px; background: var(--bg-secondary); }
.static-page-header .page-title { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -.02em; margin: 12px 0 8px; }
.static-page-header .page-subtitle { max-width: 640px; color: var(--text-secondary); font-size: var(--text-lg); }
.static-page-header .page-updated { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; color: var(--text-tertiary); }
.breadcrumb-simple { display: flex; flex-wrap: wrap; gap: 8px; font-size: 14px; color: var(--text-tertiary); }
.breadcrumb-simple a { color: var(--text-secondary); }
.breadcrumb-simple a:hover { color: var(--accent); }
.static-page-content { padding: 48px 0 80px; }
.content-wrapper { max-width: 800px; }
.content-wrapper--with-toc { max-width: none; display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 48px; align-items: start; }
.page-toc { position: sticky; top: 96px; border: 1px solid var(--border); background: var(--bg-card); padding: 20px; }
.page-toc h3 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 12px; }
.page-toc ol { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.page-toc a { font-size: 14px; color: var(--text-secondary); }
.page-toc a:hover { color: var(--accent); }
.page-toc .trust-stats { grid-template-columns: 1fr; margin-top: 20px; }
.page-toc .trust-stat { padding: 14px 8px; border-right: 0; border-bottom: 1px solid var(--border); }
.page-related { margin-top: 56px; }
.page-related h3 { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px; }
.page-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.page-related-card { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border: 1px solid var(--border); background: var(--bg-card); font-weight: 600; font-size: 15px; }
.page-related-card:hover { border-color: var(--accent); color: var(--accent); }
.contact-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 40px; align-items: start; }
.contact-side .sidebar-card { border: 1px solid var(--border); background: var(--bg-card); padding: 24px; }
.contact-side h3 { font-size: 16px; margin-bottom: 14px; }
.contact-side p { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6; }
.contact-form { border: 1px solid var(--border); background: var(--bg-card); padding: 28px; }
.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .form-field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .form-field.full, .contact-form .checkline.full { grid-column: 1 / -1; }
.contact-form label { font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); background: var(--bg-primary); color: var(--text-primary); font: inherit; font-size: 15px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.contact-form .checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); }
.contact-form .btn { margin-top: 20px; }
.form-message { padding: 14px 18px; margin-bottom: 18px; border: 1px solid var(--border); font-size: 15px; }
.form-message--ok { border-color: #a7f3d0; background: #ecfdf5; color: #047857; }
.form-message--error { border-color: #fecaca; background: #fef2f2; color: #b91c1c; }
.author-box--hero { margin-top: 24px; }
.author-box--hero .category-title { margin: 4px 0; }
@media (max-width: 900px) { .content-wrapper--with-toc, .contact-layout { grid-template-columns: 1fr; } .page-toc { position: static; } .contact-form .form-grid { grid-template-columns: 1fr; } }

/* ===== jekcms köprüsü 3: yorumlar · tepkiler · çekirdek bileşenler ===== */
.comments-section { margin: 56px 0 0; padding: 32px 0 0; border-top: 1px solid var(--border); }
.comments-section .section-head { margin-bottom: 20px; }
.comments-section .eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.comments-section .section-title { font-size: 24px; font-weight: 700; margin: 0; }
.comments-section .section-copy { color: var(--text-secondary); font-size: 15px; margin: 8px 0 0; }
.comment-list { list-style: none; margin: 0 0 32px; padding: 0; }
.comment { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment .comment { border-bottom: 0; padding-left: 0; }
.comment__avatar { width: 44px; height: 44px; flex: 0 0 44px; background: var(--bg-tertiary); display: grid; place-items: center; font-weight: 700; color: var(--accent); overflow: hidden; }
.comment__avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment__body { flex: 1 1 auto; min-width: 0; }
.comment__meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; font-size: 14px; }
.comment__author { font-weight: 700; color: var(--text-primary); }
.comment__date { color: var(--text-tertiary); font-size: 13px; }
.comment__content { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.comment__reply { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--accent); background: none; border: 0; padding: 0; cursor: pointer; }
.comment-form-wrap { margin-top: 8px; }
.comment-form-wrap .form-card, .comments-section .form-card { border: 1px solid var(--border); background: var(--bg-card); padding: 28px; }
.comments-section .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comments-section .form-field { display: flex; flex-direction: column; gap: 6px; }
.comments-section .form-field.full, .comments-section .form-field--full { grid-column: 1 / -1; }
.comments-section label { font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.comments-section input[type="text"], .comments-section input[type="email"], .comments-section input[type="url"], .comments-section textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); background: var(--bg-primary); color: var(--text-primary); font: inherit; font-size: 15px; }
.comments-section textarea { min-height: 140px; resize: vertical; }
.comments-section input:focus, .comments-section textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; }
.comments-section .form-card .btn { margin-top: 16px; }
.comment-form__msg { font-size: 13px; color: var(--text-tertiary); margin-top: 10px; }
.comment-form-cancel { margin-top: 10px; }
/* Tepki çubuğu ve diğer çekirdek parçalar sayfa kabı içinde kalsın */
.jek-reactions { max-width: var(--container-max); margin: 28px auto 0; padding: 0 clamp(20px, 5vw, 60px); }
.content-main .jek-reactions, .post-content .jek-reactions { max-width: none; padding: 0; margin: 28px 0 0; }
@media (max-width: 700px) { .comments-section .form-grid { grid-template-columns: 1fr; } }

/* ===== Orijinal blog makalesi (post.php <style>) ===== */
/* Post Header */
.post-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.post-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.post-header-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: color-mix(in srgb, var(--cat-color, #3B82F6) 15%, transparent);
    color: var(--cat-color, #3B82F6);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.2s ease;
}

.post-header-category:hover {
    background: var(--cat-color, #3B82F6);
    color: white;
}

.post-header-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.post-header-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-author-avatar {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.post-author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post-author-name {
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.post-author-name:hover {
    color: var(--primary);
}

.post-author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-meta-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 3rem;
}

.featured-figure {
    margin: 0;
}

.featured-figure img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.featured-figure figcaption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-style: italic;
}

/* Post Layout */
.post-article {
    padding-bottom: 4rem;
}

.rp-post-layout {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Share Sidebar */
.post-share-sidebar {
    position: relative;
}

.share-sticky {
    position: sticky;
    top: 100px;
}

.share-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.share-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.share-buttons-vertical .share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-buttons-vertical .share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.share-buttons-vertical .share-btn.share-facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.share-buttons-vertical .share-btn.share-twitter:hover {
    border-color: #000;
    color: #000;
}

.share-buttons-vertical .share-btn.share-linkedin:hover {
    border-color: #0A66C2;
    color: #0A66C2;
}

.share-buttons-vertical .share-btn.share-pinterest:hover {
    border-color: #E60023;
    color: #E60023;
}

.share-buttons-vertical .share-btn.share-copy.copied {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

/* Post Content */
.post-content {
    min-width: 0;
}
.rp-post-layout > .post-content { width: 100%; justify-self: stretch; }
.rp-post-layout .author-section { padding: 40px 0 0; border-top: 0; background: transparent; }
.rp-post-layout .author-box { max-width: none; }

.post-body.prose {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.post-body.prose h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.post-body.prose h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.post-body.prose p {
    margin-bottom: 1.5rem;
}

.post-body.prose ul,
.post-body.prose ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body.prose li {
    margin-bottom: 0.5rem;
}

.post-body.prose a {
    color: var(--primary);
    text-decoration: underline;
}

.post-body.prose img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

.post-body.prose blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.post-body.prose code {
    background: var(--bg-tertiary);
    padding: 0.125rem 0.375rem;
    font-size: 0.875em;
}

.post-body.prose pre {
    background: var(--bg-tertiary);
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.post-body.prose pre code {
    background: none;
    padding: 0;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-weight: 600;
    color: var(--text-primary);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-link:hover {
    color: white;
    background: var(--primary);
}

/* Inline Share */
.post-share-inline {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.post-share-inline .share-label {
    display: block;
    margin-bottom: 1rem;
}

.share-buttons-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-buttons-inline .share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-buttons-inline .share-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.share-buttons-inline .share-btn.share-facebook:hover {
    border-color: #1877F2;
    color: #1877F2;
}

.share-buttons-inline .share-btn.share-twitter:hover {
    border-color: #000;
    color: #000;
}

.share-buttons-inline .share-btn.share-linkedin:hover {
    border-color: #0A66C2;
    color: #0A66C2;
}

/* Related Posts */
.related-posts-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.related-posts-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    background: var(--bg-primary);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related-post-link {
    display: block;
    text-decoration: none;
}

.related-post-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.related-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    background: color-mix(in srgb, var(--cat-color, #3B82F6) 15%, transparent);
    color: var(--cat-color, #3B82F6);
}

.related-post-content {
    padding: 1.25rem;
}

.related-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-header-title {
        font-size: 2rem;
    }

    .rp-post-layout {
        grid-template-columns: 1fr;
    }

    .post-share-sidebar {
        display: none;
    }

    .post-body.prose {
        font-size: 1rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Orijinal yazar sayfası (author.php <style>) ===== */
/* Author Page Styles */
.author-page {
    min-height: 60vh;
}

.author-hero {
    background: var(--gradient-hero);
    padding: 80px 0;
}

.author-hero-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.author-hero-avatar {
    flex-shrink: 0;
}

.author-hero-avatar img,
.author-hero-avatar-placeholder {
    width: 160px;
    height: 160px;
    object-fit: cover;
}

.author-hero-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 64px;
    font-weight: 700;
}

.author-hero-info {
    flex: 1;
}

.author-hero-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.author-hero-title {
    font-size: 18px;
    color: var(--accent);
    margin: 0 0 16px 0;
    font-weight: 600;
}

.author-hero-location {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.author-hero-expertise {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
}

.author-hero-expertise .divider {
    color: var(--text-tertiary);
    font-weight: 400;
}

.author-hero-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0 0 24px 0;
    max-width: 700px;
}

.author-hero-social {
    display: flex;
    gap: 12px;
}

.author-hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.author-hero-social-link:hover {
    background: var(--accent);
    color: #fff;
}

/* Author Reviews */
.author-reviews {
    padding: 80px 0;
}

.author-reviews .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 40px 0;
}

.author-reviews-empty {
    padding: 80px 0;
}

.author-reviews-empty .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-secondary);
}

.author-reviews-empty .empty-state svg {
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.author-reviews-empty .empty-state h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.author-reviews-empty .empty-state p {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .author-hero {
        padding: 60px 0;
    }

    .author-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .author-hero-avatar img,
    .author-hero-avatar-placeholder {
        width: 120px;
        height: 120px;
    }

    .author-hero-avatar-placeholder {
        font-size: 48px;
    }

    .author-hero-name {
        font-size: 28px;
    }

    .author-hero-location {
        justify-content: center;
    }

    .author-hero-social {
        justify-content: center;
    }

    .author-categories-grid {
        justify-content: center;
    }

    .author-reviews .section-title {
        font-size: 22px;
    }
}

/* ===== Orijinal blog listesi (blog.php <style>) ===== */
/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.blog-filters {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tab:hover {
    color: var(--text-primary);
}

.filter-tab.active {
    color: var(--tab-color, var(--primary));
    border-bottom: 2px solid var(--tab-color, var(--primary));
    margin-bottom: -1px;
}

.filter-count {
    background: var(--bg-tertiary);
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Blog Layout */
.blog-layout {
    padding: 3rem 0;
}

.blog-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

/* Featured Post */
.featured-post {
    margin-bottom: 3rem;
}

.featured-post-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-decoration: none;
    background: var(--bg-secondary);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.featured-post-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post-link:hover .featured-post-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.featured-post-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: color-mix(in srgb, var(--cat-color, #3B82F6) 15%, transparent);
    color: var(--cat-color, #3B82F6);
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-post-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-post-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-author .author-avatar {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-secondary);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.post-card-link {
    display: block;
    text-decoration: none;
}

.post-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image .post-category {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    margin-bottom: 0;
}

.post-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.post-card-content {
    padding: 1.25rem;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.post-author-small {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.author-avatar-small {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.no-posts svg {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.no-posts h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-posts p {
    margin-bottom: 1.5rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.pagination-num:hover,
.pagination-num.active {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: var(--bg-secondary);
    padding: 1.5rem;
}

.widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.category-link:hover,
.category-link.active {
    color: var(--text-primary);
}

.category-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.category-name {
    flex: 1;
}

.category-count {
    background: var(--bg-tertiary);
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
}

.popular-rank {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.popular-content {
    flex: 1;
    min-width: 0;
}

.popular-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.popular-post:hover .popular-title {
    color: var(--primary);
}

.popular-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-link:hover,
.tag-link.active {
    color: white;
    background: var(--primary);
}

/* Sidebar Newsletter */
.sidebar-newsletter-widget .widget-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-newsletter-form input[type="email"] {
    padding: 0.75rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }

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

    .featured-post-content {
        padding: 1.5rem;
    }

    .featured-post-title {
        font-size: 1.5rem;
    }

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

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .pagination-numbers {
        display: none;
    }
}

/* ========================================
   jekcms köprüsü 4 — MODERN ANA SAYFA (ReviewPanel dili: pembe vurgu, lacivert, keskin köşe)
   ======================================== */
.rp-section { padding: 72px 0; }
.rp-section--tint { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.rp-head__label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.rp-head__label::before { content: ''; width: 18px; height: 2px; background: var(--accent); }
.rp-head__title { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 0; color: var(--text-primary); }
.rp-head__sub { margin: 8px 0 0; font-size: 16px; color: var(--text-secondary); max-width: 560px; }
.rp-head__more { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1px solid var(--border); background: var(--bg-card); font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; transition: all var(--transition-fast); }
.rp-head__more:hover { border-color: var(--accent); color: var(--accent); }
.rp-head__more svg { transition: transform var(--transition-fast); }
.rp-head__more:hover svg { transform: translateX(3px); }

/* Kategori kartları şeridi */
.rp-cats { padding: 28px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-card); }
.rp-cats__inner { display: flex; align-items: center; gap: 20px; }
.rp-cats__title { flex: 0 0 auto; display: flex; flex-direction: column; gap: 2px; padding-right: 20px; border-right: 1px solid var(--border); }
.rp-cats__title strong { font-size: 15px; font-weight: 700; }
.rp-cats__title a { font-size: 12px; color: var(--accent); font-weight: 600; }
.rp-cats__scroll { flex: 1 1 auto; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 2px; }
.rp-cats__scroll::-webkit-scrollbar { display: none; }
.rp-cat { flex: 0 0 auto; scroll-snap-align: start; display: flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border: 1px solid var(--border); background: var(--bg-primary); transition: all var(--transition-fast); }
.rp-cat:hover { border-color: var(--cat-accent, var(--accent)); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.rp-cat__icon { width: 38px; height: 38px; display: grid; place-items: center; background: color-mix(in srgb, var(--cat-accent, var(--accent)) 14%, transparent); color: var(--cat-accent, var(--accent)); font-weight: 800; font-size: 15px; }
.rp-cat__icon img, .rp-cat__icon svg { width: 20px; height: 20px; }
.rp-cat__name { display: block; font-size: 14px; font-weight: 600; white-space: nowrap; }
.rp-cat__count { display: block; font-size: 12px; color: var(--text-tertiary); }
[data-theme="dark"] .rp-cats { background: var(--bg-secondary); }

/* Son incelemeler — bento ızgara */
.rp-bento { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(0, auto); gap: 20px; }
.rp-card { position: relative; display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base); }
.rp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: var(--accent); }
.rp-card__media { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-tertiary); }
.rp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.rp-card:hover .rp-card__media img { transform: scale(1.05); }
.rp-card__score { position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 6px 10px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .01em; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.rp-card__verdict { position: absolute; top: 12px; right: 12px; padding: 5px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; background: var(--bg-card); color: var(--text-primary); }
.rp-card__verdict.verdict-excellent { color: #059669; } .rp-card__verdict.verdict-good { color: #2563EB; } .rp-card__verdict.verdict-average { color: #B45309; } .rp-card__verdict.verdict-disappointing { color: #B91C1C; }
.rp-card__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 18px 20px; flex: 1 1 auto; }
.rp-card__cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cat-accent, var(--accent)); }
.rp-card__title { font-size: 17px; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-card__title a::after { content: ''; position: absolute; inset: 0; }
.rp-card__meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-tertiary); }
.rp-card__stars { display: inline-flex; gap: 1px; color: #FBBF24; }
.rp-card__stars svg { width: 13px; height: 13px; }
.rp-card__stars .empty { color: var(--border); }
.rp-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.rp-card__price { font-size: 16px; font-weight: 800; color: var(--text-primary); }
.rp-card__cta { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent); background: var(--accent-muted); transition: all var(--transition-fast); }
.rp-card__cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
/* öne çıkan (ilk) kart: 2 sütun × 2 satır, görsel üstüne bilgi */
.rp-card--lead { grid-column: span 2; grid-row: span 2; }
.rp-card--lead .rp-card__media { aspect-ratio: auto; height: 100%; min-height: 520px; }
.rp-card--lead .rp-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,27,75,0) 35%, rgba(30,27,75,.88) 100%); }
.rp-card--lead .rp-card__body { position: absolute; left: 0; right: 0; bottom: 0; color: #fff; padding: 28px; gap: 10px; }
.rp-card--lead .rp-card__cat { color: #F9A8D4; }
.rp-card--lead .rp-card__title { font-size: clamp(22px, 2.4vw, 30px); color: #fff; -webkit-line-clamp: 3; }
.rp-card--lead .rp-card__excerpt { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.82); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-card--lead .rp-card__meta { color: rgba(255,255,255,.7); }
.rp-card--lead .rp-card__foot { border-top-color: rgba(255,255,255,.18); }
.rp-card--lead .rp-card__price { color: #fff; }
.rp-card--lead .rp-card__cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.rp-card--lead .rp-card__cta:hover { background: var(--accent-hover); }
@media (max-width: 1100px) { .rp-bento { grid-template-columns: repeat(3, minmax(0, 1fr)); } .rp-card--lead { grid-column: span 3; grid-row: span 1; } .rp-card--lead .rp-card__media { min-height: 420px; } }
@media (max-width: 720px) { .rp-head { flex-direction: column; align-items: flex-start; gap: 14px; } .rp-head__more { padding: 10px 14px; } .rp-card__cta { white-space: nowrap; padding: 8px 10px; } .rp-section { padding: 52px 0; } .rp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .rp-card--lead { grid-column: span 2; } .rp-card--lead .rp-card__media { min-height: 360px; } .rp-card__body { padding: 14px; } .rp-card__title { font-size: 15px; } }

.rp-card__score svg, .rp-mostread__meta .score svg, .rp-mostread__lead-meta svg:first-child { fill: currentColor; }

/* En çok okunanlar — sıralı liste */
.rp-mostread { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 28px; align-items: stretch; }
.rp-mostread__lead { position: relative; display: flex; flex-direction: column; min-height: 460px; background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; }
.rp-mostread__lead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.rp-mostread__lead:hover img { transform: scale(1.04); }
.rp-mostread__lead::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,27,75,.05) 30%, rgba(30,27,75,.9) 100%); }
.rp-mostread__lead-body { position: relative; z-index: 1; margin-top: auto; padding: 30px; color: #fff; }
.rp-rank { display: inline-grid; place-items: center; width: 44px; height: 44px; background: var(--accent); color: #fff; font-size: 16px; font-weight: 800; letter-spacing: .02em; }
.rp-mostread__lead .rp-rank { position: absolute; top: 20px; left: 20px; z-index: 1; width: 52px; height: 52px; font-size: 18px; }
.rp-mostread__lead-cat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #F9A8D4; }
.rp-mostread__lead-title { margin: 10px 0 8px; font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: #fff; }
.rp-mostread__lead-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,.75); }
.rp-mostread__lead-meta span { display: inline-flex; align-items: center; gap: 6px; }
.rp-mostread__list { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); }
.rp-mostread__item { display: grid; grid-template-columns: 44px 84px minmax(0, 1fr); gap: 16px; align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--border); position: relative; transition: background var(--transition-fast); }
.rp-mostread__item:last-child { border-bottom: 0; }
.rp-mostread__item:hover { background: var(--accent-bg); }
.rp-mostread__item .rp-rank { background: var(--bg-tertiary); color: var(--text-secondary); width: 40px; height: 40px; font-size: 14px; }
.rp-mostread__item:hover .rp-rank { background: var(--accent); color: #fff; }
.rp-mostread__thumb { width: 84px; aspect-ratio: 1; object-fit: cover; background: var(--bg-tertiary); display: block; }
.rp-mostread__cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cat-accent, var(--accent)); }
.rp-mostread__title { display: block; margin: 4px 0 6px; font-size: 15px; font-weight: 700; line-height: 1.3; color: var(--text-primary); }
.rp-mostread__title::after { content: ''; position: absolute; inset: 0; }
.rp-mostread__meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-tertiary); }
.rp-mostread__meta span { display: inline-flex; align-items: center; gap: 5px; }
.rp-mostread__meta .score { color: var(--accent); font-weight: 700; }
@media (max-width: 900px) { .rp-mostread { grid-template-columns: 1fr; } .rp-mostread__lead { min-height: 380px; } }

/* En yüksek puanlar — skor tablosu */
.rp-scores { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.rp-score { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border); transition: all var(--transition-base); }
.rp-score:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.rp-score__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.rp-score__num { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: var(--accent); }
.rp-score__num small { font-size: 14px; font-weight: 600; color: var(--text-tertiary); margin-left: 2px; }
.rp-score__badge { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 8px; background: var(--accent-muted); color: var(--accent); line-height: 1.3; max-width: 100%; }
.rp-score__media { aspect-ratio: 1; overflow: hidden; background: var(--bg-tertiary); }
.rp-score__media img { width: 100%; height: 100%; object-fit: cover; }
.rp-score__title { font-size: 14px; font-weight: 700; line-height: 1.3; color: var(--text-primary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-score__title::after { content: ''; position: absolute; inset: 0; }
.rp-score__label { font-size: 12px; color: var(--text-tertiary); }
@media (max-width: 1100px) { .rp-scores { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .rp-scores { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Listeler + blog: modern kartlar */
.rp-lists { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.rp-list { position: relative; display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); transition: all var(--transition-base); }
.rp-list:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.rp-list__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
.rp-list__thumbs img, .rp-list__thumbs span { aspect-ratio: 1; width: 100%; object-fit: cover; background: var(--bg-tertiary); display: block; }
.rp-list__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; }
.rp-list__count { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.rp-list__title { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--text-primary); }
.rp-list__title::after { content: ''; position: absolute; inset: 0; }
.rp-list__intro { font-size: 14px; line-height: 1.6; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-list__more { margin-top: auto; padding-top: 10px; font-size: 13px; font-weight: 700; color: var(--text-primary); display: inline-flex; align-items: center; gap: 6px; }
.rp-list:hover .rp-list__more { color: var(--accent); }
@media (max-width: 900px) { .rp-lists { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .rp-lists { grid-template-columns: 1fr; } }
.rp-articles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.rp-article { position: relative; display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); overflow: hidden; transition: all var(--transition-base); }
.rp-article:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.rp-article__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-tertiary); }
.rp-article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.rp-article:hover .rp-article__media img { transform: scale(1.04); }
.rp-article__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; }
.rp-article__cat { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cat-accent, var(--accent)); }
.rp-article__title { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--text-primary); }
.rp-article__title::after { content: ''; position: absolute; inset: 0; }
.rp-article__excerpt { font-size: 14px; line-height: 1.6; color: var(--text-secondary); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rp-article__meta { display: flex; gap: 12px; margin-top: auto; padding-top: 10px; font-size: 12px; color: var(--text-tertiary); }
@media (max-width: 900px) { .rp-articles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .rp-articles { grid-template-columns: 1fr; } }
