
/* TechDealsGo — Custom Stylesheet v2.0 (July 2026) */
/* Matches existing Tailwind-based design exactly */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --blue-500:  #3b82f6;
  --blue-600:  #2563eb;
  --blue-700:  #1d4ed8;
  --orange-400:#fb923c;
  --orange-500:#f97316;
  --green-500: #22c55e;
  --yellow-400:#facc15;
  --white:     #ffffff;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

/* ── LAYOUT ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 4rem; max-width: 1280px;
  margin: 0 auto; padding: 0 1.5rem;
}
.navbar-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem;
  color: var(--slate-900);
}
.navbar-logo span { color: var(--blue-600); }
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Inline SVG logo — replaces .logo-img; v20260723 */
.logo-svg {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.navbar-links { display: flex; gap: 0.25rem; list-style: none; }
.navbar-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--slate-600);
  border-radius: 0.5rem;
  transition: all 0.15s;
}
.navbar-links a:hover, .navbar-links a.active {
  background: var(--slate-100); color: var(--slate-900);
}
.navbar-cta {
  background: var(--blue-600); color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
}
.navbar-cta:hover { background: var(--blue-700) !important; }
.navbar-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.navbar-burger span { width: 22px; height: 2px; background: var(--slate-700); display: block; transition: 0.3s; border-radius: 2px; }

/* ── HERO ── */
.hero {
  position: relative; width: 100%;
  min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--slate-950);
  color: white;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1600&auto=format&fit=crop&q=80');
  background-size: cover; background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 4rem 1.5rem;
  max-width: 800px; margin: 0 auto;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 999px; margin-bottom: 1.5rem;
}
.hero-pill::before { content: "●"; color: var(--green-500); font-size: 0.5rem; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--blue-500); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  max-width: 620px; margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem; font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s; cursor: pointer;
}
.btn-primary { background: var(--blue-600); color: white; }
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.4); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 2.5rem; }
.section-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--slate-900);
}
.section-divider {
  width: 3rem; height: 3px;
  background: var(--blue-600);
  border-radius: 9px; margin-top: 0.75rem;
}

/* ── PRODUCT GRID ── */
.product-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--slate-300) transparent;
}
.product-grid::-webkit-scrollbar { height: 6px; }
.product-grid::-webkit-scrollbar-track { background: transparent; }
.product-grid::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }
.product-grid::-webkit-scrollbar-thumb:hover { background: var(--slate-400); }

/* ── PRODUCT CARD ── */
.product-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-width: 300px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: all 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--blue-500);
}
.product-card-img {
  position: relative;
  overflow: visible;
  aspect-ratio: unset;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 195px;
  padding: 0.75rem;
}
.product-card-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 195px;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--blue-600); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.625rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.product-badge.new { background: var(--orange-500); }
.product-discount {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--orange-400); color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.625rem; border-radius: 999px;
}
.product-card-body {
  padding: 1.25rem;
  display: flex; flex-direction: column;
  flex: 1; gap: 0.75rem;
}
.product-card-brand {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate-400);
}
.product-card-title {
  font-size: 0.95rem; font-weight: 700;
  color: var(--slate-900); line-height: 1.35;
}
.product-card-rating {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
}
.stars { color: var(--yellow-400); letter-spacing: 2px; font-size: 0.9rem; }
.product-card-rating .votes { color: var(--slate-400); }
.product-card-price {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-top: auto;
}
.price-current {
  font-family: var(--font-mono);
  font-size: 1.3rem; font-weight: 700;
  color: var(--slate-900);
}
.price-list {
  font-family: var(--font-mono);
  font-size: 0.85rem; color: var(--slate-400);
  text-decoration: line-through;
}
.product-card-btn {
  display: block; width: 100%;
  background: var(--blue-600); color: white;
  padding: 0.7rem; text-align: center;
  font-size: 0.875rem; font-weight: 600;
  border-radius: 0.625rem;
  transition: all 0.2s; margin-top: 0.5rem;
}
.product-card-btn:hover {
  background: var(--blue-700);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.product-card-btn.amazon {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

/* ── CATEGORY GRID ── */
.category-section { background: var(--slate-50); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.category-card {
  background: white; border: 1px solid var(--slate-200);
  border-radius: 1rem; padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.2s; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.75rem;
}
.category-card:hover {
  border-color: var(--blue-500);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
  transform: translateY(-2px);
}
.category-icon { font-size: 2rem; }
.category-name {
  font-size: 0.85rem; font-weight: 600;
  color: var(--slate-700);
}
.category-count { font-size: 0.75rem; color: var(--slate-400); }

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--blue-700) 100%);
  color: white; padding: 4rem 0;
}
.newsletter-inner {
  max-width: 640px; margin: 0 auto;
  text-align: center; padding: 0 1.5rem;
}
.newsletter-inner h2 {
  font-size: 1.75rem; font-weight: 700; margin-bottom: 0.75rem;
}
.newsletter-inner p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.newsletter-form input {
  flex: 1; min-width: 240px;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white;
  font-size: 0.9rem; font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.newsletter-form button {
  background: var(--blue-500); color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.625rem; font-weight: 600;
  font-size: 0.9rem; transition: 0.2s;
}
.newsletter-form button:hover { background: var(--blue-600); }

/* ── FOOTER ── */
.footer {
  background: var(--slate-950);
  color: var(--slate-400); padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: white; margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--blue-500); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: white; font-size: 0.85rem;
  font-weight: 600; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: var(--slate-400); transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { color: var(--slate-500); }
.footer-legal a:hover { color: var(--slate-300); }

/* ── PRODUCT PAGE ── */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--slate-500);
  padding: 1rem 0; flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-600); }
