/* 
 * SmallRating - Premium Affiliate Blog Theme
 * Dark & Gold color scheme for trust and conversions
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Colors - Premium Dark & Blue */
    --primary: #0f172a;
    --primary-light: #1e293b;
    --primary-dark: #020617;
    
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #3b82f6;
    --accent-glow: rgba(37, 99, 235, 0.12);
    
    --success: #10b981;
    --success-light: #d1fae5;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    
    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #f8fafc;
    
    --bg: #ffffff;
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-accent: 0 4px 14px rgba(37, 99, 235, 0.25);
    
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.menu-open, body.search-open { overflow: hidden; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER - Sticky Premium
   ============================================ */
.header {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.97);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    z-index: 101;
}
.logo:hover { color: var(--text); }
.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}
.logo-text { white-space: nowrap; letter-spacing: -0.5px; }

/* Navigation */
.nav { display: flex; align-items: center; gap: 2px; }
.nav-header { display: none; }
.nav a {
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav a:hover, .nav a.active {
    color: var(--accent);
    background: var(--accent-glow);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    transition: var(--transition);
}
.nav-dropdown-btn:hover { color: var(--accent); background: var(--accent-glow); }
.dropdown-arrow { font-size: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--border);
}
.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: var(--radius-xs);
}
.nav-dropdown-content a:hover {
    background: var(--bg-page);
    color: var(--accent);
}
.dropdown-divider { height: 1px; background: var(--border-light); margin: 8px 0; }
.nav-overlay { display: none; }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--text);
    z-index: 101;
}

/* Search Toggle */
.header-actions { display: flex; align-items: center; gap: 12px; }
.search-toggle {
    background: var(--bg-page);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.search-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner { width: 100%; max-width: 640px; padding: 0 24px; position: relative; }
.search-form {
    display: flex;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.search-form input {
    flex: 1;
    border: none;
    padding: 20px 24px;
    font-size: 18px;
    outline: none;
    font-family: inherit;
}
.search-form button {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    padding: 20px 28px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.search-form button:hover { filter: brightness(1.1); }
.search-close {
    position: absolute;
    top: -60px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    padding: 8px;
    opacity: 0.7;
    transition: var(--transition);
}
.search-close:hover { opacity: 1; transform: rotate(90deg); }

/* ============================================
   HERO SECTION (for homepage)
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 64px 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(-15deg);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { color: var(--text-light); }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    gap: 40px;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Hero Featured Card */
.hero-featured {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}
.hero-featured:hover { transform: translateY(-6px); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3); }
.hero-featured-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}
.hero-featured-img::after {
    content: '⭐ Featured';
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}
.hero-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.hero-featured:hover .hero-featured-img img { transform: scale(1.08); }
.hero-featured-body { padding: 28px; }
.hero-featured-category {
    display: inline-block;
    background: var(--accent-glow);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.hero-featured-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}
.hero-featured-title a { color: var(--text); }
.hero-featured-title a:hover { color: var(--accent); }

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.main-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 48px 0;
}
.content-area { min-width: 0; }

/* No Sidebar - Wide Layout */
.main-content.no-sidebar {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

/* Two Columns Layout (content | rating) */
.main-content.two-columns-layout {
    grid-template-columns: 1fr;
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-title::before {
    content: '';
    width: 5px;
    height: 32px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 3px;
}
.section-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
}
.section-link:hover { gap: 10px; }

/* ============================================
   ARTICLE CARDS - Premium Style
   ============================================ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.article-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
    position: relative;
}
.article-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: var(--border);
}

/* Card Badges */
.article-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-card-badge.top { 
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); 
    color: #fff; 
    box-shadow: var(--shadow-accent);
}
.article-card-badge.new { background: var(--success); color: #fff; }
.article-card-badge.updated { background: var(--primary); color: #fff; }

.article-card-image {
    display: block;
    background: var(--bg-card);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    line-height: 0;
    font-size: 0;
}
.article-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition);
}
.article-card:hover .article-card-image::after { opacity: 1; }
.article-card-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s;
    vertical-align: top;
}
.article-card:hover .article-card-image img { transform: scale(1.1); }

