/* ── ARTICLE PAGE ─────────────────────────────────── */
.article-page { max-width: 1200px; margin: 0 auto; padding: 7rem 2rem 4rem; }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.82rem; margin-bottom: 2rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent-blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.article-header { margin-bottom: 2.5rem; }
.article-category-pill { display: inline-block; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.3); color: var(--accent-cyan); padding: 0.3rem 0.9rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.article-page h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; }
.article-lead { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; max-width: 780px; }

.article-meta-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.author-info { display: flex; align-items: center; gap: 1rem; }
.author-avatar-lg { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.author-name-lg { font-weight: 600; font-size: 0.95rem; }
.meta-details { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.2rem; }
.score-display { border: 1px solid; border-radius: 12px; padding: 0.8rem 1.2rem; text-align: center; min-width: 80px; }
.score-num { font-size: 2rem; font-weight: 900; font-family: 'Space Grotesk', sans-serif; }
.score-label-text { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: -0.2rem; }

/* ── VIDEO ── */
.video-section { margin-bottom: 2.5rem; }
.video-label { color: var(--text-muted); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.yt-after-video { display: flex; align-items: center; gap: 1rem; margin-top: 1rem; padding: 0.8rem 1rem; background: rgba(255,0,0,0.05); border: 1px solid rgba(255,0,0,0.15); border-radius: 8px; }
.yt-after-video span { color: var(--text-secondary); font-size: 0.88rem; }
.btn-yt-inline { display: inline-flex; align-items: center; gap: 0.5rem; background: #ff0000; color: white; padding: 0.5rem 1rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.82rem; white-space: nowrap; transition: opacity 0.2s; }
.btn-yt-inline:hover { opacity: 0.85; }

/* ── LAYOUT ── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }

/* ── VERDICT BOX ── */
.verdict-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; margin-bottom: 2rem; }
.verdict-header { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 1rem; }
.verdict-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-secondary); }
.verdict-text { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.amazon-btn-hero { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: linear-gradient(135deg, #ff9900, #e47911); color: white; padding: 1rem 2rem; border-radius: 10px; font-weight: 800; font-size: 1rem; text-decoration: none; box-shadow: 0 6px 20px rgba(255,153,0,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.amazon-btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,153,0,0.5); }

/* ── PROS/CONS ── */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2.5rem; }
.pros-box, .cons-box { border-radius: 12px; padding: 1.5rem; }
.pros-box { background: rgba(16,185,129,0.05); border: 1px solid rgba(16,185,129,0.2); }
.cons-box { background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.2); }
.pc-header { font-weight: 800; font-size: 0.9rem; margin-bottom: 1rem; }
.pros-box .pc-header { color: #10b981; }
.cons-box .pc-header { color: #f87171; }
.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pros-box li::before { content: '✓ '; color: #10b981; font-weight: 700; }
.cons-box li::before { content: '✗ '; color: #f87171; font-weight: 700; }
.pros-box li, .cons-box li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.4; }

/* ── ARTICLE BODY ── */
.article-body-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; margin: 2rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.article-body-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.98rem; }

.inline-amazon-cta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: rgba(255,153,0,0.05); border: 1px solid rgba(255,153,0,0.2); border-radius: 12px; padding: 1rem 1.5rem; margin: 1.5rem 0; flex-wrap: wrap; }
.iac-text { display: flex; flex-direction: column; gap: 0.3rem; }
.iac-price { color: #10b981; font-weight: 800; font-size: 1.1rem; }

.final-amazon-cta { display: flex; align-items: center; gap: 1.5rem; background: var(--bg-card); border: 2px solid rgba(255,153,0,0.3); border-radius: 16px; padding: 1.5rem; margin-top: 2.5rem; }
.fac-score { width: 80px; height: 80px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.fac-content { flex: 1; }
.fac-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }

/* ── SHARE ── */
.share-section { display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-section span { color: var(--text-muted); font-size: 0.85rem; }
.share-btn { padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: opacity 0.2s; }
.share-tw { background: #1a1a2e; color: white; border: 1px solid #333; }
.share-fb { background: #1877f2; color: white; }
.share-copy { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.share-btn:hover { opacity: 0.85; }

/* ── SIDEBAR ── */
.article-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 5rem; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.sw-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.8rem; }
.sw-desc { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 1rem; line-height: 1.5; }
.sidebar-form { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-form input { background: var(--bg-primary); border: 1px solid var(--border); color: var(--text-primary); padding: 0.7rem 0.9rem; border-radius: 6px; font-size: 0.85rem; outline: none; font-family: inherit; }
.sidebar-form input:focus { border-color: var(--accent-blue); }
.sidebar-form button { background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple)); color: white; border: none; padding: 0.7rem; border-radius: 6px; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: inherit; }
.btn-yt-sidebar { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.25); color: #f87171; padding: 0.6rem; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 0.82rem; transition: background 0.2s; }
.btn-yt-sidebar:hover { background: rgba(255,0,0,0.2); }
.score-bar-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem; }
.score-bar-label { font-size: 0.78rem; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.score-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 100px; transition: width 1s ease; }
.score-bar-num { font-size: 0.78rem; font-weight: 700; width: 26px; text-align: right; }
.quick-spec { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.quick-spec:last-of-type { border-bottom: none; }
.qs-label { color: var(--text-muted); }

/* ── RELATED ── */
.related-section { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.related-card { text-decoration: none; color: inherit; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-body { padding: 1rem; }
.related-title { font-size: 0.88rem; font-weight: 600; line-height: 1.4; }

/* ── HOMEPAGE ADDITIONS ── */
.btn-yt { display: inline-flex; align-items: center; gap: 0.6rem; border: 1px solid rgba(255,0,0,0.3); color: #f87171; padding: 0.9rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.92rem; background: rgba(255,0,0,0.05); transition: background 0.3s, border-color 0.3s; }
.btn-yt:hover { background: rgba(255,0,0,0.12); border-color: rgba(255,0,0,0.5); }
.article-actions { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.btn-read-more { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.3); color: var(--accent-cyan); padding: 0.55rem 1rem; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-decoration: none; transition: background 0.2s; flex: 1; justify-content: center; }
.btn-read-more:hover { background: rgba(14,165,233,0.18); }
.amazon-btn-small { display: inline-flex; align-items: center; gap: 0.4rem; background: linear-gradient(135deg, #ff9900, #e47911); color: white; padding: 0.55rem 1rem; border-radius: 6px; font-size: 0.8rem; font-weight: 700; text-decoration: none; flex: 1; justify-content: center; transition: opacity 0.2s; }
.amazon-btn-small:hover { opacity: 0.9; }
.yt-subscribe-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.btn-yt-large { display: inline-flex; align-items: center; gap: 0.7rem; background: #ff0000; color: white; padding: 0.9rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 800; font-size: 0.95rem; transition: opacity 0.2s, transform 0.2s; }
.btn-yt-large:hover { opacity: 0.9; transform: translateY(-1px); }
.yt-label { color: var(--text-muted); font-size: 0.82rem; }
.nl-divider { display: flex; align-items: center; gap: 1rem; color: var(--text-muted); font-size: 0.8rem; margin-bottom: 1.2rem; }
.nl-divider::before, .nl-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .related-grid { grid-template-columns: 1fr; }
  .final-amazon-cta { flex-direction: column; }
  .yt-subscribe-wrap { flex-direction: column; align-items: flex-start; }
}
