/* =========================================================
   THINKCAR PAKISTAN — Design System
   ========================================================= */

:root {
  --tc-red: #93272C;
  --tc-red-dark: #6E1D21;
  --tc-gold: #CC9966;
  --tc-gold-dark: #B8814A;
  --tc-black: #0A0D12;
  --tc-navy: #141C28;
  --tc-navy-2: #1E2A3A;
  --tc-dark: #17181C;
  --tc-dark-2: #1F2126;
  --tc-gray: #6B6E76;
  --tc-gray-light: #E7E8EA;
  --tc-off-white: #FAFAFA;
  --tc-white: #FFFFFF;
  --tc-yellow: #FFC72C;
  --tc-green: #1C9A5B;

  --font-main: 'DM Sans', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Barlow Condensed', var(--font-main);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(13,13,15,0.08);
  --shadow-md: 0 8px 24px rgba(13,13,15,0.12);
  --shadow-lg: 0 16px 48px rgba(13,13,15,0.18);

  --container: 1240px;
  --header-h: 84px;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800&family=Barlow+Condensed:wght@500;600;700&display=swap');

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

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 110px; }
#pd-overview-section, #pd-features-section, #pd-specs-section, #pd-related-section { scroll-margin-top: 150px; }

body {
  font-family: var(--font-main);
  color: var(--tc-dark);
  background: var(--tc-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

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

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-block;
  color: var(--tc-red);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-main);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.section-head p { color: var(--tc-gray); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--tc-red); color: var(--tc-white); }
.btn-primary:hover { background: var(--tc-red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--tc-black); color: var(--tc-white); }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--tc-white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--tc-white); }
.btn-outline-dark { background: transparent; color: var(--tc-dark); border: 2px solid var(--tc-dark); }
.btn-outline-dark:hover { background: var(--tc-dark); color: var(--tc-white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* Pill outline button — matches thinkcar.com's "MORE >" pattern */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-pill-dark { color: var(--tc-dark); }
.btn-pill-dark:hover { background: var(--tc-dark); color: var(--tc-white); }
.btn-pill-light { color: var(--tc-white); }
.btn-pill-light:hover { background: var(--tc-white); color: var(--tc-dark); }

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
  background: var(--tc-black);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; min-width: 0; }
.topbar-left span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--tc-white); }
.topbar-right { gap: 14px; }
.topbar-right a { white-space: nowrap; }
.topbar-right .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.25); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--tc-white);
  border-bottom: 1px solid var(--tc-gray-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.footer-brand .logo-img { height: 46px; }
.logo .pk-tag {
  font-family: var(--font-main);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--tc-red);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  vertical-align: middle;
  border-left: 2px solid var(--tc-red);
  padding-left: 8px;
}
.site-footer .logo .pk-tag { color: #e0a09b; border-left-color: #e0a09b; }

.main-nav { display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--radius-sm);
}
.main-nav > li > a:hover { color: var(--tc-red); background: var(--tc-off-white); }
.main-nav > li > a.active-link { color: var(--tc-red); }
.main-nav .caret { font-size: 0.6rem; margin-top: 1px; transition: transform 0.2s; }

.mega-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--tc-off-white);
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--tc-gray-light);
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: all 0.18s ease;
  z-index: 50;
}
.main-nav > li:hover .mega-menu { opacity: 1; visibility: visible; translate: 0 0; }
.main-nav > li:hover .caret { transform: rotate(180deg); }

.mega-tiles {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 36px 24px;
}
.mega-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: var(--tc-gray);
  width: 130px;
}
.mega-tile-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: inherit;
}
.mega-tile-icon svg { width: 100%; height: 100%; }
.mega-tile span:last-child { font-size: 0.86rem; font-weight: 600; color: var(--tc-dark); }
.mega-tile:hover, .mega-tile.active { color: var(--tc-red); }
.mega-tile:hover span:last-child, .mega-tile.active span:last-child { color: var(--tc-red); }

