/* === OMAR YT PLAY - ARTICLE PAGES === */
/* Clean product review layout */

/* === VARIABLES GLOBALES === */
:root {
    /* Colores de fondo */
    --bg-page: #e3e6e6;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --bg-header: #131921;
    --bg-header-secondary: #232f3e;
    --bg-gray-light: #f7f7f7;
    --bg-gray: #f0f2f2;
    
    /* Colores de acento */
    --accent-primary: #00ff41;
    --accent-primary-dark: #00cc33;
    --accent-orange: #ff9900;
    --accent-deal: #cc0c39;
    
    /* Colores de texto */
    --text-dark: #0f1111;
    --text-secondary: #565959;
    --text-muted: #888888;
    --text-link: #007185;
    --text-link-hover: #c7511f;
    --text-white: #ffffff;
    --text-price: #b12704;
    
    /* Bordes y sombras */
    --border-light: #ddd;
    --border-medium: #d5d9d9;
    --shadow-card: 0 2px 5px rgba(0,0,0,0.1);
    --shadow-card-hover: 0 4px 15px rgba(0,0,0,0.15);
    
    /* Tipografía */
    --font-primary: 'Amazon Ember', 'Segoe UI', Arial, sans-serif;
    --font-gaming: 'Orbitron', sans-serif;
    
    /* Layout */
    --max-width: 1500px;
    --radius-md: 4px;
    --radius-sm: 2px;
    --transition-fast: 0.2s ease;
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-page);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* === HEADER === */
.header, .site-header {
    background: linear-gradient(to bottom, var(--bg-header) 0%, var(--bg-header-secondary) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-primary);
    padding: 0.5rem 0;
}

.header .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1, .site-logo {
    font-family: var(--font-gaming);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo a, .site-logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    border-bottom: 2px solid var(--accent-primary);
}

/* === BREADCRUMB NAVIGATION === */
.breadcrumb-container {
    background: var(--bg-card);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-container .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-link);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-secondary);
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: var(--text-secondary);
}

/* === SEARCH BAR === */
.search-container {
    flex: 1;
    max-width: 600px;
    display: flex;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    font-size: 1rem;
    outline: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.search-input:focus {
    box-shadow: 0 0 0 3px var(--accent-primary);
}

.search-btn {
    background: var(--accent-primary);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-btn:hover {
    background: var(--accent-primary-dark);
}

.search-btn i {
    color: var(--text-dark);
    font-size: 1.2rem;
}

/* === NAV MENU === */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    border: 1px solid var(--text-white);
    border-radius: var(--radius-sm);
}

/* === SUB NAVIGATION === */
.sub-nav {
    background: var(--bg-header-secondary);
    padding: 0.5rem 0;
}

.sub-nav .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow-x: auto;
}

.sub-nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.sub-nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.sub-nav-link.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

/* === BREADCRUMB === */
.breadcrumb, .breadcrumb-nav {
    background: var(--bg-card);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb a {
    color: var(--text-link);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-secondary);
}

/* === ARTICLE LAYOUT === */
.article-container, .article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
}

.article-main {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

/* === ARTICLE HEADER === */
.article-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.article-title, .article-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-meta i {
    color: var(--accent-primary);
}

/* === PRODUCT INFO BOX === */
.product-info-box {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    align-items: start;
}

.product-main-image {
    background: #fff;
    border-radius: 4px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

.product-details h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-price-box {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 400;
    color: #b12704;
}

.price-value .symbol {
    font-size: 1rem;
    vertical-align: top;
}

/* === BUY BUTTON === */
.btn-amazon, .buy-button, .amazon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to bottom, #f7dfa5 0%, #f0c14b 100%);
    border: 1px solid #a88734;
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: background 0.2s;
}

.btn-amazon:hover, .buy-button:hover {
    background: linear-gradient(to bottom, #f5d78e 0%, #eeb933 100%);
}

.btn-amazon i {
    font-size: 1rem;
}

/* === ARTICLE CONTENT === */
.article-content, .article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.article-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: block;
}

.article-content a {
    color: var(--text-link);
    text-decoration: none;
}

.article-content a:hover {
    color: var(--text-link-hover);
    text-decoration: underline;
}

/* === PROS/CONS BOX === */
.pros-cons-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.pros-box, .cons-box {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 1rem;
}

.pros-box {
    border-left: 4px solid #067d62;
}

.cons-box {
    border-left: 4px solid #c7511f;
}

.pros-box h4, .cons-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-box h4 {
    color: #067d62;
}

.cons-box h4 {
    color: #c7511f;
}

.pros-box ul, .cons-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-box li, .cons-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.pros-box li:last-child, .cons-box li:last-child {
    border-bottom: none;
}

.pros-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #067d62;
    font-weight: bold;
}

