:root {
  --red: #CC0000;
  --red-dark: #a80000;
  --red-light: #fee2e2;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-800: #2d2d2d;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ══════════════════════════════════════════════════════
   ── TOPBAR ─────────────────────────────────────────────
   ══════════════════════════════════════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1010;
  background: #0f0f1e;
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: 38px;
  transition: transform .35s ease;
}
.topbar.hide { transform: translateY(-100%); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
}
.topbar-left  { display: flex; align-items: center; gap: 16px; flex: 1; overflow: hidden; }
.topbar-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.topbar-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.3);
  color: #f87171; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; white-space: nowrap;
  letter-spacing: .3px;
}
.topbar-badge i { font-size: 10px; }
.topbar-addr  {
  font-size: 12px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 5px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.topbar-addr i { color: rgba(255,255,255,.25); font-size: 10px; flex-shrink: 0; }
.topbar-hours {
  font-size: 12px; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.topbar-status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; display: inline-block;
}
.topbar-status-dot.open   { background: #4ade80; box-shadow: 0 0 5px #4ade80; animation: blink 1.4s infinite; }
.topbar-status-dot.closed { background: #f87171; }
.topbar-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.55);
  transition: color .2s; white-space: nowrap;
}
.topbar-item:hover { color: #fff; }
.topbar-phone i { color: var(--red); }
.topbar-wa    { color: #4ade80 !important; }
.topbar-wa i  { font-size: 13px; }
.topbar-wa:hover { color: #86efac !important; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 11px; transition: color .2s;
}
.topbar-social a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   ── NAVBAR ─────────────────────────────────────────────
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,20,.15);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, top .35s ease;
}
.navbar.topbar-hidden { top: 0; }
.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  border-bottom: 1px solid var(--gray-200);
}
.navbar-content {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-icon {
  width: 42px; height: 42px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
  box-shadow: 0 4px 12px rgba(204,0,0,.35); flex-shrink: 0;
}
.brand-logo { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-size: 17px; font-weight: 800; color: #fff; line-height: 1.1; transition: color .3s; }
.brand-sub  { font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: .4px; transition: color .3s; }
.navbar.scrolled .brand-name { color: var(--gray-900); }
.navbar.scrolled .brand-sub  { color: var(--gray-400); }

/* Nav links */
.navbar-menu { display: flex; align-items: center; gap: 0; }
.nav-link {
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all .2s; letter-spacing: .1px; white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--red); border-radius: 2px;
  transition: left .2s, right .2s;
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; font-weight: 700; }
/* Scrolled */
.navbar.scrolled .nav-link { color: var(--gray-600); }
.navbar.scrolled .nav-link:hover { color: var(--red); }
.navbar.scrolled .nav-link.active { color: var(--red); }
.nav-arrow { font-size: 9px; margin-left: 4px; transition: transform .25s; vertical-align: middle; }

/* CTA */
.nav-cta {
  background: var(--red); color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--radius-sm); transition: all .2s;
  display: flex; align-items: center; gap: 8px; margin-left: 8px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(204,0,0,.32); white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(204,0,0,.42); }

/* Hamburger */
.navbar-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.navbar-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; width: 40px; height: 40px;
}
.tog-bar { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; display: block; }
.navbar.scrolled .tog-bar { background: var(--gray-700); }
.navbar-toggle.open .tog-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.open .tog-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.open .tog-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   ── MEGA MENU ──────────────────────────────────────────
   ══════════════════════════════════════════════════════ */
.nav-mega-wrap { position: relative; }
.nav-mega-wrap:hover .nav-arrow { transform: rotate(180deg); }
/* Bridge fills the gap so mouse can travel to mega menu without losing hover */
.nav-mega-wrap::after {
  content: ''; position: absolute; top: 100%; left: -30px; right: -30px;
  height: 18px; background: transparent;
}
.mega-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  background: #fff; border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.08);
  min-width: 700px; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px) scale(.98);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-mega-wrap:hover .mega-menu,
.nav-mega-wrap.mega-open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
/* arrow tip */
.mega-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; background: #fff; border-left: 1px solid var(--gray-200);
  border-top: 1px solid var(--gray-200); rotate: 45deg;
}
.mega-inner {
  display: flex; gap: 0; padding: 0; overflow: hidden; border-radius: 18px;
}
.mega-section { padding: 24px; flex: 1; }
.mega-section-featured { background: var(--gray-50); border-left: 1px solid var(--gray-100); min-width: 280px; }
.mega-section-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--gray-400); margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.mega-section-title i { color: var(--red); }

/* Category grid inside mega */
.mega-cats { display: flex; flex-direction: column; gap: 4px; }
.mega-cat-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; border-radius: 10px; color: var(--gray-700);
  transition: all .18s; border: 1px solid transparent;
}
.mega-cat-item:hover { background: var(--red-light); border-color: rgba(204,0,0,.12); }
.mega-cat-item:hover strong { color: var(--red); }
.mega-cat-item:hover .mega-cat-icon { background: var(--red); color: #fff; }
.mega-cat-item.mega-all .mega-cat-icon { background: var(--red); color: #fff; }
.mega-cat-icon {
  width: 36px; height: 36px; background: var(--gray-100); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--gray-500); flex-shrink: 0; transition: all .18s;
}
.mega-cat-item strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--gray-800); transition: color .18s; }
.mega-cat-item span   { font-size: 11.5px; color: var(--gray-400); }

.mega-divider { width: 1px; background: var(--gray-200); margin: 16px 0; flex-shrink: 0; }

/* Featured model cards */
.mega-featured { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.mega-feat-card {
  display: flex; align-items: center; gap: 12px; padding: 8px 10px;
  border-radius: 10px; color: var(--gray-800); transition: all .18s;
  border: 1px solid transparent;
}
.mega-feat-card:hover { background: #fff; border-color: var(--gray-200); box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.mega-feat-img {
  width: 52px; height: 40px; border-radius: 8px; background: var(--gray-100);
  overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gray-300);
}
.mega-feat-img img { width: 100%; height: 100%; object-fit: cover; }
.mega-feat-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-900); }
.mega-feat-info span   { font-size: 12px; color: var(--red); font-weight: 600; }
.mega-see-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--red);
  background: var(--red-light); border-radius: 8px; padding: 8px 14px;
  transition: all .2s; margin-top: 4px;
}
.mega-see-all:hover { background: var(--red); color: #fff; }

/* ══════════════════════════════════════════════════════
   ── MOBILE DRAWER ──────────────────────────────────────
   ══════════════════════════════════════════════════════ */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1998; backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s;
}
.mobile-overlay.open { display: block; opacity: 1; }

.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1999;
  width: 320px; max-width: 90vw;
  background: #0f0f1e;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 48px rgba(0,0,0,.4);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-inner { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.mobile-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-brand { display: flex; align-items: center; gap: 12px; }
