/* =================================================================
   Ankara Barbekü — Ana Stil Dosyası
   Tasarım sistemi: BRIEF.md (Outdoor & lifestyle, mobile-first)
   ================================================================= */

/* ---------- 1. Değişkenler ---------- */
:root {
  /* Renk paleti */
  --duman: #1C1C1A;
  --antrasit: #3A3A36;
  --ates: #E8521A;        /* parlak marka turuncusu — büyük metin, ikon, vurgu, kenarlık */
  --ates-metin: #C73E0A;  /* küçük metin/CTA için koyu turuncu — beyaz/açık zeminde WCAG AA (≥4.5) */
  --alev: #FF6B35;
  --kum: #F5F3EF;
  --kum-koyu: #ECE7DF;
  --bej: #E2DDD6;
  --tas: #6B6860;
  --beyaz: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-koyu: #1EBE5A;
  --yildiz: #FFC83D;
  --basari: #1A8A4A;

  /* Tipografi */
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Ölçüler */
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1200px;
  --gap: 24px;

  /* Gölgeler */
  --shadow-sm: 0 1px 3px rgba(28, 28, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(28, 28, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(28, 28, 26, 0.12);

  /* Geçiş */
  --t: 0.2s ease;
}

/* ---------- 2. Reset & temel ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--antrasit);
  background: var(--kum);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--ates-metin); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--alev); }

ul, ol { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. Tipografi ---------- */
h1, h2, h3, h4 { line-height: 1.2; color: var(--duman); font-weight: 700; }
h1 { font-size: clamp(30px, 5.2vw, 48px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.01em; }
h3 { font-size: 19px; font-weight: 600; }
h4 { font-size: 17px; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ates-metin);
}

.lead { font-size: 16px; color: var(--tas); }
.muted { color: var(--tas); font-size: 13px; }

/* ---------- 4. Yerleşim yardımcıları ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.section { padding: 56px 0; }
.section--tight { padding: 40px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }

.section--kum { background: var(--kum); }
.section--beyaz { background: var(--beyaz); }
.section--duman { background: var(--duman); color: #fff; }
.section--duman h2, .section--duman h3 { color: #fff; }
.section--antrasit { background: var(--antrasit); color: #fff; }
.section--antrasit h2, .section--antrasit h3 { color: #fff; }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 8px 0 12px; }
.section-head p { color: var(--tas); font-size: 16px; }
.section--duman .section-head p, .section--antrasit .section-head p { color: rgba(255,255,255,0.65); }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- 5. Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  transition: background var(--t), transform var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--ates-metin); color: #fff; }
.btn--primary:hover { background: var(--ates); color: #fff; }

.btn--secondary { background: var(--duman); color: #fff; }
.btn--secondary:hover { background: var(--antrasit); color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-koyu); color: #fff; }

.btn--ghost { background: transparent; border: 1px solid var(--bej); color: var(--antrasit); }
.btn--ghost:hover { border-color: var(--ates); color: var(--ates); }

.btn--ghost-light { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

.btn--light { background: #fff; color: var(--duman); }
.btn--light:hover { background: var(--kum); color: var(--duman); }

.btn--lg { padding: 15px 30px; font-size: 15px; }

/* Klavye odağı — belirgin görünür halka (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--ates); outline-offset: 2px; border-radius: 2px; }
/* Koyu/ateş zeminlerde beyaz halka daha kontrastlı */
.header :focus-visible, .footer :focus-visible, .cta-band :focus-visible,
.hero :focus-visible, .wa-float:focus-visible { outline-color: #fff; }

/* "İçeriğe atla" bağlantısı — yalnızca odakta görünür */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 1000;
  background: var(--ates); color: #fff; padding: 10px 16px;
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
  transition: top var(--t);
}
.skip-link:focus { top: 12px; color: #fff; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }

/* ---------- 6. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--duman);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.logo:hover { color: #fff; }
.logo span { color: var(--ates); }

/* Navigasyon */
.nav { display: none; }
.nav ul { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--t);
}
.nav a:hover, .nav a.active { color: #fff; }

/* Açılır menü (ürünler) */
.nav__dropdown { position: relative; }
.nav__dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color var(--t);
}
.nav__dropdown > button:hover { color: #fff; }
.nav__dropdown > button svg { width: 12px; height: 12px; transition: transform var(--t); }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--beyaz);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.nav__dropdown:hover .nav__menu,
.nav__dropdown:focus-within .nav__menu,
.nav__dropdown.open .nav__menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav__dropdown:hover > button svg,
.nav__dropdown.open > button svg { transform: rotate(180deg); }
.nav__menu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--antrasit);
  font-size: 14px;
  font-weight: 500;
}
.nav__menu a:hover { background: var(--kum); color: var(--ates); }
.nav__menu a small { display: block; color: var(--tas); font-size: 12px; font-weight: 400; }