.article-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.article-card-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    flex: 1;
}
.article-card-title a { color: var(--text); }
.article-card-title a:hover { color: var(--accent); }
.article-card-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.article-card-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}
.article-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.updated-date {
    color: var(--accent) !important;
    font-weight: 600;
}

/* ============================================
   SIDEBAR - Premium Widgets
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}
.sidebar-widget h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}
.sidebar-widget h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent);
    border-radius: 2px;
}

/* Author Widget */
.sidebar-author { text-align: center; }
.sidebar-author h3 { text-transform: none; font-size: 20px; justify-content: center; }
.sidebar-author h3::before { display: none; }
.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: var(--shadow-accent);
}
.author-title {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.author-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.author-stats {
    display: flex;
    justify-content: center;
    gap: 28px;
}
.author-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}
.author-stats strong {
    font-size: 20px;
    color: var(--text);
    font-weight: 800;
}
.author-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: var(--shadow-accent);
}
.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--text);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}
.author-social a:hover {
    background: var(--accent);
}

/* Popular Posts */
.sidebar-post {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post:first-child { padding-top: 0; }
.sidebar-post:hover { transform: translateX(6px); }
.sidebar-post-img {
    width: 88px;
    height: 68px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
    display: block;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-info h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
.sidebar-post-info h4 a { color: var(--text); }
.sidebar-post-info h4 a:hover { color: var(--accent); }
.sidebar-post-info span { font-size: 12px; color: var(--text-muted); }

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: none;
}
.newsletter-widget h3 { color: var(--text-light); }
.newsletter-widget h3::before { background: var(--accent); }
.newsletter-widget p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button {
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.newsletter-form button:hover { filter: brightness(1.1); box-shadow: var(--shadow-accent); }

/* ============================================
   ARTICLE SINGLE PAGE
   ============================================ */
.article-single { padding: 0; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.edit-article-btn {
    margin-left: auto;
    padding: 8px 16px;
    background: var(--accent);
    color: #fff !important;
    border-radius: var(--radius-xs);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}
.edit-article-btn:hover { background: var(--accent-hover); color: #fff !important; }

.article-header { margin-bottom: 16px; }
.article-header h1 {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Compact Header Layout (image on right) */
.article-header-compact {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.article-header-compact .article-header-content {
    flex: 1;
    min-width: 0;
}
.article-header-compact h1 {
    font-size: 32px;
    margin-bottom: 16px;
}
.article-header-compact .article-meta {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.article-header-image {
    flex-shrink: 0;
    width: 280px;
}
.article-header-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg-page);
}
@media (max-width: 768px) {
    .article-header-compact {
        flex-direction: column;
        gap: 16px;
    }
    .article-header-image {
        width: 100%;
        max-width: 320px;
    }
    .article-header-compact h1 {
        font-size: 26px;
    }
}

.featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: var(--bg-page);
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-meta .meta-updated {
    color: var(--accent);
    font-weight: 600;
}

/* Article Content */
.article-content {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
}
.article-content h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 28px 0 14px;
    letter-spacing: -0.5px;
}
.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 10px;
}
.article-content p { margin-bottom: 16px; }
.article-content ul:not(.rating-toc-list), 
.article-content ol:not(.rating-toc-list) {
    margin: 14px 0 18px 22px;
}
.article-content li:not(.rating-toc-list li) { margin-bottom: 6px; }
.article-content img {
    border-radius: var(--radius-sm);
    margin: 20px 0;
    max-width: 100%;
    height: auto;
}
.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}
.article-content a:hover {
    text-decoration-color: var(--accent-hover);
}
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 20px;
    background: var(--bg-page);
    margin: 24px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text-secondary);
    font-size: 17px;
}

/* ============================================
   RATING CARDS - Premium Affiliate Style
   ============================================ */
.rating-section { margin: 40px 0; }
.rating-section > h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.rating-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border);
}