.mobile-close {
  width: 36px; height: 36px; border-radius: 9px; border: none;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.mobile-close:hover { background: rgba(204,0,0,.2); color: #f87171; }

.mobile-nav {
  flex: 1; overflow-y: auto; padding: 12px 12px 8px;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar { display: none; }

.mobile-link {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: 10px; width: 100%;
  color: rgba(255,255,255,.65); font-size: 15px; font-weight: 500;
  transition: all .18s; border: 1px solid transparent; margin-bottom: 2px;
  background: none; cursor: pointer; text-align: left;
}
.mobile-link i:first-child { width: 18px; color: rgba(255,255,255,.3); font-size: 15px; flex-shrink: 0; }
.mobile-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-link.active { background: rgba(204,0,0,.12); color: #fca5a5; border-color: rgba(204,0,0,.2); }
.mobile-link.active i:first-child { color: var(--red); }

.mobile-accordion { margin-bottom: 2px; }
.mobile-acc-trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.mobile-acc-trigger span { display: flex; align-items: center; gap: 12px; }
.mobile-acc-arrow { font-size: 11px; color: rgba(255,255,255,.3); transition: transform .25s; flex-shrink: 0; margin-left: auto; }
.mobile-accordion.open .mobile-acc-arrow { transform: rotate(180deg); }

.mobile-acc-body {
  display: none; padding: 4px 0 4px 16px;
}
.mobile-accordion.open .mobile-acc-body { display: block; }
.mobile-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  color: rgba(255,255,255,.45); font-size: 14px;
  transition: all .18s; margin-bottom: 1px;
}
.mobile-sub-link i { width: 16px; color: rgba(255,255,255,.2); font-size: 13px; flex-shrink: 0; }
.mobile-sub-link:hover { background: rgba(255,255,255,.05); color: rgba(255,255,255,.85); }
.mobile-sub-count {
  margin-left: auto; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.3); font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
}

.mobile-drawer-footer {
  padding: 16px 12px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0; display: flex; flex-direction: column; gap: 8px;
}
.mobile-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px; border-radius: 10px; font-size: 15px; font-weight: 700;
  transition: all .2s;
}
.mobile-btn-phone { background: rgba(204,0,0,.15); color: #f87171; border: 1px solid rgba(204,0,0,.25); }
.mobile-btn-phone:hover { background: var(--red); color: #fff; }
.mobile-btn-wa { background: rgba(37,211,102,.12); color: #4ade80; border: 1px solid rgba(37,211,102,.2); }
.mobile-btn-wa:hover { background: #25D366; color: #fff; }
.mobile-hours {
  display: flex; align-items: center; gap: 7px; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.3); padding-top: 4px;
}

/* ─── HERO ─── */
.hero {
  position: relative; padding: 120px 0 80px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden; min-height: 100vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(204,0,0,.12) 0%, transparent 70%);
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.3);
  color: #ff6666; font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--red); }
.hero p { color: var(--gray-400); font-size: 17px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat .number { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat .label { font-size: 13px; color: var(--gray-400); }
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; }
.hero-car-img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 450px; }
.hero-badge-float {
  position: absolute; background: rgba(255,255,255,.95); border-radius: var(--radius);
  padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--gray-800);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
}
.hero-badge-float i { color: var(--red); }
.hero-badge-float-1 { top: 24px; left: -16px; }
.hero-badge-float-2 { bottom: 40px; right: -16px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
  border-radius: var(--radius-sm); font-size: 15px; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: all .2s; line-height: 1;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,0,0,.3); }
.btn-outline { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: #fff; }
.btn-secondary { background: var(--gray-100); color: var(--gray-700); border-color: var(--gray-200); }
.btn-secondary:hover { background: var(--gray-200); }
.btn-white { background: #fff; color: var(--gray-800); border-color: #fff; }
.btn-white:hover { background: var(--gray-100); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; }

/* ─── CATEGORIES BAND ─── */
.categories-band { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 16px 0; }
.categories-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.categories-scroll::-webkit-scrollbar { display: none; }
.category-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: 100px;
  font-size: 14px; font-weight: 600; color: var(--gray-600); white-space: nowrap;
  transition: all .2s; flex-shrink: 0;
}
.category-chip:hover, .category-chip-all { border-color: var(--red); color: var(--red); }
.category-chip-all { background: var(--red); color: #fff; border-color: var(--red); }
.category-chip i { font-size: 14px; }

/* ─── SECTION ─── */
.section { padding: 80px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light); color: var(--red); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.section-header p { color: var(--gray-500); font-size: 16px; }
.section-cta { text-align: center; margin-top: 40px; }

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.products-grid-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.products-grid-catalog { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.product-card {
  background: #fff; border-radius: var(--radius); border: 1.5px solid var(--gray-200);
  overflow: hidden; cursor: pointer; transition: all .25s;
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--red); transform: translateY(-3px); }
.product-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--gray-100); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--gray-300); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.product-card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.product-title { font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.3; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.product-specs span {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gray-100); color: var(--gray-600); font-size: 12px; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
}
.product-specs i { color: var(--red); font-size: 11px; }
.product-card-footer { display: flex; flex-direction: column; gap: 8px; }
.product-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.price-value { font-size: 20px; font-weight: 800; color: var(--red); }
.product-installment { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }
.product-installment i { color: var(--gray-400); }

/* ─── CATALOG LAYOUT ─── */
.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.catalog-sidebar { position: sticky; top: 116px; }
.sidebar-widget { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.sidebar-title { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.sidebar-title i { color: var(--red); }
.category-filter-list { display: flex; flex-direction: column; gap: 4px; }
.category-filter-list a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--gray-600); transition: all .2s;
}
.category-filter-list a:hover { background: var(--gray-100); color: var(--gray-800); }
.category-filter-list a.active { background: var(--red-light); color: var(--red); font-weight: 700; }
.category-filter-list a i { width: 18px; text-align: center; color: var(--red); }
.category-filter-list .count { margin-left: auto; font-size: 12px; background: var(--gray-200); color: var(--gray-500); padding: 2px 7px; border-radius: 100px; }
.sidebar-cta { background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%); border: none; color: #fff; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: 13px; margin: 8px 0 16px; }
.catalog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.catalog-count { font-size: 15px; color: var(--gray-600); }
.catalog-count strong { color: var(--gray-800); }

/* ─── PRODUCT DETAIL ─── */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 60px; }
.gallery-main {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--gray-100);
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-main:hover img { transform: scale(1.02); }
.gallery-empty { display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--gray-300); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.gallery-thumb {
  width: 80px; height: 60px; flex-shrink: 0; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: all .2s; background: var(--gray-100);
}
.gallery-thumb.active { border-color: var(--red); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.6); color: #fff;
  border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.gallery-nav:hover { background: var(--red); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.product-cat-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.product-detail-title { font-size: 32px; font-weight: 800; color: var(--gray-900); margin-bottom: 24px; line-height: 1.2; }
.price-box { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; }
.price-main { margin-bottom: 12px; }
.price-label-lg { display: block; font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.price-big { font-size: 36px; font-weight: 800; color: var(--red); }
.price-installment { display: flex; align-items: center; gap: 8px; color: var(--gray-600); font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.price-installment i { color: var(--gray-400); }
.price-note { font-size: 11px; color: var(--gray-400); }
.specs-table { margin-bottom: 24px; }
.specs-table h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.specs-table h3 i { color: var(--red); }
.specs-table table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--gray-200); }
.specs-table td:first-child { color: var(--gray-500); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.specs-table td:first-child i { color: var(--red); width: 16px; }
.specs-table td:last-child { font-weight: 600; color: var(--gray-800); }
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.product-description { border-top: 1.5px solid var(--gray-200); padding-top: 40px; margin-bottom: 40px; }
.product-description h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.product-description h2 i { color: var(--red); }
.description-content { color: var(--gray-700); line-height: 1.8; font-size: 15px; }
.description-content p { margin-bottom: 12px; }
.related-products { border-top: 1.5px solid var(--gray-200); padding-top: 40px; }
.related-products h2 { font-size: 22px; font-weight: 700; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.related-products h2 i { color: var(--red); }

/* ─── WHY SECTION ─── */
.why-section { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1.5px solid var(--gray-200); transition: all .25s; }
.why-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.why-icon { width: 60px; height: 60px; background: var(--red-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 22px; color: var(--red); }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ─── BLOG ─── */
.blog-section { background: var(--gray-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid-full { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-card { background: #fff; border-radius: var(--radius); border: 1.5px solid var(--gray-200); overflow: hidden; cursor: pointer; transition: all .25s; }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--red); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-100); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-no-img { display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--gray-300); }
.blog-card-body { padding: 20px; }
.blog-date { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: 14px; color: var(--gray-500); margin-bottom: 16px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--red); display: flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ─── BLOG DETAIL ─── */
.blog-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.blog-detail { max-width: 100%; }
.blog-detail-img { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); margin-bottom: 24px; }
.blog-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail-meta { display: flex; gap: 20px; margin-bottom: 24px; color: var(--gray-400); font-size: 13px; }
.blog-detail-meta span { display: flex; align-items: center; gap: 6px; }
.blog-detail-content { color: var(--gray-700); line-height: 1.8; font-size: 16px; }
.blog-detail-content p { margin-bottom: 16px; }
.blog-detail-content h2,h3 { color: var(--gray-800); margin: 24px 0 12px; }
.blog-back { margin-top: 32px; }
.blog-sidebar .sidebar-widget { position: sticky; top: 88px; }
.sidebar-post { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-title { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; line-height: 1.4; }
.sidebar-post-title:hover { color: var(--red); }
.sidebar-post-date { font-size: 12px; color: var(--gray-400); }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #8b0000 60%, #5a0000 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -60%; right: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-content h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,.8); font-size: 16px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ─── PAGE BANNER ─── */
.page-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  padding: 100px 0 48px; border-bottom: 1px solid var(--gray-800);
}
.page-banner h1 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-400); }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--gray-500); }
.page-banner-sm { padding: 84px 0 36px; }

/* ─── CONTACT ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--red-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--gray-500); margin-bottom: 4px; text-transform: uppercase; }
.contact-item a, .contact-item p { font-size: 15px; font-weight: 500; color: var(--gray-800); }
.contact-item a:hover { color: var(--red); }
.contact-form-wrap { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-control { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: border .2s; font-family: inherit; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,.08); }
textarea.form-control { resize: vertical; }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.form-alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form-alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray-500); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.about-feature i { color: var(--red); }
.about-img img { border-radius: var(--radius); }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; }
.faq-question { display: flex; align-items: center; gap: 12px; padding: 20px 24px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all .2s; }
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--red-light); color: var(--red); }
.faq-icon { color: var(--red); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(90deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ─── PAGE CONTENT ─── */
.page-content { max-width: 900px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: var(--gray-700); }
.page-content h1,h2,h3 { color: var(--gray-900); margin-bottom: 12px; margin-top: 24px; }

/* ─── EMPTY STATES ─── */
.empty-state { text-align: center; padding: 80px 20px; color: var(--gray-400); }
.empty-state i { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; color: var(--gray-600); margin-bottom: 10px; }
.empty-state p { font-size: 15px; margin-bottom: 20px; }

/* ─── FOOTER ─── */
.footer {
  background: #12121e;  /* koyu lacivert-siyah — pure black'ten kaçınıldı */
  color: #9ca3af;
  border-top: 3px solid var(--red);
}
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-icon {
  width: 44px; height: 44px; background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
}
.footer-brand span { font-size: 19px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .2s; font-size: 15px;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: #fff;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: .8px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.45); font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: all .2s; padding: 3px 0;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links i { font-size: 10px; color: var(--red); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.footer-contact-item i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-contact-item a:hover { color: #fff; }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; padding: 11px 20px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  transition: all .2s; box-shadow: 0 4px 12px rgba(204,0,0,.3);
}
.footer-cta-btn:hover { background: var(--red-dark); transform: translateY(-1px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0;
  background: rgba(0,0,0,.25);
}
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-credits { color: rgba(255,255,255,.2); }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 44px; height: 44px; background: var(--red); color: #fff;
  border: none; border-radius: 10px; cursor: pointer; font-size: 16px;
  display: none; align-items: center; justify-content: center; transition: all .2s;
  box-shadow: 0 4px 16px rgba(204,0,0,.4);
}
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(204,0,0,.5); }
.scroll-top.visible { display: flex; }

/* ─── COOKIE BAR ─── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1100;
  background: var(--gray-900); border-top: 1px solid var(--gray-800);
  padding: 16px 24px; display: none;
}
.cookie-bar.show { display: block; }
.cookie-bar-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cookie-bar-text { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-300); }
.cookie-bar-shield { color: var(--red); }
.cookie-bar-btn { background: var(--red); color: #fff; border: none; padding: 9px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; cursor: pointer; flex-shrink: 0; }

/* ─── BADGES ─── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-danger  { background: #fee2e2; color: #b91c1c; }
.badge-info    { background: #dbeafe; color: #1d4ed8; }


/* ════════════════════════════════════════════════════════════
   ─── HERO SLIDER ───────────────────────────────────────────
   ════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  max-height: 900px;
  overflow: hidden;
  background: #1a1a2e;
  /* accounts for topbar (38px) + navbar (68px) */
  margin-top: 0;
}

.hs-track { position: relative; width: 100%; height: 100%; }

.hs-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .75s ease;
  display: flex; align-items: center;
}
.hs-slide.active { opacity: 1; z-index: 2; }

