/* ============================================================
   BONUS DEMENESİ — ANA STİL DOSYASI
   Tasarım: editorial/authority, minimal radius, Sen font
   ============================================================ */

/* --- GOOGLE FONT --- */
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;700;800&display=swap');

/* --- CSS DEĞİŞKENLERİ --- */
:root {
  --cream:       #F4EFE6;
  --cream-dark:  #EDE5D7;
  --paper:       #FAF7F2;
  --ink:         #1A1A2E;
  --ink-2:       #2D2D44;
  --ink-light:   #5A5A78;
  --gold:        #0a9e9d;
  --gold-light:  #32cbca;
  --gold-pale:   #e8fafa;
  --red:         #B03020;
  --green:       #2A6B3C;
  --rule:        #cce8e8;

  --radius:    6px;
  --radius-sm: 4px;
  --container: 1200px;
  --nav-h:     64px;

  --font: 'Sen', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }
strong { font-weight: 700; }
ul, ol { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ============================================================
   TIPOGRAFI
   ============================================================ */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--ink-2); line-height: 1.7; }

.text-gold      { color: var(--gold); }
.text-light     { color: var(--ink-light); }
.text-sm        { font-size: 0.875rem; }
.text-xs        { font-size: 0.75rem; }
.text-center    { text-align: center; }
.font-bold      { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.btn--sm  { padding: 7px 16px; font-size: 0.8rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold-pale);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: rgba(10,158,157,0.2);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--ink);
  height: var(--nav-h);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
  padding-top: 14px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-img { height: 34px; width: auto; }
.nav__logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}
.nav__links svg { width: 15px; height: 15px; flex-shrink: 0; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav__toggle:hover { background: rgba(255,255,255,0.06); }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 840px) {
  .nav { position: relative; }
  .nav__toggle { display: flex; align-items: center; }
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--ink-2);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 12px 12px;
    gap: 2px;
    border-bottom: 2px solid var(--gold);
    z-index: 199;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 10px 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--ink);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(10,158,157,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,158,157,0.12);
  border: 1px solid rgba(10,158,157,0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  max-width: 700px;
}
.hero__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero__stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero__stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero__stat-num {
  display: block;
  color: var(--gold-light);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero__stat { padding: 0 20px 0 0; margin-right: 20px; }
}

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 64px 0; }
.section--sm { padding: 44px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--ink); }

.section__header { margin-bottom: 40px; }
.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.section__title { margin-bottom: 12px; }
.section__desc {
  color: var(--ink-light);
  max-width: 620px;
  font-size: 0.975rem;
}

/* ============================================================
   BONUS TYPE CARDS (4'lü 2-col grid)
   ============================================================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) { .bonus-grid { grid-template-columns: 1fr; } }

.bonus-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.bonus-card__icon {
  width: 38px;
  height: 38px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.bonus-card__icon svg { width: 20px; height: 20px; }
.bonus-card__title { font-size: 1rem; margin-bottom: 8px; }
.bonus-card__desc { font-size: 0.85rem; color: var(--ink-light); line-height: 1.6; }

/* ============================================================
   MINI CARDS (6'lı 3-col grid)
   ============================================================ */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mini-grid { grid-template-columns: 1fr; } }

.mini-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px 18px;
}
.mini-card--alt { background: var(--cream); }
.mini-card__icon {
  width: 34px;
  height: 34px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.mini-card__icon svg { width: 17px; height: 17px; }
.mini-card__title { font-size: 0.875rem; margin-bottom: 5px; }
.mini-card__desc  { font-size: 0.78rem; color: var(--ink-light); line-height: 1.55; }

/* ============================================================
   CONTENT SECTIONS (çevrim, adım adım, trendler)
   ============================================================ */
.content-block { max-width: 780px; }
.content-block h3 { margin: 24px 0 10px; }
.content-block p { margin-bottom: 14px; }
.content-block strong { color: var(--ink); }
.content-block ul { margin: 12px 0 14px 0; }
.content-block ul li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 0.925rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
}
.content-block ul li:last-child { border-bottom: none; }
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

/* Adım adım steps */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: none; }
.step__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  margin-top: 2px;
}
.step__body {}
.step__title { font-size: 0.975rem; font-weight: 700; margin-bottom: 4px; }
.step__desc  { font-size: 0.875rem; color: var(--ink-light); }

/* ============================================================
   SİTE KARTLARI
   ============================================================ */
.sites-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sites-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 640px) { .sites-grid { grid-template-columns: 1fr; } }

.site-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 86px;
}
.site-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(10,158,157,0.1);
}
.site-card--hidden { display: none; }