/* Special Badges for Rating Cards */
.rating-card-best {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-accent);
}
.rating-card-best::before {
    content: '🏆 Best Choice';
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-accent);
}

.rating-number {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    box-shadow: var(--shadow-accent);
    border: 3px solid var(--bg);
}

.rating-header {
    overflow: hidden;
    margin-bottom: 16px;
}
.rating-image {
    float: left;
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-right: 20px;
    margin-bottom: 12px;
    shape-outside: margin-box;
    mix-blend-mode: multiply;
}
.rating-title { 
    overflow: hidden;
    margin-bottom: 10px;
}
.rating-title h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}
.rating-title h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.rating-title h3 a:hover {
    color: var(--accent);
}
.rating-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Large Image Rating Cards */
.rating-card-large .rating-title-top {
    margin-bottom: 16px;
}
.rating-card-large .rating-title-top h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}
.rating-card-large .rating-title-top h3 a {
    color: inherit;
    text-decoration: none;
}
.rating-card-large .rating-title-top h3 a:hover {
    color: var(--accent);
}
.rating-image-large {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    mix-blend-mode: multiply;
}
.rating-card-large .rating-description {
    margin-bottom: 16px;
}

/* Two Columns Layout */
.two-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.two-columns-content {
    min-width: 0;
}
/* Remove link underlines in two-columns content - override article-content styles */
.article-content .two-columns-wrapper a,
.two-columns-wrapper a {
    text-decoration: none !important;
}
.article-content .two-columns-wrapper a:hover,
.two-columns-wrapper a:hover {
    text-decoration: underline !important;
}
/* Pros/Cons vertical layout in two-columns */
.two-columns-content .pros-cons {
    display: block;
}
.two-columns-content .pros-cons .pros,
.two-columns-content .pros-cons .cons {
    margin-bottom: 24px;
}
.two-columns-rating {
    min-width: 0;
}
.two-columns-rating-header {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
}
/* Rating cards in two-columns */
.rating-two-columns .rating-card {
    border: none;
    box-shadow: var(--shadow);
}
.rating-two-columns .rating-card-best {
    border: 2px solid var(--accent);
}
.rating-two-columns .rating-btn-sm {
    color: #fff !important;
}
.rating-two-columns .rating-price {
    color: #fff !important;
}
/* Rating images in two-columns - Small (thumbnail) */
.rating-two-columns .rating-image {
    float: left;
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-right: 16px;
    margin-bottom: 8px;
    mix-blend-mode: multiply;
}
/* Rating images in two-columns - Large (full width 16:9) */
.rating-two-columns .rating-image-large {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    mix-blend-mode: multiply;
}
@media (max-width: 1100px) {
    .two-columns-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Share Buttons */
.share-buttons { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin: 24px 0; 
    padding: 16px 0; 
    border-top: 1px solid var(--border-light); 
}
.share-label { 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--text-secondary); 
}
.share-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 36px; 
    height: 36px; 
    border-radius: 50%; 
    text-decoration: none !important; 
    font-weight: 700; 
    font-size: 14px; 
    transition: transform 0.2s, opacity 0.2s; 
    border: none; 
    cursor: pointer; 
}
.share-btn:hover { 
    transform: scale(1.1); 
    opacity: 0.9; 
    text-decoration: none !important;
}
.share-twitter { background: #000 !important; color: #fff !important; }
.share-facebook { background: #1877f2 !important; color: #fff !important; }
.share-linkedin { background: #0a66c2 !important; color: #fff !important; }
.share-pinterest { background: #e60023 !important; color: #fff !important; }
.share-copy { background: var(--bg-page) !important; border: 1px solid var(--border) !important; color: var(--text) !important; }

/* Quick Navigation */
.quick-nav {
    float: right;
    width: 280px;
    margin: 4px 0 20px 24px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    font-size: 14px;
}
.quick-nav-header {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}
.quick-nav-header::before {
    content: '';
    width: 3px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}
.quick-nav-section {
    margin-bottom: 12px;
}
.quick-nav-section:last-child {
    margin-bottom: 0;
}
.quick-nav-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border-light);
}
.quick-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.5;
}
.quick-nav-list li {
    margin-bottom: 2px;
}
.quick-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}
.quick-nav-list a:hover {
    color: var(--accent);
}
.quick-nav-rating li {
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.quick-nav-rating li::before {
    content: attr(value) ".";
    color: var(--accent);
    font-weight: 700;
    min-width: 16px;
    font-size: 13px;
}
@media (max-width: 900px) {
    .quick-nav {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

/* Rating Stars */
.rating-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
}
.rating-score {
    background: var(--accent-glow);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 14px;
}

/* Pros/Cons in Rating */
.rating-pros-cons {
    display: flex;
    gap: 36px;
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-page);
    border-radius: var(--radius-sm);
}
.rating-pros, .rating-cons { flex: 1; min-width: 0; }
.rating-pros strong, .rating-cons strong {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 700;
}
.rating-pros strong { color: var(--success); }
.rating-cons strong { color: var(--danger); }
.rating-pros ul, .rating-cons ul {
    margin: 0;
    padding: 0 0 0 22px;
    font-size: 14px;
    color: var(--text-secondary);
}
.rating-pros li, .rating-cons li { margin-bottom: 8px; }

/* Rating Actions (Price + Affiliate Link) */
.rating-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.rating-price {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.25);
}
.rating-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
    text-decoration: none;
}
.rating-btn-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
    color: #fff;
}