.cons-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c7511f;
    font-weight: bold;
}

/* === RATING BOX === */
.rating-box {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-score span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.rating-stars {
    color: #ffa41c;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === SIDEBAR === */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: 4px;
    padding: 1rem;
    border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-light);
}

/* === RELATED PRODUCTS === */
.related-product {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}

.related-product:last-child {
    border-bottom: none;
}

.related-product-image {
    width: 80px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.related-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-product-info {
    flex: 1;
}

.related-product-title {
    font-size: 0.85rem;
    color: var(--text-link);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.related-product:hover .related-product-title {
    color: var(--text-link-hover);
}

.related-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #b12704;
}

/* === TABLE OF CONTENTS === */
.toc-widget {
    position: sticky;
    top: 80px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    color: var(--text-link);
    text-decoration: none;
    font-size: 0.85rem;
}

.toc-list a:hover {
    color: var(--text-link-hover);
}

/* === INTERNAL LINK BOX === */
.internal-link-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f0f9ff;
    border-left: 4px solid var(--text-link);
    border-radius: 4px;
}

.internal-link-box a {
    color: var(--text-link);
    font-weight: 500;
}

/* === FAQ SECTION === */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #f7f7f7;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* === AMAZON REVIEWS === */
.amazon-reviews {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7f7f7;
    border-radius: 8px;
}

.amazon-reviews h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-item {
    background: #fff;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border-light);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #ffa41c;
    font-size: 0.9rem;
}

.review-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.review-author {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === FOOTER === */
.footer, .site-footer {
    background: #232f3e;
    color: #fff;
    padding: 0;
    margin-top: 2rem;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #3d4f58;
}

.footer-brand h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand a {
    text-decoration: none;
    color: inherit;
}

.footer-brand p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #131921;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #000;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.8rem;
    margin: 0.25rem 0;
}

.footer-bottom strong {
    color: var(--accent-primary);
}

/* Legacy footer */
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 2;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999;
}

/* === ARTICLE SPECIFIC ELEMENTS === */
.article-header {
    background: var(--bg-card);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.article-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review-badge, .author-badge, .date-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-badge {
    background: var(--accent-primary);
    color: #000;
    font-weight: 700;
}

.author-badge, .date-badge {
    background: #f0f2f2;
    color: var(--text-secondary);
}

.article-hero-image {
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
    text-align: center;
}

.article-hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: inline-block;
}

.image-caption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: #f0f2f2;
    text-align: center;
}