.breadcrumb span { color: var(--slate-400); }

.product-page { padding: 2rem 0 4rem; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  margin-bottom: 3rem;
}
.product-lab-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--slate-100); border: 1px solid var(--slate-200);
  border-radius: 0.625rem; padding: 0.5rem 1rem;
  font-size: 0.8rem; margin-bottom: 1.25rem;
}
.lab-tag {
  background: var(--blue-600); color: white;
  font-size: 0.65rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.product-main-img {
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 280px;
  overflow: visible;
  aspect-ratio: unset;
}
.product-main-img img { width: auto; max-width: 100%; height: auto; max-height: 440px; object-fit: contain; display: block; margin: 0 auto; }

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--slate-900);
  margin-bottom: 1rem;
}
.product-rating-row {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.product-score {
  font-size: 1.4rem; font-weight: 800;
  color: var(--slate-900); font-family: var(--font-display);
}
.product-votes { font-size: 0.85rem; color: var(--slate-500); }
.product-desc {
  color: var(--slate-600); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.price-box {
  background: var(--slate-50); border: 1px solid var(--slate-200);
  border-radius: 1rem; padding: 1.5rem; margin-bottom: 1.5rem;
}
.price-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 0.875rem;
}
.price-label { font-size: 0.85rem; color: var(--slate-500); }
.price-value {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 1.75rem; color: var(--slate-900);
}
.price-list-row {
  display: flex; justify-content: space-between;
  align-items: center; padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--slate-200); margin-bottom: 0.875rem;
}
.price-list-value {
  font-family: var(--font-mono); color: var(--slate-400);
  text-decoration: line-through;
}
.stock-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #dcfce7; color: #166534;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.25rem 0.625rem; border-radius: 999px;
}
.stock-badge::before { content: "●"; font-size: 0.5rem; }
.eeat-row { display: flex; justify-content: space-between; align-items: center; }
.eeat-label { font-size: 0.8rem; color: var(--slate-500); }
.eeat-value {
  font-size: 0.8rem; font-weight: 700;
  color: var(--blue-600);
}
.buy-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 0.625rem; width: 100%;
  background: var(--orange-500); color: white;
  padding: 1rem; border-radius: 0.75rem;
  font-size: 1rem; font-weight: 700;
  transition: all 0.2s; margin-bottom: 1rem;
}
.buy-btn:hover {
  background: #ea6a0a;
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
  transform: translateY(-1px);
}
.affiliate-note {
  font-size: 0.72rem; color: var(--slate-500);
  text-align: center; line-height: 1.5;
}
.affiliate-tag { font-weight: 600; color: var(--slate-700); }

