/* NarinMotor — Frontend CSS v1.0.4 | Futuristic Corporate */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --container: 1260px;
  --header-h: 72px;
  /* color-mix() fallback */
  --nm-primary-light: #e0eaf5;
  --nm-primary-dark:  #0a1e33;
  --nm-accent-light:  #fff3e8;
  --nm-accent-dark:   #c45c05;
}
@supports (color: color-mix(in srgb, red, blue)) {
  :root {
    --nm-primary-light: color-mix(in srgb, var(--nm-primary,#1a3a5c) 12%, white);
    --nm-primary-dark:  color-mix(in srgb, var(--nm-primary,#1a3a5c) 80%, black);
    --nm-accent-light:  color-mix(in srgb, var(--nm-accent,#f97316) 12%, white);
    --nm-accent-dark:   color-mix(in srgb, var(--nm-accent,#f97316) 75%, black);
  }
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--nm-bg, #f0f4f8); color: var(--nm-text, #0f172a); line-height: 1.6; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ══════════════════════════════════════════════════════
   HEADER — Dark Futuristic
══════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #0d1f38;
  border-bottom: 1px solid rgba(249,115,22,.18);
  height: var(--header-h);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.site-logo { text-decoration: none; flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 52px; max-height: 52px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 1px 2px rgba(0,0,0,.25)); }
.logo-text {
  font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
  white-space: nowrap;
}
.logo-text strong { color: var(--nm-accent, #f97316); font-style: normal; }

.main-nav { flex: 1; min-width: 0; }
.main-nav > ul { list-style: none; display: flex; gap: 2px; }
.main-nav > ul > li > a {
  display: block; padding: 8px 14px;
  color: rgba(255,255,255,.88); text-decoration: none;
  font-weight: 600; font-size: 1rem; border-radius: 7px;
  transition: background .15s, color .15s; white-space: nowrap;
}
.main-nav > ul > li > a:hover { background: rgba(255,255,255,.09); color: #fff; }
.main-nav ul li.has-dropdown { position: relative; }
.main-nav ul li.has-dropdown:hover .dropdown { display: block; }
.main-nav ul li.has-dropdown.open .dropdown { display: block; }
/* Gap bridge — hover kaybolmasın */
.main-nav ul li.has-dropdown::after {
  content: ''; position: absolute;
  top: 100%; left: -4px; width: calc(100% + 8px); height: 12px;
}
.dd-arrow { display: inline-block; transition: transform .2s; font-style: normal; }
.has-dropdown.open .dd-arrow { transform: rotate(180deg); }
.dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #0d1f38; border: 1px solid rgba(249,115,22,.2);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,.4);
  min-width: 220px; max-height: 72vh; overflow-y: auto;
  padding: 6px; z-index: 300;
}
.dropdown::-webkit-scrollbar { width: 4px; }
.dropdown::-webkit-scrollbar-thumb { background: rgba(249,115,22,.4); border-radius: 99px; }
.dropdown li { list-style: none; }
.dropdown li a { display: block; padding: 8px 12px; color: rgba(255,255,255,.75); text-decoration: none; font-size: .85rem; border-radius: 7px; transition: .12s; }
.dropdown li a:hover { background: rgba(249,115,22,.12); color: var(--nm-accent, #f97316); }
.dropdown-header-link a { color: #fff !important; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 4px; border-radius: 0 !important; padding-bottom: 10px !important; }
.dropdown-header-link a:hover { background: rgba(249,115,22,.15) !important; border-radius: 7px !important; border-bottom-color: transparent !important; }

.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  color: rgba(255,255,255,.7); text-decoration: none; transition: .15s;
}
.icon-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.icon-btn svg { width: 17px; height: 17px; }
.mobile-toggle {
  display: none; flex-direction: column; gap: 4px;
  border: none; background: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; }

/* Header Arama */
.header-search-wrap { position: relative; display: flex; align-items: center; }
.header-search-form {
  display: flex; align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 9px; overflow: hidden;
  transition: border-color .2s;
}
.header-search-form:focus-within { border-color: rgba(249,115,22,.5); background: rgba(255,255,255,.1); }
.header-search-btn {
  background: transparent; border: none; color: rgba(255,255,255,.65);
  padding: 7px 10px; cursor: pointer; display: flex; align-items: center;
  flex-shrink: 0; transition: color .15s;
}
.header-search-btn:hover { color: #fff; }
.header-search-input {
  background: transparent; border: none; color: #fff;
  padding: 7px 4px 7px 0; font-size: .8rem; outline: none;
  width: 0; transition: width .3s; font-family: var(--font);
}
.header-search-input::placeholder { color: rgba(255,255,255,.4); }
.header-search-input:focus { width: 200px; padding-right: 10px; }

/* Hero Arama */
.hero-search-wrap { margin-top: 16px; }
.hero-search-form {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 11px; overflow: hidden;
  transition: border-color .2s;
}
.hero-search-form:focus-within { border-color: rgba(249,115,22,.6); }
.hero-search-input {
  flex: 1; background: transparent; border: none; color: #fff;
  padding: 13px 16px; font-size: .9rem; outline: none;
  font-family: var(--font); min-width: 0;
}
.hero-search-input::placeholder { color: rgba(255,255,255,.4); }
.hero-search-btn {
  background: var(--nm-accent, #f97316); color: #fff; border: none;
  padding: 13px 20px; font-weight: 700; font-size: .85rem;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  font-family: var(--font); white-space: nowrap; flex-shrink: 0;
  transition: background .15s;
}
.hero-search-btn:hover { background: var(--nm-accent-dark, #c45c05); }
.hero-search-tags { display: flex; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.hero-search-tags span { font-size: .7rem; color: rgba(255,255,255,.4); }
.hero-search-tags a {
  font-size: .72rem; color: rgba(255,255,255,.6); text-decoration: none;
  padding: 3px 11px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.15); transition: .15s;
}
.hero-search-tags a:hover { color: var(--nm-accent, #f97316); border-color: rgba(249,115,22,.5); }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 9px;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  cursor: pointer; border: none; transition: all .15s; white-space: nowrap;
  font-family: var(--font);
}
.btn-accent { background: var(--nm-accent, #f97316); color: #fff; }
.btn-accent:hover { background: var(--nm-accent-dark); transform: translateY(-1px); }
.btn-primary { background: var(--nm-primary, #1a3a5c); color: #fff; }
.btn-primary:hover { background: var(--nm-primary-dark); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--nm-primary, #1a3a5c); color: var(--nm-primary, #1a3a5c); background: transparent; }
.btn-outline:hover { background: var(--nm-primary, #1a3a5c); color: #fff; }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-ghost { color: var(--nm-primary, #1a3a5c); background: transparent; }
.btn-ghost:hover { background: var(--nm-primary-light); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-lg { padding: 12px 26px; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   HERO — Split Layout, Futuristic
══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #06101e 0%, #0d1f38 45%, #162d4a 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(249,115,22,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  min-height: 540px; align-items: center;
  gap: 56px; padding: 60px 0;
  position: relative; z-index: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 20px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.3);
  color: var(--nm-accent, #f97316); font-size: .78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 99px; letter-spacing: .04em;
  text-transform: uppercase; width: fit-content;
}
.hero-badge::before { content: '●'; font-size: 7px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-content h1 {
  font-size: 3rem; font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -.03em;
}
.hero-accent { color: var(--nm-accent, #f97316); position: relative; display: inline-block; }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7;
  max-width: 480px;
}
.hero-stats {
  display: flex; gap: 28px; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hstat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hstat span { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero — Rounded Slider Frame */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.slider-frame {
  width: 100%; max-width: 520px;
  border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(249,115,22,.3);
  box-shadow:
    0 0 0 1px rgba(249,115,22,.1),
    0 0 40px rgba(249,115,22,.12),
    0 24px 64px rgba(0,0,0,.5);
  position: relative;
}
.slider-frame .slider-track { display: flex; transition: transform .6s cubic-bezier(.25,.1,.25,1); }
.slider-frame .slide { min-width: 100%; position: relative; height: 100%; }
.slider-frame .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8e 100%); }
.slide-content {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  padding: 24px;
}
.slide-content h1 { font-size: 1.3rem; color: #fff; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.slide-content p { font-size: .82rem; color: rgba(255,255,255,.8); margin-bottom: 12px; }
.slide-content a.btn { font-size: .8rem; padding: 7px 16px; }
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,31,56,.7); border: 1px solid rgba(249,115,22,.3);
  color: #fff; width: 38px; height: 38px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: .2s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.slider-prev { left: 12px; } .slider-next { right: 12px; }
.slider-prev:hover, .slider-next:hover { background: rgba(249,115,22,.3); border-color: var(--nm-accent, #f97316); }
.slider-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: .2s; padding: 0; }
.dot.active { background: var(--nm-accent, #f97316); transform: scale(1.4); }
/* Frame decoration */
.slider-frame-deco {
  position: absolute; inset: -20px; border-radius: 26px;
  border: 1px solid rgba(249,115,22,.08); pointer-events: none; z-index: -1;
}

/* Topbar */
.topbar {
  background: var(--nm-primary, #1a3a5c);
  color: rgba(255,255,255,.8); font-size: .75rem;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 5px; }
.topbar strong { color: #fff; }
.topbar a { color: rgba(255,255,255,.8); text-decoration: none; }
.topbar a:hover { color: var(--nm-accent, #f97316); }

/* ══════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════ */
.section { padding: 56px 0; }
.section-dark { background: #0d1f38; }
.section-alt { background: #fff; }
.section-gray { background: #f0f4f8; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-head-inner { }
.section-label { font-size: .7rem; font-weight: 700; color: var(--nm-accent, #f97316); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; display: block; }
.section-head h2 { font-size: 1.75rem; font-weight: 800; color: var(--nm-primary, #1a3a5c); letter-spacing: -.02em; }
.section-dark .section-head h2 { color: #fff; }
.see-all { color: var(--nm-accent, #f97316); font-weight: 600; text-decoration: none; font-size: .875rem; display: flex; align-items: center; gap: 4px; }
.see-all:hover { text-decoration: underline; }

/* Stats Banner */
.stats-banner { background: var(--nm-primary, #1a3a5c); padding: 32px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-size: 2.2rem; font-weight: 800; color: var(--nm-accent, #f97316); line-height: 1; margin-bottom: 4px; }
.stat-item span { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

/* ══════════════════════════════════════════════════════
   KATEGORİ
══════════════════════════════════════════════════════ */
/* ══ Kategori Kartları — Yuvarlak Tasarım ══════════════ */
.kat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px,1fr)); gap: 16px; }
.kat-card {
  text-decoration: none; text-align: center; background: transparent; border: none;
  transition: transform .2s; display: flex; flex-direction: column;
  align-items: center; gap: 8px; padding: 8px 4px;
}
.kat-card:hover { transform: translateY(-5px); }
.kat-img-circle {
  width: 84px; height: 84px; border-radius: 50%;
  overflow: hidden; border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(26,58,92,.12), 0 1px 4px rgba(0,0,0,.08);
  background: var(--nm-primary-light, #e0eaf5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .2s, box-shadow .2s;
}
.kat-img-circle img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.kat-card:hover .kat-img-circle { border-color: var(--nm-accent, #f97316); box-shadow: 0 6px 24px rgba(249,115,22,.25); }
.kat-card:hover .kat-img-circle img { transform: scale(1.1); }
.kat-img-circle svg { width: 30px; color: var(--nm-primary, #1a3a5c); opacity: .3; }
.kat-card span { font-weight: 600; color: #374151; font-size: .72rem; line-height: 1.3; text-align: center; }
.kat-card:hover span { color: var(--nm-primary, #1a3a5c); }
/* eski sınıflar — fallback */
.kat-img { height: 90px; overflow: hidden; background: var(--nm-primary-light); }
.kat-img img { width: 100%; height: 100%; object-fit: cover; }
.kat-img-placeholder { display: flex; align-items: center; justify-content: center; }


/* ══════════════════════════════════════════════════════
   ÜRÜN KARTLARI
══════════════════════════════════════════════════════ */
.urun-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }
.urun-kart { background: #fff; border-radius: 12px; border: 1.5px solid #e2e8f0; overflow: hidden; transition: all .18s; }
.urun-kart:hover { border-color: var(--nm-accent, #f97316); box-shadow: 0 8px 24px rgba(249,115,22,.1); transform: translateY(-4px); }
.urun-kart-link { text-decoration: none; color: inherit; display: block; }
.urun-kart-img { position: relative; height: 180px; background: #f8fafc; overflow: hidden; }
.urun-kart-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.urun-kart:hover .urun-kart-img img { transform: scale(1.06); }
.gorsel-placeholder-sm { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gorsel-placeholder-sm svg { width: 44px; color: var(--nm-primary, #1a3a5c); opacity: .2; }
.kart-stok-badge { position: absolute; top: 8px; right: 8px; background: rgba(220,38,38,.88); color: #fff; font-size: .65rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.kart-vitrin-badge { position: absolute; top: 8px; left: 8px; background: rgba(249,115,22,.9); color: #fff; font-size: .63rem; font-weight: 700; padding: 2px 8px; border-radius: 99px; }
.urun-kart-body { padding: 12px 14px; }
.kart-marka { font-size: .67rem; color: var(--nm-accent, #f97316); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.kart-ad { font-weight: 600; color: #1e293b; font-size: .85rem; line-height: 1.35; margin-bottom: 3px; }
.kart-kod { font-size: .68rem; color: #94a3b8; margin-bottom: 8px; font-family: monospace; }
.kart-fiyat { }
.fiyat-bayi { font-weight: 700; color: var(--nm-accent, #f97316); font-size: 1rem; }
.fiyat-giris {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .72rem; color: #64748b; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: 6px; padding: 5px 8px; font-weight: 500;
}

/* ══════════════════════════════════════════════════════
   FEATURES — Modern cards
══════════════════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.feature-card {
  background: #fff; border-radius: 14px; padding: 28px 24px;
  border: 1.5px solid #e2e8f0;
  transition: all .18s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--nm-accent,#f97316), transparent);
  border-radius: 14px 14px 0 0;
}
.feature-card:hover { border-color: rgba(249,115,22,.3); box-shadow: 0 8px 24px rgba(249,115,22,.08); transform: translateY(-3px); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.feature-card h3 { font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 8px; font-size: .95rem; }
.feature-card p { color: #6b7280; font-size: .85rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════ */
.page-breadcrumb { font-size: .8rem; color: #94a3b8; margin-bottom: 24px; display: flex; align-items: center; gap: 6px; }
.page-breadcrumb a { color: var(--nm-primary, #1a3a5c); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--nm-accent, #f97316); }
.page-breadcrumb .sep { color: #cbd5e1; }

/* ══════════════════════════════════════════════════════
   KATALOG
══════════════════════════════════════════════════════ */
.catalog-layout { display: grid; grid-template-columns: 250px 1fr; gap: 28px; }
.filter-card { background: #fff; border-radius: 12px; padding: 18px; margin-bottom: 14px; border: 1.5px solid #e2e8f0; }
.filter-card h3 { font-size: .72rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.filter-list { list-style: none; }
.filter-list li a { display: block; padding: 7px 10px; border-radius: 7px; color: #374151; text-decoration: none; font-size: .85rem; transition: .12s; }
.filter-list li a:hover, .filter-list li a.active { background: var(--nm-primary-light); color: var(--nm-primary, #1a3a5c); font-weight: 600; }
.search-input { display: flex; border: 1.5px solid #e2e8f0; border-radius: 9px; overflow: hidden; }
.search-input input { flex: 1; border: none; padding: 9px 12px; font-size: .85rem; outline: none; background: transparent; }
.search-input button { background: var(--nm-primary, #1a3a5c); color: #fff; border: none; padding: 9px 12px; cursor: pointer; font-size: .9rem; }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: #64748b; font-size: .85rem; }
.catalog-toolbar select { border: 1.5px solid #e2e8f0; border-radius: 7px; padding: 6px 10px; font-size: .85rem; font-family: var(--font); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; }
.pagination a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 9px; border: 1.5px solid #e2e8f0; color: #374151; text-decoration: none; font-weight: 600; font-size: .875rem; transition: .12s; }
.pagination a.active { background: var(--nm-primary, #1a3a5c); color: #fff; border-color: var(--nm-primary, #1a3a5c); }
.pagination a:hover:not(.active) { border-color: var(--nm-accent, #f97316); color: var(--nm-accent, #f97316); }

/* ══════════════════════════════════════════════════════
   ÜRÜN DETAY
══════════════════════════════════════════════════════ */
.urun-detay { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.galeri-main { border-radius: 16px; overflow: hidden; background: #f8fafc; aspect-ratio: 1; border: 1.5px solid #e2e8f0; }
.galeri-main img { width: 100%; height: 100%; object-fit: contain; }
.gorsel-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--nm-primary-light); }
.gorsel-placeholder svg { width: 80px; color: var(--nm-primary, #1a3a5c); opacity: .2; }
.galeri-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.galeri-thumbs img { width: 68px; height: 68px; object-fit: cover; border-radius: 9px; cursor: pointer; border: 2px solid transparent; transition: .12s; }
.galeri-thumbs img.active, .galeri-thumbs img:hover { border-color: var(--nm-accent, #f97316); }
.urun-marka { font-size: .72rem; color: var(--nm-accent, #f97316); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.urun-info h1 { font-size: 1.7rem; font-weight: 800; color: #0f172a; margin-bottom: 8px; line-height: 1.25; letter-spacing: -.02em; }
.urun-kod { font-size: .82rem; color: #94a3b8; margin-bottom: 16px; font-family: monospace; }
.stok-badge { display: inline-block; padding: 5px 14px; border-radius: 99px; font-size: .78rem; font-weight: 700; margin-bottom: 20px; }
.in-stock { background: #dcfce7; color: #15803d; }
.out-stock { background: #fee2e2; color: #dc2626; }
.urun-fiyat-kutu { background: var(--nm-primary-light); border-radius: 14px; padding: 20px; margin-bottom: 20px; border: 1px solid rgba(26,58,92,.1); }
.fiyat-etiket { font-size: .72rem; color: var(--nm-primary, #1a3a5c); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.fiyat-ana { font-size: 2.2rem; font-weight: 800; color: var(--nm-accent, #f97316); line-height: 1; }
.fiyat-kdv { font-size: .78rem; color: #6b7280; margin-top: 4px; }
.fiyat-giris-uyari { display: flex; gap: 14px; align-items: flex-start; }
.fiyat-giris-uyari svg { width: 28px; color: var(--nm-primary, #1a3a5c); flex-shrink: 0; margin-top: 2px; }
.fiyat-giris-uyari strong { display: block; color: var(--nm-primary, #1a3a5c); font-weight: 700; margin-bottom: 4px; }
.fiyat-giris-uyari p { font-size: .85rem; color: #6b7280; }
.fiyat-giris-uyari a { color: var(--nm-accent, #f97316); }
.urun-kisa-aciklama { color: #6b7280; font-size: .9rem; margin-bottom: 20px; line-height: 1.7; }
.miktar-input { display: flex; align-items: center; border: 1.5px solid #e2e8f0; border-radius: 10px; width: fit-content; margin-bottom: 14px; overflow: hidden; }
.miktar-input button { padding: 10px 16px; background: #f8fafc; border: none; font-size: 1.2rem; cursor: pointer; color: var(--nm-primary, #1a3a5c); font-weight: 700; }
.miktar-input input { width: 60px; text-align: center; border: none; padding: 10px; font-size: 1rem; font-weight: 600; outline: none; }
.urun-iletisim { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.urun-aciklama-sekme { margin-top: 40px; background: #fff; border-radius: 14px; padding: 28px; border: 1.5px solid #e2e8f0; }
.sekme-nav { display: flex; gap: 4px; border-bottom: 2px solid #f1f5f9; margin-bottom: 20px; }
.sekme-btn { padding: 10px 20px; border: none; background: none; font-weight: 600; font-size: .875rem; color: #6b7280; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: .12s; font-family: var(--font); }
.sekme-btn.active { color: var(--nm-primary, #1a3a5c); border-bottom-color: var(--nm-accent, #f97316); }
.sekme-icerik { display: none; }
.sekme-icerik.active { display: block; }
.ozellik-tablo { width: 100%; border-collapse: collapse; }
.ozellik-tablo td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; font-size: .9rem; }
.ozellik-tablo td:first-child { color: #6b7280; font-weight: 600; width: 35%; }

/* ══════════════════════════════════════════════════════
   FORMS — Auth, İletişim
══════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 60px 20px; color: #94a3b8; }
.empty-icon { font-size: 3rem; margin-bottom: 14px; }

.auth-box {
  max-width: 440px; margin: 0 auto;
  background: #fff; border-radius: 16px; padding: 36px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.auth-box-wide { max-width: 620px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-header h2 { font-size: 1.5rem; font-weight: 800; color: var(--nm-primary, #1a3a5c); margin-bottom: 6px; letter-spacing: -.02em; }
.auth-header p { color: #6b7280; font-size: .875rem; }
.auth-footer { text-align: center; margin-top: 20px; color: #6b7280; font-size: .85rem; }
.auth-footer a { color: var(--nm-accent, #f97316); font-weight: 600; text-decoration: none; }

.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-weight: 600; font-size: .8rem; color: #374151; margin-bottom: 5px; }
input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #e2e8f0; border-radius: 9px;
  font-size: .9rem; font-family: var(--font); color: #1e293b;
  transition: border-color .15s; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--nm-primary, #1a3a5c); }
textarea { resize: vertical; min-height: 100px; }
.req { color: #dc2626; }
.hint { font-size: .75rem; color: #94a3b8; margin-top: 4px; }

.captcha-box {
  background: #f8fafc; border: 1.5px solid #e2e8f0;
  border-radius: 9px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.captcha-question { font-size: .95rem; font-weight: 600; color: var(--nm-primary, #1a3a5c); white-space: nowrap; }
.captcha-input { width: 80px !important; text-align: center; font-size: 1.1rem !important; font-weight: 700; }
.captcha-label { font-size: .72rem; color: #6b7280; }

.alert { padding: 12px 16px; border-radius: 9px; font-size: .875rem; margin-bottom: 16px; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fca5a5; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #86efac; }

/* İletişim Formu */
.contact-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; }
.contact-form-card { background: #fff; border-radius: 16px; padding: 32px; border: 1.5px solid #e2e8f0; }
.contact-info-card { background: var(--nm-primary, #1a3a5c); border-radius: 16px; padding: 32px; color: #fff; }
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.cinfo-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cinfo-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cinfo-item strong { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 3px; }
.cinfo-item span { font-size: .9rem; color: #fff; }
.cinfo-item a { color: #fff; text-decoration: none; }
.cinfo-item a:hover { color: var(--nm-accent, #f97316); }

/* ══════════════════════════════════════════════════════
   BAYI PANELİ
══════════════════════════════════════════════════════ */
.panel-layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; }
.panel-sidebar { background: #fff; border-radius: 14px; padding: 20px; border: 1.5px solid #e2e8f0; height: fit-content; }
.panel-user { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #f1f5f9; }
.panel-user-icon { font-size: 2rem; }
.panel-user strong { display: block; font-size: .85rem; font-weight: 700; }
.panel-user small { font-size: .78rem; color: #6b7280; }
.panel-nav { display: flex; flex-direction: column; gap: 2px; }
.panel-nav a { padding: 9px 12px; border-radius: 8px; text-decoration: none; color: #374151; font-size: .85rem; font-weight: 500; transition: .12s; }
.panel-nav a:hover { background: var(--nm-primary-light); color: var(--nm-primary, #1a3a5c); }
.panel-nav a.active { background: var(--nm-primary, #1a3a5c); color: #fff; }
.panel-nav .text-danger { color: #dc2626; }
.panel-nav .text-danger:hover { background: #fef2f2; }
.panel-content h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -.02em; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: 12px; padding: 20px; border: 1.5px solid #e2e8f0; }
.stat-card .stat-val { font-size: 1.5rem; font-weight: 800; color: var(--nm-primary, #1a3a5c); }
.stat-card .stat-label { font-size: .78rem; color: #6b7280; margin-top: 3px; }
.stat-card.danger .stat-val { color: #dc2626; }
.stat-card.success .stat-val { color: #15803d; }

/* Data table */
.data-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.data-table th { padding: 10px 14px; text-align: left; background: #f8fafc; font-weight: 700; color: #64748b; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.data-table td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; }
.badge-durum { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: .72rem; font-weight: 700; }
.durum-bekliyor { background: #fef3c7; color: #d97706; }
.durum-onaylandi { background: #dbeafe; color: #2563eb; }
.durum-kargolandi { background: #ede9fe; color: #7c3aed; }
.durum-teslim_edildi { background: #dcfce7; color: #15803d; }
.durum-iptal { background: #fee2e2; color: #dc2626; }
.durum-hazirlaniyor { background: #f0fdf4; color: #15803d; }
.row-danger td { background: #fff5f5; }
.row-success td { background: #f0fdf4; }

/* ══════════════════════════════════════════════════════
   CMS & LEGAL PAGES
══════════════════════════════════════════════════════ */
.cms-content { max-width: 860px; }
.cms-content h1 { font-size: 2rem; margin-bottom: 24px; color: var(--nm-primary, #1a3a5c); font-weight: 800; letter-spacing: -.03em; }
.cms-content p, .cms-content li { line-height: 1.8; color: #374151; margin-bottom: 12px; }
.cms-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin: 28px 0 12px; }
.cms-content ul { margin: 10px 0 16px 20px; }
.legal-content { max-width: 800px; }
.legal-content h1 { font-size: 1.8rem; font-weight: 800; color: var(--nm-primary, #1a3a5c); margin-bottom: 8px; letter-spacing: -.02em; }
.legal-content p { color: #374151; line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.legal-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin: 24px 0 10px; }
.legal-content ul { margin: 8px 0 14px 24px; }
.legal-content li { color: #374151; line-height: 1.8; margin-bottom: 5px; }

/* Hakkımızda */
.about-wrap {}
.about-hero { margin-bottom: 40px; }
.about-tag { display: inline-block; background: var(--nm-accent-light); color: var(--nm-accent, #f97316); font-size: .75rem; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 12px; }
.about-hero h1 { font-size: 2rem; font-weight: 800; color: var(--nm-primary, #1a3a5c); margin-bottom: 16px; letter-spacing: -.02em; }
.about-lead { font-size: 1rem; color: #374151; line-height: 1.8; max-width: 700px; }
.about-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.brand-card { background: #f8fafc; border-radius: 14px; padding: 24px; border: 1.5px solid #e2e8f0; }
.brand-card:first-child { border-left: 4px solid var(--nm-primary, #1a3a5c); }
.brand-card:last-child { border-left: 4px solid var(--nm-accent, #f97316); }
.brand-icon { font-size: 1.5rem; margin-bottom: 10px; }
.brand-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 10px; }
.brand-card p { color: #374151; font-size: .875rem; line-height: 1.7; margin-bottom: 12px; }
.brand-card ul { margin-left: 16px; }
.brand-card li { color: #374151; font-size: .85rem; margin-bottom: 4px; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; background: var(--nm-primary, #1a3a5c); border-radius: 14px; padding: 28px; margin-bottom: 40px; }
.astat { text-align: center; }
.astat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--nm-accent, #f97316); }
.astat span { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; }
.about-section h2 { font-size: 1.3rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.af { background: #fff; border-radius: 12px; padding: 18px; border: 1.5px solid #e2e8f0; }
.af h4 { font-size: .9rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 6px; }
.af p { font-size: .85rem; color: #6b7280; line-height: 1.6; }
.about-address { background: var(--nm-primary-light); border-radius: 12px; padding: 20px 24px; border-left: 4px solid var(--nm-primary, #1a3a5c); }
.about-address h3 { font-size: 1rem; font-weight: 700; color: var(--nm-primary, #1a3a5c); margin-bottom: 10px; }
.about-address p { color: #374151; font-size: .875rem; margin-bottom: 6px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--nm-footer-bg, #0f172a); color: var(--nm-footer-text, #cbd5e1);
  padding: 56px 0 0; margin-top: 0;
  border-top: 1px solid rgba(249,115,22,.15);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 44px; }
.footer-logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-logo strong { color: var(--nm-accent, #f97316); }
.footer-slogan { font-size: .82rem; opacity: .7; margin-bottom: 18px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { font-size: 1rem; text-decoration: none; transition: .15s; opacity: .7; width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { opacity: 1; border-color: var(--nm-accent, #f97316); color: var(--nm-accent, #f97316); }
.footer-col h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .footer-col p a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; transition: .12s; }
.footer-col ul li a:hover, .footer-col p a:hover { color: var(--nm-accent, #f97316); }
.footer-col p { font-size: .82rem; opacity: .65; margin-bottom: 7px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 18px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; opacity: .45;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { opacity: 1; }
.footer-legal { display: flex; gap: 16px; }


/* ══════════════════════════════════════════════════════
   GLOBAL — Touch & A11y
══════════════════════════════════════════════════════ */
*, *:focus { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button, a, [role="button"] { cursor: pointer; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1200px dar laptop
══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .main-nav > ul > li > a { font-size: .93rem; padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1024px tablet & küçük laptop
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* ── Hamburger menü ── */
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.open {
    display: block; position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: #0d1f38; padding: 12px 16px 60px;
    z-index: 300; overflow-y: auto;
    border-top: 1.5px solid rgba(249,115,22,.3);
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open > ul { flex-direction: column; gap: 2px; }
  .main-nav.open > ul > li > a {
    font-size: 1rem; font-weight: 600; padding: 14px 16px;
    border-radius: 9px; color: rgba(255,255,255,.9);
    min-height: 48px; display: flex; align-items: center;
  }
  .main-nav.open > ul > li > a:hover { background: rgba(255,255,255,.08); }
  /* KRİTİK: Sadece .open olan dropdown göster */
  .main-nav.open .has-dropdown.open .dropdown {
    position: static; box-shadow: none; border: none;
    max-height: none; display: block;
    background: transparent; margin: 0 0 4px 12px;
    padding: 4px 0 4px 12px;
    border-left: 2px solid rgba(249,115,22,.35);
  }
  .main-nav.open .has-dropdown.open .dropdown li a {
    color: rgba(255,255,255,.7); padding: 10px 12px; font-size: .92rem; min-height: 40px;
    display: flex; align-items: center;
  }
  /* Hamburger X animasyonu */
  .mobile-toggle span { transition: transform .25s, opacity .25s; }
  .mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* ── Hero ── */
  .hero-inner {
    grid-template-columns: 1fr; min-height: 0;
    padding: 44px 0; gap: 28px; text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-sub { max-width: 560px; }
  .hero-badge { margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .slider-frame { max-width: 480px; border-radius: 16px; }
  .hero-search-wrap { max-width: 540px; margin: 16px auto 0; }
  .hero::after { display: none; }

  /* ── Grids ── */
  .urun-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-brands { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }

  /* ── Topbar kısalt ── */
  .topbar-left { display: none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px tablet dikey & büyük telefon
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Genel ── */
  :root { --header-h: 64px; }
  .container { padding: 0 16px; }
  .section { padding: 32px 0; }
  .section-head h2 { font-size: 1.3rem; }
  .section-head { flex-wrap: wrap; gap: 8px; }

  /* ── Topbar: gizle ── */
  .topbar { display: none; }

  /* ── Logo ── */
  .site-logo img { height: 42px; max-height: 42px; }

  /* ── Hero ── */
  .hero-inner { padding: 32px 0; gap: 20px; }
  .hero-content h1 { font-size: 1.85rem; letter-spacing: -.02em; }
  .hero-sub { font-size: .85rem; }
  .hero-badge { font-size: .65rem; padding: 4px 10px; }
  .slider-frame { max-width: 100%; aspect-ratio: 16/10; }
  .hstat strong { font-size: 1.2rem; }
  .hstat span { font-size: .6rem; }
  .hero-stats { gap: 14px; }

  /* ── Stats banner ── */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 14px 8px;
  }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .stat-item strong { font-size: 1.4rem; }

  /* ── Grids ── */
  .urun-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .kat-grid { grid-template-columns: repeat(auto-fill, minmax(85px,1fr)); gap: 8px; }
  .kat-img-circle { width: 68px; height: 68px; border-width: 2px; }
  .kat-card span { font-size: .68rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-card { padding: 16px 12px; }

  /* ── Katalog ── */
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { display: none; }
  .catalog-toolbar { flex-wrap: wrap; gap: 8px; }

  /* ── Ürün detay ── */
  .urun-detay { grid-template-columns: 1fr; gap: 18px; }
  .galeri-main { max-height: 260px; aspect-ratio: unset; }
  .galeri-thumbs img { width: 56px; height: 56px; }

  /* ── Forms ── */
  .auth-box { padding: 20px 16px; margin: 0 4px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }
  .captcha-box { flex-wrap: wrap; gap: 8px; }

  /* ── Panel ── */
  .panel-layout { grid-template-columns: 1fr; }
  .panel-sidebar { order: -1; padding: 14px; }
  .panel-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .panel-nav a { padding: 8px 12px; font-size: .8rem; }

  /* ── About ── */
  .about-brands { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .about-hero h1 { font-size: 1.5rem; }

  /* ── İletişim ── */
  .contact-info-card .cinfo-item { flex-direction: column; gap: 4px; }
  .contact-form-card { padding: 20px 16px; }
  .contact-info-card { padding: 20px 16px; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-legal { display: none; }
  .site-footer { padding: 32px 0 0; }

  /* ── Buton touch targets ── */
  .btn-sm { min-height: 40px; padding: 8px 14px; }
  .btn-lg { padding: 12px 22px; font-size: .9rem; }

  /* ── Bayi Girişi header ── */
  .header-right .btn-sm { font-size: .75rem; padding: 8px 12px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 480px küçük telefon (iPhone SE / Android)
══════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* ── Genel ── */
  :root { --header-h: 60px; }
  .container { padding: 0 12px; }
  .section { padding: 24px 0; }

  /* ── Logo ── */
  .site-logo img { height: 36px; max-height: 36px; }
  .logo-text { font-size: 1.1rem; }

  /* ── Header ── */
  .header-inner { gap: 12px; }
  .header-right { gap: 8px; }
  .header-right .btn-sm { font-size: .7rem; padding: 7px 10px; }

  /* ── Hero ── */
  .hero-inner { padding: 24px 0; gap: 20px; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-sub { font-size: .82rem; line-height: 1.6; }
  .hero-badge { font-size: .62rem; padding: 4px 9px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 8px; }
  .hero-btns .btn { text-align: center; justify-content: center; min-height: 48px; }
  .hero-stats { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .hstat { text-align: center; }
  .hstat strong { font-size: 1.1rem; }
  .hero-search-form { flex-direction: column; border-radius: 10px; gap: 0; }
  .hero-search-input { border-radius: 10px 10px 0 0; padding: 12px 14px; }
  .hero-search-btn { border-radius: 0 0 10px 10px; padding: 11px; justify-content: center; }
  .hero-search-tags { gap: 6px; }
  .hero-search-tags a { font-size: .68rem; padding: 3px 8px; }
  .slider-frame { border-radius: 12px; aspect-ratio: 16/10; }
  .slider-frame-deco { display: none; }

  /* ── Stats banner ── */
  .stats-banner { padding: 16px 0; }
  .stat-item strong { font-size: 1.2rem; }
  .stat-item span { font-size: .58rem; }

  /* ── Section head ── */
  .section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .section-head h2 { font-size: 1.15rem; }

  /* ── Kategoriler ── */
  .kat-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .kat-img-circle { width: 60px; height: 60px; }
  .kat-card span { font-size: .64rem; }
  .kat-card { padding: 6px 2px; gap: 5px; }

  /* ── Ürünler ── */
  .urun-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .urun-kart-img { height: 120px; }
  .urun-kart-body { padding: 8px 8px; }
  .kart-ad { font-size: .76rem; }
  .kart-kod { font-size: .64rem; }

  /* ── Features ── */
  .features-grid { grid-template-columns: 1fr; gap: 8px; }
  .feature-card { padding: 14px 12px; }
  .feature-icon { font-size: 1.5rem; margin-bottom: 8px; }

  /* ── Auth ── */
  .auth-box { padding: 18px 14px; border-radius: 12px; }
  .auth-header h2 { font-size: 1.2rem; }

  /* ── Hakkımızda ── */
  .about-hero h1 { font-size: 1.3rem; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .astat strong { font-size: 1.4rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
  .site-footer { margin-top: 0; }
  .footer-logo { font-size: 1.1rem; }

  /* ── Pagination ── */
  .pagination a { width: 38px; height: 38px; font-size: .8rem; }

  /* ── Slider dots ── */
  .slider-dots { bottom: 8px; }
  .dot { width: 6px; height: 6px; }

  /* ── Buton touch targets ── */
  .btn { min-height: 44px; }
  .btn-sm { min-height: 40px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 360px çok küçük Android (Samsung vb.)
══════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .container { padding: 0 10px; }
  .hero-content h1 { font-size: 1.3rem; }
  .kat-img-circle { width: 52px; height: 52px; }
  .kat-card span { font-size: .6rem; }
  .urun-kart-img { height: 100px; }
  .header-right .btn-sm { display: none; }
  .stat-item strong { font-size: 1rem; }
  .hstat strong { font-size: 1rem; }
}
