/* LaserBase — CSS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #ea580c;
  --accent-dark: #c2410c;
  --text: #1a1a1a;
  --text-light: #555;
  --bg: #fff;
  --bg-alt: #fafaf9;
  --border: #e5e7eb;
  --radius: 8px;
  --max-width: 900px;
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { background: var(--text); padding: 16px 0; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.site-logo { color: #fff; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; }
.site-logo span { color: var(--accent); }
.site-nav ul { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.site-nav a { color: #ccc; font-size: 0.95rem; transition: color 0.2s; }
.site-nav a:hover { color: #fff; text-decoration: none; }

/* Hero */
.hero { background: var(--text); color: #fff; padding: 56px 0 48px; border-bottom: 3px solid var(--accent); }
.hero h1 { font-size: 2.1rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.hero-sub { font-size: 1.1rem; color: #aaa; max-width: 680px; }

/* Breadcrumb */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 10px 0; font-size: 0.875rem; color: var(--text-light); }
.breadcrumb ol { list-style: none; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb li + li::before { content: "›"; color: #bbb; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); text-decoration: none; }

/* Hub sections */
.hub-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.hub-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.card { display: block; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: border-color 0.2s, box-shadow 0.2s; }
.card:hover { border-color: var(--accent); box-shadow: 0 2px 8px rgba(234,88,12,0.1); text-decoration: none; }
.card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* Article */
.content-article { padding: 48px 0 64px; }
.article-header { margin-bottom: 40px; }
.article-header h1 { font-size: 2rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.article-intro { font-size: 1.15rem; color: var(--text-light); line-height: 1.6; max-width: 720px; }
.content-article section { margin-bottom: 40px; }
.content-article h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.content-article h3 { font-size: 1.1rem; font-weight: 600; margin: 24px 0 10px; }
.content-article p { margin-bottom: 16px; }
.content-article ul, .content-article ol { margin: 0 0 16px 24px; }
.content-article li { margin-bottom: 6px; }

/* Comparison box */
.comparison-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.comparison-box h3 { font-size: 1rem; color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; font-weight: 600; margin-bottom: 12px; }

/* Winner badge */
.verdict { background: #fff7ed; border: 1px solid #fdba74; border-radius: var(--radius); padding: 16px 20px; margin: 24px 0; }
.verdict strong { color: var(--accent); }

/* Table */
table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.95rem; }
th { background: var(--text); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: var(--bg-alt); }
tr:hover td { background: #fff7ed; }

/* FAQ */
.faq-section { background: var(--bg-alt); border-radius: var(--radius); padding: 32px; margin: 40px 0; }
.faq-section h2 { font-size: 1.3rem; margin-bottom: 24px; border-bottom: none; }
.faq-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; margin-top: 0; }
.faq-item p { margin-bottom: 0; font-size: 0.95rem; }

/* Footer */
.site-footer { background: var(--text); color: #aaa; padding: 48px 0 24px; margin-top: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: #aaa; font-size: 0.875rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom { font-size: 0.8rem; color: #666; border-top: 1px solid #333; padding-top: 20px; }

/* Affiliate / Amazon CTA box — constrained to content column, centered */
.affiliate-box {
  width: calc(100% - 40px);
  max-width: calc(var(--max-width) - 40px);
  margin: 28px auto;
  background: #fff7ed;
  border: 1px solid #fdba74;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.affiliate-box strong { display: block; font-size: 1.05rem; color: var(--text); margin-bottom: 2px; }
.affiliate-box p { color: var(--text-light); }
.affiliate-btn {
  display: inline-block;
  margin-top: 4px;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
}
.affiliate-btn:hover { background: var(--accent-dark); color: #fff; text-decoration: none; }

@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .article-header h1 { font-size: 1.5rem; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
}