/* Full Review Link */
.rating-review-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    margin-left: 12px;
}
.rating-review-link:hover {
    text-decoration: underline;
}

/* ============================================
   PROS/CONS BLOCKS
   ============================================ */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 48px 0;
}
.pros, .cons {
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.pros {
    background: var(--success-light);
    border: 1px solid #86efac;
}
.cons {
    background: var(--danger-light);
    border: 1px solid #fca5a5;
}
.pros h3 {
    color: var(--success);
    font-size: 17px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cons h3 {
    color: var(--danger);
    font-size: 17px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pros ul, .cons ul { margin: 0; padding: 0 0 0 22px; }
.pros li, .cons li { margin-bottom: 10px; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section { margin: 48px 0; }
.faq-section > h2 { margin-bottom: 28px; }
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--border);
}
.faq-item summary {
    padding: 22px 28px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 26px;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { background: var(--bg-page); border-bottom: 1px solid var(--border-light); }
.faq-item p {
    padding: 22px 28px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 36px 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table tr:hover td { background: var(--bg-page); }
.comparison-table tr:last-child td { border-bottom: none; }

/* ============================================
   TAGS
   ============================================ */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}
.tags a {
    padding: 10px 18px;
    background: var(--bg-page);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.tags a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

/* ============================================
   RELATED ARTICLES
   ============================================ */
.related-articles {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border-light);
}
.related-articles h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 32px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 72px 48px;
    margin-bottom: 48px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--accent) 100%);
    opacity: 0.1;
}
.page-header h1 {
    font-size: 40px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}
.page-header p {
    color: var(--text-muted);
    margin-top: 14px;
    font-size: 17px;
    position: relative;
    z-index: 1;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    min-width: 48px;
    height: 48px;
    padding: 0 18px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.pagination a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}
.pagination .active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* ============================================
   FOOTER - Dark Premium
   ============================================ */
.footer-gradient {
    height: 1px;
    background: var(--border);
}
.footer {
    background: var(--primary);
    color: var(--text-light);
    padding: 56px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-grid-3 { grid-template-columns: 2fr 1fr 1fr; }
.footer h4 {
    color: var(--text-light);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
}
.footer-about p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.footer a {
    color: var(--text-muted);
    display: block;
    padding: 10px 0;
    font-size: 14px;
    transition: var(--transition);
}
.footer a:hover { color: var(--accent); transform: translateX(5px); }
.footer-bottom {
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xs);
    font-size: 12px;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   PAGE FULL WIDTH
   ============================================ */
.page-content-full {
    max-width: 840px;
    margin: 48px auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 56px;
}
.page-article { text-align: left; }
.page-article h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 36px;
    color: var(--text);
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page-content { text-align: center; }
.error-page-content .error-code {
    font-size: 140px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}
.error-page-content h1 { margin-bottom: 24px; }
.error-page-content p { color: var(--text-secondary); margin-bottom: 32px; }

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    padding: 28px;
    max-width: 400px;
    z-index: 1000;
    display: none;
    border: 1px solid var(--border);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-consent h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cookie-consent p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}
