/**
 * Gemini Article Generator - Article Styles
 * 美化生成的文章页面样式 - Enhanced Version 2.0
 */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #FF9900;
    --primary-hover: #FFB700;
    --primary-dark: #E68A00;
    --accent-blue: #4e7df1;
    --accent-blue-dark: #3a68d8;
    --text-primary: #1a1a1a;
    --text-secondary: #2c3e50;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --bg-cream: #fffef8;
    --border-light: #eaeaea;
    --success-green: #4CAF50;
    --success-dark: #388E3C;
    --warning-red: #FF5252;
    --warning-dark: #D32F2F;
    --premium-purple: #7c3aed;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* 全局文章样式 - 优化阅读体验 */
.gagen-article {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px;
    background-color: #fff;
    box-shadow: var(--shadow-sm);
}

/* 改善段落首行缩进,让文章更专业 */
.gagen-article > p:first-of-type {
    font-size: 19px;
    color: #34495e;
    line-height: 1.9;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #FF9900;
    border-radius: 4px;
    margin-bottom: 30px;
}

.gagen-article h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.2;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.gagen-article h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4e7df1, #FF9900);
    border-radius: 2px;
}

.gagen-article h2 {
    font-size: 1.8em;
    font-weight: 600;
    margin: 50px 0 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eaeaea;
    color: #2c3e50;
    position: relative;
}

.gagen-article h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #4e7df1;
}

.gagen-article h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #34495e;
}

.gagen-article p {
    margin-bottom: 1.5em;
}

.gagen-article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    display: block;
}

.gagen-article ul, .gagen-article ol {
    margin: 20px 0 20px 25px;
    padding-left: 20px;
}

.gagen-article li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 引用块样式 */
.gagen-article blockquote {
    padding: 20px 25px;
    margin: 30px 0;
    background-color: #f8f9fa;
    border-left: 5px solid #4e7df1;
    font-style: italic;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.gagen-article blockquote p {
    margin: 0;
}

/* 推荐产品样式 - 优化点击转化率 */
.top-recommendation {
    background: linear-gradient(to bottom, #ffffff 0%, #fffef8 100%); /* 微妙的暖色调渐变 */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin: 45px 0;
    position: relative;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    overflow: visible; /* 改为visible让徽章能溢出 */
}

.top-recommendation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 153, 0, 0.15);
    border-color: #FF9900; /* 悬停时显示Amazon橙色边框 */
}

.top-recommendation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #FF9900, #FFB700); /* 纯Amazon色调 */
    border-radius: 12px 12px 0 0;
}

/* 新增：产品序号指示器 */
.top-recommendation::after {
    content: attr(data-rank);
    position: absolute;
    top: 20px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF9900, #FFB700);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(255, 153, 0, 0.4);
    border: 3px solid white;
}

.top-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF9900, #FFB700);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(255, 153, 0, 0.35);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.top-recommendation h3 {
    font-size: 1.6em;
    margin-top: 5px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

/* 新增：让产品描述更突出重点 */
.top-recommendation p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 15px;
}

.top-recommendation p strong {
    color: #FF9900;
    font-weight: 600;
}

/* 优化的购买链接 - 最大化点击率 */
.purchase-link {
    margin-top: 25px;
    text-align: center;
    position: relative;
    padding: 0;
}

/* 移除小标签，用更大的CTA文案替代 */
.purchase-link::before {
    display: none;
}

