/* ==========================================
   ARYA AKÜLÜ SANDALYE — Kurumsal UI v2
   Köşeli, sade, medikal-katalog tasarımı
   ========================================== */
@import url('fonts.css');

:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #101a26;
  --muted: #5f7085;
  --line: #e4e9f0;
  --line-strong: #d3dbe6;
  --primary: #1565a8;
  --primary-dark: #0b3d6e;
  --primary-soft: #eef4fb;
  --accent: #ef8b0c;
  --accent-dark: #cf760a;
  --warning: #a85c00;
  --danger: #b42318;
  --success: #147d43;
  --whatsapp: #1eaa53;
  --shadow-sm: 0 1px 2px rgba(16,28,44,.06), 0 2px 6px rgba(16,28,44,.05);
  --shadow: 0 6px 24px -6px rgba(16,28,44,.14), 0 2px 8px -2px rgba(16,28,44,.08);
  --shadow-lg: 0 20px 48px -12px rgba(11,61,110,.22);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --container: 1220px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ── Reset & base ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
}
h1, h2, h3, h4 { letter-spacing: 0; font-weight: 800; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 20;
  background: var(--primary); color: #fff; padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

/* ── Top bar ─────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, #0b3d6e 0%, #124b82 100%);
  color: #cddcec;
  font-size: 12.5px;
  letter-spacing: 0;
}
.topbar__inner {
  display: flex; align-items: center;
  gap: 18px; min-height: 40px;
  justify-content: space-between;
}
.topbar__tagline { color: #a9c3dc; font-weight: 500; }
.topbar nav { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.topbar nav a, .topbar nav span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  color: #dbe7f3; font-weight: 600;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.topbar nav a:hover { color: #fff; background: rgba(255,255,255,.1); }
.topbar nav span { color: #9fbbd6; }
.topbar__wa svg { color: #4ade80; }

/* ── Main header ─────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(16,28,44,.04), 0 8px 24px -18px rgba(16,28,44,.5);
}
.mainbar { background: transparent; }
.mainbar__inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 84px;
}

/* ── Logo / Brand ────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 200px; }
.brand__mark {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: linear-gradient(145deg, #124b82, #0b3d6e);
  color: #fff; font-weight: 900; font-size: 23px;
  border-radius: 12px;
  box-shadow: 0 6px 16px -6px rgba(11,61,110,.6);
  position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; left: 10px; right: 10px; bottom: 7px;
  height: 3px; border-radius: 3px; background: var(--accent);
}
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong {
  color: #0b3d6e; font-size: 26px;
  text-transform: uppercase; letter-spacing: 0;
}
.brand__text small {
  color: var(--muted); font-size: 11px;
  text-transform: uppercase; font-weight: 700; letter-spacing: 0;
}
.brand img { max-height: 52px; width: auto; }

/* ── Header search ───────────────────────── */
.header-search {
  flex: 1; max-width: 500px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  padding: 4px 4px 4px 8px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.header-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.header-search input {
  border: 0; min-height: 42px;
  padding-inline: 12px; background: transparent;
  color: var(--text); font-size: 14.5px;
}
.header-search input:focus { outline: none; }
.header-search button {
  border: 0; background: var(--primary);
  color: #fff; font-weight: 700;
  padding: 0 22px; min-height: 40px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0; font-size: 13.5px;
  transition: background .18s var(--ease);
}
.header-search button:hover { background: var(--primary-dark); }

/* ── Header phone ────────────────────────── */
.header-phone {
  display: grid; line-height: 1.25;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.header-phone span { color: var(--muted); font-size: 11.5px; text-transform: uppercase; font-weight: 700; letter-spacing: 0; }
.header-phone strong { color: var(--primary-dark); font-size: 18px; font-weight: 800; letter-spacing: 0; }
.menu-toggle {
  display: none;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  padding: 10px 16px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  margin-left: auto;
  align-items: center;
  gap: 10px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.menu-toggle:hover { border-color: var(--primary); background: var(--primary-soft); }
.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}
.menu-toggle__icon { position: relative; }
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle__icon::before { top: -6px; }
.menu-toggle__icon::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }
.mobile-quick-nav { display: none; }
.mobile-hero-assist { display: none; }

/* ── Nav strip (beyaz kurumsal mega-menü) ── */
.navstrip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.navstrip .nav {
  display: flex; flex-wrap: wrap; gap: 2px;
  min-height: 52px;
  overflow: visible;
  scrollbar-width: none;
}
.navstrip .nav::-webkit-scrollbar { display: none; }
.navstrip .nav a {
  position: relative;
  color: #2a3a4d;
  border: 0;
  background: transparent;
  padding: 0 16px;
  min-height: 52px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color .18s var(--ease);
}
.navstrip .nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 0;
  height: 3px; border-radius: 3px 3px 0 0;
  background: var(--accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s var(--ease);
}
.navstrip .nav a:hover { color: var(--primary-dark); }
.navstrip .nav a:hover::after,
.navstrip .nav a.is-active::after { transform: scaleX(1); }
.navstrip .nav a.is-active { color: var(--primary-dark); font-weight: 700; }

/* ── Nav dropdown (mega panel) ───────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
  content: "▾"; order: 2; font-size: 10px; opacity: .55;
  transition: transform .2s var(--ease);
}
.nav-dropdown:hover > a::before { transform: rotate(180deg); }
.nav-dropdown__panel {
  display: none; position: absolute;
  top: 100%; left: 0; min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  padding: 8px;
  animation: navdrop .18s var(--ease);
}
@keyframes navdrop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel { display: grid; }
.nav-dropdown__panel a {
  color: var(--text) !important;
  text-transform: none !important;
  font-size: 14px !important;
  letter-spacing: 0 !important;
  min-height: auto !important;
  padding: 11px 14px !important;
  border-right: none !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-dropdown__panel a::after { display: none; }
.nav-dropdown__panel a:hover { background: var(--primary-soft) !important; color: var(--primary) !important; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 14px; letter-spacing: 0;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 18px -8px rgba(21,101,168,.6);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(11,61,110,.55);
}
.btn--ghost {
  background: #fff;
  border-color: var(--line-strong);
  color: var(--primary-dark);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 18px -8px rgba(239,139,12,.6);
}
.btn--accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn--danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.header-wa { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; box-shadow: 0 8px 18px -8px rgba(30,170,83,.6); }
.header-wa:hover { background: #178f45; border-color: #178f45; transform: translateY(-1px); }

/* ── Sections ────────────────────────────── */
.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }
.section--white { background: #fff; }
.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 18px;
  margin-bottom: 28px;
}
.section-head h2, .section h1 {
  position: relative;
  margin: 0; font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15; color: var(--primary-dark);
  padding-left: 16px;
}
.section-head h2::before, .section h1::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 5px; border-radius: 3px;
  background: linear-gradient(var(--accent), var(--accent-dark));
}
.section-head p, .lead { color: var(--muted); max-width: 680px; margin: 8px 0 0; font-size: 15.5px; }