.header-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.search-box {
  position: relative;
  display: flex; align-items: center;
  background: var(--tc-off-white);
  border-radius: 20px;
  padding: 8px 16px;
  width: 220px;
  gap: 8px;
}
.search-box input { background: none; border: none; outline: none; font-size: 0.88rem; width: 100%; }
.search-box svg { flex-shrink: 0; opacity: 0.5; }
.search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  max-height: 380px;
  overflow-y: auto;
  background: var(--tc-white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.16);
  z-index: 200;
  padding: 8px;
}
.search-results.active { display: block; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--tc-dark);
}
.search-result-item:hover { background: var(--tc-off-white); }
.search-result-item img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.search-result-item .sr-name { font-size: 0.86rem; font-weight: 600; }
.search-result-item .sr-cat { font-size: 0.74rem; color: var(--tc-gray); }
.search-no-results { padding: 14px 10px; font-size: 0.86rem; color: var(--tc-gray); text-align: center; }

.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--tc-navy-2) 0%, var(--tc-navy) 55%, var(--tc-black) 100%);
  color: var(--tc-white);
  overflow: hidden;
  min-height: 560px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.10), transparent 45%),
    radial-gradient(circle at 100% 90%, rgba(166,66,59,0.20), transparent 40%);
  pointer-events: none;
}

.hero-slides { position: relative; min-height: 560px; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.hero-slide.active { position: relative; opacity: 1; visibility: visible; }
.hero-slide .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

/* Full-bleed background image slide (image covers the whole slide, copy overlays it) */
.hero-slide--fullbg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px;
}
.hero-slide--fullbg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,10,16,0.94) 0%, rgba(6,10,16,0.78) 32%, rgba(6,10,16,0.35) 58%, rgba(6,10,16,0.05) 78%);
  z-index: 0;
}
.hero-slide--fullbg .container {
  grid-template-columns: 1fr;
  z-index: 1;
}
.hero-slide--fullbg .hero-copy { max-width: 560px; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--tc-red); width: 22px; border-radius: 5px; }

.feature-icons-row {
  background: var(--tc-black);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.feature-icons-row .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.feature-icons-row .fi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}
.feature-icons-row .fi-item .fi-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--tc-white);
}
.feature-icons-row .fi-item span:last-child { font-size: 0.86rem; font-weight: 600; line-height: 1.3; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(147,39,44,0.15);
  border: 1px solid rgba(147,39,44,0.4);
  color: #ff8a8f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--tc-red); }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero-visual .floating-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--tc-white);
  color: var(--tc-dark);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-visual .floating-card .dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(28,154,91,0.12);
  color: var(--tc-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.hero-visual .floating-card strong { display: block; font-size: 0.95rem; }
.hero-visual .floating-card span { font-size: 0.78rem; color: var(--tc-gray); }

/* Marquee strip */
.brand-strip {
  background: var(--tc-off-white);
  padding: 22px 0;
  border-bottom: 1px solid var(--tc-gray-light);
}
.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--tc-gray);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.brand-strip span { opacity: 0.55; }

/* =========================================================
   CATEGORY GRID
   ========================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  background: var(--tc-off-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: left;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.cat-card:hover {
  background: var(--tc-white);
  border-color: var(--tc-gray-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cat-card .icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: rgba(147,39,44,0.1);
  color: var(--tc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.cat-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.cat-card p { color: var(--tc-gray); font-size: 0.9rem; margin-bottom: 14px; }
.cat-card .link { font-weight: 700; font-size: 0.86rem; color: var(--tc-red); display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   PRODUCT GRID / CARDS
   ========================================================= */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border: 1px solid var(--tc-gray-light);
  border-radius: var(--radius-md);
  padding: 20px;
}
.filter-group summary,
.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.95rem;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--tc-gray-light);
}
.filter-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 2px;
  font-size: 0.9rem;
  color: var(--tc-dark);
  cursor: pointer;
}
.filter-radio input { accent-color: var(--tc-red); width: 15px; height: 15px; flex-shrink: 0; }
.filter-radio:hover { color: var(--tc-red); }
.filter-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.sort-select {
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--tc-gray-light);
  font-size: 0.86rem;
  background: var(--tc-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--tc-gray-light);
  border-radius: var(--radius-md);
  background: var(--tc-white);
  padding: 32px 20px 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-body { display: flex; flex-direction: column; gap: 6px; }