.header__cta { display: none; }

/* Header telefon numaraları (Sabit + GSM) */
.header__phones { display: none; align-items: center; }
.header__phones a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.82); white-space: nowrap; }
.header__phones a:hover { color: #fff; }
.header__phones a + a { margin-left: 16px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.18); }
.header__phones svg { width: 17px; height: 17px; flex-shrink: 0; }
.header__phones a.header__phones-gsm { color: var(--alev); }
.header__phones a.header__phones-gsm:hover { color: var(--alev); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü paneli */
.mobile-nav {
  display: none;
  background: var(--duman);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 4px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: #fff; }
.mobile-nav .sub a { padding-left: 18px; font-size: 14px; color: rgba(255,255,255,0.55); }
.mobile-nav .group-label {
  display: block;
  padding: 16px 4px 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ates);
}
.mobile-nav .btn { margin-top: 18px; }

@media (min-width: 960px) {
  .nav { display: block; }
  .header__phones { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}


/* ---------- 8. Hero ---------- */
.hero { background: var(--duman); color: #fff; padding: 64px 0 72px; position: relative; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,82,26,0.18), transparent 70%);
  pointer-events: none;
}
.hero__inner { position: relative; }
.hero .label {
  background: rgba(232, 82, 26, 0.18);
  color: var(--alev);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero h1 { color: #fff; margin: 14px 0 18px; max-width: 760px; }
.hero p { color: rgba(255,255,255,0.66); font-size: 16px; max-width: 580px; margin-bottom: 28px; }
.hero .btn-row { margin-top: 4px; }
@media (min-width: 768px) { .hero { padding: 90px 0 100px; } }

/* Ana sayfa hero — fotoğraf arka plan + hafif karartma (canlı görsel) */
.hero--home {
  background-image:
    linear-gradient(90deg, rgba(28,28,26,0.78) 0%, rgba(28,28,26,0.46) 50%, rgba(28,28,26,0.20) 100%),
    image-set(url("/img/hero-beton-barbeku.webp") type("image/webp"),
              url("/img/hero-beton-barbeku.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Yazılar görsel üzerinde net kalsın diye hafif gölge */
.hero--home .hero__inner { text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
/* Mobilde metin tüm genişliğe yayıldığı için eşit, orta düzey karartma */
@media (max-width: 640px) {
  .hero--home {
    background-image:
      linear-gradient(rgba(28,28,26,0.66) 0%, rgba(28,28,26,0.60) 100%),
      image-set(url("/img/hero-beton-barbeku.webp") type("image/webp"),
                url("/img/hero-beton-barbeku.jpg") type("image/jpeg"));
  }
}

.hero--page { padding: 56px 0; }
.hero--page h1 { margin: 10px 0 14px; max-width: none; }
.hero--page p { margin-bottom: 0; }

/* ---------- 9. Breadcrumb ---------- */
.breadcrumb { background: var(--antrasit); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding: 12px 0; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb li[aria-current] { color: #fff; font-weight: 500; }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }

/* ---------- 10. Kartlar ---------- */
.card {
  background: var(--beyaz);
  border: 1px solid var(--bej);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), border-color var(--t);
}
.card:hover { box-shadow: var(--shadow-md); }

/* Ürün kartı */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card__media { background: var(--beyaz); aspect-ratio: 6/7; overflow: hidden; border-bottom: 1px solid var(--bej); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-card__label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ates); margin-bottom: 6px; }
.product-card__title { font-size: 18px; font-weight: 600; color: var(--duman); margin-bottom: 4px; }
.product-card__sub { font-size: 13px; color: var(--tas); margin-bottom: 14px; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.product-card__specs span { font-size: 12px; background: var(--kum); color: var(--antrasit); padding: 3px 9px; border-radius: 100px; }
.product-card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.price { display: inline-flex; flex-direction: column; gap: 1px; line-height: 1.05; }
.price__label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tas); }
.price__val { font-size: 28px; font-weight: 700; color: var(--ates); }
.price--contact .price__contact { font-size: 17px; font-weight: 600; color: var(--antrasit); }

/* Kompakt fiyat sinyali (kartlarda): "6.000 TL'den başlar" */
.price-from { display: block; font-size: 14px; color: var(--tas); margin-bottom: 16px; }
.price-from strong { color: var(--ates-metin); font-weight: 700; font-size: 16px; }
.price-from--contact { font-weight: 600; color: var(--antrasit); }

/* Seri kartı (ana sayfa) */
.series-card { display: flex; flex-direction: column; height: 100%; }
.series-card__media { background: var(--beyaz); aspect-ratio: 3/4; overflow: hidden; border-bottom: 1px solid var(--bej); }
.series-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.series-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.series-card__body h3 { margin-bottom: 8px; }
.series-card__body p { color: var(--tas); font-size: 14px; margin-bottom: 16px; }
/* ---------- Tıklanabilir kart: birleşik ok'lu link, tüm kartı kaplar ---------- */
.product-card, .series-card, .post-card { position: relative; }
.card-link { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--ates-metin); display: inline-flex; align-items: center; gap: 6px; }
.card-link svg { width: 15px; height: 15px; transition: transform var(--t); }
.card-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.product-card:hover .card-link svg,
.series-card:hover .card-link svg,
.post-card:hover .card-link svg { transform: translateX(4px); }
.product-card__title, .series-card__body h3, .post-card__body h3 { transition: color var(--t); }
.product-card:hover .product-card__title,
.series-card:hover .series-card__body h3,
.post-card:hover .post-card__body h3 { color: var(--ates); }

/* Özellik / değer kartı */
.feature {
  background: var(--beyaz);
  border: 1px solid var(--bej);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  height: 100%;
  box-shadow: 0 1px 3px rgba(28,28,26,0.05);
}
.feature__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232,82,26,0.1);
  border-radius: 10px;
  margin-bottom: 16px;
}
.feature__icon svg { width: 24px; height: 24px; color: var(--ates); }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--tas); font-size: 14px; }

/* Metrik kartı */
.metric { text-align: center; padding: 26px 16px; background: var(--beyaz); border: 1px solid var(--bej); border-radius: var(--radius-lg); box-shadow: 0 1px 3px rgba(28,28,26,0.05); }
.metric__num { font-size: 36px; font-weight: 700; color: var(--ates); line-height: 1; }
.metric__label { font-size: 14px; color: var(--tas); margin-top: 8px; }

/* ---------- 11. Ürün detay (seri sayfası) ---------- */
.model-block {
  background: var(--beyaz);
  border: 1px solid var(--bej);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.model-block + .model-block { margin-top: 28px; }
.model-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .model-grid { grid-template-columns: 0.85fr 1.15fr; } }
.model-block__media { display: block; background: var(--beyaz); aspect-ratio: 6/7; }
.model-block__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t); }
.model-block__media:hover img { transform: scale(1.03); }
.model-block__body { padding: 28px 26px; }
.model-block__body .label { font-size: 13px; }
.model-block__body h3 { font-size: 24px; margin: 6px 0 4px; }
.model-block__body h3 a { color: inherit; }
.model-block__body h3 a:hover { color: var(--ates); }
.model-block__sub { color: var(--tas); font-size: 14px; margin-bottom: 18px; }