/* Background image */
.hs-bg { position: absolute; inset: 0; }
.hs-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); transition: transform 7s ease;
}
.hs-slide.active .hs-bg-img { transform: scale(1); }
.hs-bg-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 120px; color: rgba(255,255,255,.08);
}
/* Left-side directional gradient — image visible on right, text legible on left */
.hs-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 38%,
      rgba(0,0,0,.25) 60%,
      rgba(0,0,0,.05) 100%),
    linear-gradient(to top,
      rgba(0,0,0,.45) 0%,
      transparent 40%);
}

/* Content — vertically centred, left-aligned */
.hs-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 80px 20px 100px;
  /* push content up slightly from the thumbs bar */
  padding-bottom: 110px;
}
.hs-content-center { text-align: center; }
.hs-cat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.85); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hs-title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 16px; max-width: 700px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hs-content-center .hs-title { max-width: 100%; }
.hs-subtitle { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 28px; }
.hs-specs {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
}
.hs-specs span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 500; padding: 6px 14px; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.hs-specs i { color: var(--red); }
.hs-price-row { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hs-price {
  font-size: 32px; font-weight: 900; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hs-installment {
  color: rgba(255,255,255,.7); font-size: 14px;
  display: flex; align-items: center; gap: 6px;
}
.hs-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hs-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700; transition: all .2s;
  text-decoration: none;
}
.hs-btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,.4); }
.hs-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.15); color: #fff;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; transition: all .2s;
  backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.25);
  text-decoration: none;
}
.hs-btn-wa:hover { background: rgba(37,211,102,.85); border-color: transparent; }

/* Navigation arrows */
.hs-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; backdrop-filter: blur(8px);
}
.hs-nav:hover { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.08); }
.hs-prev { left: 24px; }
.hs-next { right: 24px; }

/* Dots — sit just above the thumbs bar */
.hs-dots {
  position: absolute; bottom: 74px; left: 24px;
  z-index: 10; display: flex; gap: 6px;
}
.hs-dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.3); border: none; cursor: pointer; transition: all .25s;
}
.hs-dot.active { background: var(--red); width: 48px; }