.product-cat { display: none; }
.product-title { font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
.product-tagline { font-size: 0.86rem; color: var(--tc-gray); line-height: 1.4; }
.product-actions { display: none; }

/* =========================================================
   NEW RELEASE — large panel grid (mirrors thinkcar.com's homepage pattern)
   ========================================================= */
.new-release-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--tc-gray-light);
  border: 1px solid var(--tc-gray-light);
}
.nr-panel {
  background: var(--tc-white);
  padding: 56px 40px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.nr-panel:hover { background: var(--tc-off-white); }
.nr-panel h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; }
.nr-panel .nr-caption { color: var(--tc-gray); font-size: 0.95rem; margin-bottom: 18px; }
.nr-panel .btn-pill { margin-bottom: 32px; }
.nr-panel img { max-width: 280px; width: 100%; }

/* Product detail hero: dark band + sticky tab bar (mirrors thinkcar.com's product pages) */
.pd-tabbar {
  background: var(--tc-dark-2);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.pd-tabbar .container { display: flex; align-items: center; gap: 4px; overflow-x: auto; }
.pd-tabbar a {
  padding: 18px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.pd-tabbar a:hover { color: rgba(255,255,255,0.85); }
.pd-tabbar a.active { color: var(--tc-white); border-bottom-color: var(--tc-white); }

.pd-hero {
  background: linear-gradient(160deg, var(--tc-navy-2) 0%, var(--tc-navy) 55%, var(--tc-black) 100%);
  color: var(--tc-white);
  padding: 64px 0;
}
.pd-hero .split-block { align-items: center; }
.pd-hero .breadcrumb, .pd-hero .breadcrumb a { color: rgba(255,255,255,0.55); }

.pd-badges { display: flex; flex-wrap: wrap; gap: 24px 32px; }
.pd-badge {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: center;
  width: 84px;
}
.pd-badge .pd-badge-icon {
  width: 46px; height: 46px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.pd-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pd-feature {
  padding: 24px;
  background: var(--tc-off-white);
  border-radius: var(--radius-md);
}
.pd-feature h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pd-feature p { color: var(--tc-gray); font-size: 0.92rem; line-height: 1.55; margin: 0; }
.spec-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.spec-table tr { border-bottom: 1px solid var(--tc-gray-light); }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; font-size: 0.92rem; }
.spec-table th { width: 260px; color: var(--tc-gray); font-weight: 600; }
.spec-table td { color: var(--tc-dark); font-weight: 500; }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid var(--tc-gray-light);
}
.pagination a.active { background: var(--tc-black); color: var(--tc-white); border-color: var(--tc-black); }
.pagination a:hover:not(.active) { background: var(--tc-off-white); }

/* =========================================================
   WHY US / FEATURES
   ========================================================= */
.features-band {
  background: var(--tc-black);
  color: var(--tc-white);
}
.features-band .section-head p { color: rgba(255,255,255,0.6); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item { text-align: center; }
.feature-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(147,39,44,0.15);
  color: var(--tc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.feature-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--tc-off-white);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-card .stars { color: var(--tc-yellow); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 0.95rem; color: var(--tc-dark); margin-bottom: 20px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-person .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--tc-red); color: var(--tc-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 0.92rem; }
.testimonial-person span { font-size: 0.8rem; color: var(--tc-gray); }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(120deg, var(--tc-red) 0%, var(--tc-red-dark) 100%);
  color: var(--tc-white);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-dark { background: var(--tc-black); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: var(--tc-gold); padding: 44px 0; color: var(--tc-white); }
.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.newsletter h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--tc-white); }
.newsletter p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 440px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.5);
  border-right: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--tc-white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.75); }
.newsletter-form input:focus { border-color: var(--tc-white); }
.newsletter-form .btn { border-radius: 0; background: var(--tc-black); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--tc-black); color: rgba(255,255,255,0.65); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand .logo { color: var(--tc-white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; margin-bottom: 20px; }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--tc-white);
  color: var(--tc-white);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--tc-white); color: var(--tc-black); }
.footer-col h4 { color: var(--tc-white); font-size: 0.95rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--tc-white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact li svg { margin-top: 3px; flex-shrink: 0; opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}
.payment-icons { display: flex; gap: 8px; }
.payment-icons span {
  padding: 6px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
}

/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--tc-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
  background: var(--tc-black);
  color: var(--tc-white);
  padding: 56px 0;
  text-align: center;
}
.page-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--tc-white); }