/* ── PROS/CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros-box, .cons-box { background: var(--slate-50); border-radius: 1rem; padding: 1.5rem; }
.pros-box { border-left: 4px solid var(--green-500); }
.cons-box { border-left: 4px solid #f87171; }
.pros-box h3, .cons-box h3 {
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.pros-box h3 { color: #166534; }
.cons-box h3 { color: #991b1b; }
.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.pros-box li::before { content: "✓ "; color: var(--green-500); 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(--slate-700); line-height: 1.5; }

/* ── RATINGS BREAKDOWN ── */
.ratings-breakdown { background: var(--slate-50); border-radius: 1rem; padding: 1.5rem; margin: 2rem 0; }
.ratings-breakdown h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.rating-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.875rem; }
.rating-name { flex: 0 0 220px; font-size: 0.85rem; color: var(--slate-700); }
.rating-bar-wrap { flex: 1; background: var(--slate-200); border-radius: 999px; height: 8px; }
.rating-bar { background: var(--blue-600); height: 8px; border-radius: 999px; }
.rating-score {
  flex: 0 0 36px; font-family: var(--font-mono);
  font-size: 0.85rem; font-weight: 700;
  color: var(--slate-800); text-align: right;
}
.total-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 1rem;
  padding-top: 1rem; border-top: 1px solid var(--slate-200);
}
.total-label { font-weight: 700; color: var(--slate-900); }
.total-value {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--blue-600);
}

/* ── SPECS TABLE ── */
.specs-section { margin: 2rem 0; }
.specs-section h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--slate-50); }
.specs-table td {
  padding: 0.75rem 1rem; font-size: 0.875rem;
  border-bottom: 1px solid var(--slate-200);
}
.specs-table td:first-child {
  font-weight: 600; color: var(--slate-600);
  width: 40%;
}
.specs-table td:last-child { color: var(--slate-800); font-family: var(--font-mono); font-size: 0.8rem; }

/* ── EDITORIAL BOX ── */
.editorial-box {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: white; border-radius: 1rem; padding: 1.75rem;
  margin: 2rem 0; position: relative; overflow: hidden;
}
.editorial-box::before {
  content: '"';
  position: absolute; top: -0.5rem; left: 1rem;
  font-size: 6rem; color: var(--blue-600);
  font-family: serif; opacity: 0.3;
}
.editorial-box h2 {
  font-size: 0.75rem; color: var(--blue-400);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.editorial-box p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 1rem; }
.editorial-author { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.editorial-author strong { color: white; }

/* ── RELATED PRODUCTS ── */
.related-section { margin-top: 3rem; }
.related-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--slate-200);
  padding: 1rem;
  gap: 0.25rem;
}
.mobile-nav a {
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  color: var(--slate-700); font-weight: 500;
}
.mobile-nav a:hover { background: var(--slate-100); }
.mobile-nav.open { display: flex; }

/* ── TRUST BADGES ── */
.trust-bar {
  background: var(--slate-900); color: rgba(255,255,255,0.75);
  font-size: 0.8rem; padding: 0.75rem 0;
  border-top: 1px solid var(--slate-800);
}
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; justify-content: center;
  align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .product-grid { gap: 1.25rem; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-burger { display: flex; }
  .hero { min-height: 420px; }
  .hero h1 { font-size: 1.75rem; }
  .product-grid { gap: 1rem; }
  .product-card { min-width: 260px; max-width: 280px; }
  .product-layout { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .rating-name { flex: 0 0 140px; font-size: 0.78rem; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; width: 100%; }
  .newsletter-form button { width: 100%; }
}

/* ── COMPARISON TABLE ── */
.comparison-wrapper { overflow-x: auto; margin: 2rem 0; border-radius: 0.75rem; border: 1px solid var(--slate-200); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table th { background: var(--slate-900); color: white; padding: 1rem; font-size: 0.85rem; font-weight: 600; text-align: center; position: sticky; top: 0; }
.comparison-table th:first-child { text-align: left; background: var(--slate-800); }
.comparison-table td { padding: 0.75rem 1rem; font-size: 0.85rem; text-align: center; border-bottom: 1px solid var(--slate-100); }
.comparison-table td:first-child { font-weight: 600; color: var(--slate-700); text-align: left; background: var(--slate-50); }
.comparison-table tr:hover td { background: rgba(59,130,246,0.04); }
.comparison-table .winner-cell { background: rgba(34,197,94,0.08) !important; font-weight: 700; }
.comparison-verdict { background: linear-gradient(135deg, var(--slate-900), var(--slate-800)); color: white; border-radius: 1rem; padding: 2rem; margin: 2rem 0; }
.comparison-verdict h3 { font-size: 1rem; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.comparison-verdict p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.85); }
