:root {
  --color-navy: #0B1E3F;
  --color-navy-light: #142B5C;
  --color-orange: #FF0000;
  --color-orange-dark: #CC0000;
  --color-gray-bg: #F5F7FA;
  --color-text: #1A2238;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
}

* { box-sizing: border-box; }
/* smooth scroll only when JS explicitly requests it — avoids sluggish wheel scroll */
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; display: block; }

.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--color-navy);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.topbar a { color: #fff; text-decoration: none; opacity: 0.9; }
.topbar a:hover { opacity: 1; color: var(--color-orange); }
.topbar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ===== Header ===== */
.main-header { background: #fff; border-bottom: 1px solid var(--color-border); }
.header-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-navy);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(255, 107, 44, 0.35);
}
.logo-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.logo-img {
  height: 80px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo-img { height: 56px; max-height: 56px; }
}

.search-bar {
  display: flex;
  background: var(--color-gray-bg);
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  transition: border-color 0.2s;
}
.search-bar:focus-within { border-color: var(--color-orange); background: #fff; }
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}
.search-bar button {
  background: var(--color-orange);
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.search-bar button:hover { background: var(--color-orange-dark); }

.header-actions { display: flex; gap: 0.5rem; align-items: center; }
.header-icon-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  color: var(--color-text);
  border-radius: 8px;
  transition: background 0.2s;
  font-size: 0.88rem;
}
.header-icon-btn:hover { background: var(--color-gray-bg); }
.header-icon-btn .ico {
  width: 38px;
  height: 38px;
  background: var(--color-gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.header-icon-btn .lbl small {
  display: block;
  font-size: 0.7rem;
  color: var(--color-muted);
}
.header-icon-btn .lbl b { font-size: 0.95rem; color: var(--color-navy); font-weight: 700; }
.wa-btn .ico { background: #25D366; color: #fff; }

/* "Panel / Admin Girişi" rozeti — yalnızca oturum açıkken render edilir.
   Desktop: <nav>'ın DIŞINDA, container'ın sağında turuncu buton.
   Mobil: <nav> içinde son item, drawer açıkken en altta görünür. */
.nav-admin-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  background: var(--color-orange);
  color: #fff;
  line-height: 1.2;
  text-decoration: none;
  font-weight: 600;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s;
}
.nav-admin-badge:hover { background: var(--color-orange-dark); color: #fff; text-decoration: none; }
.nav-admin-badge b     { font-size: 0.92rem; font-weight: 700; color: #fff; }
.nav-admin-badge small { font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.82); margin-top: 0.1rem; }

/* Desktop default: outside-nav rozeti görünür, içerideki gizli.
   `.main-nav a { display:flex }` (0,1,1) ile EŞİT özgüllük olmasın diye .main-nav prefixli (0,2,1). */
.nav-admin-badge--desktop { margin-left: 1.5rem; }
.main-nav a.nav-admin-badge--mobile { display: none; }

/* nav + desktop badge'i yan yana — badge `.main-nav`'in dışında, container flex child */
.main-nav-wrap > .container-custom { display: flex; align-items: stretch; }
.main-nav { flex: 1 1 auto; min-width: 0; }
.main-nav a { white-space: nowrap; }

/* Oturum açıkken Panel butonu yer kapladığı için menü item paddinglerini sıkıştır,
   buton da kompaktlaşsın ki container 1320px içinde kalsın. */
.main-nav-wrap.has-admin .main-nav a { padding: 0.95rem 0.85rem; font-size: 0.88rem; }
.main-nav-wrap.has-admin .nav-admin-badge--desktop {
  margin-left: 0.5rem;
  padding: 0.45rem 0.9rem;
}
.main-nav-wrap.has-admin .nav-admin-badge--desktop b     { font-size: 0.85rem; }
.main-nav-wrap.has-admin .nav-admin-badge--desktop small { font-size: 0.65rem; }

/* ===== Main Nav ===== */
.main-nav-wrap {
  background: var(--color-navy);
  border-top: 3px solid var(--color-orange);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.95rem 1.2rem;
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-orange);
  color: #fff;
}
.main-nav a.has-sub::after { content: '▾'; font-size: 0.7rem; opacity: 0.7; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-navy);
  cursor: pointer;
  padding: 0.5rem;
}

/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-bg);
  contain: layout paint;
}
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide {
  min-width: 100%;
  position: relative;
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 45%),
    radial-gradient(ellipse at 85% 90%, rgba(255,107,44,0.18) 0%, rgba(255,107,44,0) 50%),
    linear-gradient(100deg, rgba(11,30,63,0.92) 0%, rgba(11,30,63,0.75) 50%, rgba(11,30,63,0.35) 100%);
  z-index: 1;
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.04) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Tema = sadece renk/gradient. Görsel admin'den gelen slide.image_path'ten slide-visual içinde gösterilir. */
.slide-1 {
  background: linear-gradient(135deg, #0B1E3F 0%, #1e3a6f 100%);
  background-color: #0B1E3F;
}
.slide-2 {
  background: linear-gradient(135deg, #990000 0%, #CC0000 60%, #FF3333 100%);
  background-color: #990000;
}
.slide-3 {
  background: linear-gradient(135deg, #660000 0%, #990000 100%);
  background-color: #660000;
}
.slide-1::before, .slide-2::before, .slide-3::before, .slide-custom::before {
  background: none;
}
.slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  padding: 3.5rem 0;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-orange);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.slide h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.slide h1 span { color: var(--color-orange); }
.slide p.lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 540px;
}
.slide-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.slide-visual {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-visual img {
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--color-orange); border-color: var(--color-orange); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dots button.active { background: var(--color-orange); width: 28px; border-radius: 5px; }

/* Shared buttons */
.btn-primary {
  background: var(--color-orange);
  color: #fff;
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.35);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.5);
}
.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.9rem 1.7rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.2s;
  font-size: 0.95rem;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* ===== Brands Strip ===== */
.brands-strip {
  background: #fff;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
.brands-track {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.brands-track::-webkit-scrollbar { display: none; }

/* Brands wrap with bottom dots */
.brands-wrap { position: relative; }
.brands-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.brands-dots button {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #d5d9de;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.brands-dots button:hover { background: #9ca3af; }
.brands-dots button.active {
  background: var(--color-orange);
  width: 40px;
}
.brand-chip {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s;
  background: #fff;
  padding: 0.6rem;
  position: relative;
  overflow: hidden;
}
.brand-chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.25);
  opacity: 1;
  transition: all 0.25s;
}
.brand-chip:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(11, 30, 63, 0.12);
}
.brand-chip:hover img {
  transform: scale(1.32);
}

/* ===== Products rail (yatay kaydırılabilir liste — sadece ana sayfa featured) ===== */
.products-rail-wrap { position: relative; }
.products-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  /* Hover efekti (translateY -5px + box-shadow) clipped olmasın */
  padding: 8px 4px 18px;
  margin: -8px -4px -18px;
  cursor: grab;
}
.products-rail::-webkit-scrollbar { display: none; }
.products-rail.is-dragging { cursor: grabbing; }
.products-rail.is-dragging a,
.products-rail.is-dragging .product-card { pointer-events: none; }
.products-rail .product-card {
  flex: 0 0 auto;
  width: calc((100% - 1.25rem * 3) / 4); /* desktop: 4 kart aynı anda görünür */
  scroll-snap-align: start;
}