/* =========================================================
   GENERIC CONTENT BLOCKS (About, Support, Contact)
   ========================================================= */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-block img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-block h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split-block p { color: var(--tc-gray); margin-bottom: 16px; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.95rem; }
.check-list .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(28,154,91,0.12); color: var(--tc-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}

.stat-band {
  background: var(--tc-off-white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-band div strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--tc-red); }
.stat-band div span { font-size: 0.9rem; color: var(--tc-gray); }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding-bottom: 34px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute; left: 108px; top: 6px; bottom: -8px;
  width: 2px; background: var(--tc-gray-light);
}
.timeline-item:last-child::before { display: none; }
.timeline-item .year { font-weight: 800; font-family: var(--font-display); font-size: 1.3rem; color: var(--tc-red); }
.timeline-item .dot { position: absolute; left: 100px; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--tc-red); border: 4px solid var(--tc-white); box-shadow: 0 0 0 2px var(--tc-red); }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { color: var(--tc-gray); font-size: 0.92rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card {
  background: var(--tc-off-white);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-info-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(147,39,44,0.1); color: var(--tc-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 4px; }
.contact-info-card p { color: var(--tc-gray); font-size: 0.92rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--tc-gray-light);
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.94rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--tc-red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  background: var(--tc-off-white);
  display: flex; align-items: center; justify-content: center;
  color: var(--tc-gray);
}
.map-embed iframe { display: block; }
.map-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.map-tab {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--tc-gray-light);
  background: transparent;
  color: var(--tc-dark);
  cursor: pointer;
  transition: all 0.15s ease;
}
.map-tab:hover { border-color: var(--tc-red); }
.map-tab.active { background: var(--tc-red); border-color: var(--tc-red); color: var(--tc-white); }

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--tc-gray-light); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1rem;
}
.faq-q .plus { transition: transform 0.2s; color: var(--tc-red); font-size: 1.3rem; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--tc-gray);
  font-size: 0.94rem;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* Downloads table */
.download-table { width: 100%; border-collapse: collapse; }
.download-table th {
  text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--tc-gray); padding: 14px 16px; border-bottom: 2px solid var(--tc-gray-light);
}
.download-table td { padding: 16px; border-bottom: 1px solid var(--tc-gray-light); font-size: 0.92rem; }
.download-table tr:hover td { background: var(--tc-off-white); }
.file-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tc-off-white); padding: 4px 10px; border-radius: 6px;
  font-size: 0.76rem; font-weight: 700; color: var(--tc-gray);
}

/* Notice banner (placeholder/dev note) */
.dev-notice {
  background: #FFF7E0;
  border: 1px solid #F4D77B;
  color: #6b5510;
  font-size: 0.85rem;
  padding: 10px 0;
  text-align: center;
}
.dev-notice .container { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .cat-grid, .product-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-box { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .split-block, .contact-grid { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .mega-tiles { flex-wrap: wrap; gap: 32px; }
  .new-release-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-size: 1.3rem; }
  .topbar-left span:not(:first-child) { display: none; }
  .topbar-right a:not(:first-child), .topbar-right .divider { display: none; }
  .form-row { grid-template-columns: 1fr; }

  .mobile-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--tc-white);
    z-index: 1000;
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav > li { border-bottom: 1px solid var(--tc-gray-light); }
  .mobile-nav > li > a { display: flex; justify-content: space-between; padding: 16px 4px; font-weight: 700; }
  .mobile-nav .sub-links { display: none; padding-left: 12px; padding-bottom: 12px; }
  .mobile-nav .sub-links a { display: block; padding: 8px 0; color: var(--tc-gray); }
  .mobile-nav > li.open .sub-links { display: block; }
}

@media (max-width: 640px) {
  .topbar { font-size: 0.72rem; }
  .topbar-left span:first-child { max-width: 150px; }
  .cat-grid, .product-grid, .features-grid, .stat-band, .pd-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .feature-icons-row .container { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; padding: 18px 0; }
  .feature-icons-row .fi-item { gap: 8px; }
  .feature-icons-row .fi-item .fi-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .feature-icons-row .fi-item span { font-size: 0.74rem; }
  .section { padding: 56px 0; }
}