/* ── Hero / Showcase ─────────────────────── */
.hero--catalog { background: var(--bg); }
.home-showcase {
  display: grid;
  grid-template-columns: 250px minmax(0,1fr);
  gap: 24px;
  padding: 28px 0;
}

/* Sidebar menu */
.showcase-menu {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  align-self: start;
}
.showcase-menu strong {
  display: block;
  padding: 14px 16px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #124b82, #0b3d6e);
}
.showcase-menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center; gap: 12px;
  min-height: 52px; padding: 8px 14px;
  color: #26384c; font-weight: 600; font-size: 13.5px;
  border-bottom: 1px solid var(--line);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.showcase-menu a:last-child { border-bottom: none; }
.showcase-menu a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
.showcase-menu img {
  width: 34px; height: 34px;
  object-fit: contain;
}

/* Hero banner */
.showcase-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) 44%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, #0b3d6e 0%, #114a80 55%, #1565a8 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.showcase-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, rgba(239,139,12,.28), transparent 45%);
  pointer-events: none;
}
.showcase-copy {
  padding: 52px 44px;
  align-self: center;
  position: relative; z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(239,139,12,.18);
  border: 1px solid rgba(239,139,12,.4);
  color: #ffd9a3;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.showcase-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06; color: #fff;
}
.showcase-copy p {
  color: #cfe0f0; font-size: 17px; margin: 0 0 26px; max-width: 40ch;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.showcase-hero .hero__actions .btn--ghost {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.showcase-hero .hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}
.showcase-visual {
  display: grid; place-items: center;
  overflow: hidden;
  position: relative; z-index: 1;
}
.showcase-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Category strip ──────────────────────── */
.category-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.category-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 18px 0;
}
.category-strip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 8px;
  border-radius: var(--radius);
  color: #26384c;
  font-weight: 700; font-size: 11.5px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background .16s var(--ease), transform .16s var(--ease);
}
.category-strip a:hover { background: var(--primary-soft); color: var(--primary); transform: translateY(-2px); }
.category-strip span {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .16s var(--ease), background .16s var(--ease);
}
.category-strip a:hover span { border-color: var(--accent); background: #fff; }
.category-strip img { width: 42px; height: 42px; object-fit: contain; }

/* (Eski .category-grid / .category-card kaldırıldı — ana sayfada artık
   .cat-tiles kullanılıyor; bkz. v3 kurumsal katman.) */

/* ── Product grid ────────────────────────── */
.products-band { background: var(--bg); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.product-card__media {
  position: relative;
  display: grid; place-items: center;
  aspect-ratio: 1 / .85;
  background: linear-gradient(180deg, #fbfcfe, #f1f5f9);
  border-bottom: 1px solid var(--line);
}
.product-card__media img {
  width: 84%; height: 84%;
  object-fit: contain;
  transition: transform .25s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

/* Badge */
.badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary);
  color: #fff; padding: 5px 10px;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  box-shadow: 0 4px 10px -3px rgba(21,101,168,.6);
}
.badge--new { background: var(--success); box-shadow: 0 4px 10px -3px rgba(20,125,67,.6); }
.badge--sale { background: var(--danger); }

.product-card__body { padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-card__brand {
  color: var(--primary); font-weight: 800;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0;
}
.product-card h3 { margin: 0; font-size: 15px; line-height: 1.35; color: var(--text); font-weight: 700; }
.product-card__model { margin: 0; color: var(--muted); font-size: 12.5px; }
.product-card__meta {
  margin-top: auto; padding-top: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border-top: 1px solid var(--line);
}
.product-card__meta strong { color: var(--primary-dark); font-size: 16px; }
.product-card__actions {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 12px 16px 16px;
}
.product-card__actions .btn { min-height: 44px; padding-inline: 10px; font-size: 13px; }

/* Stock badges */
.stock {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0;
}
.stock::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.stock--ok { background: #e4f5ec; color: #0d5c2e; }
.stock--warn { background: #fdf0d9; color: #7a4000; }
.stock--danger { background: #fde8e7; color: #8c1b13; }
.stock--neutral { background: #eceff4; color: #405060; }

/* ── Service band ────────────────────────── */
.service-band { background: #0b3d6e; color: #fff; border-radius: 0; }
.service-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.service-layout h2 { color: #fff; margin: 0 0 14px; padding-left: 0; }
.service-layout h2::before { display: none; }
.service-layout p { color: #b6cee2; margin: 0 0 24px; font-size: 16px; }
.service-list {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px;
}
.service-list span {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.service-list span::before {
  content: "✓"; display: grid; place-items: center;
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 900;
}
.service-list span:hover { background: rgba(255,255,255,.1); border-color: rgba(239,139,12,.5); }
.service-band--premium {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, #0b3d6e 0%, #114a80 50%, #1565a8 100%);
}
.service-band--premium::after {
  content: ""; position: absolute; right: -10%; top: -40%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,139,12,.22), transparent 65%);
  pointer-events: none;
}
.service-band--premium .service-layout { position: relative; z-index: 1; }
.service-band--premium .btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.service-band--premium .btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

/* ── Feature strip (Neden Arya) ──────────── */
.feature-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.feature-strip span {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: 14px;
  color: #26384c;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.feature-strip span::before {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px; border-radius: 3px;
  background: linear-gradient(var(--accent), var(--accent-dark));
}
.feature-strip span:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ── Part CTA ────────────────────────────── */
.part-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff, var(--primary-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 30px 34px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 28px;
}
.part-cta h2 { margin: 0 0 6px; font-size: 23px; color: var(--primary-dark); padding-left: 0; }
.part-cta h2::before { display: none; }
.part-cta p { margin: 0; color: var(--muted); }

/* ── Blog grid ───────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--surface-2); }
.blog-card div { padding: 18px; }
.blog-card h2 { font-size: 17px; margin: 0 0 8px; line-height: 1.35; padding-left: 0; }
.blog-card h2::before { display: none; }
.blog-card a { color: var(--text); }
.blog-card a:hover { color: var(--primary); }
.blog-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Page hero (iç sayfalar) ─────────────── */
.page-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, #0b3d6e, #1565a8);
  color: #fff;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -6%; top: -60%;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,139,12,.22), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 40px); color: #fff; padding-left: 0; }
.page-hero h1::before { display: none; }
.page-hero p { color: #cfe0f0; margin: 0; max-width: 70ch; }
.breadcrumbs { color: #a9c3dc; font-size: 13px; margin-bottom: 12px; }
.breadcrumbs a { color: #fff; opacity: .85; }
.breadcrumbs a:hover { opacity: 1; }

/* ── Product listing page ────────────────── */
.listing { display: grid; grid-template-columns: 260px 1fr; gap: 22px; align-items: start; }
.filters {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  position: sticky; top: 150px;
}
.filters label,
.admin-form label { display: grid; gap: 5px; margin-bottom: 12px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0; }
.filters select, .filters input,
.admin-form input, .admin-form select, .admin-form textarea,
.form-control {
  width: 100%; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 10px 13px; background: #fff;
  color: var(--text);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.filters select:focus, .filters input:focus,
.admin-form input:focus, .admin-form select:focus,
.admin-form textarea:focus,
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }
.toolbar { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar select { max-width: 200px; }

/* ── Product detail page ─────────────────── */
.detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 400px; gap: 32px; align-items: start; }
.gallery-main {
  background: linear-gradient(180deg, #fff, #f1f5f9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px; display: grid; place-items: center;
  aspect-ratio: 1 / .80;
}
.gallery-main img { max-height: 400px; object-fit: contain; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumbs button {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff; padding: 5px;
  width: 74px; height: 64px; cursor: pointer;
  transition: border-color .16s var(--ease);
}
.thumbs button:hover { border-color: var(--primary); }
.thumbs button.is-active { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }
.detail-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.detail-panel h1 { margin: 8px 0 14px; font-size: 27px; line-height: 1.2; color: var(--primary-dark); }
.detail-panel .price { font-size: 24px; font-weight: 800; color: var(--primary-dark); }
.trust-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-top: 16px;
  color: var(--muted); font-weight: 700; font-size: 12px;
}
.trust-row span {
  padding: 12px 8px;
  background: var(--primary-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center; font-size: 11px;
}
.tabs-content {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px; margin-top: 24px;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left; padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec-table th { width: 36%; color: var(--muted); background: #f8fafb; font-weight: 700; font-size: 12px; text-transform: uppercase; }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }

/* ── Content / Contact cards ─────────────── */
.content-card, .contact-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}
.content-card h2, .contact-card h2 { margin-top: 0; color: var(--primary-dark); padding-left: 0; }
.content-card h2::before, .contact-card h2::before { display: none; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ── Footer ──────────────────────────────── */
.site-footer {
  position: relative;
  background: #0a2540;
  color: #95b0c8;
  padding: 56px 0 26px;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 32px; }
.footer-grid > div:first-child p { color: #91acc6; font-size: 14px; max-width: 34ch; margin-top: 14px; }
.site-footer h2 { color: #fff; font-size: 13px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0; font-weight: 700; }
.site-footer a { display: block; margin: 9px 0; color: #9db6cd; font-size: 14px; transition: color .16s var(--ease), padding .16s var(--ease); }
.site-footer .footer-grid a:hover { color: #fff; padding-left: 4px; }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__mark { background: #1565a8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 28px; padding-top: 16px;
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 13px; color: #6a8aa6;
}

/* ── Floating WhatsApp ───────────────────── */
.floating-wa {
  position: fixed; right: 22px; bottom: 24px; z-index: 9;
  background: var(--whatsapp); color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 12px 28px -8px rgba(30,170,83,.6);
  display: flex; align-items: center; gap: 8px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.floating-wa::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: #eafff1; box-shadow: 0 0 0 0 rgba(234,255,241,.7);
  animation: wa-pulse 2s var(--ease) infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(234,255,241,.6); }
  70% { box-shadow: 0 0 0 8px rgba(234,255,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,255,241,0); }
}
.floating-wa:hover { background: #178f45; transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(30,170,83,.7); }
.mobile-contact-bar { display: none; }

/* ── Notices ─────────────────────────────── */
.notice {
  padding: 12px 14px; margin: 0 0 16px;
  border: 1px solid var(--line); background: #fff;
  border-left: 4px solid var(--muted);
  font-size: 14px;
}
.notice--success { border-left-color: var(--success); background: #edfdf5; }
.notice--error { border-left-color: var(--danger); background: #fff1f0; }
.notice--warning { border-left-color: var(--warning); background: #fff8ea; }

/* ── Admin layout ────────────────────────── */
.admin-body { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: #f0f4f8; }
.admin-sidebar {
  background: #0b2540; color: #a0becc;
  padding: 0; position: sticky; top: 0; height: 100vh;
  overflow-y: auto; border-right: 3px solid var(--accent);
}
.admin-logo {
  display: block; color: #fff; font-size: 18px; font-weight: 900;
  padding: 18px 16px; border-bottom: 1px solid rgba(255,255,255,.1);
  letter-spacing: 0;
}
.admin-sidebar nav { display: grid; gap: 0; padding: 8px 0; }
.admin-sidebar a {
  padding: 11px 16px; color: #a0becc; font-weight: 700; font-size: 13px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.admin-sidebar a:hover,
.admin-sidebar a.is-active { background: rgba(255,255,255,.06); color: #fff; border-left-color: var(--accent); }
.admin-main { padding: 24px; min-width: 0; }
.admin-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.admin-top h1 { margin: 0; font-size: 26px; color: #0b3d6e; }
.admin-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat, .admin-card {
  background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--primary); padding: 16px;
}
.stat strong { display: block; font-size: 30px; color: var(--primary-dark); }
.stat span { font-size: 13px; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.admin-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  overflow: hidden;
}
.admin-table th, .admin-table td {
  padding: 11px 14px; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: middle;
  font-size: 14px;
}
.admin-table th { background: #f4f6f9; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0; font-weight: 700; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.admin-form {
  background: #fff; border: 1px solid var(--line);
  border-top: 3px solid var(--primary); padding: 20px;
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.form-grid .wide { grid-column: 1 / -1; }
.spec-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; margin-bottom: 8px; }

/* Admin polish */
.admin-body {
  grid-template-columns: 232px minmax(0, 1fr);
  background: #eef3f7;
  color: #102033;
}
.admin-sidebar {
  background: #102b47;
  border-right: 4px solid #f28a22;
  box-shadow: 10px 0 30px rgba(15, 33, 52, .08);
}
.admin-logo {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: #eaf6ff;
  border-bottom-color: rgba(255,255,255,.08);
}
.admin-sidebar nav { padding: 12px 8px; gap: 4px; }
.admin-sidebar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  color: #c7ddf0;
}
.admin-sidebar a:hover,
.admin-sidebar a.is-active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.admin-main {
  padding: 28px;
  max-width: 1680px;
  width: 100%;
}
.admin-top {
  min-height: 58px;
  margin: -28px -28px 22px;
  padding: 0 28px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid #dce5ee;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .03);
}
.admin-top h1 { font-size: 22px; color: #102b47; }
.admin-top span {
  padding: 8px 12px;
  border: 1px solid #dbe5ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #3c5268;
  font-weight: 700;
  font-size: 13px;
}
.admin-form,
.admin-card,
.stat,
.admin-table {
  border: 1px solid #dbe5ef;
  border-top: 0;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 33, 52, .06);
}
.admin-form {
  padding: 22px;
  max-width: 1280px;
}
.admin-form label {
  color: #15283a;
  font-size: 12px;
  line-height: 1.35;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  min-height: 46px;
  border-radius: 7px;
  border-color: #cdd9e5;
  background: #fbfdff;
  color: #0f1f2f;
  font-weight: 650;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease);
}
.admin-form textarea { min-height: 112px; resize: vertical; }
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  background: #fff;
  border-color: #2873b8;
  box-shadow: 0 0 0 3px rgba(40, 115, 184, .14);
}
.admin-form input[type="file"] {
  padding: 8px;
  background: #fff;
}
.admin-form input[type="file"]::file-selector-button {
  min-height: 30px;
  margin-right: 10px;
  padding: 0 12px;
  border: 1px solid #cdd9e5;
  border-radius: 6px;
  background: #f5f8fb;
  color: #18314a;
  font-weight: 800;
}
.form-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px 14px;
}
.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(112px, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  background: #f7fafc;
}
.admin-check-grid label {
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid #dbe5ef;
  border-radius: 7px;
  background: #fff;
  text-transform: none;
}
.admin-check-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  accent-color: #2873b8;
}
.spec-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 64px;
  gap: 8px;
}
.admin-form > .btn,
.admin-form > a.btn {
  margin-top: 14px;
  min-height: 48px;
}
.admin-table th { background: #f6f9fc; color: #54687d; }
.admin-table tr:hover td { background: #fbfdff; }
.admin-form--embedded {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  max-width: none;
}
.admin-toggle {
  width: fit-content;
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid #dbe5ef;
  border-radius: 7px;
  background: #fff;
  text-transform: none;
}
.admin-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  accent-color: #2873b8;
}
.admin-faq-create,
.admin-faq-list { max-width: 1280px; }
.admin-faq-create { margin-bottom: 18px; }
.faq-admin-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #e2eaf2;
}
.faq-admin-row:first-of-type { border-top: 0; padding-top: 0; }
.faq-admin-row:last-child { padding-bottom: 0; }
.faq-admin-grid {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(280px, 1.4fr) 110px 100px 112px;
  gap: 10px;
  align-items: end;
}
.faq-admin-grid label {
  display: grid;
  gap: 5px;
  margin: 0;
  color: #15283a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.faq-admin-grid input,
.faq-admin-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cdd9e5;
  border-radius: 7px;
  background: #fbfdff;
  font: inherit;
  font-size: 14px;
}
.faq-admin-grid textarea {
  min-height: 72px;
  resize: vertical;
}
.faq-admin-grid input:focus,
.faq-admin-grid textarea:focus {
  outline: none;
  border-color: #2873b8;
  box-shadow: 0 0 0 3px rgba(40, 115, 184, .14);
  background: #fff;
}
.faq-admin-active {
  align-self: end;
  margin-bottom: 0;
}
.faq-admin-actions,
.faq-admin-delete {
  align-self: end;
  padding-bottom: 0;
}
.faq-admin-delete { margin: 0; }
.admin-toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 50;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
}
.admin-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  border-radius: 8px;
  border-left-width: 5px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .18);
  animation: adminToastIn .18s ease-out;
}
.admin-toast button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .08);
  color: #102033;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.admin-toast.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}
@keyframes adminToastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.login-page { min-height: 100vh; display: grid; place-items: center; background: var(--bg); padding: 24px; }
.login-box {
  width: min(400px,100%); background: #fff;
  border: 1px solid var(--line); border-top: 4px solid var(--primary);
  padding: 28px; box-shadow: var(--shadow);
}
.login-box h1 { margin: 0 0 22px; font-size: 22px; color: #0b3d6e; }

/* ── Responsive: Tablet ──────────────────── */
@media (max-width: 1080px) {
  .header-phone { display: none; }
  .home-showcase { grid-template-columns: 1fr; }
  .showcase-menu { display: none; }
}

@media (max-width: 980px) {
  .mainbar__inner { flex-wrap: wrap; padding: 12px 0; gap: 10px; }
  .menu-toggle { display: inline-flex; }
  .header-search { order: 3; flex-basis: 100%; max-width: none; }
  .header-search input { min-height: 48px; font-size: 16px; }
  .header-search button { min-height: 46px; padding-inline: 20px; font-size: 14px; }
  .header-wa { display: none; }
  .mobile-quick-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px max(16px, env(safe-area-inset-left));
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-quick-nav a {
    display: grid;
    place-items: center;
    min-height: 48px;
    padding: 8px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: var(--primary-soft);
    color: var(--primary-dark);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
  }
  .navstrip .nav { display: none; flex-direction: column; align-items: stretch; padding: 6px 0; }
  .navstrip .nav.is-open { display: flex; }
  .navstrip .nav a { min-height: 54px; padding: 0 14px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .navstrip .nav a::after { display: none; }
  .navstrip .nav a:hover, .navstrip .nav a.is-active { background: var(--primary-soft); }
  .nav-dropdown__panel { position: static; box-shadow: none; border: none; padding: 0 0 0 14px; animation: none; }
  .nav-dropdown__panel a { min-height: 50px; }
  .nav-dropdown:hover .nav-dropdown__panel { display: grid; }
  .showcase-hero { grid-template-columns: 1fr; }
  .showcase-visual { min-height: 220px; }
  .category-strip__inner { grid-template-columns: repeat(3,1fr); }
  .category-strip a { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .service-layout, .detail-grid, .listing, .two-col { grid-template-columns: 1fr; }
  .filters { position: static; top: auto; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(4,1fr); padding: 0; }
  .admin-sidebar a { border-left: none; border-bottom: none; border-top: 3px solid transparent; }
  .admin-sidebar a:hover,
  .admin-sidebar a.is-active { border-top-color: var(--accent); border-left-color: transparent; }
  .admin-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Responsive: Mobile ──────────────────── */
@media (max-width: 640px) {
  html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
  body { padding-bottom: 92px; font-size: 17px; line-height: 1.65; }
  .container { width: calc(100vw - 28px); }
  .topbar { display: none; }
  .site-header {
    background: rgba(255,255,255,.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .mainbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 10px 0;
  }
  .brand { min-width: 0; max-width: 100%; overflow: hidden; }
  .brand__text strong { font-size: 20px; }
  .brand__text small { font-size: 10px; }
  .brand__mark { width: 42px; height: 42px; font-size: 18px; border-radius: 10px; }
  .menu-toggle { min-height: 48px; padding: 10px 14px; margin-left: 0; }
  .header-search {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    border-radius: 12px;
    padding: 5px;
    box-shadow: var(--shadow-sm);
  }
  .header-search input { padding-inline: 12px; }
  .header-search button { border-radius: 9px; min-width: 76px; }
  .mobile-quick-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    padding: 8px 14px 10px;
  }
  .mobile-quick-nav a { min-width: 0; min-height: 50px; font-size: 12.5px; line-height: 1.25; overflow-wrap: break-word; }
  .home-showcase { padding: 14px 0 10px; }
  .showcase-hero { grid-template-columns: 1fr; border-top-width: 3px; border-radius: 12px; }
  .showcase-copy { padding: 28px 20px 18px; }
  .eyebrow { font-size: 11px; margin-bottom: 14px; }
  .showcase-copy h1 {
    font-size: clamp(27px, 8vw, 32px);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .showcase-copy p { font-size: 16.5px; color: #e4edf6; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero__actions .btn { width: 100%; min-height: 54px; font-size: 15px; }
  .showcase-visual { min-height: 190px; }
  .section { padding: 34px 0; }
  .section--tight { padding: 26px 0; }
  .section-head { margin-bottom: 18px; align-items: stretch; }
  .section-head h2 { font-size: 24px; }
  .section-head p, .lead { font-size: 16px; }
  .category-strip__inner { grid-template-columns: 1fr; }
  .category-strip a {
    flex-direction: row; justify-content: flex-start;
    gap: 12px; text-align: left; padding: 14px;
    min-height: 72px;
    font-size: 13px;
    border: 1px solid var(--line);
    background: #fff;
  }
  .category-strip span { width: 52px; height: 52px; flex-shrink: 0; }
  .category-strip img { width: 38px; height: 38px; }
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-card { border-radius: 12px; }
  .product-card:hover { transform: none; }
  .product-card__media { aspect-ratio: 1 / .62; }
  .product-card__media img { width: 76%; height: 76%; }
  .product-card__body { padding: 16px; gap: 7px; }
  .product-card__brand { font-size: 12px; }
  .product-card h3 { font-size: 18px; line-height: 1.3; }
  .product-card__model { font-size: 14px; }
  .product-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .stock { font-size: 12px; padding: 6px 12px; }
  .product-card__actions { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 16px 16px; }
  .product-card__actions .btn { min-height: 52px; font-size: 14px; }
  .page-hero { padding: 34px 0; }
  .page-hero h1 { font-size: 30px; overflow-wrap: anywhere; }
  .page-hero p { overflow-wrap: anywhere; }
  .listing { gap: 16px; }
  .filters {
    padding: 16px;
    border-radius: 12px;
  }
  .filters label { font-size: 13px; margin-bottom: 14px; }
  .filters select, .filters input,
  .form-control {
    min-height: 52px;
    font-size: 16px;
    border-radius: 10px;
  }
  .filters .btn { width: 100%; min-height: 54px; }
  .toolbar {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .toolbar span { font-weight: 800; color: var(--primary-dark); }
  .toolbar select { max-width: none; min-height: 50px; border-radius: 10px; border: 1.5px solid var(--line-strong); padding-inline: 12px; }
  .detail-grid { gap: 18px; }
  .gallery-main { padding: 16px; border-radius: 12px; }
  .detail-panel { padding: 20px; border-radius: 12px; }
  .detail-panel h1 { font-size: 25px; }
  .trust-row { grid-template-columns: 1fr; }
  .tabs-content { padding: 18px; overflow-x: auto; }
  .feature-strip { grid-template-columns: 1fr; }
  .part-cta { flex-direction: column; padding: 18px; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .floating-wa { display: none; }
  .mobile-contact-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #fff;
    border-top: 2px solid var(--line);
    box-shadow: 0 -4px 16px rgba(15,25,40,.10);
    gap: 10px;
    padding: 10px max(12px,env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    gap: 2px;
    min-height: 58px;
    min-width: 0;
    text-align: center; padding: 10px;
    font-weight: 900; font-size: 15px;
    border-radius: 12px;
  }
  .mobile-contact-bar small { font-size: 11.5px; font-weight: 700; opacity: .82; }
  .mobile-contact-bar a:first-child { background: #eef3f8; color: var(--primary-dark); }
  .mobile-contact-bar a:last-child { background: #0b8c4a; color: #fff; }
  .admin-sidebar nav { grid-template-columns: repeat(2,1fr); }
  .admin-table { display: block; overflow-x: auto; }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, #f8fbfe 0%, #eef4f8 44%, #f7fafc 100%);
    color: #0d1b2a;
  }

  .site-header {
    border-bottom: 0;
    box-shadow: 0 12px 28px -22px rgba(7, 31, 56, .65);
  }

  .mainbar__inner {
    gap: 12px;
  }

  .brand__mark {
    background: linear-gradient(145deg, #0b3d6e 0%, #1565a8 100%);
    box-shadow: 0 10px 22px -12px rgba(11, 61, 110, .8);
  }

  .brand__text strong {
    color: #08345f;
    font-size: 21px;
  }

  .menu-toggle {
    border-color: #c9d7e5;
    color: #0b3d6e;
    box-shadow: 0 8px 18px -14px rgba(15, 31, 48, .55);
  }

  .header-search {
    margin-top: 2px;
    border: 0;
    background: #fff;
    box-shadow: 0 12px 30px -22px rgba(14, 44, 74, .75), 0 0 0 1px #d9e4ef;
  }

  .header-search input {
    color: #243244;
    font-weight: 600;
  }

  .header-search button {
    background: #ef8b0c;
    color: #fff;
    font-weight: 900;
  }

  .mobile-quick-nav {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    background: #f8fbfe;
    border-top: 1px solid #e2edf6;
    box-shadow: inset 0 -1px 0 #dfe9f2;
  }

  .mobile-quick-nav::-webkit-scrollbar { display: none; }

  .mobile-quick-nav a {
    flex: 1 0 112px;
    position: relative;
    justify-content: start;
    padding: 10px 12px 10px 32px;
    background: #fff;
    border-color: #d8e5ef;
    color: #0b3d6e;
    box-shadow: 0 8px 18px -16px rgba(17, 57, 93, .65);
  }

  .mobile-quick-nav a::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: #ef8b0c;
    box-shadow: 0 0 0 4px #fff2df;
  }

  .mobile-quick-nav a:nth-child(2)::before {
    background: #1565a8;
    box-shadow: 0 0 0 4px #e7f1fa;
  }

  .mobile-quick-nav a:nth-child(3)::before {
    background: #1eaa53;
    box-shadow: 0 0 0 4px #e7f8ed;
  }

  .home-showcase {
    padding-top: 12px;
  }

  .showcase-hero {
    isolation: isolate;
    min-height: 610px;
    background:
      linear-gradient(180deg, rgba(7, 33, 60, .08), transparent 22%),
      linear-gradient(145deg, #08345f 0%, #10548d 58%, #1a75ac 100%);
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 24px 44px -28px rgba(7, 32, 58, .9);
  }

  .showcase-hero::before {
    background:
      linear-gradient(180deg, rgba(6, 24, 44, .02) 0%, rgba(6, 24, 44, .70) 72%, rgba(6, 24, 44, .88) 100%),
      linear-gradient(135deg, rgba(239, 139, 12, .24), transparent 46%);
    z-index: 1;
  }

  .showcase-copy {
    align-self: start;
    padding: 30px 20px 246px;
    z-index: 2;
  }

  .eyebrow {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.24);
    color: #ffe6bd;
  }

  .showcase-copy h1 {
    font-size: clamp(30px, 8.6vw, 38px);
    max-width: 10ch;
    text-wrap: balance;
  }

  .showcase-copy p {
    max-width: 29ch;
    margin-bottom: 18px;
  }

  .showcase-hero .hero__actions {
    gap: 10px;
  }

  .showcase-hero .hero__actions .btn {
    border-radius: 10px;
    box-shadow: 0 12px 22px -16px rgba(0,0,0,.7);
  }

  .showcase-hero .hero__actions .btn--primary {
    background: #fff;
    border-color: #fff;
    color: #0b3d6e;
  }

  .showcase-hero .hero__actions .btn--ghost {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.38);
  }

  .mobile-hero-assist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-hero-assist span {
    display: grid;
    gap: 1px;
    min-height: 58px;
    padding: 9px 8px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
  }

  .mobile-hero-assist strong {
    color: #fff;
    font-size: 12.5px;
    line-height: 1.15;
  }

  .mobile-hero-assist small {
    color: #cfe1f0;
    font-weight: 700;
    font-size: 11px;
  }

  .showcase-visual {
    position: absolute;
    left: -26px;
    right: -76px;
    bottom: -10px;
    height: 300px;
    min-height: 0;
    z-index: 0;
    place-items: end;
  }

  .showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .category-strip {
    background: transparent;
    border-bottom: 0;
  }

  .category-strip__inner {
    gap: 10px;
    padding-top: 16px;
  }

  .category-strip a,
  .filters,
  .toolbar,
  .product-card,
  .detail-panel,
  .gallery-main,
  .tabs-content {
    border-color: #dae6ef;
    box-shadow: 0 16px 34px -28px rgba(13, 41, 68, .75);
  }

  .category-strip a {
    border-radius: 12px;
    background:
      linear-gradient(90deg, #fff 0%, #fff 72%, #f3f8fc 100%);
    border-left: 4px solid #ef8b0c;
  }

  .category-strip a:nth-child(2n) { border-left-color: #1565a8; }
  .category-strip a:nth-child(3n) { border-left-color: #1eaa53; }

  .category-strip span {
    border-radius: 10px;
    background: #f4f8fb;
  }

  .product-card {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    overflow: hidden;
    background: #fff;
  }

  .product-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(#1565a8, #ef8b0c);
  }

  .product-card__media {
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    min-height: 176px;
    border-bottom: 0;
    border-right: 1px solid #e4edf4;
    background: linear-gradient(180deg, #f7fafc, #eef5fa);
  }

  .product-card__media img {
    width: 88%;
    height: 88%;
  }

  .product-card__body {
    min-width: 0;
    padding: 16px 14px 10px;
  }

  .product-card h3 {
    font-size: 16.5px;
  }

  .product-card__meta {
    padding-top: 10px;
  }

  .quote-note {
    display: inline-flex;
    color: #5b6c7d;
    font-size: 13px;
    font-weight: 700;
  }

  .product-card__actions {
    grid-column: 2;
    padding: 0 14px 14px;
  }

  .product-card__actions .btn {
    border-radius: 9px;
    min-height: 48px;
    font-size: 13px;
  }

  .product-card__actions .btn--primary {
    background: #0b8c4a;
    border-color: #0b8c4a;
  }

  .filters {
    background: #fff;
    border-top: 4px solid #1565a8;
  }

  .filters label {
    color: #143352;
  }

  .toolbar {
    border-left: 4px solid #ef8b0c;
  }

  .mobile-contact-bar {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top-color: #d8e5ef;
  }

  .mobile-contact-bar a {
    box-shadow: 0 12px 24px -18px rgba(13, 35, 57, .75);
  }

  .mobile-contact-bar a:first-child {
    background: #eef5fb;
    border: 1px solid #dbe8f2;
  }

  .mobile-contact-bar a:last-child {
    background: linear-gradient(135deg, #0b8c4a, #1eaa53);
  }
}

@media (max-width: 640px) {
  .home-showcase {
    width: 100%;
    padding: 10px 0 8px;
  }

  .showcase-hero {
    display: block;
    min-height: 356px;
    border-radius: 10px;
    background: #0b3d6e;
    border: 0;
    box-shadow: 0 18px 34px -24px rgba(7, 32, 58, .85);
  }

  .showcase-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 18, 34, .12) 0%, rgba(4, 18, 34, .08) 34%, rgba(4, 18, 34, .86) 100%),
      linear-gradient(135deg, transparent 50%, rgba(239, 139, 12, .95) 50.5%, rgba(239, 139, 12, .95) 54%, transparent 54.5%),
      linear-gradient(145deg, transparent 60%, rgba(29, 151, 220, .98) 60.5%);
    z-index: 1;
  }

  .showcase-visual {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: 0;
    z-index: 0;
  }

  .showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .showcase-copy {
    position: absolute;
    inset: auto 16px 18px;
    padding: 0;
    z-index: 2;
  }

  .eyebrow {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 10.5px;
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.34);
  }

  .showcase-copy h1 {
    max-width: 12ch;
    margin-bottom: 8px;
    font-size: clamp(25px, 7.6vw, 32px);
    line-height: 1.08;
    text-shadow: 0 2px 12px rgba(0,0,0,.28);
  }

  .showcase-copy p {
    max-width: 28ch;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #e7f1fa;
  }

  .showcase-hero .hero__actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .showcase-hero .hero__actions .btn {
    min-height: 46px;
    padding: 10px 8px;
    font-size: 12.5px;
  }

  .mobile-hero-assist {
    display: none;
  }

  .category-strip {
    background: #fff;
    border-top: 1px solid #eef3f7;
    border-bottom: 1px solid #e6eef5;
  }

  .category-strip__inner {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 12px 14px 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .category-strip__inner::-webkit-scrollbar {
    display: none;
  }

  .category-strip a {
    flex: 0 0 78px;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 7px;
    min-height: 96px;
    padding: 0;
    border: 0;
    border-left: 0;
    background: transparent;
    box-shadow: none;
    color: #26384c;
    font-size: 10.5px;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
  }

  .category-strip a:nth-child(2n),
  .category-strip a:nth-child(3n) {
    border-left-color: transparent;
  }

  .category-strip span {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ff6b2c;
    box-shadow: 0 8px 16px -14px rgba(14, 44, 74, .7);
  }

  .category-strip a:nth-child(2n) span {
    border-color: #1d97dc;
  }

  .category-strip a:nth-child(3n) span {
    border-color: #1eaa53;
  }

  .category-strip img {
    width: 52px;
    height: 52px;
  }

  .products-band .section-head {
    margin-bottom: 12px;
  }

  .products-band .section-head h2,
  .section-head h2 {
    font-size: 22px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 8px;
    border: 1px solid #e2e8ef;
    box-shadow: 0 12px 26px -24px rgba(13, 41, 68, .8);
  }

  .product-card::before {
    display: none;
  }

  .product-card__media {
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1 / .9;
    border-right: 0;
    border-bottom: 1px solid #eef3f7;
    background: #fff;
  }

  .product-card__media img {
    width: 90%;
    height: 90%;
    object-fit: contain;
  }

  .badge {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    background: #fff;
    color: #ff6b2c;
    border: 1px solid #ff6b2c;
    box-shadow: none;
    font-size: 10px;
  }

  .product-card__body {
    padding: 10px 10px 8px;
    gap: 4px;
  }

  .product-card__brand {
    color: #5f7085;
    font-size: 10.5px;
    text-transform: none;
  }

  .product-card h3 {
    min-height: 52px;
    font-size: 13.3px;
    line-height: 1.3;
    font-weight: 800;
  }

  .product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card__model {
    display: none;
  }

  .product-card__meta {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 0;
  }

  .stock {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10.5px;
  }

  .quote-note {
    color: #111827;
    font-size: 13.5px;
    font-weight: 900;
  }

  .product-card__actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 0 10px 10px;
    margin-top: auto;
  }

  .product-card__actions .btn {
    min-height: 42px;
    border-radius: 999px;
    font-size: 11.5px;
    padding: 8px 10px;
  }

  .product-card__actions .btn--ghost {
    border-color: #e2e8ef;
    color: #26384c;
  }

  .product-card__actions .btn--primary {
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
    background: #ff6b2c;
    border-color: #ff6b2c;
    border-radius: 50%;
  }

  .product-card__actions .btn--primary::before {
    content: "WA";
    font-size: 11px;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   KURUMSAL KİMLİK — v3 rafine katman
   Amatör dekorları (diyagonal şerit, renkli halka/nokta, yuvarlak
   "WA" butonu) sadeleştirir; disiplinli, premium bir dil kurar.
   ============================================================ */

/* ── Tipografi & mikro-etiket ritmi ──────── */
h1, h2, h3 { letter-spacing: -.012em; }
.eyebrow,
.product-card__brand,
.stock,
.badge,
.showcase-menu strong,
.site-footer h2,
.header-phone span,
.brand__text small,
.topbar__tagline { letter-spacing: .045em; }

/* ── Marka işareti: alt turuncu çizgi yerine ince, dengeli aksan ── */
.brand__mark::after { left: 12px; right: 12px; bottom: 8px; height: 2.5px; opacity: .95; }

/* ── Buton: daha yumuşak, kurumsal gölge ── */
.btn--primary { box-shadow: 0 10px 20px -12px rgba(11,61,110,.55); }
.btn--primary:hover { box-shadow: 0 16px 26px -12px rgba(11,61,110,.5); }

/* ── Masaüstü hero rafine: daha derin, dokulu, güven veren ── */
@media (min-width: 981px) {
  .showcase-hero {
    background: linear-gradient(118deg, #0a3663 0%, #10508a 52%, #1667ad 100%);
    box-shadow: 0 30px 60px -30px rgba(8,34,62,.55), 0 2px 0 rgba(255,255,255,.04) inset;
  }
  .showcase-hero::before {
    background:
      radial-gradient(130% 130% at 100% 0%, rgba(239,139,12,.22), transparent 46%),
      linear-gradient(90deg, rgba(6,22,40,.28), transparent 46%);
  }
  .showcase-copy { padding: 56px 48px; }
  .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #ffd9a3; }
}

/* ── Kart gölgeleri: daha ince ve tutarlı ── */
.product-card, .blog-card, .feature-strip span, .cat-tile {
  box-shadow: 0 1px 2px rgba(16,28,44,.04), 0 10px 24px -18px rgba(16,28,44,.5);
}

/* ── Ürün kartı meta: stok rozeti tek satır, temiz sarma ── */
.stock { white-space: nowrap; }
.product-card__meta { flex-wrap: wrap; row-gap: 8px; }

/* ── WhatsApp CTA tutarlılığı: ürün kartındaki birincil aksiyon her
   ekranda WhatsApp-yeşili (marka tanınırlığı + dönüşüm) ── */
.product-card__actions .btn--primary {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  box-shadow: 0 8px 18px -8px rgba(30,170,83,.5);
}
.product-card__actions .btn--primary:hover {
  background: #178f45;
  border-color: #178f45;
}

/* ── Kategori tile'ları: kompakt, ticari, modern (ana sayfa) ── */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-tile {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 12px;
  padding: 26px 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(16,28,44,.04), 0 10px 24px -18px rgba(16,28,44,.5);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.cat-tile:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.cat-tile__icon {
  display: grid; place-items: center;
  width: 66px; height: 66px;
  background: linear-gradient(180deg, var(--primary-soft), #ffffff);
  border: 1px solid #e2ecf6;
  border-radius: 16px;
}
.cat-tile__icon img { width: 40px; height: 40px; object-fit: contain; }
.cat-tile strong {
  font-size: 15px; font-weight: 700; color: var(--primary-dark);
  line-height: 1.25; letter-spacing: -.01em;
}
.cat-tile__cta {
  font-size: 12.5px; font-weight: 700; color: var(--accent-dark);
  letter-spacing: .02em;
  transition: transform .18s var(--ease);
}
.cat-tile:hover .cat-tile__cta { transform: translateX(2px); }

/* ─────────────────────────────────────────
   MOBİL (≤640px) — kurumsal sadeleştirme
   ───────────────────────────────────────── */
@media (max-width: 640px) {

  /* Hero: diyagonal şeritleri kaldır → temiz alt karartma (scrim) */
  .showcase-hero {
    min-height: 380px;
    background: #0a3663;
    border-radius: 16px;
    box-shadow: 0 22px 44px -26px rgba(7,32,58,.78);
  }
  .showcase-hero::before {
    background:
      linear-gradient(90deg, rgba(7,26,45,.72) 0%, rgba(7,26,45,.28) 42%, transparent 68%),
      linear-gradient(180deg, rgba(6,22,40,0) 0%, rgba(6,22,40,.05) 40%, rgba(7,26,45,.55) 74%, rgba(7,26,45,.9) 100%);
  }
  /* ince kurumsal aksan çizgisi (görsel imza) */
  .showcase-hero::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, var(--accent) 0%, #f4a836 55%, #1565a8 100%);
  }
  .showcase-copy { inset: auto 18px 22px; }
  .eyebrow {
    margin-bottom: 12px;
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.26);
    color: #ffe6bd;
  }
  .showcase-copy h1 {
    font-size: clamp(26px, 7.8vw, 33px);
    line-height: 1.1;
    letter-spacing: -.015em;
    text-shadow: 0 2px 18px rgba(0,0,0,.4);
  }
  .showcase-copy p { color: #e9f2fb; }
  .showcase-hero .hero__actions .btn--primary {
    background: #fff; border-color: #fff; color: var(--primary-dark); font-weight: 800;
  }
  .showcase-hero .hero__actions .btn--ghost {
    background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.42); color: #fff;
    backdrop-filter: blur(2px);
  }

  /* Hızlı nav: renkli noktaları kaldır → tek tip, sakin kurumsal pill */
  .mobile-quick-nav {
    gap: 8px;
    padding: 10px 14px 12px;
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }
  .mobile-quick-nav a::before { display: none; }
  .mobile-quick-nav a {
    flex: 1 0 auto;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid #dbe6f0;
    border-radius: 12px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 800;
    box-shadow: 0 8px 18px -16px rgba(17,57,93,.55);
  }

  /* Kategori şeridi: renkli halkaları kaldır → tek tip premium tile */
  .category-strip {
    background: #fff;
    border-top: 1px solid #eef3f7;
    border-bottom: 1px solid #e6eef5;
  }
  .category-strip a { color: #10263c; font-weight: 700; }
  .category-strip a span,
  .category-strip a:nth-child(2n) span,
  .category-strip a:nth-child(3n) span {
    width: 66px; height: 66px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
    border: 1px solid #dae5f0;
    box-shadow: 0 10px 20px -14px rgba(13,41,68,.5);
  }

  /* Ürün kartı: yuvarlak "WA" rozetini kaldır → net ikili buton */
  .product-card__actions {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .product-card__actions .btn {
    width: 100%;
    min-width: 0;
    padding: 8px 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    border-radius: 10px;
    box-sizing: border-box;
  }
  .product-card__actions .btn--ghost {
    border-color: #dbe6f0;
    color: var(--primary-dark);
  }
  .product-card__actions .btn--primary {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
  }
  .product-card__actions .btn--primary::before { content: none; }

  /* "Yeni" rozeti: sakin, tek renk */
  .badge {
    background: var(--primary);
    color: #fff;
    border: 0;
  }

  /* Alt sabit iletişim çubuğu: daha kurumsal, sakin */
  .mobile-contact-bar a:last-child {
    background: linear-gradient(135deg, #12a152, #1eaa53);
  }

  /* Bölüm başlığı ritmi */
  .section-head h2, .products-band .section-head h2 { letter-spacing: -.015em; }

  /* Kategori tile'ları: 2×2 kompakt grid (alt alta liste yerine) */
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-tile { padding: 20px 12px 16px; gap: 10px; border-radius: 14px; }
  .cat-tile__icon { width: 58px; height: 58px; border-radius: 14px; }
  .cat-tile__icon img { width: 34px; height: 34px; }
  .cat-tile strong { font-size: 13.5px; }
  .cat-tile__cta { font-size: 11.5px; }
}

@media (max-width: 980px) {
  .admin-body { display: block; padding-bottom: 0; }
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: auto;
    border-right: 0;
    border-bottom: 3px solid #f28a22;
  }
  .admin-sidebar nav {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 8px;
  }
  .admin-sidebar a {
    flex: 0 0 auto;
    min-height: 40px;
    border-top: 0;
    white-space: nowrap;
  }
  .admin-main { padding: 18px; }
  .admin-top {
    margin: -18px -18px 18px;
    padding: 0 18px;
  }
  .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr; }
  .admin-check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec-row { grid-template-columns: 1fr; }
  .faq-admin-row { grid-template-columns: 1fr; }
  .faq-admin-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .faq-admin-question,
  .faq-admin-answer { grid-column: 1 / -1; }
  .faq-admin-delete { justify-self: start; }
}

@media (max-width: 640px) {
  .admin-main { padding: 14px; }
  .admin-top {
    margin: -14px -14px 14px;
    padding: 10px 14px;
    align-items: flex-start;
    gap: 8px;
  }
  .admin-top h1 { font-size: 19px; }
  .admin-grid,
  .admin-check-grid { grid-template-columns: 1fr; }
  .admin-form { padding: 14px; }
  .admin-toast-stack { top: 10px; right: 10px; width: calc(100vw - 20px); }
  .faq-admin-grid { grid-template-columns: 1fr; }
  .faq-admin-actions .btn,
  .faq-admin-delete .btn { width: 100%; }
}

/* Category media polish: keep category photos visible instead of tiny icon-like marks. */
.showcase-menu a {
  grid-template-columns: 54px 1fr;
  min-height: 64px;
  gap: 12px;
}

.showcase-menu img {
  width: 54px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f7fb;
  border: 1px solid #e1ebf4;
}

.category-strip span {
  width: 72px;
  height: 58px;
  overflow: hidden;
  border-radius: 12px;
}

.category-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-tile__icon {
  width: 92px;
  height: 72px;
  overflow: hidden;
}

.cat-tile__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media img {
  width: 94%;
  height: 94%;
}

.showcase-visual {
  background: #f6fafc;
}

.showcase-visual img {
  object-fit: contain;
  padding: 16px;
}

@media (max-width: 640px) {
  .category-strip span,
  .category-strip a span,
  .category-strip a:nth-child(2n) span,
  .category-strip a:nth-child(3n) span {
    width: 74px;
    height: 60px;
    border-radius: 14px;
  }

  .category-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cat-tile__icon {
    width: 84px;
    height: 66px;
  }

  .cat-tile__icon img {
    width: 100%;
    height: 100%;
  }
}