/* ===== 2 satırlı rail (sayfa = 4 ürün, mobilde 2x2 grid sayfaları yatay kayar) ===== */
.products-rail-2row {
  display: flex;
  gap: 0; /* sayfalar 100% width, aralarında scroll snap kayması — gap olmamalı */
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.products-rail-2row::-webkit-scrollbar { display: none; }
.products-rail-2row.is-dragging { cursor: grabbing; }
.products-rail-2row.is-dragging a,
.products-rail-2row.is-dragging .product-card { pointer-events: none; }

.rail-page {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop: 4 yan yana */
  gap: 1.25rem;
  /* Hover transform/shadow için iç padding (kart boyutu 1fr — etkilenmez) */
  padding: 8px 0 18px;
  box-sizing: border-box;
}

/* Bottom dots (brand strip ile aynı görünüm) */
.rail-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.rail-dots button {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: #d5d9de;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.rail-dots button:hover { background: #9ca3af; }
.rail-dots button.active {
  background: var(--color-orange);
  width: 40px;
}

/* ===== Section scaffolding ===== */
.section {
  padding: 4rem 0;
}
.section-alt { background: var(--color-gray-bg); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.section-head-left .eyebrow {
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.section-head-left h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-head-left p { color: var(--color-muted); margin: 0.5rem 0 0; font-size: 1rem; }
.section-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.section-link:hover { color: var(--color-orange-dark); }

/* ===== Service Categories (distinct from product cards) ===== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.cat-card {
  background: linear-gradient(160deg, #142B5C 0%, #0B1E3F 100%);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.25rem 1.75rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.3s;
}
.cat-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.18), transparent 70%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 30, 63, 0.3);
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover::after { opacity: 1; }

.cat-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #f0f4f8);
  border: 3px solid rgba(255, 107, 44, 0.4);
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.35s;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}
.cat-card:hover .cat-img {
  border-color: var(--color-orange);
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(255, 107, 44, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.9);
}
.cat-img img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  transition: transform 0.35s;
}
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-body { padding: 0; position: relative; z-index: 1; }
.cat-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.cat-body p.cat-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}
.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.cat-card:hover .cat-btn { gap: 0.5rem; }

/* ===== Tabbed Banner ===== */
.tabs-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: 16px; overflow: hidden; }
.tabs-nav {
  display: flex;
  background: var(--color-gray-bg);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}
.tab-btn {
  flex: 1;
  min-width: 140px;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  font-family: inherit;
}
.tab-btn:hover { color: var(--color-orange); }
.tab-btn.active {
  background: #fff;
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; min-height: 340px; }
.tab-text { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.tab-text .eyebrow {
  color: var(--color-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.tab-text h3 {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}
.tab-text p { color: var(--color-muted); margin-bottom: 1.5rem; }
.tab-text ul { padding-left: 1.2rem; margin: 0 0 1.5rem; color: var(--color-text); }
.tab-text ul li { margin-bottom: 0.35rem; }
.tab-visual {
  background: linear-gradient(135deg, #F5F7FA, #E5E7EB);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-visual img {
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
}

/* ===== Product Cards 4-col ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(11, 30, 63, 0.12);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-orange);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}
.product-badge.new { background: var(--color-navy); }

/* Ürün tipi rozeti — her kartta sol üstte, Sıfır (mavi) / İkinci El (gri) */
.product-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid transparent;
}
.product-type-badge.type-new {
  background: #dbeafe;
  color: #1e40af;
  border-color: #bfdbfe;
}
.product-type-badge.type-used {
  background: #f3f4f6;
  color: #374151;
  border-color: #d1d5db;
}

.product-actions {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
  z-index: 2;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.product-actions button:hover { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.product-img {
  height: 260px;
  background: linear-gradient(135deg, #FAFBFC, #EFF2F5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.product-brand {
  font-size: 0.72rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.3rem 0 0.75rem;
  color: var(--color-navy);
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
}
.price-old {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.price-now {
  color: var(--color-orange);
  font-weight: 800;
  font-size: 1.2rem;
}
.product-cta {
  margin-top: 0.75rem;
  display: block;
  background: var(--color-navy);
  color: #fff;
  text-align: center;
  padding: 0.6rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
}
.product-card:hover .product-cta { background: var(--color-orange); }

/* ===== Campaign 2-col ===== */
.campaign-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem;
}
.campaign-big, .campaign-small {
  border-radius: 16px;
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  transition: transform 0.3s;
}
.campaign-big:hover, .campaign-small:hover { transform: translateY(-5px); }
.campaign-big {
  background:
    linear-gradient(135deg, rgba(11,30,63,0.92) 0%, rgba(30,58,111,0.88) 100%),
    radial-gradient(ellipse at 70% 30%, #ffffff 0%, #f3f5f8 45%, #e5e9ef 100%);
  min-height: 460px;
  justify-content: center;
}
.campaign-small:nth-child(1) {
  background:
    linear-gradient(135deg, rgba(232,88,24,0.92) 0%, rgba(255,107,44,0.88) 100%),
    radial-gradient(ellipse at 70% 30%, #ffffff 0%, #f3f5f8 45%, #e5e9ef 100%);
}
.campaign-small-stack { display: grid; gap: 1.25rem; }
.campaign-small {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
}
.campaign-small:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(22,160,133,0.92) 0%, rgba(26,188,156,0.88) 100%),
    radial-gradient(ellipse at 70% 30%, #ffffff 0%, #f3f5f8 45%, #e5e9ef 100%);
}
.campaign-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.campaign-big h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.campaign-small h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.campaign-big p { font-size: 1.05rem; opacity: 0.9; margin: 0 0 1.25rem; max-width: 420px; }
.campaign-small p { opacity: 0.95; font-size: 0.92rem; margin: 0 0 0.75rem; }
.campaign-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ===== Trust / Features bar ===== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.trust-ico {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.1);
  color: var(--color-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trust-item h4 { margin: 0; font-size: 0.98rem; color: var(--color-navy); }
.trust-item p { margin: 0; font-size: 0.82rem; color: var(--color-muted); }

/* ===== Footer ===== */
.footer {
  background: var(--color-navy);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1.1rem;
  font-weight: 700;
}
.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--color-orange); }
.footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 0 0 0.6rem; }
.footer .logo { color: #fff; margin-bottom: 1rem; }
.footer .logo-text small { color: rgba(255, 255, 255, 0.6); }
.contact-inline {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.75rem;
  align-items: center !important;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  text-decoration: none;
}
.contact-inline > div { flex: 1; min-width: 0; }
.contact-inline .cc-ico {
  width: 38px; height: 38px;
  background: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-inline .cc-ico.cc-wa { background: #25D366; }
.contact-inline .cc-ico.cc-loc { background: #DC2626; }
.contact-inline .cc-ico svg { width: 18px; height: 18px; fill: #fff; }
a.contact-inline { transition: opacity 0.2s; }
a.contact-inline:hover { opacity: 0.85; }
.contact-inline small { display: block; font-size: 0.72rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-inline b { font-size: 0.95rem; }
.social-links { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.social-links a:hover { background: var(--color-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.85;
}
.breadcrumb a { color: var(--color-orange); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ===== Floating ===== */
.float-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  text-decoration: none;
  transition: transform 0.2s;
}
.float-wa:hover { transform: scale(1.08); }
.back-top {
  position: fixed;
  bottom: 96px; right: 24px;
  width: 48px; height: 48px;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 99;
  border: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--color-orange); }

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.2s;
}
.step-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(11, 30, 63, 0.08);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 14px rgba(255, 107, 44, 0.35);
}
.step-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--color-navy);
  font-weight: 700;
}
.step-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--color-orange); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-navy);
  font-size: 1rem;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0.85rem 0 0;
  color: var(--color-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== Filter bar ===== */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: var(--color-gray-bg);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  align-items: center;
  margin-top: 1.25rem;
}
.filter-bar select {
  flex: 1;
  min-width: 160px;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
}
.filter-bar select:focus {
  outline: none;
  border-color: var(--color-orange);
}

/* ===== Breadcrumb strip ===== */
.breadcrumb-strip {
  background: var(--color-gray-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.85rem 0;
}
.breadcrumb-inline {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.breadcrumb-inline a { color: var(--color-orange); text-decoration: none; font-weight: 500; }
.breadcrumb-inline a:hover { text-decoration: underline; }
.breadcrumb-inline span { color: var(--color-muted); }
.breadcrumb-inline .current { color: var(--color-text); font-weight: 500; }

/* ===== Product Detail ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.pd-gallery { position: sticky; top: 1rem; }
.pd-main-image {
  position: relative;
  background: linear-gradient(135deg, #FAFBFC, #EFF2F5);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pd-main-image img {
  max-width: 80%;
  max-height: 440px;
  object-fit: contain;
}
.pd-badge-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pd-badge {
  background: var(--color-orange);
  color: #fff;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.pd-badge.new { background: var(--color-navy); }
.pd-zoom {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text);
}
.pd-zoom:hover { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 0.85rem;
}
.pd-thumb {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 10px;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-thumb:hover { border-color: var(--color-orange); }
.pd-thumb.active { border-color: var(--color-orange); background: #FFE5E5; }
.pd-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

.pd-info { padding-top: 0.5rem; }
.pd-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.pd-brand-link {
  color: var(--color-orange);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}
.pd-brand-link:hover { text-decoration: underline; }
.pd-stock {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
}
.pd-stock.in-stock { background: #D1FAE5; color: #065F46; }

.pd-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.pd-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.pd-stars { color: #FFB800; font-size: 1.05rem; letter-spacing: 0.05em; }
.pd-rate-txt { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; }
.pd-review-link { color: var(--color-muted); text-decoration: none; font-size: 0.9rem; }
.pd-review-link:hover { color: var(--color-orange); }
.pd-sku {
  margin-left: auto;
  color: var(--color-muted);
  font-size: 0.82rem;
  background: var(--color-gray-bg);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.pd-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.pd-features li {
  color: var(--color-text);
  font-size: 0.95rem;
}

.pd-price-box {
  background: var(--color-gray-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.pd-price-old {
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.pd-price-current {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pd-price-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}
.pd-price-save {
  background: var(--color-orange);
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
}
.pd-installment {
  margin-top: 0.6rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}
.pd-installment b { color: var(--color-navy); }

.pd-options { margin-bottom: 1.5rem; }
.pd-qty {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.pd-qty label { font-weight: 600; color: var(--color-navy); }
.qty-input {
  display: flex;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}
.qty-btn {
  width: 40px; height: 44px;
  background: var(--color-gray-bg);
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-navy);
}
.qty-btn:hover { background: var(--color-orange); color: #fff; }
.qty-input input {
  width: 60px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  outline: none;
  font-family: inherit;
  -moz-appearance: textfield;
}
.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pd-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.pd-buy-btn {
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 1.25rem !important;
}
.pd-wa-btn {
  background: #25D366;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.pd-wa-btn:hover {
  background: #1EBE5B;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}
.pd-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.pd-icon-btn {
  height: 48px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-text);
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pd-icon-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.pd-phone-cta {
  display: block;
  text-align: center;
  background: var(--color-navy);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s;
}
.pd-phone-cta:hover { background: var(--color-orange); }

.pd-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.pd-trust-item {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.pd-trust-ico {
  width: 40px; height: 40px;
  background: rgba(255, 107, 44, 0.1);
  color: var(--color-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.pd-trust-item b { font-size: 0.9rem; color: var(--color-navy); display: block; }
.pd-trust-item small { font-size: 0.78rem; color: var(--color-muted); display: block; }

/* ===== Product detail tabs ===== */
.pd-tabs-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}
.pd-tabs-nav {
  display: flex;
  background: var(--color-gray-bg);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}
.pd-tab-btn {
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  white-space: nowrap;
}
.pd-tab-btn:hover { color: var(--color-orange); }
.pd-tab-btn.active {
  background: #fff;
  color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}
.pd-tabs-body { padding: 2.5rem; }
.pd-tab-panel { display: none; color: var(--color-text); line-height: 1.7; }
.pd-tab-panel.active { display: block; }
.pd-tab-panel h3 { color: var(--color-navy); margin: 0 0 1rem; font-size: 1.3rem; }
.pd-tab-panel h4 { color: var(--color-navy); margin: 1.5rem 0 0.75rem; font-size: 1.1rem; }
.pd-tab-panel p { margin: 0 0 1rem; }
.pd-tab-panel ul { padding-left: 1.3rem; margin: 0 0 1rem; }
.pd-tab-panel ul li { margin-bottom: 0.35rem; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
}
.spec-table th, .spec-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.spec-table th {
  background: var(--color-gray-bg);
  width: 35%;
  font-weight: 600;
  color: var(--color-navy);
}
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }

.installment-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.installment-table th, .installment-table td {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  text-align: center;
}
.installment-table th { background: var(--color-navy); color: #fff; font-weight: 600; }
.installment-table td:first-child { text-align: left; font-weight: 600; color: var(--color-navy); background: var(--color-gray-bg); }

.review-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  padding: 1.5rem;
  background: var(--color-gray-bg);
  border-radius: 12px;
  margin-bottom: 2rem;
  align-items: center;
}
.rs-score { text-align: center; }
.rs-num { font-size: 3.5rem; font-weight: 800; color: var(--color-orange); line-height: 1; }
.rs-stars { color: #FFB800; font-size: 1.4rem; margin: 0.3rem 0; letter-spacing: 0.1em; }
.rs-total { color: var(--color-muted); font-size: 0.9rem; }
.rs-bars { display: grid; gap: 0.5rem; }
.rs-bar-row { display: grid; grid-template-columns: 40px 1fr 40px; gap: 0.75rem; align-items: center; font-size: 0.88rem; }
.rs-bar { background: #fff; height: 10px; border-radius: 5px; overflow: hidden; border: 1px solid var(--color-border); }
.rs-bar > div { background: var(--color-orange); height: 100%; }
.rs-bar-row span:last-child { color: var(--color-muted); text-align: right; }

.reviews-list { display: grid; gap: 1.25rem; }
.review-item {
  background: var(--color-gray-bg);
  padding: 1.5rem;
  border-radius: 12px;
}
.review-head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.75rem; }
.review-head .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.review-head b { color: var(--color-navy); display: block; font-size: 0.95rem; }
.review-head small { color: var(--color-muted); font-size: 0.8rem; }
.review-head .stars { margin-left: auto; color: #FFB800; letter-spacing: 0.05em; }
.review-item p { margin: 0; color: var(--color-text); }

.shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.shipping-item {
  background: var(--color-gray-bg);
  padding: 1.5rem;
  border-radius: 12px;
}
.shipping-ico { font-size: 2rem; margin-bottom: 0.5rem; }
.shipping-item h4 { margin: 0 0 0.5rem; color: var(--color-navy); }
.shipping-item p { margin: 0; color: var(--color-muted); font-size: 0.9rem; }

/* ===== Brand Cards (on markalar.html) ===== */
.brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.brand-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.brand-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 30, 63, 0.12);
}
.brand-card:hover::before { transform: scaleX(1); }

.brand-card-logo {
  background: linear-gradient(135deg, #FAFBFC, #EFF2F5);
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  border-bottom: 1px solid var(--color-border);
}
.brand-card-logo img {
  max-width: 75%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0.3);
  opacity: 0.9;
  transition: all 0.3s;
}
.brand-card:hover .brand-card-logo img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.brand-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.brand-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
.brand-card-body p {
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.brand-card-link {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.brand-card:hover .brand-card-link { gap: 0.55rem; }

@media (max-width: 1080px) {
  .brand-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 780px) {
  .brand-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .brand-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .brand-card-logo { padding: 1.25rem 0.75rem; min-height: 100px; }
  .brand-card-logo img { max-width: 88%; max-height: 60px; }
  .brand-card-body { padding: 0.9rem 0.85rem 1rem; }
  .brand-card-body h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
  .brand-card-body p { font-size: 0.78rem; line-height: 1.45; margin-bottom: 0.6rem; }
  .brand-card-link { font-size: 0.78rem; }
  /* Last odd card spans full width */
  .brand-cards-grid > .brand-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ===== Brand Category Layout ===== */
.brand-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.filter-sidebar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}
.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 1rem;
}
.filter-head h3 { margin: 0; color: var(--color-navy); font-size: 1.1rem; }
.filter-clear {
  background: none;
  border: none;
  color: var(--color-orange);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
}
.filter-clear:hover { text-decoration: underline; }

.filter-section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.filter-section:last-child { border-bottom: none; }
.filter-section h4 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-section h4::after {
  content: '−';
  color: var(--color-muted);
  font-weight: 300;
  font-size: 1.3rem;
}
.filter-section.collapsed h4::after { content: '+'; }
.filter-section.collapsed .filter-body { display: none; }

.filter-body { display: flex; flex-direction: column; gap: 0.6rem; }
.filter-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--color-text);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.filter-check:hover { color: var(--color-orange); }
.filter-check input { accent-color: var(--color-orange); width: 16px; height: 16px; }
.filter-check small { color: var(--color-muted); margin-left: auto; font-size: 0.82rem; }

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--color-orange);
  margin-bottom: 0.75rem;
}
.price-inputs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.price-inputs input {
  flex: 1;
  padding: 0.55rem 0.7rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: inherit;
  width: 0;
}
.price-inputs span { color: var(--color-muted); }

/* ===== Brand Main ===== */
.brand-intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  align-items: center;
}
.brand-logo-big {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.brand-intro h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.brand-intro p { margin: 0 0 1rem; color: var(--color-muted); line-height: 1.7; font-size: 0.95rem; }
.brand-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.brand-badge {
  background: rgba(255, 107, 44, 0.1);
  color: var(--color-orange);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.brand-intro-right {
  background: linear-gradient(135deg, #FAFBFC, #EFF2F5);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-intro-right img { max-width: 100%; max-height: 200px; object-fit: contain; }

.brand-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.filter-toggle {
  display: none;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: #fff;
  border: none;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(255, 107, 44, 0.35);
  letter-spacing: 0.02em;
}
.filter-toggle:hover {
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.5);
  transform: translateY(-1px);
}
.brand-count { color: var(--color-muted); font-size: 0.9rem; }
.brand-count b { color: var(--color-navy); }
.brand-controls-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.sort-select {
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--color-text);
  cursor: pointer;
}
.view-toggle {
  display: flex;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.view-btn {
  width: 36px; height: 36px;
  background: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-muted);
}
.view-btn.active { background: var(--color-navy); color: #fff; }

.brand-products-grid { grid-template-columns: repeat(3, 1fr); }
.brand-products-grid.list-view {
  grid-template-columns: 1fr;
}
.brand-products-grid.list-view .product-card {
  flex-direction: row;
  align-items: center;
}
.brand-products-grid.list-view .product-img { width: 220px; height: 220px; flex-shrink: 0; }
.brand-products-grid.list-view .product-body { flex: 1; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 1.5rem;
}
.page-btn {
  width: 42px; height: 42px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  user-select: none;
  transition: all 0.15s;
}
.page-btn:hover:not(.disabled) {
  border-color: var(--color-orange);
  color: var(--color-orange);
  text-decoration: none;
}
.page-btn.active { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; }
a.page-btn, span.page-btn { text-decoration: none; }

.brand-seo {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 2rem;
  line-height: 1.8;
  color: var(--color-text);
}
.brand-seo h2 { margin: 0 0 1rem; color: var(--color-navy); font-size: 1.5rem; }
.brand-seo h3 { margin: 1.5rem 0 0.75rem; color: var(--color-navy); font-size: 1.15rem; }
.brand-seo ul { padding-left: 1.3rem; }
.brand-seo li { margin-bottom: 0.5rem; }

/* ===== Highlight in titles ===== */
.hl-orange {
  color: var(--color-orange);
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}
.hl-orange::after {
  content: '';
  position: absolute;
  left: 0.05em; right: 0.05em;
  bottom: 0;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
}

/* ===== Search banner ===== */
.search-banner {
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: #fff;
  padding: 1.25rem 0;
}
.search-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sb-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}
.sb-query { font-size: 1.1rem; font-weight: 500; }
.sb-query b { font-weight: 800; }
.sb-clear {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.sb-clear:hover { background: rgba(255, 255, 255, 0.35); }

/* ===== Active filter chips ===== */
.active-filters {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #FFE5E5;
  border: 1px solid #FF9999;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.25rem;
}
.af-label {
  font-weight: 700;
  color: var(--color-orange-dark);
  font-size: 0.88rem;
}
.af-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.af-chip {
  background: #fff;
  border: 1px solid var(--color-orange);
  color: var(--color-orange-dark);
  padding: 0.3rem 0.4rem 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.af-chip button {
  background: var(--color-orange);
  color: #fff;
  border: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.af-chip button:hover { background: var(--color-orange-dark); }

/* ===== Filter search input ===== */
.filter-search { position: relative; }
.filter-search input {
  width: 100%;
  padding: 0.65rem 0.75rem 0.65rem 2.2rem;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.filter-search input:focus { border-color: var(--color-orange); }
.filter-search .fs-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

/* ===== No results ===== */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border: 1px dashed var(--color-border);
  border-radius: 14px;
}
.nr-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.6; }
.no-results h3 { margin: 0 0 0.5rem; color: var(--color-navy); font-size: 1.3rem; }
.no-results p { color: var(--color-muted); margin: 0 0 1.5rem; }

/* ===== Product meta line ===== */
.product-meta {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .products-rail .product-card { width: calc((100% - 1.25rem * 2) / 3); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .brand-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: fixed;
    top: 0; left: -300px;
    width: 290px;
    height: 100vh;
    z-index: 200;
    transition: left 0.3s;
    border-radius: 0;
    max-height: 100vh;
  }
  .filter-sidebar.open { left: 0; }
  .filter-toggle { display: inline-block; }
  .brand-products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .pd-gallery { position: static; }
  .review-summary { grid-template-columns: 1fr; gap: 1rem; }
  .brand-intro { grid-template-columns: 1fr; }
  .pd-tabs-body { padding: 1.5rem; }
}
@media (max-width: 860px) {
  .header-top { grid-template-columns: auto auto; gap: 1rem; }
  .search-bar { grid-column: 1 / -1; order: 3; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-navy);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-toggle { display: block; color: #fff; background: var(--color-navy); width: 100%; text-align: left; padding: 0.8rem 1.2rem; font-size: 1rem; font-weight: 600; }
  /* Mobil drawer: container yatay flex'ten dik bloklara geri dön */
  .main-nav-wrap > .container-custom { display: block; }
  .nav-admin-badge--desktop { display: none; }
  .main-nav a.nav-admin-badge--mobile {
    display: flex;
    width: 100%;
    padding: 1rem 1.2rem;
    background: var(--color-navy);
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .main-nav a.nav-admin-badge--mobile:hover { background: var(--color-orange); }
  .main-nav a.nav-admin-badge--mobile b     { font-size: 1rem; }
  .main-nav a.nav-admin-badge--mobile small { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
  .slide h1 { font-size: 2rem; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-visual { display: none; }
  .cats-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* Rail'de 2 kart sığsın, 3.'nün ucu çok az peek olsun → kaydırılabilir hissi (peek küçük) */
  .products-rail { gap: 0.85rem; }
  .products-rail .product-card { width: 47%; }
  /* 2 satırlı rail: mobilde her sayfa 2 sütun × 2 satır = 4 ürün */
  .rail-page {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0.85rem;
  }
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-text { padding: 1.75rem; }
  .tab-visual { min-height: 200px; font-size: 5rem; }
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-big { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .topbar-left .hide-sm { display: none; }
  .header-actions .header-icon-btn .lbl { display: none; }
}
@media (max-width: 520px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .cat-card {
    padding: 1.75rem 1rem 1.5rem;
    text-align: center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .cat-img { width: 100px; height: 100px; margin: 0 auto 1rem; overflow: hidden; }
  .cat-img img { width: 92px; height: 92px; transform: scale(1.15); }
  .cat-body { width: 100%; text-align: center; }
  .cat-body h3 { font-size: 1rem; white-space: normal; text-align: center; }
  .cat-body p.cat-sub { font-size: 0.78rem; min-height: 2.6em; text-align: center; }
  .cat-btn { font-size: 0.74rem; }
  /* Last odd card spans full width, horizontal layout (icon right, text left) */
  .cats-grid > .cat-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    flex-direction: row-reverse !important;
    text-align: left;
    align-items: center !important;
    gap: 1.25rem;
    padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-img {
    width: 96px;
    height: 96px;
    margin: 0;
    flex-shrink: 0;
  }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-img { overflow: hidden; }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-img img { width: 88px; height: 88px; transform: scale(1.15); }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-body { text-align: left; flex: 1; }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-body h3 { text-align: left; }
  .cats-grid > .cat-card:last-child:nth-child(odd) .cat-body p.cat-sub { text-align: left; min-height: 0; margin-bottom: 0.6rem; }
  .trust-bar { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .slide h1 { font-size: 1.6rem; }
  .section-head-left h2 { font-size: 1.6rem; }
}

/* ===== Mobile polish pass ===== */
@media (max-width: 1080px) {
  .container-custom { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .header-top { padding: 1rem 0; gap: 1rem; }
  .slide { min-height: 440px; }
  .slide-inner { padding: 2.75rem 0; gap: 2rem; }
  .slide h1 { font-size: 2.5rem; }
  .campaign-big { min-height: 360px; }
  .campaign-big h3 { font-size: 2rem; }
  .pd-main-image { min-height: 400px; padding: 1.5rem; }
  .pd-title { font-size: 1.55rem; }
  .pd-price-num { font-size: 1.9rem; }
}

@media (max-width: 860px) {
  /* Topbar: hide meta, compact links */
  .topbar { font-size: 1rem; padding: 0.9rem 0; font-weight: 600; }
  .topbar-left, .topbar-right { gap: 1.1rem; flex-wrap: nowrap; white-space: nowrap; }
  .topbar-flex { justify-content: center; flex-wrap: nowrap; }
  .topbar-left:empty { display: none; }
  .topbar-right a { flex-shrink: 0; }

  /* Header: logo + actions on row, search below, nav toggle full width */
  .header-top {
    grid-template-columns: 1fr auto;
    grid-template-areas: "logo actions" "search search";
    padding: 0.85rem 0;
    gap: 0.75rem;
  }
  .header-top .logo { grid-area: logo; }
  .header-top .search-bar { grid-area: search; order: initial; }
  .header-top .header-actions { grid-area: actions; gap: 0.3rem; }
  .logo { font-size: 1.1rem; gap: 0.5rem; }
  .logo-icon { width: 40px; height: 40px; font-size: 1.3rem; border-radius: 10px; }
  .logo-text small { font-size: 0.6rem; letter-spacing: 0.1em; }
  .search-bar { align-items: stretch; }
  .search-bar input { padding: 1rem 1rem; font-size: 0.9rem; line-height: 1.2; }
  .search-bar button { padding: 1rem 1.3rem; font-size: 0.88rem; line-height: 1.2; display: inline-flex; align-items: center; justify-content: center; }
  .header-icon-btn { padding: 0.4rem; border: 1px solid var(--color-border); border-radius: 10px; }
  .header-icon-btn .ico { width: 36px; height: 36px; font-size: 1rem; }

  /* Nav — toggle inline with topbar on mobile */
  .topbar {
    background: linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 3;
  }
  .topbar-flex { padding-left: 70px; justify-content: flex-end; }
  .main-header { position: relative; }
  .main-nav-wrap {
    background: transparent;
    border-top: none;
    padding: 0;
  }
  .main-nav-wrap > .container-custom { padding: 0; position: static; }
  .mobile-toggle {
    position: absolute;
    top: -52px;
    left: 1.25rem;
    z-index: 10;
    width: auto;
    height: 52px;
    background: transparent;
    color: #fff;
    padding: 0 0.85rem 0 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-toggle .mt-icon {
    display: inline-block;
    width: 19px;
    height: 13px;
    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff),
      linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-size: 100% 3px;
    background-position: 0 0, 0 50%, 0 100%;
  }
  .mobile-toggle .mt-text { font-size: 1rem; font-weight: 600; }
  .main-nav {
    position: absolute;
    top: 0;
    left: 0; right: 0;
    background: var(--color-navy);
    z-index: 9;
  }
  .main-nav {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .main-nav a { font-size: 0.95rem; padding: 0.9rem 1rem; }

  /* Slider */
  .hero-slider { min-height: auto; margin-top: 10px; }
  .slide { min-height: 320px; }
  .slide-inner { padding: 2.75rem 0.5rem 3rem; text-align: left; }
  .hero-slider .container-custom { padding: 0 1.5rem; }
  .slide h1 { font-size: 1.85rem; }
  .slide p.lead { font-size: 0.98rem; margin-bottom: 1.25rem; }
  .slide-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; margin-bottom: 0.85rem; }
  .slide-ctas .btn-primary, .slide-ctas .btn-outline {
    padding: 0.75rem 1.1rem; font-size: 0.88rem;
  }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 12px; }
  .slider-dots button { width: 8px; height: 8px; }
  .slider-dots button.active { width: 22px; }

  /* Brands strip */
  .brand-chip { width: 140px; height: 80px; padding: 0.4rem; }
  .brand-chip img { transform: scale(1.3); }

  /* Section heads */
  .section-head-left h2 { font-size: 1.7rem; }
  .section-head-left p { font-size: 0.92rem; }

  /* Category cards */
  .cats-grid { gap: 0.75rem; }
  .cat-card { padding: 1.5rem 1rem 1.25rem; }
  .cat-img { width: 100px; height: 100px; margin-bottom: 1rem; border-width: 2px; }
  .cat-img img { width: 70px; height: 70px; }
  .cat-body h3 { font-size: 1rem; }
  .cat-body p.cat-sub { font-size: 0.78rem; margin-bottom: 0.65rem; }

  /* Product grid gap */
  .products-grid { gap: 1rem; }
  .product-img { height: 200px; }
  .product-body { padding: 0.9rem; }
  .product-title { font-size: 0.88rem; min-height: 2.6em; }
  .price-now { font-size: 1.05rem; }

  /* Campaigns */
  .campaign-big, .campaign-small { padding: 1.75rem; min-height: auto; }
  .campaign-big { min-height: 260px; }
  .campaign-big h3 { font-size: 1.6rem; }
  .campaign-small h3 { font-size: 1.15rem; }
  .campaign-big p { font-size: 0.95rem; }

  /* Trust bar */
  .trust-bar { padding: 1.5rem 0; gap: 1rem; }
  .trust-ico { width: 46px; height: 46px; font-size: 1.25rem; }
  .trust-item h4 { font-size: 0.92rem; }
  .trust-item p { font-size: 0.78rem; }

  /* Tabs */
  .tab-text { padding: 1.5rem; }
  .tab-text h3 { font-size: 1.35rem; }
  .tabs-nav { padding: 0; }
  .tab-btn { min-width: 110px; padding: 0.9rem 0.85rem; font-size: 0.85rem; }

  /* Page hero */
  .page-hero { padding: 2.25rem 0; }
  .page-hero h1 { font-size: 1.7rem; }

  /* Product detail — thumbs left, big image right */
  .product-detail { gap: 1.75rem; }
  .pd-gallery {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.6rem;
    align-items: start;
  }
  .pd-thumbs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
    margin-top: 0 !important;
    order: 0;
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
    padding-right: 2px;
  }
  .pd-thumbs::-webkit-scrollbar { width: 4px; }
  .pd-thumbs::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }
  .pd-thumbs::-webkit-scrollbar-thumb:hover { background: var(--color-orange); }
  .pd-thumb {
    padding: 0.3rem;
    border-radius: 8px;
    aspect-ratio: 1;
  }
  .pd-main-image { min-height: 320px; padding: 1rem; order: 1; }
  .pd-main-image img { max-height: 280px; }
  .pd-title { font-size: 1.35rem; }
  .pd-price-num { font-size: 1.7rem; }
  .pd-tabs-body { padding: 1.25rem; }
  .pd-tab-btn { padding: 0.9rem 1rem; font-size: 0.88rem; }
  .pd-trust-strip { grid-template-columns: 1fr; gap: 0.75rem; }
  .review-summary { padding: 1.25rem; gap: 1rem; }
  .rs-num { font-size: 2.75rem; }
  .spec-table th, .spec-table td { padding: 0.65rem 0.75rem; font-size: 0.88rem; }
  .installment-table { font-size: 0.8rem; }
  .installment-table th, .installment-table td { padding: 0.5rem 0.4rem; }

  /* Brand/list layout */
  .brand-intro { padding: 1.5rem; gap: 1.25rem; }
  .brand-intro h1 { font-size: 1.4rem; }
  .brand-controls { padding: 0.75rem 0.9rem; gap: 0.75rem; }
  .brand-controls-right { margin-left: 0; width: 100%; }
  .sort-select { flex: 1; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.25rem; }
  .footer-grid { gap: 1.5rem; margin-bottom: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Floating */
  .float-wa { width: 50px; height: 50px; font-size: 1.55rem; bottom: 18px; right: 18px; }
  .back-top { width: 42px; height: 42px; bottom: 78px; right: 18px; }

  /* Filter bar */
  .filter-bar { padding: 0.85rem; }
  .filter-bar select { min-width: 140px; font-size: 0.85rem; padding: 0.6rem 0.8rem; }

  /* Search banner */
  .search-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .sb-query { font-size: 0.98rem; }

  /* FAQ */
  .faq-item { padding: 0.85rem 1rem; }
  .faq-item summary { font-size: 0.94rem; }

  /* Steps */
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card { padding: 1.5rem 1.15rem; }
}

@media (max-width: 600px) {
  .header-icon-btn:not(.wa-btn) { display: none; }
  .wa-btn .ico { width: 40px; height: 40px; }
  .brand-chip { width: 130px; height: 78px; padding: 0.4rem; }
  .brand-chip img { transform: scale(1.35); }
  .brand-cards-grid { gap: 0.75rem; }
  .pd-cta-row, .pd-secondary-row { grid-template-columns: 1fr; }
  .pd-gallery { grid-template-columns: 54px 1fr; gap: 0.45rem; }
  .pd-thumbs { grid-template-columns: 1fr !important; gap: 0.4rem; }
  .pd-thumb { padding: 0.25rem; }
  .pagination { flex-wrap: wrap; gap: 0.35rem; }
  .page-btn { width: 38px; height: 38px; font-size: 0.88rem; }
  .rs-bar-row { grid-template-columns: 32px 1fr 40px; font-size: 0.82rem; }
  .review-head { flex-wrap: wrap; }
  .review-head .stars { margin-left: 0; width: 100%; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container-custom { padding: 0 1.1rem; }
  .topbar-right { gap: 0.65rem; flex-wrap: wrap; justify-content: center; }
  .topbar-right a { font-size: 0.72rem; }
  .section { padding: 2.25rem 0; }
  .section-head-left h2 { font-size: 1.4rem; }
  .section-head-left .eyebrow { font-size: 0.72rem; }

  /* Slider — extra tight */
  .slide { min-height: 300px; }
  .slide-inner { padding: 2.4rem 0.25rem 2.75rem; }
  .hero-slider .container-custom { padding: 0 1.35rem; }
  .slide h1 { font-size: 1.5rem; }
  .slide p.lead { font-size: 0.9rem; margin-bottom: 1rem; }
  .slide-ctas { gap: 0.5rem; }
  .slide-ctas .btn-primary, .slide-ctas .btn-outline {
    padding: 0.7rem 0.95rem; font-size: 0.82rem; flex: 1; justify-content: center; min-width: 140px;
  }

  /* Products keep 2 columns */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .brand-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  /* Rail küçük mobilde de 2 kart + çok az peek */
  .products-rail { gap: 0.65rem; }
  .products-rail .product-card { width: 47.5%; }
  /* 2 satırlı rail küçük mobilde de 2x2, daha sıkı gap */
  .rail-page { gap: 0.65rem; }
  .filter-toggle { width: 100%; padding: 0.95rem 1.2rem; font-size: 0.98rem; }
  .brand-controls { gap: 0.75rem; padding: 0.85rem 1rem; }
  .brand-controls-right { width: 100%; justify-content: space-between; }
  .brand-count { width: 100%; order: 3; text-align: center; font-size: 0.85rem; padding-top: 0.35rem; border-top: 1px dashed var(--color-border); }
  .product-img { height: 150px; }
  .product-body { padding: 0.7rem; }
  .product-brand { font-size: 0.66rem; }
  .product-title { font-size: 0.82rem; margin: 0.2rem 0 0.5rem; }
  .price-old { font-size: 0.75rem; }
  .price-now { font-size: 0.98rem; }
  .product-cta { padding: 0.5rem; font-size: 0.78rem; }
  .product-badge { font-size: 0.62rem; padding: 0.2rem 0.5rem; top: 8px; left: 8px; }
  .product-actions { display: none; }

  /* Campaign */
  .campaign-big, .campaign-small { padding: 1.4rem; border-radius: 14px; }
  .campaign-big { min-height: 220px; }
  .campaign-big h3 { font-size: 1.35rem; }
  .campaign-big p { font-size: 0.88rem; margin-bottom: 0.85rem; }
  .campaign-small h3 { font-size: 1.05rem; }
  .campaign-small p { font-size: 0.85rem; }

  /* Header actions further compact */
  .header-actions { flex-direction: row; }
  .search-bar input { padding: 0.95rem 0.9rem; font-size: 0.88rem; line-height: 1.2; }
  .search-bar button { padding: 0.95rem 1.1rem; font-size: 0.82rem; line-height: 1.2; display: inline-flex; align-items: center; justify-content: center; }

  /* Footer — 2 kolon, ince kart stili */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: start;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
    margin-bottom: 0.25rem;
  }
  .footer-grid > :first-child .logo { justify-content: center; }
  .footer-grid > :first-child .social-links { justify-content: center; }
  .footer-grid > :first-child p { max-width: 400px; margin: 0 auto 0.75rem; }

  .footer-grid > div:not(:first-child) {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem 0.85rem;
    min-width: 0;
    text-align: center;
  }
  .footer h4 {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer a { padding: 0.25rem 0; font-size: 0.85rem; }
  .contact-inline {
    margin-bottom: 0.65rem;
    gap: 0.5rem;
    text-align: left;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }
  .contact-inline .cc-ico { width: 28px; height: 28px; font-size: 0.75rem; flex-shrink: 0; background: var(--color-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
  .contact-inline .cc-ico.cc-wa { background: #25D366; }
  .contact-inline .cc-ico.cc-loc { background: #DC2626; }
  .contact-inline .cc-ico svg { width: 13px; height: 13px; }
  .contact-inline small { font-size: 0.6rem; }
  .contact-inline b { font-size: 0.8rem; white-space: normal; overflow-wrap: anywhere; }

  /* Page hero */
  .page-hero { padding: 1.75rem 0; }
  .page-hero h1 { font-size: 1.4rem; }

  /* Brand strip smaller */
  .brand-chip { width: 124px; height: 74px; padding: 0.35rem; }
  .brand-chip img { transform: scale(1.35); }
  .brands-strip { padding: 1.1rem 0; }
  .brands-dots { margin-top: 0.75rem; gap: 0.3rem; }
  .brands-dots button { width: 18px; height: 3px; }
  .brands-dots button.active { width: 32px; }

  /* Cat cards 1 col already at 520px; tighten body */
  .cat-card { padding: 1.25rem 1rem 1.1rem; flex-direction: row; text-align: left; gap: 1rem; align-items: center; }
  .cat-card .cat-img { width: 72px; height: 72px; margin-bottom: 0; flex-shrink: 0; }
  .cat-card .cat-img img { width: 60px; height: 60px; }
  .cat-body { flex: 1; }
  .cat-body h3 { font-size: 0.98rem; margin-bottom: 0.2rem; }
  .cat-body p.cat-sub { margin-bottom: 0.4rem; }

  /* Product detail */
  .pd-main-image { min-height: 260px; }
  .pd-main-image img { max-height: 220px; }
  .pd-brand-row { flex-wrap: wrap; gap: 0.5rem; }
  .pd-title { font-size: 1.2rem; }
  .pd-price-box { padding: 1rem; }
  .pd-price-num { font-size: 1.55rem; }
  .pd-rating-row { gap: 0.5rem; font-size: 0.85rem; }
  .pd-sku { margin-left: 0; }

  /* Steps single column */
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .step-card { padding: 1rem 0.85rem !important; }
  .step-num { width: 36px !important; height: 36px !important; font-size: 0.95rem !important; margin-bottom: 0.6rem !important; }
  .step-card h4 { font-size: 0.9rem !important; margin-bottom: 0.3rem !important; }
  .step-card p { font-size: 0.78rem !important; line-height: 1.45; }
  /* Last odd step spans full width */
  .steps-grid > .step-card:last-child:nth-child(odd) { grid-column: 1 / -1; }

  /* Trust items */
  .trust-item { padding: 0.25rem 0; }

  /* Floating buttons smaller */
  .float-wa { width: 46px; height: 46px; font-size: 1.35rem; bottom: 14px; right: 14px; }
  .back-top { width: 38px; height: 38px; bottom: 68px; right: 14px; }
}

@media (max-width: 360px) {
  .slide h1 { font-size: 1.3rem; }
  .product-img { height: 130px; }
  .campaign-big h3 { font-size: 1.2rem; }
  .brand-chip { width: 118px; height: 70px; padding: 0.3rem; }
  .brand-chip img { transform: scale(1.35); }
}

/* Prevent horizontal overflow on any viewport */
html, body { overflow-x: hidden; }

/* ===== Mobile performance: simplify heavy backgrounds ===== */
@media (max-width: 860px) {
  /* Flatten slide backgrounds to reduce GPU composite cost on mobile — renkler tema-bazlı korunsun */
  .slide-1 { background: linear-gradient(135deg, #0B1E3F 0%, #1e3a6f 100%) !important; }
  .slide-2 { background: linear-gradient(135deg, #990000 0%, #CC0000 100%) !important; }
  .slide-3 { background: linear-gradient(135deg, #660000 0%, #990000 100%) !important; }
  /* Remove decorative overlay layers */
  .slide-1::before, .slide-2::before, .slide-3::before, .slide-custom::before,
  .slide-1::after, .slide-2::after, .slide-3::after, .slide-custom::after {
    content: none !important;
  }
  /* Don't promote slider to GPU layer on mobile — save texture memory */
  .hero-slider { contain: none; }
  /* Disable backdrop-filter on mobile (very expensive) */
  .filter-backdrop { backdrop-filter: none !important; }

  /* Flatten campaign boxes — remove SVG background layers */
  .campaign-big {
    background: linear-gradient(135deg, #0B1E3F, #1e3a6f) !important;
  }
  .campaign-small:nth-child(1) {
    background: linear-gradient(135deg, var(--color-orange-dark), var(--color-orange)) !important;
  }
  .campaign-small:nth-child(2) {
    background: linear-gradient(135deg, #16a085, #1abc9c) !important;
  }
  /* Remove transition/hover transforms that add GPU layers during scroll */
  .campaign-big, .campaign-small, .product-card, .cat-card, .brand-card {
    transition: none !important;
  }
  .campaign-big:hover, .campaign-small:hover,
  .product-card:hover, .cat-card:hover, .brand-card:hover {
    transform: none !important;
  }
}

/* Bölgeler grid */
.bolgeler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.7rem;
}
.bolgeler-grid .region-link {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bolgeler-grid .region-link:hover {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
@media (max-width: 520px) {
  .bolgeler-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .bolgeler-grid .region-link {
    padding: 0.7rem 0.65rem;
    font-size: 0.82rem;
    gap: 0.3rem;
    border-radius: 8px;
  }
}
@media (max-width: 380px) {
  .bolgeler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mixed section link: Tümünü Gör (navy) · Sıfır/İkinci El (orange) */
.section-link-mixed {
  color: var(--color-navy) !important;
}
.section-link-mixed span { color: var(--color-navy); }
.section-link-mixed b {
  color: var(--color-orange);
  font-weight: 800;
}
.section-link-mixed:hover span { color: var(--color-navy-light); }
.section-link-mixed:hover b { color: var(--color-orange-dark); }

/* Yetkili Servis (markalar.html alt bölüm) */
.yetkili-servis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
@media (max-width: 520px) {
  .yetkili-servis-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .yetkili-servis-grid .why-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0.85rem !important;
    gap: 0.6rem !important;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
  }
  .yetkili-servis-grid .why-item > div:first-child {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
  }
  .yetkili-servis-grid .why-item h4 { font-size: 0.88rem !important; margin: 0 0 0.25rem !important; }
  .yetkili-servis-grid .why-item p { font-size: 0.76rem !important; line-height: 1.4; }
  .yetkili-servis-grid > .why-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* Service features 2-col grid */
.why-features-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 520px) {
  .why-features-grid {
    gap: 0.6rem;
  }
  .why-features-grid .why-item {
    flex-direction: column !important;
    padding: 0.85rem !important;
    gap: 0.5rem !important;
    text-align: left;
  }
  .why-features-grid .why-item > div:first-child {
    width: 36px !important;
    height: 36px !important;
    font-size: 1rem !important;
  }
  .why-features-grid .why-item h4 { font-size: 0.9rem !important; margin: 0 0 0.2rem !important; }
  .why-features-grid .why-item p { font-size: 0.78rem !important; line-height: 1.4; }
}
@media (max-width: 360px) {
  .why-features-grid { grid-template-columns: 1fr; }
}

/* Service detail page grid (kombi-servisi, petek-temizligi, vb.) */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 960px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-detail-grid .sidebar-form .hero-card {
    position: static !important;
  }
}
@media (max-width: 520px) {
  .service-detail-grid h2 { font-size: 1.5rem !important; }
  .service-detail-grid h3 { font-size: 1.2rem !important; }
  .service-detail-grid .why-item {
    padding: 1rem !important;
    flex-direction: row;
    gap: 0.75rem !important;
  }
  .service-detail-grid .why-item > div:first-child {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
  }
  .service-detail-grid .why-item h4 { font-size: 0.98rem !important; }
  .service-detail-grid .why-item p { font-size: 0.85rem !important; }
  .sidebar-form .hero-card { padding: 1.25rem !important; }
}

/* Bölge info grid */
.bolge-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) {
  .bolge-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .bolge-info-grid img { max-width: 280px; margin: 0 auto; }
  .bolge-info-grid h2 { font-size: 1.5rem !important; }
  .bolge-info-grid .btn-primary { width: 100%; justify-content: center; }
}

/* İkinci El intro grid (2 sütun masaüstü, 1 sütun mobil) */
.ikinci-el-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.ikinci-el-intro-grid h2 { font-size: 2rem; }
@media (max-width: 860px) {
  .ikinci-el-intro-grid { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 2rem; }
  .ikinci-el-intro-grid > div {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.5rem;
  }
  .ikinci-el-intro-grid h2 { font-size: 1.4rem !important; }
  .ikinci-el-intro-grid p { font-size: 0.95rem; }
}
@media (max-width: 520px) {
  .ikinci-el-intro-grid h2 { font-size: 1.25rem !important; }
}

/* Iletisim page grid */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .iletisim-grid { grid-template-columns: 1fr; gap: 2rem; }
  .iletisim-grid form > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* Filter sidebar backdrop */
.filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 63, 0.55);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.filter-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}
.filter-sidebar { z-index: 200; }

/* Force all product grids to 2 columns on mobile */
@media (max-width: 860px) {
  .products-grid,
  .brand-products-grid,
  .products-grid.brand-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  .brand-products-grid.list-view { grid-template-columns: 1fr !important; }
  .brand-products-grid.list-view .product-card { flex-direction: column; }
  .brand-products-grid.list-view .product-img { width: 100%; height: 220px; }
}

/* Footer contact — adres uzun olunca taşmasın, kelime sınırında satır atlasın */
.contact-inline > div { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.contact-inline b { display: block; line-height: 1.35; }
.contact-inline small { word-break: normal; }

/* Chip-style filters (kW / Enerji / Garanti) — filter-sidebar içinde */
.chip-filter {
    display: inline-flex; align-items: center; gap: 0.25rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.82rem;
    cursor: pointer;
    background: #fff;
    transition: all 0.15s;
}
.chip-filter input[type="checkbox"] { margin: 0; accent-color: var(--color-orange); }
.chip-filter:hover { border-color: var(--color-orange); }
.chip-filter.is-active {
    background: #FFE5E5;
    border-color: var(--color-orange);
    color: var(--color-orange);
    font-weight: 600;
}