/* Thumbnail strip */
.hs-thumbs {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; overflow-x: auto; scrollbar-width: none;
  background: rgba(15,15,15,.75); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  height: 66px;
}
.hs-thumbs::-webkit-scrollbar { display: none; }
.hs-thumb {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; height: 100%; border: none; background: transparent;
  color: rgba(255,255,255,.55); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s; white-space: nowrap; flex-shrink: 0;
  border-bottom: 3px solid transparent;
}
.hs-thumb:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.06); }
.hs-thumb.active { color: #fff; border-bottom-color: var(--red); background: rgba(204,0,0,.1); }
.hs-thumb img { width: 56px; height: 38px; object-fit: cover; border-radius: 6px; opacity: .65; transition: opacity .2s; }
.hs-thumb.active img, .hs-thumb:hover img { opacity: 1; }
.hs-thumb-empty {
  width: 56px; height: 38px; background: rgba(255,255,255,.08); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: rgba(255,255,255,.25);
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: linear-gradient(90deg, #12121e 0%, #1a1a2e 50%, #12121e 100%);
  border-bottom: none;
  padding: 0;
  position: relative;
}
.stats-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}
.stats-strip-inner {
  display: flex; justify-content: space-around; align-items: stretch;
  border-left: 1px solid rgba(255,255,255,.06);
}
.stat-item {
  flex: 1; padding: 32px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative; transition: background .25s;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.stat-icon-wrap {
  width: 42px; height: 42px; background: rgba(204,0,0,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--red); margin-bottom: 4px;
  transition: background .2s;
}
.stat-item:hover { background: rgba(204,0,0,.07); }
.stat-item:hover .stat-icon-wrap { background: var(--red); color: #fff; }
.stat-item:hover::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: var(--red); border-radius: 2px;
}
.stat-number {
  font-size: 30px; font-weight: 800; color: #fff; line-height: 1;
  margin-bottom: 2px; display: block;
}
.stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .6px; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--gray-50); padding: 80px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06); border: 1px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.testimonial-stars { color: #f59e0b; margin-bottom: 14px; display: flex; gap: 3px; font-size: 15px; }
.testimonial-card > p {
  font-size: 15px; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-card > p::before { content: '"'; font-size: 32px; color: var(--red); line-height: 0; vertical-align: -14px; margin-right: 4px; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; color: var(--gray-900); }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }
.testimonials-rating-strip {
  display: flex; align-items: center; gap: 24px; justify-content: center;
  background: #fff; padding: 20px 32px; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06); border: 1px solid var(--gray-100);
  max-width: 420px; margin: 0 auto;
}
.rating-badge { display: flex; align-items: center; gap: 16px; }
.rating-score { font-size: 48px; font-weight: 900; color: var(--gray-900); line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 18px; margin-bottom: 4px; }
.rating-stars + p { font-size: 13px; color: var(--gray-500); margin: 0; }
.rating-divider { width: 1px; height: 48px; background: var(--gray-200); }
.rating-note { font-size: 13px; color: var(--gray-500); max-width: 180px; line-height: 1.5; margin: 0; }

/* ─── QUICK CONTACT ─── */
.quick-contact-section {
  background: var(--red);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.quick-contact-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.quick-contact-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.quick-contact-text h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.quick-contact-text p { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; }
.quick-contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.qc-btn {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  border-radius: 12px; text-decoration: none; transition: all .2s; min-width: 160px;
  border: 2px solid transparent;
}
.qc-btn i { font-size: 22px; flex-shrink: 0; }
.qc-btn strong { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.qc-btn span { font-size: 11px; color: rgba(255,255,255,.7); }
.qc-btn-wa    { background: #25D366; border-color: #25D366; }
.qc-btn-wa:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); }
.qc-btn-phone { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.qc-btn-phone:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.qc-btn-form  { background: rgba(0,0,0,.2); border-color: rgba(0,0,0,.1); }
.qc-btn-form:hover { background: rgba(0,0,0,.3); transform: translateY(-2px); }

/* ─── FLOATING WHATSAPP ─── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: #fff; border-radius: 50px;
  display: flex; align-items: center; gap: 0;
  text-decoration: none; padding: 0;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  opacity: 0; pointer-events: none; transform: scale(.8);
  transition: opacity .3s, transform .3s, background .2s, border-radius .25s, padding .25s, gap .25s;
  overflow: hidden;
}
.float-wa.float-wa-visible { opacity: 1; pointer-events: auto; transform: scale(1); }
.float-wa-icon { font-size: 26px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-wa-label {
  font-size: 14px; font-weight: 600; max-width: 0; overflow: hidden;
  white-space: nowrap; transition: max-width .3s, padding-right .3s;
  padding-right: 0;
}
.float-wa.float-wa-expanded .float-wa-label { max-width: 100px; padding-right: 18px; }
.float-wa:hover { background: #1ebe5a; }
.float-wa-pulse {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 50px;
  background: rgba(37,211,102,.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  60%  { transform: scale(1.55); opacity: 0; }
  100% { opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   ─── MODELS SECTION (Ana Sayfa Vitrin) ─────────────────────
   ════════════════════════════════════════════════════════════ */
.models-section {
  padding: 64px 0 80px;
  background: #fff;
}
.models-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.models-title {
  font-size: 36px; font-weight: 900; color: var(--gray-900);
  line-height: 1.1; margin-bottom: 6px;
}
.models-sub { color: var(--gray-500); font-size: 15px; }
.models-see-all {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 15px; font-weight: 700;
  padding: 10px 20px; border: 2px solid var(--red); border-radius: var(--radius-sm);
  transition: all .2s; white-space: nowrap;
}
.models-see-all:hover { background: var(--red); color: #fff; }
.models-empty {
  text-align: center; padding: 60px 20px; color: var(--gray-400);
}
.models-empty i { font-size: 48px; margin-bottom: 12px; display: block; }

/* ─── MODEL TABS ─── */
.model-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
  padding-bottom: 20px; border-bottom: 2px solid var(--gray-200);
}
.model-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600; background: #fff;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  cursor: pointer; transition: all .2s;
}
.model-tab i { font-size: 13px; }
.model-tab:hover { border-color: var(--red); color: var(--red); }
.model-tab.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 14px rgba(204,0,0,.25); }

/* ─── MODEL CARD ─── */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.model-grid-catalog {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.model-grid-sm {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.model-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1.5px solid var(--gray-200);
  transition: all .25s; cursor: pointer; text-decoration: none; color: inherit;
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  border-color: var(--red);
}

.model-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.model-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.model-card:hover .model-card-img img { transform: scale(1.06); }
.model-card-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--gray-300);
}
.model-card-flag {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 100px; display: flex; align-items: center; gap: 5px;
}
.model-card-flag i { font-size: 10px; }

.model-card-info {
  padding: 20px; display: flex; flex-direction: column; flex: 1;
}
.model-card-cat {
  font-size: 11px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px;
  display: block;
}
.model-card-name {
  font-size: 17px; font-weight: 800; color: var(--gray-900);
  line-height: 1.3; margin-bottom: 12px;
}
.model-card-specs {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.model-card-specs span {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gray-100); color: var(--gray-600);
  font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 100px;
}
.model-card-specs i { color: var(--red); font-size: 10px; }
.model-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.model-card-price {
  font-size: 18px; font-weight: 800; color: var(--red);
}
.model-card-price-na {
  font-size: 13px; font-weight: 600; color: var(--gray-400);
}
.model-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--red);
  padding: 8px 14px; border: 2px solid var(--red); border-radius: var(--radius-sm);
  transition: all .2s;
}
.model-card:hover .model-card-cta { background: var(--red); color: #fff; }
.model-card-installment {
  font-size: 12px; color: var(--gray-400);
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}

/* ─── CATALOG TAB ROW ─── */
.catalog-section { padding: 48px 0 80px; }
.catalog-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px;
}
.catalog-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; background: #fff;
  border: 1.5px solid var(--gray-200); color: var(--gray-600);
  text-decoration: none; transition: all .2s;
}
.catalog-tab em {
  font-style: normal; font-size: 12px; font-weight: 700;
  background: var(--gray-100); color: var(--gray-500);
  padding: 2px 8px; border-radius: 100px;
}
.catalog-tab i { font-size: 14px; }
.catalog-tab:hover { border-color: var(--red); color: var(--red); }
.catalog-tab.active { background: var(--red); color: #fff; border-color: var(--red); }
.catalog-tab.active em { background: rgba(255,255,255,.2); color: rgba(255,255,255,.9); }
.catalog-info-bar {
  color: var(--gray-500); font-size: 14px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1.5px solid var(--gray-200);
}
.catalog-info-bar strong { color: var(--gray-800); }

/* ─── DETAIL PAGE ─── */
.detail-breadcrumb {
  background: var(--gray-900);
  padding: 84px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.detail-breadcrumb .container {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; font-size: 13px; color: var(--gray-400);
}
.detail-breadcrumb a { color: var(--gray-400); transition: color .2s; }
.detail-breadcrumb a:hover { color: #fff; }
.detail-breadcrumb span { color: var(--gray-500); }
.detail-breadcrumb i { font-size: 9px; color: var(--gray-600); }

.detail-section { padding: 48px 0 80px; }

/* Gallery */
.detail-gallery { margin-bottom: 0; }
.detail-main-img {
  position: relative;
  width: 100%; aspect-ratio: 16/8;
  overflow: hidden; border-radius: var(--radius);
  background: var(--gray-100); max-height: 560px;
}
.detail-main-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .3s;
}
.detail-main-img:hover img { transform: scale(1.02); }
.detail-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; color: var(--gray-300);
}
.detail-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; border: none;
  font-size: 18px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.detail-nav:hover { background: var(--red); }
.detail-prev { left: 16px; }
.detail-next { right: 16px; }
.detail-thumbs {
  display: flex; gap: 10px; margin-top: 12px; overflow-x: auto;
  scrollbar-width: thin; scrollbar-color: var(--gray-300) transparent;
  padding-bottom: 4px;
}
.detail-thumb {
  width: 100px; height: 68px; flex-shrink: 0; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; border: 3px solid transparent;
  transition: border .2s; background: var(--gray-100);
}
.detail-thumb.active { border-color: var(--red); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info block */
.detail-info-block {
  border-top: none;
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200);
  padding: 36px; margin-top: 24px;
}
.detail-title-row { margin-bottom: 24px; }
.detail-cat-tag {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--red); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 10px; text-decoration: none;
}
.detail-cat-tag:hover { color: var(--red-dark); }
.detail-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 900;
  color: var(--gray-900); line-height: 1.1; margin: 0;
}
.detail-price-row {
  display: flex; gap: 40px; align-items: flex-start;
  flex-wrap: wrap; padding-top: 24px;
  border-top: 1.5px solid var(--gray-200);
}
.detail-price-group { flex: 1; min-width: 220px; }
.detail-contact-group {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 220px;
}
.detail-price-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.detail-price-value { font-size: 38px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 10px; }
.detail-installment {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-600); font-size: 14px; font-weight: 500;
  margin-bottom: 10px;
}
.detail-price-note { font-size: 11px; color: var(--gray-400); }

