/* ═══════════════════════════════════════════════════════════
   TECH BHARAT — MAIN STYLESHEET
   Editorial News Design — Clean, Trustworthy, Professional
   ═══════════════════════════════════════════════════════════ */

:root {
  --red: #d32f2f;
  --red-dark: #b71c1c;
  --red-light: #ffebee;
  --ink: #1a1a1a;
  --ink-light: #3d3d3d;
  --gray-1: #5f6368;
  --gray-2: #9aa0a6;
  --gray-3: #dadce0;
  --gray-4: #f1f3f4;
  --gray-5: #f8f9fa;
  --white: #ffffff;
  --accent: #1565c0;
  --accent-light: #e8f0fe;
  --green: #2e7d32;
  --orange: #e65100;
  --gold: #f9a825;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 8px;
  --radius-sm: 4px;
  --max-w: 1200px;
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-4); }
::-webkit-scrollbar-thumb { background: var(--gray-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-2); }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--red); color: #fff; padding: 8px 16px; z-index: 9999; }
.skip-link:focus { top: 0; }

/* ─── CONTAINER ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ─── SKELETON LOADERS ───────────────────────────────────── */
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
.skel-img, .skel-line { background: linear-gradient(90deg, var(--gray-4) 25%, var(--gray-3) 50%, var(--gray-4) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
.skel-img { width: 100%; padding-top: 56.25%; border-radius: var(--radius); }
.skel-text { padding: 12px 0; }
.skel-line { height: 14px; margin-bottom: 8px; }
.skel-line.sm { width: 40%; }
.skel-line.md { width: 70%; }
.skel-line.lg { width: 100%; }

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar { background: var(--ink); color: rgba(255,255,255,.7); font-size: 12px; padding: 6px 0; }
.topbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.topbar-right { display: flex; gap: 16px; }
.topbar-right a { color: rgba(255,255,255,.7); transition: color .2s; }
.topbar-right a:hover { color: #fff; }
.tb-sep { opacity: .3; margin: 0 8px; }

/* ─── SITE HEADER ────────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 3px solid var(--red); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-md); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; height: 68px; }
.logo-link { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 18px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); letter-spacing: -1px; flex-shrink: 0; }
.logo-name { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--ink); line-height: 1; display: block; }
.logo-tagline { font-size: 10px; color: var(--gray-1); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 2px; }
.main-nav { display: flex; gap: 4px; align-items: center; justify-content: center; flex-wrap: nowrap; }
.nav-link { font-size: 14px; font-weight: 600; color: var(--ink-light); padding: 6px 14px; border-radius: var(--radius-sm); transition: all .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-light); }
.header-right { display: flex; align-items: center; gap: 10px; }
.search-btn { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--gray-4); color: var(--gray-1); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.search-btn:hover { background: var(--red-light); color: var(--red); }
.mobile-menu-btn { display: none; font-size: 22px; color: var(--ink); padding: 4px; }
.search-bar { border-top: 1px solid var(--gray-3); padding: 10px 0; }
.search-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: flex; gap: 10px; }
.search-inner input { flex: 1; padding: 10px 16px; border: 2px solid var(--gray-3); border-radius: var(--radius); font-size: 15px; outline: none; transition: border .2s; }
.search-inner input:focus { border-color: var(--red); }
.search-inner button { padding: 10px 24px; background: var(--red); color: #fff; border-radius: var(--radius); font-weight: 600; font-size: 14px; transition: background .2s; }
.search-inner button:hover { background: var(--red-dark); }

/* ─── TICKER ─────────────────────────────────────────────── */
.ticker-wrap { background: var(--red); color: #fff; display: flex; overflow: hidden; height: 38px; align-items: center; }
.ticker-label { background: var(--red-dark); padding: 0 16px; font-size: 12px; font-weight: 700; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; height: 100%; display: flex; align-items: center; flex-shrink: 0; }
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-content { display: flex; animation: tickerAnim 60s linear infinite; white-space: nowrap; }
.ticker-content:hover { animation-play-state: paused; }
@keyframes tickerAnim { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }
.tick-item { font-size: 13px; font-weight: 500; padding: 0 40px; display: inline-flex; align-items: center; gap: 6px; }
.tick-item::before { content: "●"; font-size: 8px; opacity: .7; }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero-section { background: var(--gray-5); border-bottom: 1px solid var(--gray-3); padding: 24px 0; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 380px; gap: 24px; }
.hero-featured { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.hero-featured-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-featured-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); padding: 40px 28px 28px; color: #fff; }
.hero-badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-family: var(--font-body); }
.hero-title { font-family: var(--font-head); font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 10px; color: #fff; }
.hero-title a { color: #fff; }
.hero-title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.hero-meta { font-size: 12px; color: rgba(255,255,255,.75); display: flex; gap: 12px; align-items: center; }
.hero-sidebar { display: flex; flex-direction: column; gap: 12px; }
.hero-sidebar-item { background: var(--white); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-columns: 120px 1fr; box-shadow: var(--shadow-sm); transition: transform .2s; }
.hero-sidebar-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hsi-img { height: 100px; object-fit: cover; width: 100%; }
.hsi-text { padding: 10px 12px; }
.hsi-badge { font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.hsi-title { font-family: var(--font-head); font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--ink); margin-bottom: 4px; }
.hsi-title a:hover { color: var(--red); }
.hsi-meta { font-size: 11px; color: var(--gray-1); }
.hero-skeleton { padding: 20px; }

/* ─── CATEGORY TABS ──────────────────────────────────────── */
.category-section { border-bottom: 1px solid var(--gray-3); background: var(--white); position: sticky; top: 71px; z-index: 90; }
.cat-tabs { display: flex; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { font-size: 14px; font-weight: 600; padding: 14px 20px; white-space: nowrap; color: var(--gray-1); border-bottom: 3px solid transparent; transition: all .2s; background: none; }
.cat-tab:hover { color: var(--red); }
.cat-tab.active { color: var(--red); border-bottom-color: var(--red); }

/* ─── MAIN GRID ──────────────────────────────────────────── */
.main-grid-wrap { padding: 32px 0; }
.main-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.articles-col {}
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── ARTICLE CARD ───────────────────────────────────────── */
.article-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-3); transition: all .25s; }
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img-wrap { position: relative; overflow: hidden; }
.card-img { width: 100%; height: 180px; object-fit: cover; transition: transform .3s; }
.article-card:hover .card-img { transform: scale(1.04); }
.card-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; letter-spacing: .5px; }
.cat-badge-review { background: var(--accent); }
.cat-badge-comparison { background: #6a1b9a; }
.cat-badge-update { background: var(--orange); }
.cat-badge-guide { background: var(--green); }
.card-body { padding: 14px; }
.card-brand { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; }
.card-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-title a:hover { color: var(--red); }
.card-excerpt { font-size: 13px; color: var(--gray-1); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--gray-2); padding-top: 10px; border-top: 1px solid var(--gray-4); }
.card-author { font-weight: 600; color: var(--gray-1); }
.card-time { }
.skeleton-card { pointer-events: none; }

/* ─── LOAD MORE ──────────────────────────────────────────── */
.load-more-wrap { text-align: center; margin-top: 28px; }
.load-more-btn { padding: 12px 40px; background: var(--white); border: 2px solid var(--red); color: var(--red); border-radius: var(--radius); font-size: 15px; font-weight: 700; transition: all .2s; }
.load-more-btn:hover { background: var(--red); color: #fff; }

/* ─── SIDEBAR ────────────────────────────────────────────── */
.sidebar-col {}
.sidebar-widget { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-3); padding: 18px; margin-bottom: 20px; }
.widget-title { font-family: var(--font-head); font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.trending-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-4); }
.trending-item:last-child { border-bottom: none; }
.trending-num { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: var(--gray-3); line-height: 1; flex-shrink: 0; width: 28px; }
.trending-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.trending-title a:hover { color: var(--red); }
.trending-brand { font-size: 11px; color: var(--gray-2); margin-top: 2px; }
.price-buckets { display: flex; flex-direction: column; gap: 6px; }
.price-bucket { display: block; padding: 10px 14px; background: var(--gray-5); border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; color: var(--ink); transition: all .2s; border: 1px solid var(--gray-3); }
.price-bucket:hover { background: var(--red-light); color: var(--red); border-color: var(--red); }
.mini-review-item { display: grid; grid-template-columns: 72px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-4); }
.mini-review-item:last-child { border-bottom: none; }
.mini-review-img { height: 54px; object-fit: cover; border-radius: var(--radius-sm); }
.mini-review-title { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.mini-review-title a:hover { color: var(--red); }
.mini-review-rating { font-size: 12px; color: var(--gold); margin-top: 3px; }
.newsletter-widget { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; }
.newsletter-widget .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.newsletter-widget p { font-size: 13px; color: rgba(255,255,255,.85); margin-bottom: 12px; }
.newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.newsletter-form input { padding: 10px 14px; border-radius: var(--radius-sm); border: none; font-size: 14px; width: 100%; }
.newsletter-form button { padding: 10px; background: var(--ink); color: #fff; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; transition: background .2s; }
.newsletter-form button:hover { background: #333; }

/* ─── COMPARE STRIP ──────────────────────────────────────── */
.compare-strip { background: var(--gray-5); padding: 32px 0; border-top: 1px solid var(--gray-3); }
.section-title { font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 20px; color: var(--ink); }
.compare-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.compare-card { background: var(--white); border-radius: var(--radius); padding: 16px; border: 1px solid var(--gray-3); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; transition: all .2s; }
.compare-card:hover { box-shadow: var(--shadow-md); border-color: var(--red); }
.cc-vs { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--red); flex-shrink: 0; }
.cc-text { }
.cc-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.cc-title a:hover { color: var(--red); }
.cc-meta { font-size: 11px; color: var(--gray-2); margin-top: 3px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: 40px 0 0; margin-top: 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.footer-top { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo .logo-mark { background: var(--red); color: #fff; width: 38px; height: 38px; font-family: var(--font-head); font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.footer-logo-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.social-link { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,.1); border-radius: var(--radius-sm); font-size: 13px; color: rgba(255,255,255,.8); transition: all .2s; }
.social-link:hover { background: var(--red); color: #fff; }
.footer-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-note { margin-top: 6px !important; }

/* ─── MOBILE NAV OVERLAY ─────────────────────────────────── */
.mobile-nav-overlay { position: fixed; inset: 0; background: var(--white); z-index: 200; padding: 20px; overflow-y: auto; }
.mobile-nav-inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-close { align-self: flex-end; font-size: 24px; padding: 8px; color: var(--gray-1); margin-bottom: 16px; }
.mobile-nav-inner a { font-size: 18px; font-weight: 600; padding: 14px 10px; border-bottom: 1px solid var(--gray-4); color: var(--ink); }
.mobile-nav-inner hr { border: none; border-top: 1px solid var(--gray-3); margin: 8px 0; }

/* ─── ARTICLE PAGE ───────────────────────────────────────── */
.article-page { max-width: 860px; margin: 32px auto; padding: 0 20px 60px; }
.article-breadcrumb { font-size: 13px; color: var(--gray-1); margin-bottom: 16px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--red); }
.article-breadcrumb span { color: var(--gray-2); }
.article-cat-badge { display: inline-block; background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.article-h1 { font-family: var(--font-head); font-size: clamp(24px, 4vw, 36px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; color: var(--ink); }
.article-meta-bar { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--gray-3); border-bottom: 1px solid var(--gray-3); margin-bottom: 24px; font-size: 13px; color: var(--gray-1); flex-wrap: wrap; }
.author-avatar-sm { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-byline { font-weight: 700; color: var(--ink); font-size: 14px; }
.author-byline a { color: var(--red); }
.article-time { font-size: 12px; }
.read-time { font-size: 12px; color: var(--gray-2); }
.article-featured-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.article-featured-img + figcaption { text-align: center; font-size: 12px; color: var(--gray-1); margin-top: -18px; margin-bottom: 24px; }
.highlight-box { background: var(--gray-5); border-left: 4px solid var(--red); border-radius: var(--radius); padding: 18px 22px; margin: 0 0 28px; }
.highlight-box h3 { font-size: 15px; font-weight: 700; color: var(--red); margin-bottom: 12px; }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.hl-item { font-size: 13px; color: var(--ink-light); padding: 7px 12px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-3); }
.hl-item strong { color: var(--ink); display: block; font-size: 12px; color: var(--gray-1); }
.article-body { font-size: 16px; line-height: 1.8; color: var(--ink-light); }
.article-body h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--ink); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-3); }
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.article-body figure { margin: 24px 0; }
.article-body figure img { border-radius: var(--radius); width: 100%; }
.article-body figcaption { font-size: 12px; color: var(--gray-1); text-align: center; margin-top: 6px; }
.specs-table-wrap { overflow-x: auto; margin: 16px 0 28px; border-radius: var(--radius); border: 1px solid var(--gray-3); }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table th { background: var(--gray-5); color: var(--ink); padding: 11px 16px; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--gray-3); }
.specs-table td { padding: 10px 16px; border-bottom: 1px solid var(--gray-4); color: var(--ink-light); vertical-align: top; }
.specs-table td:first-child { color: var(--gray-1); font-weight: 600; font-size: 13px; width: 40%; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--gray-5); }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 28px; }
@media(max-width: 500px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-box { background: #e8f5e9; border: 1px solid #c8e6c9; border-left: 4px solid var(--green); border-radius: var(--radius); padding: 16px; }
.cons-box { background: #ffebee; border: 1px solid #ffcdd2; border-left: 4px solid var(--red); border-radius: var(--radius); padding: 16px; }
.pros-box h4 { color: var(--green); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.cons-box h4 { color: var(--red); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li, .cons-box li { font-size: 14px; color: var(--ink-light); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.pros-box li:last-child, .cons-box li:last-child { border-bottom: none; }
.verdict-box { background: var(--red); color: #fff; border-radius: var(--radius); padding: 28px; margin: 28px 0; }
.verdict-box h2 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.verdict-box p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 10px; }
.rating-display { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rating-big { font-family: var(--font-head); font-size: 56px; font-weight: 900; line-height: 1; }
.rating-info { display: flex; flex-direction: column; }
.rating-stars { font-size: 22px; }
.rating-label { font-size: 13px; opacity: .85; margin-top: 4px; }
.buy-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.btn-amazon { background: #ff9900; color: #fff; padding: 11px 22px; border-radius: var(--radius); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: background .2s; }
.btn-amazon:hover { background: #e68a00; }
.btn-flipkart { background: #2874f0; color: #fff; padding: 11px 22px; border-radius: var(--radius); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: background .2s; }
.btn-flipkart:hover { background: #1a65d6; }
.faq-section { margin: 32px 0; }
.faq-section h2 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 16px; color: var(--ink); }
.faq-item { border: 1px solid var(--gray-3); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 14px 18px; font-weight: 700; font-size: 15px; color: var(--ink); background: var(--gray-5); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--red); }
.faq-a { padding: 14px 18px; font-size: 14px; color: var(--ink-light); line-height: 1.7; border-top: 1px solid var(--gray-3); display: none; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-item.open .faq-a { display: block; }
.author-box { display: flex; gap: 16px; background: var(--gray-5); border-radius: var(--radius); padding: 20px; margin-top: 36px; border: 1px solid var(--gray-3); }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.author-box p { font-size: 13px; color: var(--gray-1); line-height: 1.6; }

/* ─── LEGAL PAGES ────────────────────────────────────────── */
.legal-page { max-width: 760px; margin: 36px auto; padding: 0 20px 60px; }
.legal-page h1 { font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.legal-page .last-updated { font-size: 13px; color: var(--gray-1); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-3); }
.legal-page h2 { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin: 28px 0 12px; }
.legal-page p { font-size: 15px; color: var(--ink-light); line-height: 1.8; margin-bottom: 14px; }
.legal-page ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-page ul li { font-size: 15px; color: var(--ink-light); line-height: 1.8; margin-bottom: 6px; }
.legal-page a { color: var(--red); text-decoration: underline; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-form-wrap { background: var(--gray-5); border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-3); margin: 20px 0; }
.form-row { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.form-control { width: 100%; padding: 11px 14px; border: 2px solid var(--gray-3); border-radius: var(--radius-sm); font-size: 15px; transition: border .2s; outline: none; }
.form-control:focus { border-color: var(--red); }
.form-submit { padding: 12px 32px; background: var(--red); color: #fff; border-radius: var(--radius); font-size: 16px; font-weight: 700; transition: background .2s; }
.form-submit:hover { background: var(--red-dark); }

/* ─── ADMIN BADGE (floating) ─────────────────────────────── */
.admin-float-btn { position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-lg); z-index: 500; display: flex; align-items: center; gap: 8px; transition: all .2s; text-decoration: none; }
.admin-float-btn:hover { background: var(--red); transform: translateY(-2px); }

/* ─── TOAST ──────────────────────────────────────────────── */
#toastContainer { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast-msg { background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); animation: toastIn .3s ease; white-space: nowrap; }
.toast-success { background: var(--green); }
.toast-error { background: var(--red); }
@keyframes toastIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr 300px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .hero-featured-img { height: 280px; }
  .hero-title { font-size: 20px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .articles-grid { grid-template-columns: 1fr; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-logo .logo-tagline { display: none; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SKELETON SCREENS ─────────────────────────── */
.skel-block,.skel-line,.skel-card,.skel-card-full{
  background:linear-gradient(90deg,#f1f3f4 25%,#e8eaed 50%,#f1f3f4 75%);
  background-size:200%;animation:shimmer 1.5s infinite;border-radius:6px}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.skel-line.lg{height:20px;margin-bottom:10px}
.skel-line.md{height:16px;width:70%;margin-bottom:10px}
.skel-line.sm{height:14px;width:50%}
.skel-card{height:200px;border-radius:10px;margin-bottom:12px}
.skel-card-full{height:280px;border-radius:10px;margin-bottom:16px}

/* ── CONTAINER / GRID FIXES ────────────────────── */
.hero-grid{display:grid;grid-template-columns:1fr 360px;gap:20px;align-items:start}
.hero-featured-col,.hero-sidebar-col{min-height:200px}
.hero-featured-img{width:100%;border-radius:10px;object-fit:cover;max-height:440px;display:block}
.hero-featured-overlay{background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.4) 60%,transparent 100%);padding:24px;border-radius:0 0 10px 10px;margin-top:-6px}
.hero-badge{display:inline-block;padding:3px 10px;border-radius:4px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#fff;margin-bottom:10px}
.hero-title{font-family:'Playfair Display',serif;font-size:22px;font-weight:800;color:#fff;line-height:1.3;margin-bottom:10px}
.hero-meta{font-size:12px;color:rgba(255,255,255,.75);display:flex;gap:8px;flex-wrap:wrap}

/* ── CAT TABS ──────────────────────────────────── */
.cat-tabs-wrap{background:#fff;border-bottom:2px solid #f1f3f4;position:sticky;top:0;z-index:50}
.cat-tabs{display:flex;gap:0;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.cat-tabs::-webkit-scrollbar{display:none}
.cat-tab{padding:14px 20px;font-size:13px;font-weight:600;color:#5f6368;background:none;border:none;border-bottom:3px solid transparent;cursor:pointer;white-space:nowrap;transition:all .2s;font-family:inherit}
.cat-tab:hover{color:#d32f2f;background:#fef7f7}
.cat-tab.active{color:#d32f2f;border-bottom-color:#d32f2f}

/* ── MAIN GRID ──────────────────────────────────── */
.main-grid-wrap{padding:28px 0}
.main-grid{display:grid;grid-template-columns:1fr 320px;gap:28px;align-items:start}
.articles-col{}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

/* ── ARTICLE CARD ───────────────────────────────── */
.article-card{background:#fff;border-radius:10px;overflow:hidden;border:1px solid #e8eaed;transition:all .25s}
.article-card:hover{transform:translateY(-4px);box-shadow:0 8px 32px rgba(0,0,0,.1);border-color:#d32f2f}
.article-card-img{width:100%;height:180px;object-fit:cover;display:block;transition:transform .3s}
.article-card:hover .article-card-img{transform:scale(1.04)}
.article-card-body{padding:14px}
.card-badge{position:absolute;top:10px;left:10px;padding:3px 9px;border-radius:4px;font-size:10px;font-weight:700;text-transform:uppercase;color:#fff}
.card-brand{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#d32f2f;margin-bottom:5px}
.card-title{font-family:'Playfair Display',serif;font-size:15px;font-weight:700;line-height:1.4;margin-bottom:8px;color:#1a1a1a;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card-excerpt{font-size:12px;color:#5f6368;line-height:1.5;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card-meta{display:flex;align-items:center;justify-content:space-between;font-size:11px;color:#9aa0a6}

/* ── SIDEBAR ─────────────────────────────────────── */
.sidebar-col{display:flex;flex-direction:column;gap:20px}
.sidebar-widget{background:#fff;border:1px solid #e8eaed;border-radius:10px;padding:18px}
.widget-title{font-family:'Playfair Display',serif;font-size:16px;font-weight:800;margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid #f1f3f4;color:#1a1a1a}
.price-buckets{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.price-bucket{display:block;padding:10px 12px;background:#f8f9fa;border:1px solid #e8eaed;border-radius:8px;font-size:12px;font-weight:600;color:#3c4043;text-align:center;text-decoration:none;transition:all .2s}
.price-bucket:hover{background:#d32f2f;color:#fff;border-color:#d32f2f}
.newsletter-form{display:flex;flex-direction:column;gap:8px}
.nl-input{padding:9px 12px;border:1px solid #dadce0;border-radius:6px;font-size:13px;outline:none;font-family:inherit}
.nl-input:focus{border-color:#d32f2f}
.nl-btn{padding:10px;background:#d32f2f;color:#fff;border:none;border-radius:6px;font-size:13px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s}
.nl-btn:hover{background:#b71c1c}
.load-more-wrap{text-align:center;padding:24px 0}
.load-more-btn{padding:13px 36px;background:#fff;border:2px solid #d32f2f;color:#d32f2f;border-radius:8px;font-size:14px;font-weight:700;cursor:pointer;font-family:inherit;transition:all .2s}
.load-more-btn:hover{background:#d32f2f;color:#fff}

/* ── TOAST ───────────────────────────────────────── */
#toastContainer{position:fixed;bottom:20px;right:20px;z-index:9999;display:flex;flex-direction:column;gap:8px}
.toast{padding:12px 18px;border-radius:8px;font-size:13px;font-weight:600;color:#fff;box-shadow:0 4px 16px rgba(0,0,0,.2);animation:toastIn .25s ease;max-width:320px}
.toast-success{background:#2e7d32}.toast-error{background:#c62828}.toast-info{background:#1565c0}
@keyframes toastIn{from{transform:translateX(100%);opacity:0}to{transform:translateX(0);opacity:1}}

/* ── RESPONSIVE ─────────────────────────────────── */
@media(max-width:1100px){.articles-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}.hero-sidebar-col{display:none}
  .main-grid{grid-template-columns:1fr}.sidebar-col{display:none}
  .articles-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .articles-grid{grid-template-columns:1fr}
  .cat-tab{padding:12px 14px;font-size:12px}
}
