/* ============================================================
   CarInteriorHub.com — Main Stylesheet
   Version: 1.0 | June 2026
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; background: #F7F7F7; color: #1A1A1A; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── CSS VARIABLES ── */
:root {
  --brand:     #D84315;
  --brand-dk:  #BF360C;
  --brand-lt:  #FBE9E7;
  --accent:    #FF6D00;
  --dark:      #1A1A1A;
  --dark2:     #2C2C2C;
  --surface:   #F7F7F7;
  --card:      #FFFFFF;
  --border:    #E5E5E5;
  --txt:       #1A1A1A;
  --txt2:      #555555;
  --txt3:      #888888;
  --green:     #2E7D32;
  --blue:      #1565C0;
  --amber:     #E65100;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --max-w:     1200px;
  --transition: .2s ease;
}

/* ── UTILITIES ── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
.section    { padding: 32px 0; }
.section-sm { padding: 20px 0; }
.text-center { text-align: center; }
.text-brand  { color: var(--brand); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

/* ── TOP BAR ── */
.topbar { background: var(--dark); color: #fff; font-size: 12px; text-align: center; padding: 7px 16px; font-weight: 500; letter-spacing: .3px; }
.topbar strong { color: #FFD54F; }

/* ── TICKER ── */
.ticker { background: var(--brand); color: #fff; font-size: 12px; font-weight: 600; padding: 7px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-block; animation: ticker 35s linear infinite; padding-left: 100%; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ── NAV ── */
.site-nav { background: #fff; border-bottom: 2px solid var(--brand); position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 14px; padding: 10px 16px; }
.nav-logo { font-size: 22px; font-weight: 900; color: var(--brand); letter-spacing: -1px; white-space: nowrap; flex-shrink: 0; }
.nav-logo span { color: var(--accent); }
.nav-menu-wrap { flex: 1; min-width: 0; position: relative; }
.nav-menu { display: flex; gap: 2px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
.nav-menu::-webkit-scrollbar { display: none; }
.nav-menu-wrap::after { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 24px; background: linear-gradient(to right, transparent, #fff); pointer-events: none; }
.nav-menu a { font-size: 12.5px; font-weight: 600; color: var(--txt2); padding: 7px 11px; border-radius: 8px; white-space: nowrap; transition: var(--transition); }
.nav-menu a:hover, .nav-menu a.active { background: var(--brand); color: #fff; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-form { display: flex; border: 1.5px solid var(--border); border-radius: 24px; overflow: hidden; align-items: center; }
.search-form input { border: none; outline: none; padding: 7px 14px; font-size: 13px; width: 170px; background: transparent; color: var(--txt); }
.search-form button { background: var(--brand); color: #fff; border: none; padding: 8px 16px; font-size: 13px; font-weight: 700; transition: var(--transition); }
.search-form button:hover { background: var(--brand-dk); }
.nav-wa { background: #25D366; color: #fff; border: none; border-radius: 50%; width: 36px; height: 36px; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.nav-wa:hover { background: #1EBE5A; transform: scale(1.08); }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #1A1A1A 0%, #3E2723 60%, #4E342E 100%); color: #fff; padding: 48px 16px 40px; text-align: center; position: relative; overflow: hidden; }
.hero::after { content: '🚗'; position: absolute; font-size: 220px; opacity: .04; right: -30px; bottom: -40px; pointer-events: none; }
.hero-eyebrow { display: inline-block; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-size: clamp(26px, 5vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 15px; color: #BDBDBD; max-width: 540px; margin: 0 auto 24px; }
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--accent); }
.hero-stat span { font-size: 11px; color: #9E9E9E; text-transform: uppercase; letter-spacing: .5px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--brand); color: #fff; padding: 14px 30px; border-radius: 30px; font-weight: 700; font-size: 15px; border: none; transition: var(--transition); }
.btn-primary:hover { background: var(--brand-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(216,67,21,.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 12px 24px; border-radius: 30px; font-weight: 600; font-size: 14px; border: 1.5px solid rgba(255,255,255,.35); transition: var(--transition); margin-left: 10px; }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── SECTION HEADER ── */
.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(18px, 3vw, 22px); font-weight: 800; color: var(--dark); }
.sec-head h2 em { color: var(--brand); font-style: normal; }
.view-all { font-size: 13px; font-weight: 700; color: var(--brand); white-space: nowrap; }
.view-all:hover { text-decoration: underline; }

/* ── CATEGORY PILLS ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; }
.cat-pill { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 18px 12px 14px; text-align: center; cursor: pointer; transition: var(--transition); display: block; }
.cat-pill:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(216,67,21,.14); transform: translateY(-3px); }
.cat-pill .cat-icon { font-size: 30px; display: block; margin-bottom: 8px; line-height: 1; }
.cat-pill .cat-name { font-size: 12px; font-weight: 700; color: var(--txt2); display: block; }
.cat-pill .cat-count { font-size: 10px; color: var(--txt3); display: block; margin-top: 3px; }

/* ── TRUST STRIP ── */
.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 16px; }
.trust-list { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--txt2); }
.trust-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── PRODUCT CAROUSEL ── */
.carousel-wrap { position: relative; }
.carousel { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 4px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--brand) var(--border); }
.carousel::-webkit-scrollbar { height: 4px; }
.carousel::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 4px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-60%); background: var(--brand); color: #fff; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 20px; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 10px rgba(0,0,0,.2); transition: var(--transition); }
.carousel-arrow:hover { background: var(--brand-dk); transform: translateY(-60%) scale(1.1); }
.carousel-arrow.prev { left: -14px; }
.carousel-arrow.next { right: -14px; }

/* ── PRODUCT CARD ── */
.prod-card { min-width: 210px; max-width: 210px; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start; transition: var(--transition); flex-shrink: 0; position: relative; display: flex; flex-direction: column; }
.prod-card:hover { border-color: var(--brand); box-shadow: 0 8px 28px rgba(216,67,21,.14); transform: translateY(-4px); }
.prod-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; z-index: 2; letter-spacing: .4px; }
.badge-red   { background: var(--brand); color: #fff; }
.badge-green { background: #1B5E20; color: #fff; }
.badge-blue  { background: var(--blue); color: #fff; }
.badge-amber { background: var(--amber); color: #fff; }
.badge-gray  { background: #424242; color: #fff; }
.prod-img-wrap { width: 100%; height: 155px; background: linear-gradient(135deg, #F5F5F5, #EEEEEE); display: flex; align-items: center; justify-content: center; font-size: 68px; overflow: hidden; position: relative; }
.prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.prod-body { padding: 12px; display: flex; flex-direction: column; flex: 1; }
.prod-brand { font-size: 10px; font-weight: 700; color: var(--txt3); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
.prod-name  { font-size: 13px; font-weight: 700; color: var(--txt); line-height: 1.35; margin-bottom: 7px; flex: 1; }
.prod-rating { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.prod-stars  { color: #FF8F00; font-size: 12px; letter-spacing: 1px; }
.prod-count  { font-size: 10px; color: var(--txt3); }
.prod-price-row { display: flex; align-items: baseline; gap: 7px; margin-bottom: 3px; }
.prod-price { font-size: 19px; font-weight: 900; color: var(--dark); }
.prod-mrp   { font-size: 12px; color: var(--txt3); text-decoration: line-through; }
.prod-saving { font-size: 11px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.btn-amz { width: 100%; background: var(--brand); color: #fff; border: none; padding: 10px; font-size: 13px; font-weight: 700; border-radius: 8px; transition: var(--transition); letter-spacing: .3px; margin-top: auto; }
.btn-amz:hover { background: var(--brand-dk); }
.btn-amz-outline { width: 100%; background: transparent; color: var(--brand); border: 1.5px solid var(--brand); padding: 8px; font-size: 12px; font-weight: 600; border-radius: 8px; transition: var(--transition); margin-top: 6px; }
.btn-amz-outline:hover { background: var(--brand-lt); }

/* ── PRODUCT GRID (Category Page) ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.prod-grid .prod-card { min-width: unset; max-width: unset; }

/* ── FEATURED BANNERS ── */
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-card { border-radius: var(--radius-lg); padding: 28px 22px 22px; color: #fff; position: relative; overflow: hidden; cursor: pointer; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; transition: var(--transition); }
.feat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feat-card.red  { background: linear-gradient(135deg, #B71C1C, #E53935); }
.feat-card.dark { background: linear-gradient(135deg, #1B5E20, #388E3C); }
.feat-card.navy { background: linear-gradient(135deg, #0D47A1, #1565C0); }
.feat-card.amber { background: linear-gradient(135deg, #E65100, #F57C00); }
.feat-emoji { position: absolute; top: 14px; right: 18px; font-size: 56px; opacity: .22; }
.feat-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 5px; }
.feat-card p  { font-size: 12px; opacity: .85; margin-bottom: 12px; }
.feat-btn { display: inline-block; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.45); color: #fff; padding: 7px 18px; border-radius: 20px; font-size: 12px; font-weight: 700; transition: var(--transition); }
.feat-btn:hover { background: rgba(255,255,255,.3); }

/* ── EMAIL CAPTURE ── */
.email-section { background: linear-gradient(135deg, var(--brand), var(--accent)); border-radius: var(--radius-lg); padding: 36px 24px; color: #fff; text-align: center; }
.email-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.email-section p  { font-size: 14px; opacity: .9; margin-bottom: 20px; }
.email-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto 14px; }
.email-form input { flex: 1; padding: 12px 18px; border: none; border-radius: 30px; font-size: 14px; outline: none; color: #333; }
.email-form button { background: var(--dark); color: #fff; border: none; padding: 12px 22px; border-radius: 30px; font-weight: 700; font-size: 13px; white-space: nowrap; transition: var(--transition); }
.email-form button:hover { background: #000; }
.email-perks { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.email-perk { font-size: 12px; opacity: .85; }

/* ── BUYING GUIDE CARDS ── */
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.guide-card { background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; cursor: pointer; transition: var(--transition); display: block; }
.guide-card:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(216,67,21,.1); transform: translateY(-2px); }
.guide-tag  { font-size: 10px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 7px; }
.guide-title { font-size: 13px; font-weight: 700; color: var(--txt); line-height: 1.4; margin-bottom: 6px; }
.guide-meta { font-size: 11px; color: var(--txt3); }

/* ── ARTICLE LAYOUT ── */
.article-hero { background: linear-gradient(135deg, #1A1A1A, #3E2723); color: #fff; padding: 48px 16px 40px; }
.article-hero .article-type { display: inline-block; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 14px; letter-spacing: .5px; }
.article-hero h1 { font-size: clamp(22px, 4vw, 36px); font-weight: 900; line-height: 1.2; margin-bottom: 12px; }
.article-hero .article-meta { font-size: 13px; color: #BDBDBD; }
.article-body { max-width: 860px; margin: 0 auto; padding: 0 16px; }
.article-toc { background: var(--brand-lt); border-left: 3px solid var(--brand); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 28px 0; }
.article-toc h3 { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--brand); }
.article-toc ol { padding-left: 18px; }
.article-toc li { font-size: 13px; margin-bottom: 5px; color: var(--txt2); }
.article-toc a:hover { color: var(--brand); text-decoration: underline; }
.article-section { margin: 36px 0; }
.article-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 14px; padding-top: 8px; border-top: 2px solid var(--border); }
.article-section h3 { font-size: 18px; font-weight: 700; margin: 20px 0 10px; color: var(--dark2); }
.article-section p  { font-size: 15px; line-height: 1.75; margin-bottom: 14px; color: #333; }
.article-section ul { padding-left: 20px; margin-bottom: 14px; }
.article-section li { font-size: 15px; line-height: 1.7; margin-bottom: 6px; list-style: disc; color: #333; }

/* ── QUICK PICKS BOX ── */
.quick-picks { background: #FFFDE7; border: 1.5px solid #FDD835; border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.quick-picks h3 { font-size: 15px; font-weight: 700; color: #E65100; margin-bottom: 12px; }
.quick-picks ul { padding-left: 0; }
.quick-picks li { font-size: 14px; padding: 6px 0; border-bottom: 1px solid #FFF9C4; display: flex; gap: 10px; }
.quick-picks li:last-child { border: none; }
.quick-rank { font-size: 11px; font-weight: 700; color: var(--brand); min-width: 80px; }

/* ── COMPARISON TABLE ── */
.comp-table-wrap { overflow-x: auto; margin: 20px 0; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 600px; }
.comp-table th { background: var(--brand); color: #fff; padding: 12px 14px; text-align: left; font-weight: 700; }
.comp-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.comp-table tr:nth-child(even) td { background: var(--surface); }
.comp-table .best-col td { background: #FFF8E1 !important; font-weight: 600; }
.comp-check { color: var(--green); font-weight: 700; }
.comp-cross  { color: #C62828; }

/* ── PROS / CONS ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; }
.pros, .cons { border-radius: var(--radius); padding: 16px 18px; }
.pros { background: #E8F5E9; border-left: 3px solid var(--green); }
.cons { background: #FFEBEE; border-left: 3px solid #C62828; }
.pros h4, .cons h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.pros h4 { color: var(--green); }
.cons h4 { color: #C62828; }
.pros li, .cons li { font-size: 13px; margin-bottom: 5px; padding-left: 16px; position: relative; color: #333; list-style: none; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #C62828; font-weight: 700; }

/* ── FAQ ── */
.faq-list { margin: 20px 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; background: #fff; border: none; padding: 16px 20px; text-align: left; font-size: 15px; font-weight: 700; color: var(--txt); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); }
.faq-q:hover { background: var(--surface); }
.faq-q.open { background: var(--brand-lt); color: var(--brand); }
.faq-icon { font-size: 18px; transition: var(--transition); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; line-height: 1.7; color: var(--txt2); background: #fff; }
.faq-a.open { display: block; }

/* ── DISCLOSURE BOX ── */
.disclosure { background: #FFF8E1; border: 1px solid #FFE082; border-radius: var(--radius); padding: 14px 18px; font-size: 12px; color: #5D4037; line-height: 1.7; margin: 24px 0; }
.disclosure strong { color: var(--amber); }

/* ── CATEGORY PAGE FILTERS ── */
.filter-bar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 24px; }
.filter-bar label { font-size: 12px; font-weight: 700; color: var(--txt2); }
.filter-select { border: 1.5px solid var(--border); border-radius: 8px; padding: 7px 12px; font-size: 13px; color: var(--txt); outline: none; background: #fff; cursor: pointer; }
.filter-select:focus { border-color: var(--brand); }
.filter-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.filter-tag { background: var(--surface); border: 1.5px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--txt2); cursor: pointer; transition: var(--transition); }
.filter-tag:hover, .filter-tag.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.page-btn { background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--txt2); cursor: pointer; transition: var(--transition); text-decoration: none; }
.page-btn:hover, .page-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 12px; color: var(--txt3); padding: 12px 0; }
.breadcrumb a { color: var(--txt3); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 6px; }

/* ── POPUP ── */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup-box { background: #fff; border-radius: 20px; max-width: 480px; width: 100%; overflow: hidden; transform: scale(.9); transition: transform .3s; position: relative; }
.popup-overlay.show .popup-box { transform: scale(1); }
.popup-top { background: linear-gradient(135deg, var(--brand), var(--accent)); padding: 32px 24px 24px; color: #fff; text-align: center; }
.popup-gift { font-size: 52px; display: block; margin-bottom: 10px; }
.popup-top h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.popup-top p  { font-size: 13px; opacity: .9; }
.popup-body { padding: 24px; }
.popup-benefits { margin-bottom: 18px; }
.popup-benefits li { font-size: 13px; color: var(--txt2); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.popup-benefits li:last-child { border: none; }
.pop-tick { color: var(--green); font-weight: 800; font-size: 16px; flex-shrink: 0; }
.popup-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; outline: none; margin-bottom: 10px; color: var(--txt); transition: var(--transition); }
.popup-input:focus { border-color: var(--brand); }
.popup-btn { width: 100%; background: var(--brand); color: #fff; border: none; padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700; transition: var(--transition); }
.popup-btn:hover { background: var(--brand-dk); }
.popup-skip { width: 100%; background: none; border: none; color: var(--txt3); font-size: 12px; padding: 8px; margin-top: 6px; cursor: pointer; }
.popup-close { position: absolute; top: 14px; right: 16px; background: rgba(255,255,255,.25); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; font-size: 16px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.popup-close:hover { background: rgba(255,255,255,.4); }

/* ── FLOATING BUTTONS ── */
.float-wa { position: fixed; bottom: 24px; right: 24px; background: #25D366; color: #fff; border: none; width: 54px; height: 54px; border-radius: 50%; font-size: 26px; cursor: pointer; z-index: 300; box-shadow: 0 4px 18px rgba(37,211,102,.45); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.float-tooltip { position: fixed; bottom: 86px; right: 24px; background: var(--dark); color: #fff; font-size: 11px; font-weight: 600; padding: 7px 14px; border-radius: 8px; z-index: 300; white-space: nowrap; pointer-events: none; }

/* ── FOOTER ── */
.site-footer { background: var(--dark2); color: #AAA; margin-top: 60px; }
.foot-top    { padding: 48px 16px 32px; }
.foot-grid   { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand  { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.foot-brand span { color: var(--accent); }
.foot-desc   { font-size: 13px; line-height: 1.7; margin-bottom: 14px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { background: #3A3A3A; color: #CCC; width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: var(--transition); text-decoration: none; }
.foot-social a:hover { background: var(--brand); color: #fff; }
.foot-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px; letter-spacing: .3px; }
.foot-col a  { display: block; font-size: 13px; color: #999; margin-bottom: 7px; transition: var(--transition); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid #3A3A3A; padding: 16px; }
.foot-bottom-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 12px; }
.foot-bottom-inner strong { color: var(--accent); }

/* ── TOASTS ── */
.toast { position: fixed; bottom: 88px; right: 24px; background: var(--green); color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 13px; font-weight: 600; z-index: 9998; transform: translateY(20px); opacity: 0; transition: all .3s; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── PAGE BANNER ── */
.page-banner { background: linear-gradient(135deg, #1A1A1A, #3E2723); color: #fff; padding: 36px 16px 32px; }
.page-banner h1 { font-size: clamp(20px, 4vw, 32px); font-weight: 900; margin-bottom: 8px; }
.page-banner h1 em { color: var(--accent); font-style: normal; }
.page-banner p  { font-size: 14px; color: #BDBDBD; max-width: 560px; }
.page-banner-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 36px 16px 32px; }
  .feat-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .nav-menu a { font-size: 11.5px; padding: 6px 8px; }
  .float-tooltip { display: none; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .search-form { display: none; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); }
  .guide-grid { grid-template-columns: 1fr; }
}

/* ── PRINT ── */
@media print {
  .site-nav, .popup-overlay, .float-wa, .float-tooltip, .ticker, .topbar { display: none; }
}