.cookie-consent-buttons { display: flex; gap: 12px; }
.cookie-consent-accept {
    flex: 1;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cookie-consent-accept:hover { filter: brightness(1.1); box-shadow: var(--shadow-accent); }
.cookie-consent-decline {
    padding: 14px 22px;
    background: var(--bg-page);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cookie-consent-decline:hover { border-color: var(--text-muted); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
    color: #fff;
}
.btn-secondary {
    background: var(--bg-page);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow);
}
.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

/* ============================================
   CATEGORIES PAGE
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.category-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.category-card h3 a { color: var(--text); }
.category-card h3 a:hover { color: var(--accent); }
.category-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .hero-inner { gap: 36px; }
    .hero-title { font-size: 44px; }
    .main-content { gap: 36px; }
}

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-featured { max-width: 520px; margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .hero-title { font-size: 40px; }
    .hero-desc { margin: 0 auto 32px; }
    
    .main-content { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    /* Mobile Header */
    .header-inner { height: 68px; }
    .nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 24px;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .nav.active { left: 0; }
    .nav a { padding: 16px 18px; border-radius: var(--radius-sm); font-size: 16px; }
    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--text); }
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        backdrop-filter: blur(4px);
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }
    .mobile-menu-btn { display: block; }
    
    .nav-dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .nav-dropdown.open .nav-dropdown-content { display: block; }
    
    /* Hero Mobile */
    .hero { padding: 48px 0; }
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 16px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat-num { font-size: 28px; }
    
    /* Cards Mobile */
    .articles-grid { grid-template-columns: 1fr; gap: 20px; }
    .article-card-body { padding: 24px; }
    .article-card-title { font-size: 18px; }
    
    /* Rating Cards Mobile */
    .rating-card { padding: 20px; }
    .rating-image { 
        float: none; 
        width: 160px;
        height: 160px;
        max-width: none; 
        margin: 0 auto 16px; 
        display: block;
    }
    .rating-title { overflow: visible; }
    .rating-pros-cons { flex-direction: column; gap: 20px; }
    .rating-actions { margin-top: 10px; }
    .rating-card-best::before { font-size: 11px; padding: 5px 12px; }
    .rating-title h3 { font-size: 20px; }
    .rating-review-link { display: block; margin-left: 0; margin-top: 6px; }
    
    /* Article Mobile */
    .article-header h1 { font-size: 26px; }
    .article-meta { gap: 18px; }
    .pros-cons { grid-template-columns: 1fr; }
    
    /* Footer Mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer { padding: 56px 0 28px; }
    
    /* Cookie Mobile */
    .cookie-consent {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
    
    /* Page Header Mobile */
    .page-header { padding: 48px 28px; }
    .page-header h1 { font-size: 28px; }
    
    /* Page Content Mobile */
    .page-content-full { padding: 36px 24px; margin: 28px auto; }
    .page-article h1 { font-size: 28px; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat { display: flex; align-items: center; gap: 12px; }
    .hero-stat-num { font-size: 24px; }
    .hero-stat-label { margin-top: 0; }
    
    .article-card-meta { flex-direction: column; gap: 8px; }
    .article-meta { 
        flex-direction: row; 
        flex-wrap: wrap;
        gap: 8px 16px; 
    }
    .article-meta .meta-trust {
        display: none;
    }
    .article-meta .meta-primary {
        font-size: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--bg-page) 25%, var(--border-light) 50%, var(--bg-page) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Pulse for CTAs */
.pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-accent); }
    50% { box-shadow: 0 0 24px rgba(245, 158, 11, 0.6); }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