/* Specs Grid (ikonlu) */
.detail-specs-section {
  margin-top: 48px; padding-top: 48px;
  border-top: 1.5px solid var(--gray-200);
}
.detail-section-title {
  font-size: 20px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 24px; display: flex; align-items: center; gap: 10px;
}
.detail-section-title i { color: var(--red); }
.detail-specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.spec-card {
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all .2s;
}
.spec-card:hover { border-color: var(--red); background: var(--red-light); }
.spec-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--red-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red);
}
.spec-card:hover .spec-card-icon { background: var(--red); color: #fff; }
.spec-card-body { display: flex; flex-direction: column; gap: 4px; }
.spec-card-label { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.spec-card-value { font-size: 16px; font-weight: 800; color: var(--gray-800); }

/* Description */
.detail-desc-section { margin-top: 48px; padding-top: 48px; border-top: 1.5px solid var(--gray-200); }
.detail-desc-content { font-size: 16px; line-height: 1.8; color: var(--gray-600); }
.detail-desc-content p { margin-bottom: 12px; }

.similar-section { background: var(--gray-50); padding: 60px 0 80px; }

/* CTA ufak */
.cta-section-sm { padding: 48px 0; }


/* ─── TAB COUNT BADGE ─── */
.model-tab .tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 18px; padding: 0 6px;
  background: var(--gray-100); color: var(--gray-500);
  font-size: 11px; font-weight: 700; border-radius: 100px;
  margin-left: 2px; transition: all .2s;
}
.model-tab.active .tab-count { background: rgba(255,255,255,.25); color: #fff; }

/* ─── KAT SHOWCASE (Ana Sayfa Kategori Kartları) ─── */
.kat-showcase-section { background: var(--gray-50); }
.kat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.kat-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  transition: transform .3s;
}
.kat-card:hover { transform: translateY(-4px); }
.kat-card-bg { position: absolute; inset: 0; }
.kat-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.kat-card:hover .kat-card-bg img { transform: scale(1.06); }
.kat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
.kat-card-body {
  position: relative; z-index: 2; width: 100%;
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.kat-card-body i { font-size: 22px; color: rgba(255,255,255,.8); margin-bottom: 4px; }
.kat-card-body h3 { font-size: 20px; font-weight: 800; }
.kat-card-body span { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500; }
.kat-card:hover .kat-card-body i { color: #fff; }

/* ─── WHY CARDS ─── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all .25s;
}
.why-card:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(204,0,0,.1); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px; background: var(--red-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--red); margin-bottom: 16px;
  transition: all .2s;
}
.why-card:hover .why-icon { background: var(--red); color: #fff; }
.why-card h3 { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.why-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--red); transition: gap .2s;
}
.why-link:hover { gap: 10px; }

/* ─── BLOG SECTION ─── */
.blog-section { background: #fff; }
.blog-no-img {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 40px; color: var(--gray-300);
  background: var(--gray-100);
}
.blog-date { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); }
.section-cta { text-align: center; margin-top: 40px; }

/* ─── ABOUT PAGE ─── */
.about-banner { min-height: 300px; display: flex; align-items: flex-end; }
.about-banner .container { padding-bottom: 40px; }
.page-banner-inner { max-width: 700px; }
.page-banner-inner h1 { margin-bottom: 12px; }
.page-banner-inner p { color: rgba(255,255,255,.8); font-size: 16px; }

.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.about-story-img { position: relative; }
.about-story-img img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--red); color: #fff; border-radius: var(--radius);
  padding: 16px 20px; text-align: center; box-shadow: 0 8px 24px rgba(204,0,0,.35);
}
.about-img-year { display: block; font-size: 32px; font-weight: 900; line-height: 1; }
.about-img-badge span:last-child { font-size: 12px; font-weight: 600; opacity: .85; }
.about-story-text h2 { font-size: 32px; font-weight: 900; color: var(--gray-900); margin-bottom: 16px; line-height: 1.2; }
.about-features { display: flex; flex-direction: column; gap: 10px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gray-700); }
.about-feature i { color: #16a34a; font-size: 16px; flex-shrink: 0; }

.about-stats-section { background: linear-gradient(135deg, #1a1a2e, #0f3460); }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.07); }
.about-stat {
  background: transparent; padding: 52px 24px; text-align: center;
  transition: background .2s;
}
.about-stat:hover { background: rgba(204,0,0,.1); }
.about-stat-icon { font-size: 28px; color: var(--red); margin-bottom: 12px; }
.about-stat-num { font-size: 44px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.about-stat-label { font-size: 14px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px 24px; transition: all .25s;
}
.service-card:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(204,0,0,.1); transform: translateY(-3px); }
.service-icon { width: 52px; height: 52px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--red); margin-bottom: 16px; transition: all .2s; }
.service-card:hover .service-icon { background: var(--red); color: #fff; }
.service-card h3 { font-size: 16px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ─── SSS PAGE ─── */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.faq-cats {
  display: flex; flex-direction: column; gap: 4px; position: sticky; top: 88px;
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 12px;
}
.faq-cat {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: none; background: transparent; color: var(--gray-600);
  font-size: 14px; font-weight: 600; border-radius: var(--radius-sm);
  cursor: pointer; text-align: left; transition: all .2s;
}
.faq-cat:hover { background: var(--gray-100); color: var(--gray-900); }
.faq-cat.active { background: var(--red-light); color: var(--red); }
.faq-cat i { width: 16px; font-size: 13px; }
.faq-group { display: none; }
.faq-group.active { display: block; }
.faq-content .faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; margin-bottom: 10px; transition: border-color .2s;
}
.faq-content .faq-item.open { border-color: var(--red); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: 15px;
  color: var(--gray-800); transition: all .2s; gap: 12px;
}
.faq-question:hover { background: var(--gray-50); color: var(--gray-900); }
.faq-item.open .faq-question { background: var(--red-light); color: var(--red); }
.faq-icon { flex-shrink: 0; font-size: 14px; transition: transform .25s; color: var(--red); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 16px 20px 20px; font-size: 15px;
  color: var(--gray-600); line-height: 1.75; border-top: 1px solid var(--gray-200);
}
.faq-item.open .faq-answer { display: block; }
.faq-link { color: var(--red); font-weight: 600; }
.sss-cta {
  margin-top: 48px; padding: 32px; background: var(--gray-50);
  border-radius: var(--radius); text-align: center;
  border: 1.5px solid var(--gray-200);
}
.sss-cta p { font-size: 17px; font-weight: 600; color: var(--gray-700); }

/* ─── İLETİŞİM PAGE ─── */
.contact-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 16px; margin-bottom: 48px;
}
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 22px;
  text-decoration: none; color: inherit; transition: all .2s;
}
.contact-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(204,0,0,.1); transform: translateY(-2px); }
.contact-card-wa:hover { border-color: #25d366; box-shadow: 0 4px 16px rgba(37,211,102,.15); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  transition: all .2s;
}
.contact-card-wa .contact-card-icon { background: #dcfce7; color: #16a34a; }
.contact-card:hover .contact-card-icon { background: var(--red); color: #fff; }
.contact-card-wa:hover .contact-card-icon { background: #25d366; color: #fff; }
.contact-card h4 { font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-card p { font-size: 15px; font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
.contact-card span { font-size: 12px; color: var(--red); font-weight: 600; }

.contact-main-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-hours-card, .contact-social-card, .contact-quick-links {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 24px;
}
.contact-hours-card h3, .contact-social-card h3, .contact-quick-links h3 {
  font-size: 15px; font-weight: 800; color: var(--gray-900);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.contact-hours-card h3 i, .contact-social-card h3 i, .contact-quick-links h3 i { color: var(--red); }
.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-600); }
.hours-val { font-weight: 700; color: var(--gray-800); }
.hours-row.closed .hours-val { color: var(--gray-400); }
.contact-social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.csocial-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px 12px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all .2s;
}
.csocial-ig { background: #fce7f3; color: #be185d; }
.csocial-ig:hover { background: #db2777; color: #fff; }
.csocial-fb { background: #dbeafe; color: #1d4ed8; }
.csocial-fb:hover { background: #2563eb; color: #fff; }
.csocial-yt { background: #fee2e2; color: #dc2626; }
.csocial-yt:hover { background: #dc2626; color: #fff; }
.csocial-wa { background: #dcfce7; color: #15803d; }
.csocial-wa:hover { background: #25d366; color: #fff; }
.contact-quick-links { display: flex; flex-direction: column; gap: 0; }
.contact-quick-links h3 { border-bottom: 1px solid var(--gray-200); padding-bottom: 12px; }
.contact-quick-links a {
  display: flex; align-items: center; gap: 10px; padding: 12px 0;
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100); transition: color .2s;
  text-decoration: none;
}
.contact-quick-links a:last-child { border-bottom: none; }
.contact-quick-links a:hover { color: var(--red); }
.contact-quick-links a i { width: 16px; color: var(--red); }

.contact-form-wrap {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-header h2 { font-size: 24px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.contact-form-header p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }
.input-with-icon { position: relative; }
.input-with-icon i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--gray-400); font-size: 14px; pointer-events: none;
}
.input-with-icon .form-control { padding-left: 40px; }
.form-select { appearance: none; cursor: pointer; }
.btn-full { width: 100%; justify-content: center; }
.req { color: var(--red); }
.form-alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; }
.form-alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form-alert-error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }

/* ─── 404 PAGE ─── */
.error-page-section { padding: 100px 0 80px; background: #fff; }
.error-page-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.error-code {
  font-size: 120px; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--red), #ff6b6b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-icon-wrap { font-size: 56px; color: var(--gray-200); margin: -8px 0 24px; }
.error-page-inner h1 { font-size: 28px; font-weight: 800; color: var(--gray-800); margin-bottom: 12px; }
.error-page-inner p { font-size: 16px; color: var(--gray-500); line-height: 1.7; margin-bottom: 32px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.error-suggestions h3 { font-size: 14px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.error-cat-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.error-cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 100px;
  background: var(--gray-100); color: var(--gray-600);
  font-size: 13px; font-weight: 600; transition: all .2s;
  text-decoration: none;
}
.error-cat-link:hover { background: var(--red); color: #fff; }

/* ─── PAGE BANNER IMPROVEMENTS ─── */
.page-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 130px 0 52px; color: #fff;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; top: -40%; right: -5%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,.18) 0%, transparent 65%);
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
}
.page-banner h1 { font-size: 40px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.7); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 9px; }
.page-banner-sm { padding: 88px 0 36px; }

/* ═══════════════════════════════════════════════════════════
   ── FOOTER REDESIGN (Premium) ────────────────────────────
   ═══════════════════════════════════════════════════════════ */

/* Newsletter Bar */
.footer-newsletter-bar {
  background: linear-gradient(90deg, var(--red-dark) 0%, var(--red) 50%, #e02020 100%);
  padding: 22px 0;
  position: relative; overflow: hidden;
}
.footer-newsletter-bar::before {
  content: '';
  position: absolute; top: -80%; right: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.fnl-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.fnl-text {
  display: flex; align-items: center; gap: 16px; flex: 1; min-width: 220px;
}
.fnl-icon {
  font-size: 28px; color: rgba(255,255,255,.7); flex-shrink: 0;
}
.fnl-text strong { display: block; color: #fff; font-size: 16px; font-weight: 700; }
.fnl-text span   { color: rgba(255,255,255,.65); font-size: 13px; }
.fnl-form {
  display: flex; gap: 0; flex: 1; max-width: 400px; min-width: 200px;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.fnl-input {
  flex: 1; padding: 13px 18px; border: none; outline: none;
  font-family: 'Poppins', sans-serif; font-size: 14px; background: rgba(255,255,255,.95);
  color: var(--gray-800);
}
.fnl-btn {
  padding: 13px 20px; background: #12121e; color: #fff; border: none;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: background .2s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.fnl-btn:hover { background: #1a1a2e; }

/* Main Grid */
.footer-main { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr 1.3fr;
  gap: 32px;
}
.footer-col-brand {}
.footer-brand {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.footer-brand-logo {
  width: 52px; height: 52px; background: var(--red);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(204,0,0,.35);
}
.footer-brand-name { display: block; font-size: 20px; font-weight: 800; color: #fff; line-height: 1.1; }
.footer-brand-sub  { display: block; font-size: 11px; color: var(--red); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-top: 2px; }
.footer-desc { font-size: 13.5px; color: rgba(255,255,255,.42); line-height: 1.85; margin-bottom: 22px; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .25s; font-size: 15px;
}
.footer-social a:hover { transform: translateY(-3px); color: #fff; }
.footer-social a:hover:not(.wa-social) { background: var(--red); border-color: var(--red); }
.footer-social a.wa-social:hover { background: #25D366; border-color: #25D366; }

.footer-auth-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.12); border: 1px solid rgba(204,0,0,.25);
  color: #f87171; border-radius: 8px; padding: 7px 14px;
  font-size: 12px; font-weight: 600;
}
.footer-auth-badge i { color: #f87171; }

/* Column headings */
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .9px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col h4 span {
  position: relative; color: #fff; padding-bottom: 10px;
}
.footer-col h4 span::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 24px; height: 2px; background: var(--red); border-radius: 2px;
}

/* Footer links */
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-links li a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45); font-size: 13.5px; font-weight: 400;
  padding: 5px 0; transition: all .2s; border-radius: 4px;
}
.footer-links li a i { width: 16px; color: var(--red); font-size: 12px; opacity: .8; flex-shrink: 0; }
.footer-links li a:hover { color: #fff; padding-left: 5px; }

/* Contact items */
.footer-contact { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.fci-icon {
  width: 34px; height: 34px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 14px; flex-shrink: 0; margin-top: 1px;
}
.fci-icon.fci-wa { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.2); color: #4ade80; }
.fci-text { display: flex; flex-direction: column; gap: 1px; }
.fci-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.25); }
.fci-text span, .fci-text a { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; transition: color .2s; }
.fci-text a:hover { color: #fff; }

/* Footer status */
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.status-open  { background: rgba(74,222,128,.12); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.status-closed{ background: rgba(248,113,113,.1); color: #f87171; border: 1px solid rgba(248,113,113,.2); }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.status-open  .status-dot { background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: blink 1.4s infinite; }
.status-closed .status-dot { background: #f87171; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* Working hours */
.footer-hours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.fh-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.4); padding: 6px 10px;
  border-radius: 6px; transition: background .2s;
}
.fh-row.fh-today { background: rgba(204,0,0,.1); color: #fca5a5; font-weight: 600; border-left: 2px solid var(--red); padding-left: 12px; }

.footer-cta-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff; padding: 12px 18px;
  border-radius: 10px; font-size: 13px; font-weight: 700;
  transition: all .2s; box-shadow: 0 4px 14px rgba(204,0,0,.3);
  white-space: nowrap;
}
.footer-cta-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

/* Certifications strip */
.footer-certs {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-certs-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-cert {
  display: flex; align-items: center; gap: 12px; flex: 1; min-width: 140px;
}
.footer-cert > i {
  font-size: 24px; color: var(--red); flex-shrink: 0;
}
.footer-cert strong { display: block; font-size: 13px; font-weight: 700; color: #fff; }
.footer-cert span   { font-size: 11px; color: rgba(255,255,255,.35); }
.footer-cert-divider { width: 1px; height: 40px; background: rgba(255,255,255,.07); flex-shrink: 0; }

/* Footer bottom */
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.28); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }
.footer-credits { font-size: 12px; color: rgba(255,255,255,.18); margin: 0; }

/* ═══════════════════════════════════════════════════════════
   ── BRAND AUTHORITY STRIP ─────────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.brand-authority-strip {
  background: var(--gray-900);
  padding: 18px 0;
  border-top: none;
  border-bottom: none;
}
.bas-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.bas-badge {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}
.bas-badge-icon {
  width: 48px; height: 48px; background: var(--red); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; box-shadow: 0 4px 14px rgba(204,0,0,.4); flex-shrink: 0;
}
.bas-badge strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.bas-badge span   { font-size: 12px; color: rgba(255,255,255,.4); }
.bas-divider { width: 1px; height: 40px; background: rgba(255,255,255,.08); flex-shrink: 0; }
.bas-features { display: flex; gap: 20px; flex-wrap: wrap; flex: 1; }
.bas-feat { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; }
.bas-feat i { color: #4ade80; font-size: 12px; }
.bas-cta {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  color: var(--red); font-size: 13px; font-weight: 700;
  background: rgba(204,0,0,.1); border: 1px solid rgba(204,0,0,.25);
  padding: 9px 18px; border-radius: 8px; transition: all .2s;
  white-space: nowrap;
}
.bas-cta:hover { background: var(--red); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   ── PROCESS SECTION (3D Flip Cards) ──────────────────────
   ═══════════════════════════════════════════════════════════ */
.process-section { background: var(--gray-50); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-bottom: 16px;
}
.process-card {
  height: 320px; perspective: 1000px; cursor: pointer;
}
.process-card-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.process-card:hover .process-card-inner { transform: rotateY(180deg); }
.process-card-front,
.process-card-back {
  position: absolute; inset: 0; border-radius: 16px; padding: 24px 22px;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.process-card-front {
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 10px;
}
.process-card-back {
  background: var(--red);
  transform: rotateY(180deg); color: #fff;
  display: flex; flex-direction: column; gap: 10px;
}
.process-step-num {
  font-size: 44px; font-weight: 900; color: var(--gray-100);
  line-height: 1; letter-spacing: -2px; flex-shrink: 0;
}
.process-icon {
  width: 44px; height: 44px; background: var(--red-light);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 18px; flex-shrink: 0;
}
.process-card-front h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 0; line-height: 1.3; }
.process-card-front p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; flex: 1; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
.process-card-back > i { font-size: 32px; opacity: .5; flex-shrink: 0; }
.process-card-back h3  { font-size: 16px; font-weight: 700; margin: 0; }
.process-card-back ul  { list-style: none; display: flex; flex-direction: column; gap: 5px; margin: 0; padding: 0; flex: 1; }
.process-card-back ul li { display: flex; align-items: center; gap: 8px; font-size: 13px; line-height: 1.4; }
.process-card-back ul li i { font-size: 9px; color: rgba(255,255,255,.7); flex-shrink: 0; }
.process-card-back a {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  background: rgba(255,255,255,.2); color: #fff; border-radius: 7px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; transition: background .2s; flex-shrink: 0;
}
.process-card-back a:hover { background: rgba(255,255,255,.3); }

/* Process connector (decorative) */
.process-connector {
  display: flex; align-items: center; justify-content: space-around;
  padding: 0 80px; position: relative; height: 0; overflow: visible;
  margin-top: -28px;
  pointer-events: none; z-index: 1;
}
.pc-arrow {
  font-size: 22px; color: var(--red); opacity: .3;
}

/* ═══════════════════════════════════════════════════════════
   ── SPOTLIGHT SECTION ─────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.spotlight-section {
  position: relative; padding: 90px 0;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 40%, #0f3460 100%);
  overflow: hidden;
}
.spotlight-bg-layer {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(204,0,0,.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(15,52,96,.4) 0%, transparent 50%);
  pointer-events: none;
}
.spotlight-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.spotlight-content {}
.spotlight-cat {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65); font-size: 12px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; letter-spacing: .3px;
}
.spotlight-title {
  font-size: 42px; font-weight: 900; color: #fff; line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -1px;
}
.spotlight-desc { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 28px; }
.spotlight-specs-row {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.spotlight-spec {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 14px 16px; min-width: 80px; flex: 1;
}
.spotlight-spec i { font-size: 18px; color: var(--red); }
.spotlight-spec strong { font-size: 15px; font-weight: 700; color: #fff; }
.spotlight-spec span   { font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; }
.spotlight-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.spotlight-price { margin-right: 8px; }
.sp-price-label { display: block; font-size: 11px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; }
.sp-price-val { display: block; font-size: 28px; font-weight: 900; color: #fff; line-height: 1.1; }
.sp-installment { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.btn-red {
  background: var(--red); color: #fff; border-radius: 10px; padding: 12px 24px;
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; box-shadow: 0 4px 16px rgba(204,0,0,.4);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-wa {
  background: #25D366; color: #fff; border-radius: 10px; padding: 12px 24px;
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s; box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* Spotlight visual */
.spotlight-visual { display: flex; justify-content: center; align-items: center; }
.spotlight-img-wrap {
  position: relative; width: 100%; max-width: 520px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .15s ease;
}
.spotlight-img-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(204,0,0,.2) 0%, transparent 70%);
  border-radius: 50%; filter: blur(20px); z-index: 0;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.05); }
}
.spotlight-img {
  position: relative; z-index: 1; width: 100%; height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.5));
  transform: translateZ(30px);
  transition: transform .15s ease, filter .2s;
}
.spotlight-img-reflection {
  position: absolute; bottom: -40px; left: 10%; right: 10%; height: 60px;
  background: linear-gradient(to bottom, rgba(204,0,0,.15), transparent);
  filter: blur(15px); border-radius: 50%;
  z-index: 0;
}
.spotlight-img-placeholder {
  width: 400px; height: 280px; background: rgba(255,255,255,.04);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,.1);
  border: 2px dashed rgba(255,255,255,.08);
}

/* ═══════════════════════════════════════════════════════════
   ── 3D CARD EFFECTS (Model Cards & Why Cards) ────────────
   ═══════════════════════════════════════════════════════════ */
.model-card[data-tilt3d],
.why-card[data-tilt3d] {
  transform-style: preserve-3d;
  transition: transform .12s ease, box-shadow .2s;
  will-change: transform;
}
.model-card[data-tilt3d] .model-card-img img {
  transition: transform .2s;
}
.model-card[data-tilt3d]:hover .model-card-img img {
  transform: scale(1.06) translateZ(0);
}

/* Why card 3D enhancement */
.why-card {
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .2s;
  will-change: transform;
}

/* Kat card 3D */
.kat-card {
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .2s;
  will-change: transform;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   ── PRODUCT DETAIL (Redesign) ────────────────────────────
   ═══════════════════════════════════════════════════════════ */

.detail-breadcrumb {
  background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}
.detail-breadcrumb > .container {
  display: flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--gray-400); flex-wrap: wrap;
}
.detail-breadcrumb a { color: var(--gray-500); font-weight: 500; }
.detail-breadcrumb a:hover { color: var(--red); }
.detail-breadcrumb i  { font-size: 9px; color: var(--gray-300); }
.detail-breadcrumb span { color: var(--gray-700); font-weight: 600; }

.detail-wrap { padding: 40px 0 0; background: #fff; }
.detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}

/* Gallery */
.detail-gallery-col {}
.detail-main-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  aspect-ratio: 4/3; cursor: zoom-in;
}
.detail-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .25s;
}
.detail-main-img.loading { opacity: .5; }
.detail-no-img {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: var(--gray-200);
}
.detail-expand-btn {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0,0,0,.45); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: background .2s; backdrop-filter: blur(6px);
}
.detail-expand-btn:hover { background: rgba(0,0,0,.7); }
.detail-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background .2s; backdrop-filter: blur(6px);
}
.detail-nav-btn:hover { background: rgba(0,0,0,.75); }
.detail-prev { left: 12px; }
.detail-next { right: 12px; }
.detail-img-counter {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.5); color: #fff; border-radius: 20px;
  padding: 4px 12px; font-size: 12px; font-weight: 600;
  backdrop-filter: blur(6px);
}
.detail-badge-featured {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px; display: flex; align-items: center; gap: 5px;
}
.detail-thumbs-row {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.detail-thumb {
  width: 76px; height: 58px; border-radius: 10px; overflow: hidden;
  border: 2px solid var(--gray-200); cursor: pointer; transition: all .2s;
  background: none; padding: 0; flex-shrink: 0;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumb.active { border-color: var(--red); box-shadow: 0 0 0 2px rgba(204,0,0,.2); }
.detail-thumb:hover { border-color: var(--gray-400); }

/* Info column */
.detail-cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-light); color: var(--red);
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 12px; letter-spacing: .2px;
}
.detail-title {
  font-size: 32px; font-weight: 900; color: var(--gray-900);
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -.5px;
}
.detail-quick-specs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.detail-quick-specs span {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-100); color: var(--gray-700);
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
}
.detail-quick-specs i { color: var(--red); font-size: 11px; }

/* Price card */
.detail-price-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 20px; margin-bottom: 20px;
}
.dpc-price-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 12px; }
.dpc-label { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-400); font-weight: 600; display: block; margin-bottom: 4px; }
.dpc-price { font-size: 32px; font-weight: 900; color: var(--red); line-height: 1; }
.dpc-tags { display: flex; flex-direction: column; gap: 5px; align-items: flex-end; }
.dpc-tag {
  display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600;
  color: #16a34a; background: #dcfce7; padding: 4px 10px; border-radius: 100px;
}
.dpc-installment {
  display: flex; align-items: center; gap: 8px; padding: 10px 0 10px;
  border-top: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-700); font-weight: 600;
}
.dpc-installment i { color: var(--red); }
.dpc-installment-note { margin-left: auto; font-size: 11px; color: var(--gray-400); font-weight: 400; }
.dpc-note { font-size: 11.5px; color: var(--gray-400); margin: 6px 0 0; display: flex; align-items: center; gap: 5px; }
.dpc-note i { color: var(--gray-400); }

