/* ============================================================
   Kürt Yöresel — Tasarım Sistemi
   ============================================================ */
:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-2: #f4ede2;
  --ink: #26190f;
  --ink-soft: #4c3b2a;
  --muted: #6f6046;
  --gold-text: #8a6210;
  --brand: #8e1f2e;
  --brand-dark: #6e1522;
  --brand-soft: #f7e8e6;
  --gold: #c08a1d;
  --gold-soft: #f6ecd6;
  --green: #1f6b4e;
  --green-soft: #e4f0e9;
  --border: #e9dfd0;
  --shadow-sm: 0 1px 3px rgba(38, 25, 15, 0.08);
  --shadow-md: 0 6px 24px rgba(38, 25, 15, 0.10);
  --shadow-lg: 0 16px 48px rgba(38, 25, 15, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--ink); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--brand-dark); color: #fff;
  padding: 12px 20px; border-radius: 0 0 10px 0;
  font-weight: 700; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

/* ---------- Üst duyuru şeridi ---------- */
.topbar {
  background: var(--brand-dark);
  color: #f7e9dc;
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.topbar strong { color: #f2c66d; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.logo:hover { text-decoration: none; }
.logo .logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo em { font-style: normal; color: var(--brand); }

.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.main-nav a {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: var(--brand-soft);
  color: var(--brand);
  text-decoration: none;
}

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.search-form { position: relative; }
.search-form input {
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 9px 38px 9px 16px;
  font: inherit;
  font-size: 0.88rem;
  width: 190px;
  transition: width 0.2s, border-color 0.2s;
}
.search-form input:focus { border-color: var(--gold); width: 230px; background: #fff; }
.search-form button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--muted);
  display: flex; padding: 4px;
}
.icon-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.badge-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--brand); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.badge-count:empty { display: none; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(192, 138, 29, 0.16), transparent 60%),
    radial-gradient(900px 420px at 8% 110%, rgba(142, 31, 46, 0.12), transparent 60%),
    linear-gradient(180deg, #fdfaf4 0%, var(--bg) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 20px 72px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); color: #8a6210;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--brand); }
.hero p.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 54ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual svg, .hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.hero-stats {
  display: flex; gap: 28px; margin-top: 36px; flex-wrap: wrap;
}
.hero-stat b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--brand); }
.hero-stat span { font-size: 0.84rem; color: var(--muted); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(142, 31, 46, 0.3); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-gold { background: var(--gold-text); color: #fff; box-shadow: 0 6px 18px rgba(138, 98, 16, 0.35); }
.btn-gold:hover { background: #6f4e0d; color: #fff; }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand-soft); }
.btn-lg { font-size: 1.05rem; padding: 16px 34px; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Bölümler ---------- */
.section { padding: 56px 0; }
.section-alt { background: var(--surface-2); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.section-head p { color: var(--muted); margin-top: 6px; font-size: 0.95rem; }
.section-link { font-weight: 700; font-size: 0.92rem; white-space: nowrap; }

/* ---------- Kategori kartları ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
  color: var(--ink);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.category-card .cat-art { aspect-ratio: 4 / 3; background: var(--surface-2); }
.category-card .cat-art svg { width: 100%; height: 100%; }
.category-card .cat-body { padding: 16px 18px 18px; }
.category-card h3 { font-size: 1.12rem; margin-bottom: 4px; }
.category-card p { font-size: 0.84rem; color: var(--muted); }
.category-card .cat-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92); color: var(--brand);
  font-size: 0.76rem; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Ürün kartları ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-media { position: relative; background: var(--surface-2); }
.product-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.product-media .p-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
  background: var(--green); color: #fff;
}
.product-media .p-badge.badge-sale { background: var(--brand); }
.product-media .p-badge.badge-new { background: var(--gold-text); }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color 0.15s, transform 0.12s;
  box-shadow: var(--shadow-sm);
}
.wish-btn:hover { transform: scale(1.08); color: var(--brand); }
.wish-btn.active { color: var(--brand); }
.wish-btn.active svg path { fill: var(--brand); }
.product-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body .p-region { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-text); }
.product-body h3 { font-size: 0.99rem; font-family: var(--font-body); font-weight: 650; line-height: 1.4; }
.product-body h3 a { color: var(--ink); }
.product-body h3 a::after { content: ""; position: absolute; inset: 0; }
.product-body h3 a:hover { text-decoration: none; color: var(--brand); }
.p-price { margin-top: auto; display: flex; align-items: baseline; gap: 9px; }
.p-price .price-now { font-weight: 800; font-size: 1.08rem; color: var(--brand); }
.p-price .price-old { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }

/* ---------- Filtre çubuğu ---------- */
.filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filter-bar label { font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.filter-bar select {
  font: inherit; font-size: 0.88rem;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 12px; background: var(--surface-2); color: var(--ink);
  cursor: pointer;
}
.filter-bar select:focus { outline: 2px solid var(--brand-dark); border-color: var(--gold); }
.filter-count { margin-left: auto; font-size: 0.84rem; color: var(--muted); }

/* ---------- Sayfa başlığı / breadcrumb ---------- */
.page-head { padding: 36px 0 8px; }
.breadcrumb { font-size: 0.83rem; color: var(--muted); margin-bottom: 12px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--border); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 10px; }
.page-head .page-intro { color: var(--ink-soft); max-width: 72ch; font-size: 0.98rem; }

/* ---------- Ürün detay ---------- */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  padding: 36px 0 20px;
  align-items: start;
}
.pd-media {
  position: sticky; top: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-md);
}
.pd-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.pd-credit {
  padding: 9px 14px;
  font-size: 0.73rem; color: var(--muted);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pd-credit a { color: var(--muted); text-decoration: underline; }
.pd-info .p-region { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-text); }
.pd-info h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 8px 0 14px; }
.pd-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pd-price .price-now { font-size: 1.9rem; font-weight: 800; color: var(--brand); }
.pd-price .price-old { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.pd-tax { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.pd-short { color: var(--ink-soft); margin-bottom: 22px; }
.pd-options { margin-bottom: 22px; }
.pd-options .opt-label { font-size: 0.85rem; font-weight: 700; margin-bottom: 9px; }
.size-chips { display: flex; gap: 9px; flex-wrap: wrap; }
.size-chip {
  min-width: 48px; padding: 9px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); font: inherit; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: border-color 0.12s, background 0.12s;
}
.size-chip:hover { border-color: var(--gold); }
.size-chip.selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.pd-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--gold-soft); border: 1px solid #ecd9a8;
  border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 0.85rem; color: #6d4e0e;
  margin-bottom: 24px;
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 8px; }
.spec-table th, .spec-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.spec-table th { color: var(--muted); font-weight: 600; width: 38%; }
.pd-desc { padding: 30px 0 10px; max-width: 860px; }
.pd-desc h2 { font-size: 1.4rem; margin-bottom: 14px; }
.pd-desc p { margin-bottom: 14px; color: var(--ink-soft); }
.pd-desc ul { margin: 0 0 14px 22px; color: var(--ink-soft); }
.pd-desc li { margin-bottom: 6px; }

/* ---------- Talep (demand) bölümü ---------- */
.demand-section {
  background:
    radial-gradient(700px 300px at 50% -60%, rgba(192,138,29,0.28), transparent 70%),
    linear-gradient(135deg, var(--brand-dark), var(--brand) 65%, #a63042);
  color: #fdf3ea;
  border-radius: calc(var(--radius) + 6px);
  padding: 52px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.demand-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.demand-section p { max-width: 62ch; margin: 0 auto 26px; color: #f3ddd3; font-size: 0.98rem; }
.demand-section .demand-status { margin-top: 18px; font-size: 0.9rem; font-weight: 600; color: #ffd98a; min-height: 1.4em; }
.demand-motifs { position: absolute; inset: 0; opacity: 0.14; pointer-events: none; }

/* ---------- Güven / özellik şeridi ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
}
.feature-item .f-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px; background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.feature-item b { display: block; font-size: 0.94rem; margin-bottom: 2px; }
.feature-item span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Kültür fotoğrafları & künyeler ---------- */
.hero-photo { aspect-ratio: 4 / 5; object-fit: cover; object-position: 42% 22%; width: 100%; }
.figure-credit {
  display: block;
  font-size: 0.74rem; color: var(--muted);
  margin-top: 7px; line-height: 1.45;
}
.figure-credit a { color: var(--muted); text-decoration: underline; }
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.culture-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cat-banner { margin: 4px 0 24px; }
.cat-banner img {
  width: 100%; aspect-ratio: 21 / 9; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 12px 0 8px; }
.article-gallery img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.credits-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 30px; }
.credit-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border);
}
.credit-item figcaption { font-size: 0.82rem; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }
.credit-item figcaption a { text-decoration: underline; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .blog-art { aspect-ratio: 16 / 9; background: var(--surface-2); }
.blog-card .blog-art svg { width: 100%; height: 100%; }
.blog-card .blog-body { padding: 18px; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--brand); text-decoration: none; }
.blog-card p { font-size: 0.87rem; color: var(--muted); }
.article-body { max-width: 780px; margin: 0 auto; padding: 20px 0 40px; }
.article-body h2 { font-size: 1.5rem; margin: 30px 0 12px; }
.article-body h3 { font-size: 1.18rem; margin: 22px 0 10px; }
.article-body p { margin-bottom: 15px; color: var(--ink-soft); }
.article-body ul, .article-body ol { margin: 0 0 15px 24px; color: var(--ink-soft); }
.article-body li { margin-bottom: 7px; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
  padding: 14px 18px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 15px; font-style: italic;
}
.article-meta { font-size: 0.83rem; color: var(--muted); margin-bottom: 20px; }

/* ---------- SSS ---------- */
.faq-list { max-width: 780px; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0; margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer; font-weight: 700; font-size: 0.98rem;
  padding: 17px 20px; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.3rem; color: var(--gold); flex-shrink: 0; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details > div { padding: 0 20px 18px; color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Bilgi kutuları / boş durumlar ---------- */
.notice {
  background: var(--green-soft); border: 1px solid #cbe3d6;
  color: #175540; border-radius: var(--radius);
  padding: 16px 20px; font-size: 0.92rem;
}
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state h2 { font-size: 1.3rem; margin-bottom: 8px; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 64px;
  background: #221610;
  color: #cdbfae;
}
.footer-motif { height: 8px; background: repeating-linear-gradient(90deg, var(--brand) 0 24px, var(--gold) 24px 48px, var(--green) 48px 72px); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px; padding: 48px 20px 36px;
}
.site-footer .f-head { color: #f3e6d5; font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); font-weight: 700; }
.site-footer .f-brand { font-family: var(--font-head); font-size: 1.4rem; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.site-footer .f-brand .logo-mark { width: 30px; height: 30px; }
.site-footer p { font-size: 0.86rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #cdbfae; font-size: 0.89rem; }
.site-footer a:hover { color: #f2c66d; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 20px; text-align: center;
  font-size: 0.8rem; color: #8f8272;
}

/* ---------- 404 ---------- */
.err-page { text-align: center; padding: 90px 20px; }
.err-page .err-code { font-family: var(--font-head); font-size: 5rem; color: var(--brand); line-height: 1; margin-bottom: 12px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 13px 22px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 200;
  max-width: min(90vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .category-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; padding: 44px 20px 52px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}
@media (max-width: 800px) {
  .header-inner { flex-wrap: wrap; gap: 10px; }
  .nav-toggle {
    display: flex; order: 1;
  }
  .logo { order: 0; }
  .header-actions { order: 2; margin-left: auto; }
  .main-nav {
    order: 3; width: 100%; display: none;
    flex-direction: column; padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .search-form input { width: 130px; }
  .search-form input:focus { width: 150px; }
  .product-grid, .product-grid.grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .credits-list { grid-template-columns: 1fr 1fr; }
  .article-gallery { grid-template-columns: 1fr; }
  .cat-banner img { aspect-ratio: 16 / 9; }
  .product-detail { grid-template-columns: 1fr; gap: 26px; }
  .pd-media { position: static; }
  .section { padding: 40px 0; }
}
@media (max-width: 460px) {
  .product-grid, .product-grid.grid-3 { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero-stats { gap: 18px; }
}

/* ---------- Erişilebilirlik ---------- */
:focus-visible { outline: 3px solid var(--brand-dark); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