.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; border: 1px solid var(--bej); border-radius: var(--radius); overflow: hidden; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--bej); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(odd) { background: var(--kum); }
.spec-table tr:nth-child(even) { background: var(--kum-koyu); }
.spec-table th { color: var(--tas); font-weight: 600; }
.spec-table td { color: var(--antrasit); font-weight: 600; text-align: right; }

.model-block__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 20px; }

.model-block__desc { padding: 28px 26px; border-top: 1px solid var(--bej); }
.model-block__desc h2 { font-size: 22px; margin-bottom: 12px; }
.model-block__desc p { color: var(--antrasit); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.model-block__desc p:last-child { margin-bottom: 0; }

/* Karşılaştırma tablosu */
.compare-wrap { overflow-x: auto; border: 0.5px solid var(--bej); border-radius: var(--radius-lg); background: var(--beyaz); }
/* Mobilde yatay kaydırma ipucu: kenarlarda otomatik beliren/kaybolan gölge (scroll-shadow, JS'siz) */
@media (max-width: 620px) {
  .compare-wrap {
    background-image:
      linear-gradient(to right, var(--beyaz), rgba(255, 255, 255, 0)),
      linear-gradient(to left, var(--beyaz), rgba(255, 255, 255, 0)),
      radial-gradient(farthest-side at 0 50%, rgba(28, 28, 26, 0.16), transparent),
      radial-gradient(farthest-side at 100% 50%, rgba(28, 28, 26, 0.16), transparent);
    background-position: 0 0, 100% 0, 0 0, 100% 0;
    background-size: 28px 100%, 28px 100%, 12px 100%, 12px 100%;
    background-repeat: no-repeat;
    background-attachment: local, local, scroll, scroll;
  }
}
.compare { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.compare th, .compare td { padding: 13px 16px; text-align: center; border-bottom: 1px solid var(--bej); }
.compare thead th { background: var(--antrasit); color: #fff; font-weight: 600; }
.compare thead th:first-child { background: var(--duman); color: #fff; }
.compare th:first-child, .compare td:first-child { text-align: left; }
.compare tbody td:first-child { color: var(--antrasit); font-weight: 700; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .price { flex-direction: row; align-items: baseline; gap: 0; }
.compare .price__label { display: none; }
.compare .price__val { font-size: 17px; }
.compare .price--contact .price__contact { font-size: 14px; }

/* ---------- 12. Accordion (SSS) ---------- */
.accordion { border: 0.5px solid var(--bej); border-radius: var(--radius-lg); background: var(--beyaz); overflow: hidden; }
.accordion__item + .accordion__item { border-top: 1px solid var(--bej); }
.accordion__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left;
  padding: 18px 22px;
  font-size: 16px; font-weight: 600; color: var(--duman);
  cursor: pointer; transition: color var(--t), background var(--t);
}
.accordion__q:hover { color: var(--ates); background: var(--kum); }
.accordion__item.open > .accordion__q { color: var(--ates); }
.accordion__q .icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.accordion__q .icon::before, .accordion__q .icon::after {
  content: ""; position: absolute; background: var(--ates); border-radius: 2px;
  top: 50%; left: 50%; transition: transform var(--t);
}
.accordion__q .icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.accordion__q .icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.accordion__item.open .icon::after { transform: translate(-50%, -50%) scaleY(0); }
.accordion__a { display: none; padding: 0 22px 20px; color: var(--tas); font-size: 15px; }
.accordion__a p { margin-bottom: 10px; }
.accordion__item.open .accordion__a { display: block; }

.faq-layout { display: block; }
.faq-nav { display: none; }
.faq-list { max-width: 760px; }
.faq-cat-title { margin: 36px 0 16px; font-size: 22px; padding-left: 22px; scroll-margin-top: 24px; }
.faq-cat-title:first-of-type { margin-top: 0; }
@media (min-width: 900px) {
  .faq-layout { display: grid; grid-template-columns: 232px 1fr; gap: 56px; align-items: start; }
  .faq-list { max-width: none; }
  .faq-nav { display: block; position: sticky; top: 24px; }
  .faq-nav__title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tas); margin: 0 0 14px 14px; }
  .faq-nav ul { display: flex; flex-direction: column; gap: 2px; }
  .faq-nav a {
    display: block; padding: 9px 14px; border-radius: var(--radius);
    font-size: 14px; font-weight: 500; color: var(--antrasit);
    border-left: 2px solid transparent;
    transition: background var(--t), color var(--t), border-color var(--t);
  }
  .faq-nav a:hover { background: var(--beyaz); color: var(--ates); }
  .faq-nav a.active { background: var(--beyaz); color: var(--ates); border-left-color: var(--ates); box-shadow: var(--shadow-sm); }
}

/* ---------- 13. Filtre çubuğu ---------- */
.filterbar {
  background: var(--beyaz);
  border: 1px solid var(--bej);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 920px) {
  .filterbar { flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; }
}

/* Segment kontrolü — Seri (birincil filtre) */
.seg { display: inline-flex; flex-wrap: nowrap; gap: 4px; background: var(--kum); border: 1px solid var(--bej); border-radius: 100px; padding: 4px; max-width: 100%; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.seg::-webkit-scrollbar { display: none; }
.seg-btn { flex: 0 0 auto; }
.seg-btn { padding: 12px 18px; border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--tas); white-space: nowrap; transition: background var(--t), color var(--t); }
.seg-btn:hover { color: var(--antrasit); }
.seg-btn.active { background: var(--ates); color: #fff; box-shadow: var(--shadow-sm); }

/* Araçlar — Özellik/Fiyat select + sayaç */
.filterbar__tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-select {
  appearance: none; -webkit-appearance: none;
  background: var(--kum) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6860' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 14px;
  border: 1px solid var(--bej); border-radius: var(--radius);
  padding: 10px 36px 10px 14px;
  font-family: inherit; font-size: 14px; font-weight: 500; color: var(--antrasit);
  cursor: pointer; transition: border-color var(--t);
}
.filter-select:hover { border-color: var(--ates); }
.filter-count { font-size: 13px; font-weight: 500; color: var(--tas); white-space: nowrap; }
.filter-reset {
  font-size: 13px; font-weight: 600; color: var(--ates-metin);
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  padding: 6px 4px; cursor: pointer; transition: color var(--t);
}
.filter-reset::before { content: "✕"; font-size: 11px; }
.filter-reset:hover { color: var(--alev); }
.product-card.hidden { display: none; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--tas); }

/* ---------- 14. CTA bandı ---------- */
.cta-band { background: var(--ates); color: #fff; }
.cta-band__inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; padding: 48px 20px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #fff; font-size: 16px; max-width: 560px; }
.cta-band .btn--primary { background: var(--duman); }
.cta-band .btn--primary:hover { background: var(--antrasit); }
.cta-band .btn--ghost-light { border-color: rgba(255,255,255,0.6); }
@media (min-width: 768px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 56px 20px; }
  .cta-band__text { flex: 1; }
}

/* ---------- 15. Google yorumları bandı ---------- */
.reviews { text-align: center; }
.reviews__card { max-width: 560px; margin: 0 auto; background: var(--beyaz); border: 1px solid var(--bej); border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: 0 4px 20px rgba(28,28,26,0.05); }
.reviews__label { font-size: 15px; }
.reviews__num { font-size: 56px; font-weight: 700; color: var(--ates); line-height: 1; margin: 10px 0; }
.reviews__rating { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.reviews__stars { display: inline-flex; gap: 3px; color: var(--yildiz); }
.reviews__stars svg { width: 22px; height: 22px; }
.reviews__meta { color: var(--tas); font-size: 14px; }
.reviews__note { max-width: 460px; margin: 14px auto 22px; }

/* ---------- 16. Hedef kitle ---------- */
.audience-card {
  position: relative;
  background: var(--beyaz); border: 1px solid var(--bej);
  border-radius: var(--radius-lg); padding: 32px 28px; height: 100%;
  box-shadow: 0 1px 3px rgba(28,28,26,0.05);
}
.audience-card h3 { font-size: 22px; margin-bottom: 12px; }
.audience-card p { color: var(--tas); margin-bottom: 16px; }
.audience-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.audience-card .card-link { margin-top: 0; }
.audience-card:hover .card-link svg { transform: translateX(4px); }
.audience-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.audience-card li svg { width: 18px; height: 18px; color: var(--ates); flex-shrink: 0; margin-top: 2px; }

/* ---------- 17. İletişim ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--bej); }
.contact-item:last-child { border-bottom: none; }
.contact-item__icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(232,82,26,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-item__icon svg { width: 22px; height: 22px; color: var(--ates); }
.contact-item__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--tas); font-weight: 600; }
.contact-item__value { font-size: 16px; font-weight: 600; color: var(--duman); line-height: 1.5; }
.contact-item__value--addr { font-weight: 400; }
.contact-item__value a { color: var(--duman); }
.contact-item__value a:hover { color: var(--ates); }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 340px; border-radius: var(--radius-lg); }
.contact-hint { color: var(--ates-metin); font-weight: 600; }
.contact-cta { margin-top: 24px; }
.map-link { margin-top: 12px; font-size: 14px; }

/* ---------- 18. Blog ---------- */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__media { position: relative; aspect-ratio: 16/9; background: var(--antrasit); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.post-card__media .label { color: rgba(255,255,255,0.5); }
.post-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-card__media--img .label { position: absolute; top: 12px; left: 12px; z-index: 1; color: #fff; background: rgba(28,28,26,0.72); padding: 5px 12px; border-radius: 100px; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__body h3 { margin: 6px 0 10px; }
.post-card__body p { color: var(--tas); font-size: 14px; margin-bottom: 16px; }

.article { background: var(--beyaz); }
.article__body { max-width: 720px; margin: 0 auto; padding: 48px 20px 64px; }
.article__body h2 { font-size: 28px; margin: 36px 0 14px; }
.article__body h3 { font-size: 20px; margin: 28px 0 10px; }
.article__body p { font-size: 16px; color: var(--antrasit); margin-bottom: 16px; line-height: 1.75; }
.article__body ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.article__body ul li { margin-bottom: 8px; }
.article__body a { font-weight: 600; text-decoration: underline; }
.article__meta { color: var(--tas); font-size: 14px; margin-top: 12px; }
.article__cta { background: var(--kum); border-radius: var(--radius-lg); padding: 24px; margin: 32px 0; }
.article__cta h3 { margin-bottom: 8px; }
.article__cta p { color: var(--tas); margin-bottom: 16px; }
/* Makale içi fiyat vurgu kutusu */
.article__callout {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(232, 82, 26, 0.06);
  border-left: 3px solid var(--ates);
  border-radius: var(--radius);
  padding: 16px 18px; margin: 28px 0;
}
.article__callout svg { width: 22px; height: 22px; color: var(--ates); flex-shrink: 0; margin-top: 2px; }
.article__callout p { margin: 0; font-size: 15px; }

/* ---------- 19. Footer ---------- */
.footer { background: var(--duman); color: rgba(255,255,255,0.6); padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer__brand .logo { font-size: 18px; display: inline-block; margin-bottom: 10px; }
.footer__tagline { color: var(--ates); font-weight: 600; font-size: 14px; letter-spacing: 0.01em; margin-bottom: 12px; }
.footer__brand p { font-size: 14px; max-width: 300px; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 600; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul li a { padding: 4px 0; }
.footer a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer a:hover { color: #fff; }
.footer__contact li { font-size: 14px; line-height: 1.5; }

/* Footer link ikonları (mask → metin rengini ve hover'ı miras alır) */
.footer ul li a {
  display: inline-flex; align-items: center; gap: 8px;
  --fi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.footer ul li a::before {
  content: ""; flex: 0 0 auto;
  width: 14px; height: 14px; background-color: currentColor; opacity: 0.5;
  -webkit-mask: var(--fi) center/contain no-repeat; mask: var(--fi) center/contain no-repeat;
  transition: opacity var(--t);
}
.footer ul li a:hover::before { opacity: 1; }
.footer__contact ul li a { gap: 10px; }
.footer__contact ul li a::before { width: 16px; height: 16px; opacity: 0.65; }
.footer__contact ul li:nth-child(1) a { --fi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.footer__contact ul li:nth-child(2) a { --fi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='2' width='14' height='20' rx='2.5'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18'/%3E%3C/svg%3E"); }
.footer__contact ul li:nth-child(3) a { --fi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M17.5 14.4c-.3-.1-1.7-.8-2-.9-.3-.1-.5-.1-.6.2-.2.3-.7.9-.9 1-.2.2-.3.2-.6.1-.3-.1-1.2-.5-2.3-1.4-.9-.8-1.4-1.7-1.6-2-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.1.2-.2.3-.4.1-.2 0-.3 0-.5 0-.1-.6-1.5-.9-2-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.2s1 2.5 1.1 2.7c.1.2 1.9 2.9 4.6 4.1.6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.7-.7 1.9-1.3.2-.7.2-1.2.2-1.3-.1-.2-.3-.2-.6-.4zM12 2C6.5 2 2 6.5 2 12c0 1.8.5 3.4 1.3 4.9L2 22l5.3-1.4c1.4.8 3 1.2 4.7 1.2 5.5 0 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E"); }
.footer__contact ul li:nth-child(4) a { --fi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.62);
}

/* ---------- 20. Sabit WhatsApp butonu ---------- */
.wa-float {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform var(--t);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- 21. Admin paneli ---------- */
.admin-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--kum); }
.admin-box { width: 100%; max-width: 560px; background: var(--beyaz); border: 0.5px solid var(--bej); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.admin-box h1 { font-size: 24px; margin-bottom: 6px; }
.admin-box > p { color: var(--tas); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--antrasit); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--bej); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--duman);
  transition: border-color var(--t);
}
.field input:focus { border-color: var(--ates); }
.field input:focus-visible { outline: 2px solid var(--ates); outline-offset: 1px; }
.price-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bej); }
.price-row label { flex: 1; font-size: 14px; font-weight: 500; color: var(--antrasit); margin: 0; }
.price-row input { width: 130px; }
.price-row .unit { color: var(--tas); font-size: 14px; }
.admin-note { background: rgba(232,82,26,0.08); border-radius: var(--radius); padding: 12px 14px; font-size: 13px; color: var(--antrasit); margin: 20px 0; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.admin-msg { margin-top: 16px; font-size: 14px; font-weight: 500; }
.admin-msg.ok { color: var(--basari); }
.admin-msg.err { color: var(--ates); }
.hidden { display: none; }

/* ---------- 22. 404 ---------- */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.notfound__code { font-size: 96px; font-weight: 700; color: var(--ates); line-height: 1; }
.notfound h1 { font-size: 28px; margin: 12px 0; }
.notfound p { color: var(--tas); margin-bottom: 24px; }

/* ---------- 23. Yardımcılar ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.divider { height: 1px; background: var(--bej); border: none; margin: 0; }
.intro-prose { max-width: 760px; }
.intro-prose h2 { margin: 8px 0 18px; }
.intro-prose p { color: var(--antrasit); font-size: 16px; line-height: 1.75; }