.site-card__logo-wrap {
  width: 190px;
  flex-shrink: 0;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  position: relative;
}
.site-card__logo {
  max-width: 130px;
  max-height: 60px;
  object-fit: contain;
  margin-top: 20px;
}
.site-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--gold);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.site-card__body {
  flex: 1;
  min-width: 0;
  padding: 2px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.site-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-card__desc {
  font-size: 0.78rem;
  color: var(--ink-light);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.site-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  display: block;
  flex-shrink: 0;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__brand-name {
  font-family: "Sen", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-pale);
  letter-spacing: 0.01em;
}

/* Yıldızlar */
.stars { display: flex; align-items: center; gap: 1px; }
.star { font-size: 0.8rem; line-height: 1; color: var(--cream-dark); }
.star--full  { color: var(--gold); }
.star--half  { color: var(--gold-light); }
.star--empty { color: #ccc; }
.star-score  { font-size: 0.72rem; font-weight: 700; color: var(--ink-light); margin-left: 4px; }

/* ============================================================
   SEARCH BOX
   ============================================================ */
.search-wrap { position: relative; }
.search-wrap input {
  width: 220px;
  padding: 8px 34px 8px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap input::placeholder { color: var(--ink-light); }
.search-wrap__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-light);
  pointer-events: none;
}
.search-wrap__icon svg { width: 14px; height: 14px; }

/* ============================================================
   TELEGRAM CTA
   ============================================================ */
.tg-cta {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.tg-cta--centered { align-items: center; text-align: center; }

.tg-cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,158,157,0.12);
  border: 1px solid rgba(10,158,157,0.4);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.tg-cta__title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.tg-cta__desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}
.tg-cta__desc strong { color: var(--gold-light); }

/* ============================================================
   PAGE HEADER (sayfa banner)
   ============================================================ */
.page-header {
  background: var(--ink);
  padding: 44px 0 36px;
  border-bottom: 2px solid var(--gold);
}
.page-header__tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.page-header h1 { color: #fff; margin-bottom: 10px; }
.page-header__desc { color: rgba(255,255,255,0.6); max-width: 620px; font-size: 0.975rem; }

/* ============================================================
   CONTENT CARD (hakkımızda, gizlilik tek kart)
   ============================================================ */
.content-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px 28px;
}
.content-card__title { margin-bottom: 12px; font-size: 1.1rem; }
.content-card p { font-size: 0.925rem; margin-bottom: 10px; }
.content-card p:last-child { margin-bottom: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-group { margin-bottom: 28px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rule);
  margin-bottom: 0;
}
.faq-list {
  border: 1px solid var(--rule);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--cream); }
.faq-q.open  { background: var(--gold-pale); color: var(--gold); }

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.15s;
  color: var(--gold);
}
.faq-q.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-icon svg { width: 10px; height: 10px; }

.faq-a {
  display: none;
  padding: 14px 20px 18px;
  background: var(--gold-pale);
  font-size: 0.875rem;
  color: var(--ink-2);
  line-height: 1.7;
  border-top: 1px solid var(--rule);
}
.faq-a.open { display: block; }

/* CTA altında SSS */
.contact-cta {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-cta__text h3 { margin-bottom: 4px; }
.contact-cta__text p  { font-size: 0.85rem; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); }

.footer__main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (max-width: 900px) { .footer__main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__main { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; } }

.footer__brand {}
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer__logo-img { height: 30px; }
.footer__logo-text {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.footer__desc {
  color: rgba(255,255,255,0.42);
  font-size: 0.8rem;
  line-height: 1.65;
  max-width: 250px;
}
.footer__col-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__nav-list { display: flex; flex-direction: column; gap: 6px; }
.footer__nav-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.15s;
  padding: 3px 0;
}
.footer__nav-list a:hover { color: var(--gold-light); }
.footer__nav-list svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.6; }
.footer__nav-list a:hover svg { opacity: 1; }

.footer__legal-col {}
.footer__legal-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer__legal p {
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.footer__legal p:last-child { margin-bottom: 0; }
.footer__legal strong { color: rgba(255,255,255,0.5); }
.footer__age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(176,48,32,0.2);
  border: 1px solid rgba(176,48,32,0.4);
  color: #e08070;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.footer__age-badge svg { width: 13px; height: 13px; }

/* Footer kategori grid */
.footer__cats {
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__cats-heading {
  color: rgba(255,255,255,0.25);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer__cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
@media (max-width: 900px) { .footer__cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .footer__cats-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }

.footer__cat-name {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__cat-caret {
  color: var(--gold);
  font-size: 0.55rem;
  transition: transform 0.2s;
}
.footer__cat-name.open .footer__cat-caret { transform: rotate(180deg); }

.footer__cat-links { display: flex; flex-direction: column; gap: 3px; }
.footer__cat-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.15s;
  padding: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer__cat-links a:hover { color: var(--gold-light); }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy {
  color: rgba(255,255,255,0.22);
  font-size: 0.72rem;
}
.footer__copy a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer__copy a:hover { color: var(--gold-light); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb__sep { color: rgba(255,255,255,0.2); }

/* ============================================================
   NO RESULTS
   ============================================================ */
.no-results {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--ink-light);
  font-size: 0.9rem;
  border: 1px dashed var(--rule);
  border-radius: var(--radius);
  display: none;
}
.no-results.show { display: block; }

/* ============================================================
   UTİLİTY
   ============================================================ */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }

.gap-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .gap-grid-2 { grid-template-columns: 1fr; } }

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
