/* ============================================================
   srmatik.com — Light Tema
   Turuncu & Beyaz — Endüstriyel Kurumsal
   Font: Outfit (başlık) + Source Sans 3 (metin)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ── Değişkenler ─────────────────────────────────────────── */
:root {
  /* Renkler */
  --orange:       #f05a1a;
  --orange-dark:  #d04a10;
  --orange-light: #ff7a3d;
  --orange-pale:  #fff4ef;
  --orange-mid:   #fde8df;

  --navy:         #1a2340;
  --navy-mid:     #2c3a5c;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --black: #0a0a0a;

  /* Semantik */
  --bg-body:    var(--white);
  --bg-alt:     var(--gray-50);
  --bg-card:    var(--white);
  --border:     var(--gray-200);
  --border-hi:  var(--gray-300);

  --text-1:     var(--gray-900);
  --text-2:     var(--gray-600);
  --text-3:     var(--gray-400);

  --accent:     var(--orange);
  --accent-bg:  var(--orange-pale);
  --success:    #16a34a;
  --danger:     #dc2626;
  --warning:    #d97706;

  /* Tipografi */
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Diğer */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,.08);
  --transition:  all .22s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ── Tipografi ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--text-1); }
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
p  { color: var(--text-2); font-size: 1rem; }

.accent { color: var(--accent); }
.text-muted { color: var(--text-3); }

/* ── Layout ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.flex        { display: flex; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }

/* ── Bölüm Başlıkları ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title { margin-bottom: 1rem; }
.section-desc  { color: var(--text-2); max-width: 560px; }
.section-head  { margin-bottom: 3rem; }

/* ── Butonlar ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .625rem 1.375rem;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240,90,26,.3);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange-pale);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  border-color: var(--gray-100);
}
.btn-secondary:hover { background: var(--gray-200); }
.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--gray-100); }
.btn-sm  { padding: .4rem .875rem; font-size: .8125rem; }
.btn-lg  { padding: .875rem 2rem; font-size: 1.0625rem; }
.btn-icon{ padding: .4rem .5rem; }
.btn-block { width: 100%; display: flex; }

/* ── Navbar ──────────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.navbar { height: 70px; }
.navbar .container { height: 100%; }
.navbar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-text span { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-links a {
  padding: .5rem .875rem;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--orange); background: var(--orange-pale); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}

/* Sepet butonu */
.cart-nav-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  text-decoration: none;
  transition: var(--transition);
  color: var(--gray-700);
}
.cart-nav-btn:hover { background: var(--orange-pale); color: var(--orange); }
.cart-count-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--white);
}

/* Mobil burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .625rem .875rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: var(--orange-pale); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: 70px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d52 60%, #2a3f6f 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(240,90,26,.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(240,90,26,.12) 0%, transparent 40%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(240,90,26,.2);
  border: 1px solid rgba(240,90,26,.4);
  color: #ffb49a;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--orange-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.5); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--white);
  margin-bottom: 1.375rem;
}
.hero-title .highlight {
  color: var(--orange-light);
  position: relative;
}
.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: .8125rem; color: rgba(255,255,255,.55); margin-top: .25rem; }

/* ── Kartlar ─────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--orange-mid);
}
.card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-1); }
.card-desc  { font-size: .9375rem; color: var(--text-2); line-height: 1.6; }

/* ── Ürün Kartları ───────────────────────────────────────── */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--orange); }
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-badge {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid var(--orange-mid);
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  margin-bottom: .625rem;
}
.product-name { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; color: var(--text-1); }
.product-desc { font-size: .875rem; color: var(--text-2); flex: 1; margin-bottom: 1rem; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-family: var(--font-head); font-size: 1.0625rem; font-weight: 800; color: var(--text-1); }
.product-price .old { font-size: .8125rem; color: var(--text-3); text-decoration: line-through; }

/* ── Form ────────────────────────────────────────────────── */
.form-control {
  width: 100%;
  padding: .625rem .9rem;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  color: var(--text-1);
  font-size: .9375rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,90,26,.1); }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--gray-600); margin-bottom: .375rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: .75rem; color: var(--text-3); margin-top: .25rem; }
.form-error { font-size: .75rem; color: var(--danger); margin-top: .25rem; }
.req { color: var(--danger); }
.form-check { display: flex; align-items: center; gap: .5rem; font-size: .875rem; cursor: pointer; }

/* ── Search box ──────────────────────────────────────────── */
.search-box {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 0 .875rem;
  transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--orange); }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: .625rem 0;
  background: none;
  font-size: .9375rem;
  color: var(--text-1);
}