/* CTA buttons */
.detail-cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.detail-cta-btn {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  border-radius: 12px; text-decoration: none; transition: all .2s; border: 2px solid transparent;
}
.detail-cta-btn i { font-size: 22px; flex-shrink: 0; }
.detail-cta-btn strong { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.detail-cta-btn span  { font-size: 12px; color: rgba(255,255,255,.7); }
.detail-cta-wa    { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.detail-cta-wa:hover  { background: #1ebe5a; transform: translateY(-1px); }
.detail-cta-phone { background: var(--gray-900); }
.detail-cta-phone:hover { background: var(--gray-800); transform: translateY(-1px); }
.detail-form-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--red); font-size: 14px; font-weight: 600;
  border: 2px solid var(--red-light); border-radius: 10px; padding: 11px;
  transition: all .2s; margin-bottom: 20px;
}
.detail-form-link:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* Trust badges */
.detail-trust-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--gray-100);
}
.detail-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--gray-600);
}
.detail-trust-item i { color: var(--red); font-size: 14px; }

/* Tabs */
.detail-tabs-wrap { margin-bottom: 60px; }
.detail-tabs {
  display: flex; border-bottom: 2px solid var(--gray-200);
  margin-bottom: 32px; gap: 0; overflow-x: auto; scrollbar-width: none;
}
.detail-tabs::-webkit-scrollbar { display: none; }
.detail-tab {
  display: flex; align-items: center; gap: 8px; padding: 14px 24px;
  font-size: 15px; font-weight: 600; color: var(--gray-500);
  background: none; border: none; cursor: pointer; transition: all .2s;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  white-space: nowrap;
}
.detail-tab i { font-size: 14px; }
.detail-tab:hover { color: var(--gray-800); }
.detail-tab.active { color: var(--red); border-bottom-color: var(--red); }
.detail-tab-panel { display: none; }
.detail-tab-panel.active { display: block; }
.detail-empty { color: var(--gray-400); font-style: italic; padding: 32px 0; text-align: center; }