.purchase-link a {
    background: linear-gradient(135deg, #FF9900 0%, #FFB700 100%);
    color: #0F1111; /* Amazon 深色文字 */
    padding: 16px 32px;
    border-radius: 50px; /* 更圆润的胶囊形状 */
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    border: none;
    text-transform: uppercase;
    min-width: 280px;
}

/* 在按钮内添加箭头提示 */
.purchase-link a::after {
    content: '→';
    margin-left: 8px;
    font-size: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.purchase-link a:hover {
    background: linear-gradient(135deg, #FFB700 0%, #FF9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #0F1111;
}

.purchase-link a:hover::after {
    transform: translateX(4px);
}

.purchase-link a:active {
    transform: translateY(0px);
    box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

/* 添加脉冲动画吸引注意力 */
@keyframes button-pulse {
    0% { box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 4px 20px rgba(255, 153, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15); }
    100% { box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1); }
}

.purchase-link a {
    animation: button-pulse 3s ease-in-out infinite;
}

/* Multiple Purchase Links Container */
.purchase-links {
    margin-top: 25px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

.purchase-links a {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: none;
    text-transform: uppercase;
    min-width: 200px;
}

.purchase-links > a::after {
    content: '→';
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.purchase-links > a:hover::after {
    transform: translateX(4px);
}

/* Remove arrows from amazon region btn inner links */
.amazon-region-btn a::after {
    content: none !important;
    display: none !important;
}

/* Amazon Button in Multiple Links */
.purchase-link-amazon {
    background: linear-gradient(135deg, #FF9900 0%, #FFB700 100%);
    color: #0F1111 !important;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: button-pulse 3s ease-in-out infinite;
}

.purchase-link-amazon:hover {
    background: linear-gradient(135deg, #FFB700 0%, #FF9900 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #0F1111 !important;
}

/* B&H Photo Video Button */
.purchase-link-bh {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes bh-button-pulse {
    0% { box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 4px 20px rgba(0, 102, 204, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15); }
    100% { box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1); }
}

.purchase-link-bh {
    animation: bh-button-pulse 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.purchase-link-bh:hover {
    background: linear-gradient(135deg, #0077e6 0%, #0055b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: #ffffff !important;
}

/* Mobile responsiveness for multiple purchase links */
@media (max-width: 768px) {
    .purchase-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .purchase-links a {
        width: 100%;
        min-width: auto;
        padding: 16px 20px;
        font-size: 14px;
    }
}

.title-amazon-btn {
    display: inline-block;
    font-size: 12px;
    background: linear-gradient(to bottom, #f7dfa5, #f0c14b);
    color: #111;
    border-radius: 3px;
    padding: 2px 6px;
    margin-left: 10px;
    text-decoration: none;
    vertical-align: middle;
    border: 1px solid #a88734;
    font-weight: normal;
}

.title-amazon-btn:hover {
    background: linear-gradient(to bottom, #f5d78e, #eeb933);
    text-decoration: none;
}

/* Amazon Region Button Style - Like B&H but Yellow */
.amazon-region-btn {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #FF9900 0%, #FFB700 100%);
    color: #0F1111;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0;
    flex: none !important;
    width: auto !important;
    min-width: auto !important;
    max-width: fit-content !important;
}

.amazon-region-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 0, 0.4);
}

.amazon-region-btn a {
    color: #0F1111;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.2s ease;
    padding: 0 !important;
    margin: 0 !important;
    min-width: auto !important;
    width: auto !important;
    display: inline !important;
    background: none !important;
    box-shadow: none !important;
}

.amazon-region-btn a:hover {
    opacity: 0.7;
    text-decoration: underline;
    color: #0F1111;
    transform: none !important;
}

/* Mobile styles for region button */
@media (max-width: 768px) {
    .amazon-region-btn {
        font-size: 13px;
        padding: 12px 18px;
        white-space: normal;
        text-align: center;
    }
}

/* B&H Photo Video Button Styles */
.title-bh-btn {
    display: inline-block;
    font-size: 12px;
    background: linear-gradient(to bottom, #0066cc, #004999);
    color: #fff !important;
    border-radius: 3px;
    padding: 2px 6px;
    margin-left: 6px;
    text-decoration: none;
    vertical-align: middle;
    border: 1px solid #003d80;
    font-weight: normal;
}

.title-bh-btn:hover {
    background: linear-gradient(to bottom, #0077e6, #0055b3);
    text-decoration: none;
    color: #fff !important;
}

/* 增强信任标识 */
.secure-payment {
    text-align: center;
    color: #5F7161;
    margin-top: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 500;
}

.secure-payment::before {
    content: '🔒';
    font-size: 14px;
    margin-right: 4px;
}

/* 新增：Prime标识 */
.top-recommendation .amazon-prime-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00A8E1, #0073BB);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 115, 187, 0.3);
}

/* 新增：价格标签样式 */
.product-price {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #B12704; /* Amazon价格红色 */
    margin: 15px 0;
    font-family: 'Arial', sans-serif;
}

.product-price-label {
    font-size: 14px;
    color: #565959;
    font-weight: 400;
    margin-right: 8px;
}

/* FAQ部分样式 */
.faq-module {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    border: 1px solid #eee;
}

.faq-item h3 {
    color: #2c3e50;
    margin-top: 0;
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

/* 比较表格样式 */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 35px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: linear-gradient(135deg, #4e7df1, #3a68d8);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table th:first-child {
    border-top-left-radius: 10px;
}

.comparison-table th:last-child {
    border-top-right-radius: 10px;
}

.comparison-table tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.comparison-table tr:nth-child(even) {
    background-color: #fff;
}

.comparison-table tr:hover {
    background-color: #f1f5ff;
}

.comparison-table td {
    padding: 15px;
    border-top: 1px solid #e9ecef;
    vertical-align: top;
}

.comparison-table ul {
    margin: 0;
    padding-left: 20px;
}

.comparison-table li {
    margin-bottom: 5px;
}

/* 内容模块样式 */
.info-module, .conclusion-module {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid #eaeaea;
}

/* 强调样式 */
.gagen-article strong {
    color: #2c3e50;
    font-weight: 600;
}

/* 移动端响应式 - 优化触摸体验 */
@media (max-width: 768px) {
    .gagen-article {
        font-size: 16px;
        padding: 30px 15px;
    }
    
    .gagen-article h1 {
        font-size: 2em;
    }
    
    .gagen-article h2 {
        font-size: 1.5em;
        margin: 35px 0 20px;
    }
    
    /* 移动端产品卡片优化 */
    .top-recommendation {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .top-recommendation::after {
        width: 35px;
        height: 35px;
        font-size: 16px;
        left: -12px;
    }
    
    /* 移动端购买按钮 - 全宽更易点击 */
    .purchase-link a {
        width: 100%;
        min-width: auto;
        padding: 18px 20px;
        font-size: 16px;
        box-sizing: border-box;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        font-size: 14px;
    }
    
    /* 移动端Pros和Cons样式 */
    .pros-cons-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .pros-box, .cons-box {
        min-width: 100%;
    }
    
    /* 移动端目录样式 */
    .article-toc {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .toc-header h4 {
        font-size: 0.9em;
    }
    
    .toc-content {
        margin-top: 8px;
    }
    
    .article-toc li {
        margin-bottom: 4px;
    }
    
    /* 移动端徽章调整 */
    .top-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}

/* 目录样式修改 - 简化并缩小字体 */
.article-toc {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 6px;
    border: 1px solid #eee;
    font-size: 0.9em;
}

/* 目录头部样式 */
.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.toc-header h4 {
    margin: 0;
    color: #555;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #4e7df1;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.toc-toggle:hover {
    background-color: #3a68d8;
    transform: scale(1.1);
}

.toc-header:hover h4 {
    color: #4e7df1;
}

/* 目录内容区域 */
.toc-content {
    margin-top: 10px;
}

/* 折叠状态下隐藏内容 */
.toc-collapsed .toc-content {
    display: none;
}

.article-toc::before {
    display: none; /* 移除左侧装饰线 */
}

.article-toc ul {
    margin: 0;
    padding-left: 15px;
}

.article-toc li {
    margin-bottom: 5px;
    line-height: 1.4;
}

.article-toc a {
    color: #555;
    text-decoration: none;
}

.article-toc a:hover,
.article-toc a.active {
    color: #4e7df1;
    text-decoration: none;
}

/* Pros and Cons 样式 - 更醒目更专业 */
.pros-cons-container {
    display: flex;
    margin: 25px 0;
    gap: 15px;
    flex-wrap: wrap;
}

.pros-box, .cons-box {
    flex: 1;
    min-width: 260px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pros-box:hover, .cons-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.pros-box {
    background: linear-gradient(135deg, #f1f9f1 0%, #e8f5e9 100%);
    border-color: #4CAF50;
}

.pros-box:hover {
    border-color: #388E3C;
}

.cons-box {
    background: linear-gradient(135deg, #fff6f6 0%, #ffebee 100%);
    border-color: #FF5252;
}

.cons-box:hover {
    border-color: #D32F2F;
}

.pros-cons-title {
    font-size: 17px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pros-cons-title::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.pros-title {
    color: #2E7D32;
}

.pros-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232E7D32"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>');
}

.cons-title {
    color: #C62828;
}

.cons-title::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23C62828"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>');
}

.pros-cons-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pros-cons-list li {
    padding: 8px 0 8px 28px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.5;
    font-size: 15px;
}

.pros-cons-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.pros-list li::before {
    background-color: #4CAF50;
    color: white;
}

.cons-list li::before {
    content: '✗';
    background-color: #FF5252;
    color: white;
}

/* ============================================
   NEW ENHANCED STYLES - Version 2.0
   ============================================ */

/* Article Meta Info */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 1px solid var(--border-light);
    font-size: 14px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}

.article-meta .update-date::before {
    content: '📅';
}

.article-meta .read-time::before {
    content: '⏱️';
}

.article-meta .expert-verified {
    background: linear-gradient(135deg, var(--success-green), var(--success-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
}

.article-meta .expert-verified::before {
    content: '✓ ';
}

/* Article Intro */
.article-intro {
    background: linear-gradient(135deg, #fff9e6 0%, #fff 100%);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 35px;
    box-shadow: var(--shadow-sm);
}

.article-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Quick Picks Box - Glassmorphism Redesign
   ============================================ */

/* Keyframe Animations */
@keyframes quickPicksGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

@keyframes quickPicksFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes quickPicksShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes quickPicksFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Main Container */
.quick-picks-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    border-radius: 20px;
    padding: 40px 35px;
    margin: 50px 0;
    color: white;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: quickPicksFadeIn 0.6s ease-out;
}

/* Ambient Glow Effects */
.quick-picks-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: quickPicksGlow 4s ease-in-out infinite;
}

/* Decorative Grid Pattern */
.quick-picks-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

/* Title */
.quick-picks-box h2 {
    color: #fff;
    font-size: 1.6em;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding: 0;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.quick-picks-box h2::before {
    content: '⚡';
    margin-right: 10px;
    font-size: 0.9em;
}

.quick-picks-box h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
    margin: 16px auto 0;
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

/* Grid Layout - Three Equal Columns */
.quick-picks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: 30px auto 0;
    position: relative;
    z-index: 1;
}

/* Reset first child special treatment - all equal now */
.quick-picks-grid .quick-pick-item:first-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
}

/* Card Base Styles - Glassmorphism */
.quick-pick-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* Card Shine Effect on Hover */
.quick-pick-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.quick-pick-item:hover::before {
    left: 200%;
}

/* Card Hover State */
.quick-pick-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Best Overall Card - Gold Accent */
.quick-pick-item:nth-child(1) {
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
}

.quick-pick-item:nth-child(1):hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(251, 191, 36, 0.2);
}

/* Best Value Card - Emerald Accent */
.quick-pick-item:nth-child(2) {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.1);
}

.quick-pick-item:nth-child(2):hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(16, 185, 129, 0.2);
}

/* Budget Pick Card - Indigo Accent */
.quick-pick-item:nth-child(3) {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.quick-pick-item:nth-child(3):hover {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(99, 102, 241, 0.2);
}

/* Pick Labels */
.pick-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.pick-label.best-overall {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.pick-label.best-value {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.pick-label.budget-pick {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Product Name */
.quick-pick-item strong {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Pick Reason */
.pick-reason {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    flex-grow: 1;
}

/* CTA Buttons - Color Matched */
.quick-pick-btn {
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    align-self: stretch;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Best Overall Button - Gold */
.quick-pick-item:nth-child(1) .quick-pick-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1a1a1a !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.quick-pick-item:nth-child(1) .quick-pick-btn:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

/* Best Value Button - Emerald */
.quick-pick-item:nth-child(2) .quick-pick-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.quick-pick-item:nth-child(2) .quick-pick-btn:hover {
    background: linear-gradient(135deg, #34d399, #10b981);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* Budget Pick Button - Indigo */
.quick-pick-item:nth-child(3) .quick-pick-btn {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.quick-pick-item:nth-child(3) .quick-pick-btn:hover {
    background: linear-gradient(135deg, #818cf8, #6366f1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

/* Button Shine Effect */
.quick-pick-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.quick-pick-btn:hover::after {
    left: 100%;
}

/* Quick Picks Tablet Responsive (2 columns) */
@media (max-width: 1024px) and (min-width: 769px) {
    .quick-picks-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .quick-pick-item {
        padding: 20px 16px;
    }
    
    .quick-pick-item strong {
        font-size: 15px;
    }
    
    .pick-reason {
        font-size: 12px;
    }
    
    .quick-pick-btn {
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* Product Highlights */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.highlight-item .star-rating {
    color: #FFB800;
    font-size: 16px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 4px;
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 20px 0;
    padding: 20px;
    background: #f5f7fa;
    border-radius: var(--radius-sm);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.spec-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Enhanced Badge Styles */
.badge-best-overall {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
    color: #1a1a1a !important;
}

.badge-best-value {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    color: white !important;
}

.badge-budget {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%) !important;
    color: white !important;
}

.badge-premium {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%) !important;
    color: white !important;
}

.badge-also-great {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
    color: white !important;
}

/* Trust Module */
.trust-module {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 50px 0;
    border: 1px solid #bae6fd;
}

.trust-module h2 {
    text-align: center;
    color: var(--text-primary);
    margin: 0 0 30px 0;
    padding: 0;
    border: none;
}

.trust-module h2::before {
    display: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.trust-item strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.trust-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

/* Buying Guide Enhancements */
.buying-guide {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    border: 2px solid var(--border-light);
    padding: 35px;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.criterion-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.criterion-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.criterion-card h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.criterion-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Price Tiers */
.price-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.price-tier {
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.price-tier:hover {
    transform: translateY(-3px);
}

.price-tier.budget {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #90caf9;
}

.price-tier.mid {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid #ffcc80;
}

.price-tier.premium {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border: 2px solid #ce93d8;
}

.tier-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.tier-range {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.price-tier p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Enhanced Comparison Table */
.comparison-table .table-badge {
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--primary-color);
    color: #0F1111;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

.comparison-table .table-badge.value {
    background: var(--success-green);
    color: white;
}

.comparison-table .table-badge.budget {
    background: #2196F3;
    color: white;
}

.comparison-table .table-badge.premium {
    background: var(--premium-purple);
    color: white;
}

.comparison-table .highlight-row {
    background: linear-gradient(90deg, #fff9e6, #fff) !important;
}

.comparison-table .star-rating {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 1px;
}

.table-price-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #0F1111 !important;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.table-price-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    text-decoration: none;
}

/* Verdict Box - Enhanced for High Conversion */
.verdict-box {
    background: #fff;
    border: 2px solid #2E7D32; /* Stronger green border */
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.1);
    position: relative;
    overflow: hidden;
}

.verdict-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #2E7D32, #4CAF50);
}

.verdict-picks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.verdict-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #f8fcf8;
    border-radius: 10px;
    border: 1px solid #e8f5e9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.verdict-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px) scale(1.01);
    background: #fff;
    border-color: #4CAF50;
    z-index: 2;
}

/* Distinct styling for each rank */
.verdict-item:nth-child(1) {
    border-left: 6px solid #FFD700;
    background: linear-gradient(to right, #fffdf5, #fff);
}

.verdict-item:nth-child(2) {
    border-left: 6px solid #2196F3;
    background: linear-gradient(to right, #f5faff, #fff);
}

.verdict-item:nth-child(3) {
    border-left: 6px solid #FF9900;
    background: linear-gradient(to right, #fffaf5, #fff);
}

.verdict-label {
    font-size: 13px;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 120px;
    display: flex;
    align-items: center;
}

.verdict-product {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.verdict-item strong {
    font-size: 20px; /* Much larger product name */
    color: #1a1a1a;
    display: block;
    line-height: 1.3;
    font-weight: 800;
}

.verdict-reason {
    font-size: 15px;
    color: #666;
    font-style: italic;
    display: block;
}

.verdict-btn {
    background: linear-gradient(135deg, #FF9900 0%, #FFB700 100%);
    color: #0F1111 !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verdict-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 153, 0, 0.45);
    background: linear-gradient(135deg, #FFB700 0%, #FF9900 100%);
    text-decoration: none;
}

.verdict-summary {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    padding-top: 25px;
    border-top: 1px dashed #c8e6c9;
    margin: 0;
    text-align: justify;
}

/* Mobile responsiveness for Verdict */
@media (max-width: 768px) {
    .verdict-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 20px;
        gap: 15px;
    }

    .verdict-item:nth-child(n) {
        border-left-width: 4px; /* Slightly thinner border on mobile */
    }

    .verdict-label {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .verdict-product {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .verdict-item strong {
        font-size: 18px;
    }

    .verdict-btn {
        width: 100%;
        text-align: center;
        padding: 14px 0;
    }
}

/* Reading Progress Bar */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Sticky Buy Bar (Mobile) */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    border-top: 3px solid var(--primary-color);
}

.sticky-buy-bar .sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.sticky-buy-bar .product-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

.sticky-buy-bar .sticky-btn {
    background: var(--primary-color);
    color: #0F1111;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .article-meta {
        justify-content: center;
        gap: 12px;
    }
    
    /* Quick Picks Mobile Optimization */
    .quick-picks-box {
        padding: 28px 18px;
        margin: 35px 0;
        border-radius: 16px;
    }
    
    .quick-picks-box h2 {
        font-size: 1.35em;
    }
    
    .quick-picks-box h2::before {
        display: none;
    }
    
    .quick-picks-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }
    
    .quick-pick-item {
        padding: 20px 18px;
    }
    
    .quick-pick-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
    
    .quick-pick-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .product-highlights {
        grid-template-columns: 1fr 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .price-tiers {
        grid-template-columns: 1fr;
    }
    
    .verdict-item {
        flex-direction: column;
        text-align: center;
    }
    
    .verdict-item strong {
        flex: none;
    }
    
    .sticky-buy-bar {
        display: block;
    }
    
    .back-to-top {
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .article-meta {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .table-price-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Print Styles */
@media print {
    .quick-picks-box,
    .back-to-top,
    .sticky-buy-bar,
    .reading-progress-container {
        display: none !important;
    }
    
    .top-recommendation {
        page-break-inside: avoid;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Shimmer effect for loading states */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
} 