/* ── Badge ───────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; padding: .2rem .6rem; border-radius: 4px; font-size: .75rem; font-weight: 700; }
.badge-orange { background: var(--orange-pale); color: var(--orange); }
.badge-blue   { background: #eff6ff; color: #2563eb; }
.badge-green  { background: #f0fdf4; color: #16a34a; }
.badge-red    { background: #fef2f2; color: #dc2626; }
.badge-yellow { background: #fffbeb; color: #d97706; }
.badge-purple { background: #f5f3ff; color: #7c3aed; }
.badge-gray   { background: var(--gray-100); color: var(--gray-600); }

/* ── Toggle ──────────────────────────────────────────────── */
.toggle { position: relative; display: inline-block; width: 40px; height: 22px; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--gray-300);
  border-radius: 999px;
  transition: .2s;
  cursor: pointer;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle input:checked + .toggle-slider { background: var(--orange); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ── Animasyonlar ────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-desc { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-col h5 { font-family: var(--font-head); font-size: .875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { color: rgba(255,255,255,.6); font-size: .9375rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}
.social-links { display: flex; gap: .625rem; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .625rem; margin-bottom: .625rem; font-size: .9rem; color: rgba(255,255,255,.65); }
.footer-contact-item .icon { color: var(--orange-light); flex-shrink: 0; margin-top: .1rem; }

/* ── Sayfalama ───────────────────────────────────────────── */
.pagination { display: flex; gap: .375rem; }
.page-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-2);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.page-btn:hover { border-color: var(--orange); color: var(--orange); }
.page-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); font-weight: 700; }

/* ── Yardımcılar ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.td-main { font-weight: 600; color: var(--text-1); }
.text-right { text-align: right; }
.text-center { text-align: center; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .section { padding: 3.5rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .flex-between { flex-wrap: wrap; gap: 1rem; }

  /* Hero grid: mobilde tek sütun, slider içeriğin altına geçer */
  .hero .container { grid-template-columns: 1fr !important; gap: 1.5rem !important; padding-top: 2rem; padding-bottom: 2.5rem; }
  .hero-slider { width: 100%; aspect-ratio: 16/9 !important; border-radius: 12px !important; box-shadow: none !important; }
  .hero-content { order: 1; }
  .hero-slider { order: 2; }

  /* Navbar taşma düzeltmesi */
  .container { padding: 0 .875rem; }
  .navbar-inner { gap: .375rem; }
  .logo-text { font-size: 1.0625rem; }
  .nav-cta { gap: .375rem; }

  /* 3 — Hakkımızda: mobilde 2 sütun korunur, gap azalır */
  .about-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .875rem !important;
  }
  .about-grid .section-label { font-size: .7rem !important; }
  .about-grid .section-title { font-size: 1rem !important; line-height: 1.3 !important; }
  .about-grid p { font-size: .8rem !important; margin-bottom: .75rem !important; }
  .about-grid > div:first-child { padding: 0 !important; }
  .about-grid a.btn { font-size: .8rem !important; padding: .5rem .875rem !important; }
  /* Madde listesi */
  .about-grid [style*="font-size:.9375rem"] {
    font-size: .8rem !important;
  }
  /* İstatistik kartları mobilde kompakt */
  .about-stats-card {
    padding: .75rem .5rem !important;
  }
  .about-stats-card .stat-icon { font-size: 1.25rem !important; margin-bottom: .25rem !important; }
  .about-stats-card .stat-val  { font-size: 1.125rem !important; }
  .about-stats-card .stat-lbl  { font-size: .65rem !important; margin-top: .125rem !important; }

  /* 4 — Kategori kartları: 2'li grid */
  .grid-3[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
  .grid-3 {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1rem !important;
  }
}
@media (max-width: 480px) {
  /* 2 — Hero butonları: yan yana küçük */
  .hero-actions {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: .625rem;
  }
  .hero-actions .btn {
    flex: 1;
    min-width: 0;
    padding: .625rem .875rem;
    font-size: .875rem;
    justify-content: center;
  }

  .nav-cta .btn:not(.cart-nav-btn) { display: none; }

  /* 1 — Mobil menü butonları: küçük, alt alta */
  .mobile-menu > div:last-child {
    flex-direction: column !important;
    gap: .5rem !important;
  }
  .mobile-menu > div:last-child .btn {
    width: 100%;
    padding: .625rem 1rem;
    font-size: .875rem;
    text-align: center;
    justify-content: center;
  }

  /* 4 — Kategori kartları 480'de de 2'li — zaten 768'de ayarlandı */
}

/* ── Dropdown Menü ───────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .875rem;
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--orange);
  background: var(--orange-pale);
}
.nav-arrow {
  font-size: .6rem;
  transition: transform .2s;
  opacity: .6;
}
.nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 999;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .5rem .875rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

/* ── Loader ──────────────────────────────────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.loader { width: 20px; height: 20px; border: 2px solid var(--gray-200); border-top-color: var(--orange); border-radius: 50%; animation: spin .7s linear infinite; }

/* ── CSRF meta tag için boş stil ─────────────────────────── */
meta { display: none; }