/* Description content */
.detail-desc-content { max-width: 760px; }
.detail-desc-content p  { font-size: 15.5px; color: var(--gray-700); line-height: 1.8; margin-bottom: 16px; }
.detail-desc-content h2,.detail-desc-content h3 { font-size: 20px; font-weight: 700; color: var(--gray-900); margin: 24px 0 12px; }
.detail-desc-content ul { padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.detail-desc-content ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-700); }
.detail-desc-content ul li::before { content: ''; display: block; width: 8px; height: 8px; background: var(--red); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

/* Specs grid */
.detail-specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.spec-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 16px; transition: border-color .2s;
}
.spec-item:hover { border-color: rgba(204,0,0,.2); }
.spec-item-icon {
  width: 40px; height: 40px; background: var(--red-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 16px; flex-shrink: 0;
}
.spec-item-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); font-weight: 600; margin-bottom: 3px; }
.spec-item-value { font-size: 15px; font-weight: 700; color: var(--gray-900); }

/* Warranty grid */
.detail-warranty-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.warranty-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 24px; transition: border-color .2s;
}
.warranty-card:hover { border-color: rgba(204,0,0,.2); }
.warranty-icon {
  width: 48px; height: 48px; background: var(--red-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 20px; margin-bottom: 14px;
}
.warranty-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.warranty-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin: 0; }

/* Similar section */
.similar-section { background: var(--gray-50); }

/* ═══════════════════════════════════════════════════════════
   ── LIGHTBOX ─────────────────────────────────────────────
   ═══════════════════════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-img-wrap {
  display: flex; align-items: center; justify-content: center;
  flex: 1; padding: 60px 80px 20px;
}
.lightbox-img {
  max-width: 100%; max-height: calc(100vh - 160px);
  border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.5);
  object-fit: contain; transition: opacity .2s;
}
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.12); color: #fff; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; border: none; cursor: pointer;
  font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-thumbs {
  display: flex; gap: 8px; padding: 0 0 20px; overflow-x: auto;
  max-width: 90vw; scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb-btn {
  width: 64px; height: 48px; flex-shrink: 0; border-radius: 8px; overflow: hidden;
  border: 2px solid rgba(255,255,255,.2); cursor: pointer; background: none;
  transition: border-color .2s; padding: 0;
}
.lightbox-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-thumb-btn.active { border-color: #fff; }
.lightbox-counter {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: 13px; font-weight: 600;
}