.article-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 8px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-card {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Specs Table */
.specs-table-container {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.specs-table caption {
    text-align: left;
    font-weight: 700;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.specs-table th,
.specs-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.specs-table th {
    background: #f0f2f2;
    font-weight: 600;
    color: var(--text-dark);
}

.specs-table tr:hover {
    background: #f7f7f7;
}

/* CTA Section */
.cta-section, .cta-box {
    background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    color: #fff;
}

.cta-header h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    border: none;
}

.cta-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 1rem 0;
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.cta-feature i {
    color: var(--accent-primary);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, #f7dfa5 0%, #f0c14b 100%);
    border: 1px solid #a88734;
    border-radius: 8px;
    color: #111;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-button:hover {
    background: linear-gradient(to bottom, #f5d78e 0%, #eeb933 100%);
}

.button-content {
    display: flex;
    flex-direction: column;
}

.button-title {
    font-weight: 700;
}

.button-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #999;
}

/* Home Link Box */
.home-link-box {
    margin: 2rem auto;
    padding: 1.5rem;
    background: #232f3e;
    border-radius: 8px;
    text-align: center;
    max-width: 1200px;
}

.home-link-box p {
    color: #ccc;
    margin: 0;
}

.home-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.home-link:hover {
    text-decoration: underline;
}

/* === PROS/CONS COMPARISON TABLE === */
.comparison-table-container {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table caption {
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem;
    background: #f0f2f2;
    color: var(--text-dark);
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.comparison-table th:first-child {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    width: 50%;
}

.comparison-table th:last-child {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    width: 50%;
}

.comparison-table td {
    padding: 0.875rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: #fafafa;
}

.comparison-table td:first-child {
    position: relative;
    padding-left: 2rem;
}

.comparison-table td:first-child::before {
    content: '✓';
    position: absolute;
    left: 0.75rem;
    color: #2e7d32;
    font-weight: bold;
    font-size: 1rem;
}

.comparison-table td:last-child {
    position: relative;
    padding-left: 2rem;
}

.comparison-table td:last-child::before {
    content: '✗';
    position: absolute;
    left: 0.75rem;
    color: #c62828;
    font-weight: bold;
    font-size: 1rem;
}

/* === VERDICT BOX === */
.verdict-box {
    background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    color: #fff;
}

.verdict-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verdict-box h3::before {
    content: '⭐';
}

.verdict-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.verdict-rating {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
}

.rating-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-label {
    font-size: 0.85rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verdict-text {
    color: #ccc;
    line-height: 1.7;
}

.verdict-text p {
    margin-bottom: 1rem;
}

.verdict-text strong {
    color: var(--accent-primary);
}

/* === AMAZON CTA SECTION === */
.amazon-cta-section {
    margin: 2rem 0;
}

.cta-container {
    background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
}

.cta-badge {
    margin-bottom: 1rem;
}

.cta-badge span {
    display: inline-block;
    background: var(--accent-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    text-transform: uppercase;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.cta-description {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.cta-actions {
    margin-top: 1.5rem;
}

/* === CONTENT SECTIONS === */
.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-primary);
}

.content-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.content-intro p {
    margin-bottom: 1rem;
}

/* === RESPONSIVE === */
@media (max-width: 1000px) {
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        order: -1;
    }
    
    .toc-widget {
        position: static;
    }
    
    .product-info-box {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.4rem;
    }
    
    .pros-cons-box {
        grid-template-columns: 1fr;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .verdict-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .verdict-rating {
        justify-self: center;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
    
    .footer-grid,
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .article-main {
        padding: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table td:first-child::before,
    .comparison-table td:last-child::before {
        display: none;
    }
    
    .comparison-table td {
        padding-left: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* === UTILITY === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: #000;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* === COMPARISON PAGES === */
.comparison-hero {
    background: var(--bg-card);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}

.comparison-badge {
    display: inline-block;
    background: var(--accent-primary);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.product-showcase {
    padding: 2rem 0;
    background: var(--bg-page);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-showcase .product-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    text-align: center;
}

.product-showcase .product-card.winner {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.product-showcase .product-image {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.product-brand {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 1rem;
}

.product-rating {
    margin-bottom: 0.5rem;
}

.rating-stars {
    color: #ffa41c;
}

.rating-value {
    font-weight: 600;
    margin-left: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-price);
    margin-bottom: 1rem;
}

.product-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-features li::before {
    content: "✓ ";
    color: var(--accent-primary);
}

/* === TUTORIAL PAGES === */
.tutorial-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.tutorial-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0 0 1rem;
}

.hero-specs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spec-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.tutorial-header {
    background: var(--bg-card);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.tutorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tutorial-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tutorial-badge {
    background: var(--bg-gray);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Responsive for comparisons */
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .tutorial-hero {
        height: 200px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
}

/* === LANGUAGE SWITCHER === */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.language-switcher a.active {
    background: var(--accent-primary);
    color: #000;
}

.language-switcher a:not(.active) {
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
}

.language-switcher a:not(.active):hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-primary);
}

.language-switcher .flag {
    font-size: 1rem;
}

/* Header with language switcher */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .language-switcher a span:not(.flag) {
        display: none;
    }
    
    .language-switcher a {
        padding: 0.35rem 0.5rem;
    }
}
