/* ============================================================
   İnziva.net — Ana Stil Dosyası
   ============================================================
   Design System: "Sessiz Bilgi" (Quiet Knowledge)
   Birincil renk: Lacivert (#1B3A5C)
   İkon seti: Phosphor Icons
   Navigasyon: Airbnb tarzı arama + kategori bar
   ============================================================ */

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

a {
  text-decoration: none;
  color: inherit;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  background-color: #FAFAF8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

/* --- CSS Değişkenleri (Design Tokens) --- */
:root {
  --color-primary: #1B3A5C;
  --color-primary-light: #2A5580;
  --color-background: #FAFAF8;
  --color-text: #1A1A1A;
  --color-secondary: #6B7280;
  --color-border: #E5E7EB;
  --color-accent: #B8860B;
  --color-error: #8B0000;
  --color-surface: #FFFFFF;

  --font-sans: 'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  --header-height: 110px;
  --bottom-bar-height: 64px;
}

/* --- Header Panel (Arama + Kategoriler) --- */
.header-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding-top: env(safe-area-inset-top, 0px);
}

/* --- Mobil Arama (yazılabilir input) --- */
.mobile-search {
  padding: 10px var(--space-md);
  position: relative;
}

.mobile-search__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: #F3F4F6;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  transition: all 150ms ease;
}

.mobile-search__map-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

/* Search sayfasında harita butonu her zaman göster */
.page-container .mobile-search__map-btn {
  display: flex;
}

.mobile-search__bar:focus-within {
  background: var(--color-surface);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.mobile-search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: transparent;
}

.mobile-search__input::placeholder {
  color: var(--color-secondary);
}

/* --- Kategori Bar --- */
.category-bar {
  padding: 0;
  position: relative;
}
.category-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--color-surface));
  pointer-events: none;
  z-index: 1;
}

.category-bar__scroll {
  display: flex;
  gap: 4px;
  padding: 0 var(--space-md);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-bar__scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 14px 10px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  opacity: 0.55;
  transition: all 150ms ease;
  flex-shrink: 0;
}

.category-item:hover {
  opacity: 1;
}

.category-item--active {
  opacity: 1;
  border-bottom-color: var(--color-primary);
}

.category-item__icon {
  font-size: 20px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
}

.category-item__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* --- Harita Konteyneri --- */
.map-container {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height) - var(--bottom-bar-height));
  z-index: 0;
}

/* --- Alt Navigasyon (Mobil — Airbnb tarzı) --- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--bottom-bar-height);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  text-decoration: none;
  color: var(--color-secondary);
  transition: color 150ms ease;
  cursor: pointer;
  border: none;
  background: none;
  position: relative;
}

.bottom-nav__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 0 0 2px 2px;
  transition: width 150ms ease;
}

.bottom-nav__item--active::before {
  width: 32px;
}

.bottom-nav__item--active {
  color: var(--color-primary);
}

.bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.bottom-nav__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================================
   MASAÜSTÜ ÜST NAVİGASYON — Airbnb Tarzı
   ============================================================ */
.top-nav {
  display: none;
}

@media (min-width: 1024px) {
  .top-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
  }

  .top-nav__row {
    display: flex;
    align-items: center;
    height: 64px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* Sol: Logo */
  .top-nav__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .top-nav__logo {
    height: 45px;
    width: auto;
  }

  /* Orta: Tab'lar */
  .top-nav__center {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 auto;
  }

  .top-nav__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-secondary);
    transition: all 150ms ease;
    border-bottom: 2px solid transparent;
  }

  .top-nav__tab i {
    font-size: 20px;
  }

  .top-nav__tab:hover {
    color: var(--color-text);
  }

  .top-nav__tab--active {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
  }

  /* Sağ: Öner + Profil */
  .top-nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .top-nav__action-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: background 150ms ease;
  }

  .top-nav__action-link:hover {
    background: #F3F4F6;
  }

  .top-nav__user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 5px 5px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    cursor: pointer;
    color: var(--color-secondary);
    transition: box-shadow 150ms ease;
  }

  .top-nav__user-btn:hover {
    box-shadow: var(--shadow-md);
  }

  .top-nav__avatar-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }

  /* Arama Pill (ikinci satır) */
  .top-nav__search-row {
    display: flex;
    justify-content: center;
    padding: 8px 32px 14px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .search-pill {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    background: var(--color-surface);
    transition: box-shadow 200ms ease;
    max-width: 520px;
    width: 100%;
  }

  .search-pill:hover,
  .search-pill:focus-within {
    box-shadow: var(--shadow-md);
  }

  .search-pill__segment {
    padding: 8px 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1px;
    border-radius: var(--radius-full);
    transition: background 150ms ease;
  }

  .search-pill__segment:hover {
    background: #F3F4F6;
  }

  .search-pill__segment--main {
    flex: 1;
  }

  .search-pill__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
  }

  .search-pill__input {
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-text);
    background: transparent;
    width: 100%;
    padding: 0;
  }

  .search-pill__input::placeholder {
    color: var(--color-secondary);
    font-weight: 400;
  }

  .search-pill__placeholder {
    font-size: 13px;
    color: var(--color-secondary);
  }

  .search-pill__divider {
    width: 1px;
    height: 24px;
    background: var(--color-border);
    flex-shrink: 0;
  }

  .search-pill__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 4px;
    flex-shrink: 0;
    transition: background 150ms ease;
  }

  .search-pill__btn:hover {
    background: var(--color-primary-light);
  }

  /* Header panel masaüstünde gizle */
  .header-panel {
    display: none;
  }

  /* Harita ve içerik top offset — header artık daha yüksek */
  .map-container {
    top: 120px;
    height: calc(100% - 120px);
  }

  .bottom-nav {
    display: none;
  }

  :root {
    --header-height: 0px;
  }
}

/* Mobilde üst nav gizle */
@media (max-width: 1023px) {
  .top-nav {
    display: none;
  }
}

/* ============================================================
   HARİTA MARKER'LARI
   ============================================================ */
.map-marker {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 150ms ease, box-shadow 150ms ease;
  border: 2.5px solid white;
}

.map-marker:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.map-marker--active {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  border-color: var(--color-accent);
}

/* ============================================================
   KONUM BUTONU
   ============================================================ */
.locate-btn {
  position: fixed;
  z-index: 15;
  bottom: calc(var(--bottom-bar-height) + 20px);
  right: var(--space-md);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  transition: box-shadow 150ms ease, color 150ms ease;
}

.locate-btn:hover {
  box-shadow: var(--shadow-lg);
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .locate-btn {
    bottom: var(--space-lg);
    right: 60px;
  }
}

/* ============================================================
   BOŞ DURUM (EMPTY STATE)
   ============================================================ */
.empty-state {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.empty-state__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.empty-state__subtitle {
  font-size: 14px;
  color: var(--color-secondary);
}

/* ============================================================
   BOTTOM SHEET (Mekan Kartı)
   ============================================================ */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--color-surface);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 50vh;
  overflow-y: auto;
}

.bottom-sheet--open {
  transform: translateY(0);
}

.bottom-sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  margin: 10px auto 0;
}

.bottom-sheet__content {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.bottom-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.bottom-sheet__category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bottom-sheet__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-secondary);
  transition: background 150ms ease;
}

.bottom-sheet__close:hover {
  background: var(--color-border);
}

.bottom-sheet__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.bottom-sheet__meta {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.bottom-sheet__desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.bottom-sheet__actions {
  display: flex;
  gap: var(--space-sm);
}

/* Butonlar */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 150ms ease;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  flex: 1;
  justify-content: center;
}

.btn--primary:hover {
  background: var(--color-primary-light);
}

.btn--secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  flex: 1;
  justify-content: center;
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Bottom nav gizleme (sheet açıkken) */
.bottom-nav--hidden {
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   MASAÜSTÜ YAN PANEL
   ============================================================ */
.side-panel {
  display: none;
}

@media (min-width: 1024px) {
  .side-panel {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 120px;
    right: 0;
    width: 360px;
    height: calc(100% - 120px);
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    z-index: 15;
    overflow-y: auto;
  }

  .side-panel--visible {
    display: flex;
  }

  .side-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    position: sticky;
    top: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
  }

  .side-panel__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
  }

  .side-panel__count {
    font-size: 13px;
    color: var(--color-secondary);
  }

  .side-panel__list {
    padding: var(--space-sm);
  }

  .side-panel__card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 150ms ease;
  }

  .side-panel__card:hover {
    background: #F9FAFB;
  }

  .side-panel__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .side-panel__card-body {
    flex: 1;
    min-width: 0;
  }

  .side-panel__card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
  }

  .side-panel__card-meta {
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 2px;
  }

  /* Harita genişliğini yan panel kadar daralt */
  .map-container {
    width: calc(100% - 360px);
  }

  /* Konum butonu yan panelin solunda */
  .locate-btn {
    right: calc(360px + 16px);
  }

  /* Bottom sheet masaüstünde yan panele dönüşür, gizle */
  .bottom-sheet {
    display: none;
  }
}

/* ============================================================
   MOOD TAG'LERİ
   ============================================================ */
.mood-tags {
  display: flex;
  gap: 6px;
  padding: 8px var(--space-md) 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.mood-tags::-webkit-scrollbar { display: none; }

.mood-tag {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  transition: all 150ms ease;
}

.mood-tag:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
}

.mood-tag--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ============================================================
   ARAMA DROPDOWN
   ============================================================ */
.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  overflow: hidden;
  z-index: 100;
}

.search-dropdown--open {
  display: block;
}

.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 100ms ease;
}

.search-dropdown__item:hover {
  background: #F9FAFB;
}

.search-dropdown__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.search-dropdown__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.search-dropdown__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dropdown__meta {
  font-size: 12px;
  color: var(--color-secondary);
}

.search-dropdown__empty {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--color-secondary);
}

/* Mobil dropdown pozisyonu */
.mobile-search {
  position: relative;
}

/* Masaüstü dropdown pozisyonu */
.search-input-wrap {
  position: relative;
}

/* ============================================================
   LOADING STATE
   ============================================================ */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--color-background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: opacity 400ms ease, visibility 400ms ease;
}

.loading-overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-text {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 500;
}

/* ============================================================
   ONBOARDING TOOLTIP
   ============================================================ */
.onboarding {
  position: fixed;
  bottom: calc(var(--bottom-bar-height) + 80px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 35;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}

.onboarding--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.onboarding__content {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  border: 1px solid var(--color-border);
}

.onboarding__text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.onboarding__dismiss {
  margin-top: var(--space-sm);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--color-primary);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 150ms ease;
}

.onboarding__dismiss:hover {
  background: var(--color-primary-light);
}

@media (min-width: 1024px) {
  .onboarding {
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) translateY(20px);
  }
  .onboarding--visible {
    transform: translateX(-50%) translateY(-50%) translateY(0);
  }
}

/* ============================================================
   BOTTOM SHEET — GÖRSEL ALANI + TAG'LER
   ============================================================ */
.bottom-sheet__image {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: #F3F4F6;
}

.bottom-sheet__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-sheet__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
}

.bottom-sheet__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.sheet-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================================
   HARİTA STİL BUTONU
   ============================================================ */
.map-style-btn {
  position: fixed;
  z-index: 15;
  bottom: calc(var(--bottom-bar-height) + 72px);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-secondary);
  transition: all 150ms ease;
}

.map-style-btn:hover {
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

@media (min-width: 1024px) {
  .map-style-btn {
    bottom: 72px;
    right: calc(360px + 16px);
  }
}

/* ============================================================
   KONUM BUTONU — LOADING
   ============================================================ */
.locate-btn--loading {
  color: var(--color-primary);
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================================
   YAN PANEL — MOOD TAG'LERİ
   ============================================================ */
.side-panel__card-moods {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.mini-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  display: none;
}

@media (min-width: 1024px) {
  .site-footer {
    display: block;
    background: #F9FAFB;
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    margin-top: 64px;
  }

  .site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  .site-footer__top {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
  }

  .site-footer__brand {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
  }

  .site-footer__tagline {
    font-size: 13px;
    color: var(--color-secondary);
  }

  .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }

  .site-footer__copy {
    font-size: 12px;
    color: var(--color-secondary);
  }

  .site-footer__links {
    display: flex;
    gap: var(--space-lg);
  }

  .site-footer__links a {
    font-size: 13px;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 150ms ease;
  }

  .site-footer__links a:hover {
    color: var(--color-primary);
  }
}

/* ============================================================
   MOOD TAGS — ARAMA ALTINDA KONUMLANMA
   ============================================================ */
.mood-tags--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .mood-tags--desktop {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    justify-content: center;
    padding: 0;
    z-index: 10;
  }

  .top-nav__search {
    position: relative;
  }
}

/* ============================================================
   YAN PANEL — DETAY GÖRÜNÜMÜ (Masaüstü)
   ============================================================ */
.side-panel__detail {
  padding: var(--space-md);
}

.side-panel__detail-image {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background: #F3F4F6;
}

.side-panel__detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-panel__detail-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.side-panel__detail-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.side-panel__detail-meta {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.side-panel__detail-moods {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.side-panel__detail-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.side-panel__detail-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.side-panel__back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 150ms ease;
}

.side-panel__back:hover {
  opacity: 0.7;
}

/* ============================================================
   KEŞFET MODU — İÇERİK KARTLARI
   ============================================================ */
.explore-view {
  padding-top: calc(var(--header-height) + 5px);
  padding-bottom: calc(var(--bottom-bar-height) + 16px);
  min-height: 100vh;
  background: var(--color-background);
}

.explore-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-md);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.explore-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
}
.explore-empty h3 { font-size: 18px; font-weight: 600; color: var(--color-text); margin: 16px 0 8px; }
.explore-empty p { font-size: 14px; color: var(--color-secondary); margin: 0 0 20px; }

@media (min-width: 640px) {
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .explore-view {
    padding-top: calc(120px + 16px);
    padding-bottom: var(--space-xl);
  }

  .explore-container {
    max-width: 1280px;
    padding: 0 32px;
  }

  .explore-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Mekan Kartı — Zengin bilgi formatı */
.explore-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.explore-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.explore-card__image {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #E8EDF2 0%, #F3F4F6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .explore-card__image { height: 140px; }
}

.explore-card__image-placeholder {
  opacity: 0.3;
}

.explore-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
}

.explore-card__body {
  padding: 18px 20px 20px;
}

.explore-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 6px;
}

.explore-card__meta {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.explore-card__desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.explore-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: 12px;
  border-top: 1px solid #F3F4F6;
}

.explore-card__stat {
  font-size: 12px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.explore-card__stat i {
  color: var(--color-primary);
  font-size: 14px;
}

.explore-card__arrow {
  margin-left: auto;
  color: var(--color-primary);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 200ms ease;
}

.explore-card:hover .explore-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   MOD GEÇİŞ BUTONU
   ============================================================ */
.mode-toggle {
  position: fixed;
  z-index: 35;
  bottom: calc(var(--bottom-bar-height) + 16px);
  right: var(--space-md);
  left: auto;
  transform: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.mode-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (min-width: 1024px) {
  .mode-toggle {
    display: none;
  }
}

/* ============================================================
   HARİTA MODU AYARLARI
   ============================================================ */
.map-view {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: var(--bottom-bar-height);
  z-index: 0;
}

.map-view .map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .map-view {
    top: 120px;
    bottom: 0;
    right: 360px;
  }
}

/* ============================================================
   FİLTRE BAR — Kategori Chip'leri + Konum (Airbnb tarzı)
   ============================================================ */
.explore-filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 12px;
}

.explore-filter-bar__categories {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.explore-filter-bar__sort { flex-shrink: 0; }
.explore-sort-select {
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  cursor: pointer;
  outline: none;
  appearance: auto;
}
.explore-sort-select:focus { border-color: var(--color-primary); }

.explore-filter-bar__categories::-webkit-scrollbar { display: none; }

.category-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms ease;
  flex-shrink: 0;
}

.category-chip:hover {
  border-color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.category-chip--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.category-chip--active:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: none;
}

/* Konum filtresi */
.explore-filter-bar__location {
  position: relative;
  flex-shrink: 0;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms ease;
}

.location-chip:hover {
  border-color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.location-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  overflow: hidden;
}

.location-dropdown--open {
  display: block;
}

.location-dropdown__item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: background 100ms ease;
}

.location-dropdown__item:hover {
  background: #F3F4F6;
}

.location-dropdown__item--active {
  font-weight: 600;
  color: var(--color-primary);
}

/* Mobil kategori bar divider */
.category-bar__divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 4px;
}

.category-item--location {
  opacity: 0.8;
}

.category-item--location .category-item__icon {
  color: var(--color-primary);
}

/* Sonuç bilgisi */
.explore-results {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
}

.explore-results__count {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-secondary);
}

/* Mobilde explore filtre bar gizle (header'da zaten var) */
@media (max-width: 1023px) {
  .explore-filter-bar {
    display: none;
  }
  .explore-results {
    padding-top: 4px;
  }
  /* Detay sayfasında mobil header-panel gizle */
  .place-page ~ .header-panel,
  .place-page {
    /* padding-top zaten 56px (top-nav yok mobilde, 0 olmalı) */
  }
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.skeleton-card__image {
  height: 140px;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card__body {
  padding: 18px 20px 20px;
}

.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 10px;
}

.skeleton-line--title {
  height: 16px;
  width: 70%;
}

.skeleton-line--meta {
  height: 10px;
  width: 50%;
}

.skeleton-line--desc {
  height: 10px;
  width: 90%;
}

.skeleton-line--short {
  height: 10px;
  width: 40%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ============================================================
   BOŞ GRİD DURUMU
   ============================================================ */
.explore-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  gap: 12px;
}

.explore-empty__icon {
  font-size: 48px;
  color: var(--color-border);
}

.explore-empty__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
}

.explore-empty__text {
  font-size: 14px;
  color: var(--color-secondary);
  max-width: 300px;
  line-height: 1.5;
}

.explore-empty__btn {
  margin-top: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-primary);
  background: none;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 150ms ease;
}

.explore-empty__btn:hover {
  background: var(--color-primary);
  color: white;
}

/* ============================================================
   ÖNE ÇIKAN MEKAN (FEATURED CARD)
   ============================================================ */
.featured-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-top: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: box-shadow 250ms ease;
}

.featured-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-card__image {
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-card__image {
    min-height: 260px;
  }
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.featured-card__overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.featured-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(27, 58, 92, 0.9);
  color: white;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.featured-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card__category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.featured-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .featured-card__title {
    font-size: 20px;
  }
}

.featured-card__desc {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.featured-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-card__stat {
  font-size: 13px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.featured-card__stat i {
  color: var(--color-primary);
}

.featured-card__link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 150ms ease;
}

.featured-card__link:hover {
  gap: 8px;
}

/* Mobilde featured card gizleme (opsiyonel — gösterelim) */

/* ============================================================
   KART GÖRSELLERİ
   ============================================================ */
.explore-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 300ms ease;
}

.explore-card:hover .explore-card__image img {
  transform: scale(1.03);
}

.explore-card__image {
  position: relative;
}

/* ============================================================
   MEKAN DETAY SAYFASI
   ============================================================ */
.place-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Hero Görsel */
.place-hero {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .place-hero { height: 320px; }
}

@media (min-width: 1024px) {
  .place-hero { height: 360px; }
}

.place-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.place-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  transition: background 150ms ease;
}

.place-hero__back:hover {
  background: rgba(0,0,0,0.5);
}

/* İçerik Layout */
.place-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 24px;
}

@media (min-width: 768px) {
  .place-content {
    padding: 32px 32px 32px;
  }
}

@media (min-width: 1024px) {
  .place-content {
    padding: 40px 32px 40px;
  }
}

/* Aksiyon butonları (başlık altında, inline) */
.place-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.place-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}

.place-action-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Infobox (tarihçe altında, grid) */
.place-infobox {
  margin-top: 24px;
  padding: 16px;
  background: #F9FAFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.place-infobox__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.place-infobox__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

@media (min-width: 640px) {
  .place-infobox__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.place-infobox__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.place-infobox__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.place-infobox__item span:last-child {
  font-size: 13px;
  color: var(--color-text);
}

/* Kaynaklar */
.place-sources {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FEFDFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.place-sources__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.place-sources__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.place-sources__list li {
  font-size: 12px;
  color: var(--color-secondary);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.place-sources__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Harita bölümü (ziyaret sekmesinde) */
.place-map-section {
  margin-top: 16px;
}

.place-map-section__container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.place-map-section__directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.place-map-section__directions:hover {
  background: var(--color-primary-light);
}

/* Alt bölüm (ilişkili, katkı, katkıcılar) */
.place-bottom {
  margin-top: 24px;
  padding: 20px 0 0;
  border-top: none;
}

.place-related {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.place-related__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.place-related__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .place-related__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.place-related__card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 150ms ease;
}

.place-related__card:hover {
  background: #F9FAFB;
}

.place-related__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.place-related__name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.place-related__meta {
  display: block;
  font-size: 11px;
  color: var(--color-secondary);
}

/* Katkıda Bulun */
.place-contribute {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: #F9FAFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.place-contribute__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.place-contribute__desc {
  font-size: 12px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.place-contribute__btns {
  display: flex;
  gap: 8px;
}

/* Katkıda Bulunanlar */
.place-contributors {
  margin-bottom: 16px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.place-contributors__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.place-contributors__list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.place-contributors__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.place-contributors__item strong {
  display: block;
  font-size: 13px;
  color: var(--color-text);
}

.place-contributors__item span {
  display: block;
  font-size: 11px;
  color: var(--color-secondary);
}

/* Alt aksiyon butonları (basit, ikon + metin) */
.place-bottom-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.place-bottom-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-secondary);
  cursor: pointer;
  text-decoration: none;
  transition: color 150ms ease;
}

.place-bottom-action:hover {
  color: var(--color-primary);
}

/* Verify modal seçenekleri */
.verify-modal__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.verify-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  text-align: center;
  transition: all 150ms ease;
  font-family: var(--font-sans);
}

.verify-option strong {
  font-size: 13px;
  color: var(--color-text);
}

.verify-option span {
  font-size: 11px;
  color: var(--color-secondary);
}

.verify-option:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
}

.verify-option--yes:hover {
  border-color: #4A7C3F;
  background: #F0FDF4;
}

.verify-option--no:hover {
  border-color: #B8860B;
  background: #FFFBEB;
}

/* ============================================================
   OKUMA MODU
   ============================================================ */
.reading-mode {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #FEFDFB;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.reading-mode--open { display: block; }

.reading-mode__header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(254,253,251,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.reading-mode__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text);
  flex-shrink: 0;
}

.reading-mode__title {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reading-mode__time {
  font-size: 12px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.reading-mode__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.reading-mode__content h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.reading-mode__meta {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 32px;
  font-family: var(--font-sans);
}

.reading-mode__content p {
  font-size: 18px;
  line-height: 1.9;
  color: #2D2D2D;
  margin-bottom: 20px;
}

.reading-mode__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin: 32px 0 12px;
  font-family: var(--font-sans);
}

.reading-mode__content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 32px 0;
}

/* Okuma modu butonu (tab bar'da) */
.place-tab--read {
  margin-left: auto;
  border-bottom: none !important;
  opacity: 0.6;
  padding: 12px;
}

.place-tab--read:hover { opacity: 1; }

@media (max-width: 767px) {
  .reading-mode__content {
    padding: 24px 16px 80px;
  }
  .reading-mode__content p {
    font-size: 17px;
    line-height: 1.8;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb span {
  color: var(--color-text);
  font-weight: 500;
}

/* Başlık Alanı */
.place-header {
  margin-bottom: 24px;
}

.place-header__category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.place-header__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 4px;
}

.place-header__subtitle {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .place-header__title { font-size: 34px; }
}

.place-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--color-secondary);
}

.place-header__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Sekmeler */
.place-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  gap: 8px;
}

.place-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.place-tabs::-webkit-scrollbar { display: none; }

.place-actions-inline {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.place-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-secondary);
  font-size: 16px;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}

.place-action-icon:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.place-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 150ms ease;
}

.place-tab:hover {
  color: var(--color-text);
}

.place-tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Makale İçeriği */
.place-article {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
}

.place-article p {
  margin-bottom: 16px;
}

.place-source {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-secondary);
  margin-top: 24px;
  border: 1px solid var(--color-border);
}

/* Kitap Kartları */
.book-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 150ms ease;
}

.book-card:hover {
  box-shadow: var(--shadow-sm);
}

.book-card--link {
  text-decoration: none;
  cursor: pointer;
}

.book-card--link:hover {
  border-color: var(--color-primary);
}

.book-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.book-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.book-card__author {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 2px;
}

.book-card__meta {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Medya Kartları */
.media-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: box-shadow 150ms ease;
}

.media-card:hover {
  box-shadow: var(--shadow-sm);
}

.media-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.media-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.media-card__meta {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Medya Önizleme Kartları (küçük thumbnail + bilgi) */
.media-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.media-preview-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 150ms ease;
}

.media-preview-card:hover {
  box-shadow: var(--shadow-sm);
}

.media-preview-card__thumb {
  position: relative;
  width: 120px;
  height: 68px;
  flex-shrink: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

.media-preview-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-preview-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A1A1A;
  color: #555;
}

.media-preview-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  pointer-events: none;
}

.media-preview-card:hover .media-preview-card__play {
  background: rgba(27, 58, 92, 0.9);
}

.media-preview-card__info {
  flex: 1;
  min-width: 0;
}

.media-preview-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-preview-card__meta {
  font-size: 11px;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.media-preview-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
}

.media-preview-card__link:hover {
  opacity: 0.7;
}

/* Ziyaret Bilgisi */
.visit-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visit-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.visit-info__item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.visit-info__item p {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
}

/* Sidebar — InfoBox (Wikipedia tarzı) */
.infobox {
  background: #F9FAFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

.infobox__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  padding: 12px 16px;
  background: var(--color-primary);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.infobox__table {
  width: 100%;
  border-collapse: collapse;
}

.infobox__table tr {
  border-bottom: 1px solid var(--color-border);
}

.infobox__table tr:last-child {
  border-bottom: none;
}

.infobox__table td {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--color-text);
  vertical-align: top;
}

.infobox__label {
  font-weight: 600;
  color: var(--color-secondary);
  width: 100px;
}

.infobox__mono {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
}

/* İlişkili Mekanlar */
.related-places {
  margin-bottom: 16px;
}

.related-places__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.related-places__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  transition: opacity 150ms ease;
}

.related-places__item:hover {
  opacity: 0.7;
}

.related-places__item:last-child {
  border-bottom: none;
}

.related-places__name {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
}

.related-places__distance {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Sidebar Tag'leri */
.sidebar-tags {
  margin-bottom: 24px;
}

.sidebar-tags__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.sidebar-tags__list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sidebar-tag {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
}

/* Detay sayfasında footer */
.place-page + .site-footer {
  display: block;
}

/* ============================================================
   MEKAN DETAY — EK STİLLER
   ============================================================ */

/* Aksiyon Butonları */
.place-header__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.place-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms ease;
}

.place-action-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Mini Harita (Sidebar) */
.sidebar-map {
  margin-bottom: 16px;
}

.sidebar-map__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 10px;
}

.sidebar-map__container {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* Sayfa Bilgisi (Sidebar) */
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: #F9FAFB;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.sidebar-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-secondary);
}

.sidebar-info a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.sidebar-info a:hover {
  text-decoration: underline;
}

/* Mobilde detay sayfası — header yok, hero'dan başla, sticky bar için padding */
@media (max-width: 1023px) {
  .place-page {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* ============================================================
   KÜLLIYAT SAYFASI
   ============================================================ */
.kulliyat-page {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 100vh;
  background: var(--color-background);
}

@media (max-width: 1023px) {
  .kulliyat-page {
    padding-top: 16px;
    padding-bottom: 80px;
  }
}

.kulliyat-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 16px;
}

@media (min-width: 1024px) {
  .kulliyat-container {
    padding: 32px 32px 64px;
  }
}

/* Başlık */
.kulliyat-header {
  margin-bottom: 24px;
}

.kulliyat-header__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.kulliyat-header__desc {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.5;
}

/* Tür Sekmeleri */
.kulliyat-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
}

.kulliyat-tabs::-webkit-scrollbar { display: none; }

/* Mobilde scroll olduğunu gösteren fade */
@media (max-width: 767px) {
  .kulliyat-tabs {
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
}

.kulliyat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 150ms ease;
}

.kulliyat-tab:hover {
  color: var(--color-text);
}

.kulliyat-tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* Konu Tag'leri */
.kulliyat-topics {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.kulliyat-topics::-webkit-scrollbar { display: none; }

.topic-tag {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  transition: all 150ms ease;
}

.topic-tag:hover {
  border-color: var(--color-primary);
}

.topic-tag--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* İçerik Grid */
.kulliyat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .kulliyat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .kulliyat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Külliyat Kartı */
.kulliyat-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.kulliyat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.kulliyat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kulliyat-card__body {
  flex: 1;
  min-width: 0;
}

.kulliyat-card__type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.kulliyat-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.kulliyat-card__meta {
  font-size: 12px;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.kulliyat-card__desc {
  font-size: 13px;
  color: #4B5563;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kulliyat-card__places {
  margin-top: 8px;
  font-size: 11px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Boş durum */
.kulliyat-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px;
  text-align: center;
  color: var(--color-secondary);
  font-size: 14px;
}

/* Fihrist */
.fihrist {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.fihrist__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.fihrist__letters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.fihrist__letter {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: all 150ms ease;
  border: 1px solid transparent;
}

@media (max-width: 767px) {
  .fihrist__letter {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 8px;
  }
}

.fihrist__letter:hover {
  background: #F3F4F6;
  border-color: var(--color-border);
}

.fihrist__letter--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.fihrist__hint {
  font-size: 14px;
  color: var(--color-secondary);
  font-style: italic;
}

.fihrist__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fihrist__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 150ms ease;
}

.fihrist__item:hover {
  background: #F9FAFB;
}

.fihrist__item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.fihrist__item small {
  margin-left: auto;
  font-size: 11px;
  color: var(--color-secondary);
  font-weight: 500;
}

/* ============================================================
   ORTAK SAYFA YAPISI
   ============================================================ */
.page-container {
  padding-top: 120px;
  padding-bottom: 0;
  min-height: 100vh;
  background: var(--color-background);
}

@media (max-width: 1023px) {
  .page-container {
    padding-top: 16px;
    padding-bottom: 80px;
  }
}

.page-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 16px;
}

.page-content--narrow {
  max-width: 640px;
}

@media (min-width: 1024px) {
  .page-content {
    padding: 32px 32px 64px;
  }
}

.page-header {
  margin-bottom: 24px;
}

.page-header__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.page-header__desc {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.5;
}

/* ============================================================
   FORM STİLLERİ
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.form__input, .form__select, .form__textarea {
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.08);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form__actions {
  margin-top: 8px;
}

.form__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 12px;
  line-height: 1.5;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Alert */
.alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.alert--success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* ============================================================
   AUTH SAYFALARI
   ============================================================ */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px - 80px);
  padding: 24px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.auth-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.auth-card__desc {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.auth-card__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.auth-card__link {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.auth-card__link:hover {
  text-decoration: underline;
}

.auth-card__text {
  font-size: 13px;
  color: var(--color-secondary);
}

.auth-card__divider {
  color: var(--color-border);
}

/* ============================================================
   404 SAYFASI
   ============================================================ */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 56px - 80px);
  padding: 24px;
  text-align: center;
}

.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.error-page__code {
  font-size: 72px;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
}

.error-page__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-text);
}

.error-page__desc {
  font-size: 15px;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

/* ============================================================
   ARAMA SAYFASI
   ============================================================ */
.search-page-header {
  margin-bottom: 32px;
}

.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
  color: var(--color-secondary);
}

.search-page-form:focus-within {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.search-page-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
}

.search-page-info {
  font-size: 14px;
  color: var(--color-secondary);
}

.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
  color: var(--color-secondary);
  font-size: 15px;
}

/* ============================================================
   KAYITLI MEKANLAR — BOŞ DURUM
   ============================================================ */
.saved-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
}

.saved-empty h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.saved-empty p {
  font-size: 14px;
  color: var(--color-secondary);
  max-width: 320px;
}

/* ============================================================
   PROFİL SAYFASI
   ============================================================ */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.profile-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 12px;
}

.profile-card__email {
  font-size: 14px;
  color: var(--color-secondary);
  margin-top: 4px;
}

.profile-section {
  margin-bottom: 24px;
}

.profile-section__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.profile-empty {
  padding: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--color-secondary);
  background: #F9FAFB;
  border-radius: var(--radius-md);
}

.profile-settings {
  display: flex;
  flex-direction: column;
}

.profile-settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-text);
}

.profile-settings__value {
  color: var(--color-secondary);
  font-size: 13px;
}

/* ============================================================
   HAKKINDA SAYFASI
   ============================================================ */
.about-content {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

.about-section {
  margin-bottom: 32px;
}

.about-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.about-section p {
  margin-bottom: 12px;
  color: #4B5563;
}

.about-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.about-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about-step p {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 0;
}

.about-principles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.about-principles li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4B5563;
}

.about-principles li i {
  color: var(--color-primary);
  font-size: 18px;
}

.about-content a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.about-content a:hover {
  text-decoration: underline;
}

/* ============================================================
   AUTH LAYOUT (Sol form + Sağ tanıtım)
   ============================================================ */
.auth-layout {
  display: flex;
  min-height: 100vh;
}

.auth-layout__form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  padding-bottom: 80px;
}

.auth-form-wrap {
  width: 100%;
  max-width: 380px;
}

.auth-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 32px;
}

.auth-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--color-secondary);
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--color-secondary);
}

.auth-footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.form__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-secondary);
  cursor: pointer;
}

.form__link {
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.form__input-prefix {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 150ms ease;
}

.form__input-prefix:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.08);
}

.form__input-prefix span {
  padding: 11px 0 11px 14px;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
}

.form__input--no-border {
  border: none;
  border-radius: 0;
  box-shadow: none !important;
}

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

/* Sağ tanıtım alanı */
.auth-layout__hero {
  display: none;
}

@media (min-width: 1024px) {
  .auth-layout__hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1.5;
    background: linear-gradient(135deg, #1B3A5C 0%, #2A5580 100%);
    color: white;
    padding: 48px;
  }

  .auth-layout__form {
    padding-bottom: 32px;
  }
}

.auth-hero-content {
  max-width: 420px;
}

.auth-hero-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 12px;
  line-height: 1.3;
}

.auth-hero-content p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 32px;
}

.auth-hero-stats {
  display: flex;
  gap: 32px;
}

.auth-hero-stat {
  display: flex;
  flex-direction: column;
}

.auth-hero-stat__number {
  font-size: 28px;
  font-weight: 700;
}

.auth-hero-stat__label {
  font-size: 13px;
  opacity: 0.7;
}

.auth-hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.9;
}

/* ============================================================
   HAKKINDA — KURUMSAL
   ============================================================ */
.about-page {
  max-width: 1280px;
  margin: 0 auto;
}

.about-hero {
  padding: 64px 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-hero { padding: 80px 48px; }
}

.about-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-hero__title { font-size: 36px; }
}

.about-hero__desc {
  font-size: 16px;
  color: var(--color-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-block {
  padding: 48px 32px;
}

.about-block--alt {
  background: #F9FAFB;
}

.about-block__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-block__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}

.about-block__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.about-block__text {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
}

.about-gaps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .about-gaps { grid-template-columns: 1fr 1fr; }
}

.about-gap {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.about-gap__icon {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.about-gap h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-gap p {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
}

.about-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .about-steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-step-card {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.about-step-card__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
}

.about-step-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-step-card p {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.5;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .about-principles-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-principle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #4B5563;
}

.about-principle i {
  color: var(--color-error);
  font-size: 16px;
}

/* ============================================================
   KÜTÜPHANEM (SAVED) — SEKMELER
   ============================================================ */
.library-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.library-tabs::-webkit-scrollbar { display: none; }

.library-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all 150ms ease;
}

.library-tab:hover { color: var(--color-text); }
.library-tab--active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.library-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 64px 24px;
  text-align: center;
}

.library-empty h2 { font-size: 18px; font-weight: 600; color: var(--color-text); }
.library-empty p { font-size: 14px; color: var(--color-secondary); max-width: 360px; line-height: 1.5; }

/* ============================================================
   PROFİL — Instagram/Threads Tarzı Mobil Tasarım
   ============================================================ */
.profile-page {
  padding-top: 0;
  padding-bottom: calc(var(--bottom-bar-height) + 16px);
  min-height: 100vh;
  background: var(--color-background);
}

@media (min-width: 1024px) {
  .profile-page {
    padding-top: 80px;
    max-width: 1280px;
    padding-left: 32px;
    padding-right: 32px;
    margin: 0 auto;
  }
}

/* Header üst satır (username + ayarlar) */
.mp-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0;
}

.mp-header__username {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.mp-header__actions-top {
  display: flex;
  gap: 16px;
}

.mp-header__icon-btn {
  font-size: 22px;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

/* Profil satırı (avatar + istatistikler) */
.mp-header__profile-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 16px 0;
}

.mp-header__avatar {
  flex-shrink: 0;
}

.mp-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

.mp-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
}

.mp-header__stats {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.mp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mp-stat__num {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.mp-stat__label {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Bilgi alanı */
.mp-header__info {
  padding: 12px 16px 0;
}

.mp-header__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}

.mp-badge--admin { color: #B8860B; }
.mp-badge--curator { color: var(--color-primary); }

.mp-header__title {
  font-size: 13px;
  color: var(--color-secondary);
  margin-top: 2px;
}

.mp-header__bio {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  margin-top: 6px;
}

.mp-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-secondary);
}

.mp-header__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mp-header__meta a {
  color: var(--color-primary);
}

.mp-header__interests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.mp-interest {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
}

/* Butonlar */
.mp-header__buttons {
  display: flex;
  gap: 8px;
  padding: 14px 16px 0;
}

.mp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 150ms ease;
}

.mp-btn--edit {
  flex: 1;
  background: #F3F4F6;
  color: var(--color-text);
}

.mp-btn--edit:hover {
  background: var(--color-border);
}

.mp-btn--share {
  width: 40px;
  padding: 0;
  background: #F3F4F6;
  color: var(--color-text);
  font-size: 16px;
}

.mp-btn--share:hover {
  background: var(--color-border);
}

/* Profil tamamla banner */
.mp-complete-banner {
  margin: 14px 16px 0;
  padding: 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mp-complete-banner__progress {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  margin-bottom: 10px;
  overflow: hidden;
}

.mp-complete-banner__bar {
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 300ms ease;
}

.mp-complete-banner p {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.mp-complete-banner__steps {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--color-secondary);
}

.mp-complete-banner__steps span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mp-complete-banner__steps .done {
  color: #4A7C3F;
}

/* Sekmeler */
.mp-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  margin-top: 16px;
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--color-background);
}

.mp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 150ms ease;
}

.mp-tab:hover { color: var(--color-text); }
.mp-tab--active { color: var(--color-text); border-bottom-color: var(--color-text); }

/* İçerik */
.mp-content {
  padding: 16px;
}

/* Aktivite listesi */
.mp-activity-list {
  display: flex;
  flex-direction: column;
}

.mp-activity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.mp-activity:last-child { border-bottom: none; }

.mp-activity__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.mp-activity__body {
  flex: 1;
}

.mp-activity__body p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
}

.mp-activity__time {
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 2px;
  display: block;
}

/* Boş durum */
.mp-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 24px;
  text-align: center;
}

.mp-empty h3 { font-size: 16px; font-weight: 600; color: var(--color-text); }
.mp-empty p { font-size: 14px; color: var(--color-secondary); max-width: 280px; line-height: 1.5; }

/* Öneriler listesi */
.mp-suggestions {
  display: flex;
  flex-direction: column;
}

.mp-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.mp-suggestion:last-child { border-bottom: none; }

.mp-suggestion__left {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.mp-suggestion__body {
  flex: 1;
  min-width: 0;
}

.mp-suggestion__body strong {
  font-size: 14px;
  color: var(--color-text);
  display: block;
}

.mp-suggestion__date {
  font-size: 12px;
  color: var(--color-secondary);
}

.mp-suggestion__reason {
  font-size: 12px;
  color: var(--color-error);
  margin-top: 4px;
  line-height: 1.4;
}

.mp-suggestion__status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mp-status {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.mp-status--pending { background: #FEF3C7; color: #92400E; }
.mp-status--approved { background: #D1FAE5; color: #065F46; }
.mp-status--rejected { background: #FEE2E2; color: #991B1B; }

.mp-retry-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 14px;
  text-decoration: none;
}

/* Ayarlar */
.mp-settings-group {
  margin-bottom: 24px;
}

.mp-settings-group h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.mp-settings-list {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mp-settings-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  cursor: pointer;
  transition: background 100ms ease;
  border: none;
  background: var(--color-surface);
  width: 100%;
  font-family: var(--font-sans);
}

.mp-settings-item:last-child { border-bottom: none; }
.mp-settings-item:hover { background: #F9FAFB; }

.mp-settings-item i:first-child {
  font-size: 18px;
  color: var(--color-secondary);
  width: 24px;
  text-align: center;
}

.mp-settings-item span { flex: 1; }

.mp-settings-item i:last-child {
  font-size: 14px;
  color: var(--color-border);
}

.mp-settings-item--danger {
  color: var(--color-error);
}

.mp-settings-item--danger i:first-child {
  color: var(--color-error);
}

/* Masaüstünde profil sayfası — header genişliğinde */
@media (min-width: 1024px) {
  .mp-header {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 24px;
  }

  .mp-header__top { padding: 0; }
  .mp-header__profile-row { padding: 20px 0 0; }
  .mp-header__info { padding: 16px 0 0; }
  .mp-header__buttons { padding: 16px 0 0; }
  .mp-complete-banner { margin: 16px 0 0; }

  .mp-tabs {
    position: static;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
  }

  .mp-tab {
    padding: 16px 12px;
    font-size: 14px;
  }

  .mp-content {
    padding: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
  }

  .mp-avatar-img { width: 96px; height: 96px; }
  .mp-avatar-placeholder { width: 96px; height: 96px; }
  .mp-stat__num { font-size: 20px; }
  .mp-header__stats { gap: 32px; }
  .mp-header__name { font-size: 18px; }
  .mp-header__bio { font-size: 15px; }
}

/* Public profil — geri butonu + üyelik bilgisi */
.mp-header__back-link {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--color-text);
  text-decoration: none;
}

.mp-header__member-since {
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Username (handle) — ismin altında */
.mp-header__handle {
  font-size: 14px;
  color: var(--color-secondary);
  font-weight: 500;
  margin-top: 1px;
}

/* Üst bar'daki isim (kısa gösterim) */
.mp-header__username-top {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  flex: 1;
  text-align: center;
}

/* Alt sayfa header (profil düzenle, hesap ayarları) */
.mp-subpage-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.mp-subpage-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text);
  font-size: 18px;
  text-decoration: none;
  transition: background 150ms ease;
}

.mp-subpage-header__back:hover {
  background: #F3F4F6;
}

.mp-subpage-header__title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.mp-subpage-header__spacer {
  width: 36px;
}

/* Masaüstünde subpage header gizle, normal header göster */
@media (min-width: 1024px) {
  .mp-subpage-header {
    display: none;
  }
}

/* Mobilde normal page-header gizle (subpage header var) */
@media (max-width: 1023px) {
  .mp-subpage-header--desktop-only {
    display: none;
  }
}

/* Mekan kartları grid (profil sekmeleri) */
.mp-places-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 480px) {
  .mp-places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mp-places-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.mp-place-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.mp-place-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.mp-place-card__img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #F3F4F6;
}

.mp-place-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-place-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-place-card__body {
  flex: 1;
  min-width: 0;
}

.mp-place-card__category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mp-place-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-place-card__meta {
  font-size: 12px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ============================================================
   ARAMA SONUÇLARI
   ============================================================ */
.search-section {
  margin-bottom: 32px;
}

.search-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.search-results-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: box-shadow 150ms ease;
  cursor: pointer;
}

.search-result-card:hover {
  box-shadow: var(--shadow-sm);
}

.search-result-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-result-card__body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.search-result-card__body p {
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 2px;
}

/* ============================================================
   KATKIDA BULUN + KATKILAR + MODAL
   ============================================================ */
.contribute-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.contribute-section__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contribute-section__desc {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.contribute-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contribute-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms ease;
}

.contribute-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Katkıda Bulunanlar */
.contributors-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.contributors-section__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
}

.contributors-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contributor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contributor__info {
  display: flex;
  flex-direction: column;
}

.contributor__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
}

.contributor__role {
  font-size: 11px;
  color: var(--color-secondary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(2px);
}

.modal {
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-secondary);
  font-size: 18px;
  transition: background 150ms ease;
}

.modal__close:hover {
  background: var(--color-border);
}

.modal__body {
  padding: 20px 24px 24px;
}

/* Modal — mobilde tam ekran */
@media (max-width: 639px) {
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    max-width: 100%;
    max-height: 100vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: 60vh;
  }
}

/* ============================================================
   MARKA KİTİ SAYFASI
   ============================================================ */
.brand-section {
  margin-bottom: 40px;
}

.brand-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.brand-story p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Logo Grid */
.brand-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .brand-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-logo-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.brand-logo-card__preview {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.brand-logo-card__preview img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.brand-logo-card__label {
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-secondary);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

/* Renk Paleti */
.brand-colors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-color {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.brand-color__swatch {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
}

.brand-color__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-color__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.brand-color__hex {
  font-size: 13px;
  font-family: monospace;
  color: var(--color-primary);
}

.brand-color__use {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Tipografi */
.brand-typo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-typo__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.brand-typo__detail {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Kurallar */
.brand-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-rules li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #4B5563;
}

/* ============================================================
   HERO SECTION (Giriş yapmamışlar)
   ============================================================ */
.hero-section {
  padding: 32px 0 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .hero-section { display: none; }
}

.hero-content {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 12px;
}

@media (min-width: 768px) { .hero-title { font-size: 40px; } }

.hero-desc {
  font-size: 16px;
  color: var(--color-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat__num {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-stat__label {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 639px) { .hero-features { grid-template-columns: 1fr; } }

.hero-feature {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.hero-feature h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 10px 0 6px;
}

.hero-feature p {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.5;
}

/* ============================================================
   BUGÜN TARİHTE
   ============================================================ */
.today-section {
  margin-top: 40px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.today-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.today-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.today-section__dates {
  display: flex;
  gap: 12px;
  align-items: center;
}

.today-section__date {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 500;
}

.today-section__date--hijri {
  padding: 3px 8px;
  background: #F0F4F8;
  border-radius: var(--radius-full);
  color: var(--color-primary);
}

.today-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.today-list li {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.today-list li strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================================
   ZENGİN FOOTER
   ============================================================ */
.rich-footer {
  margin-top: 10px;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  background: #F9FAFB;
}

.rich-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.rich-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .rich-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .rich-footer__brand { grid-column: 1 / -1; }
}

.rich-footer__brand p {
  font-size: 13px;
  color: var(--color-secondary);
  margin-top: 10px;
  line-height: 1.5;
}

.rich-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.rich-footer__col a {
  display: block;
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 8px;
  transition: color 150ms ease;
}

.rich-footer__col a:hover {
  color: var(--color-primary);
}

.rich-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rich-footer__legal {
  display: flex;
  gap: 16px;
}

.rich-footer__legal a {
  font-size: 12px;
  color: var(--color-secondary);
  transition: color 150ms ease;
}

.rich-footer__legal a:hover {
  color: var(--color-primary);
}

/* Mobilde keşfet, külliyat, mekan detay, şehir, profil, kullanıcı ve öner sayfalarında footer gizle */
@media (max-width: 1023px) {
  .home-page .rich-footer,
  .kulliyat-body .rich-footer,
  .place-detail-body .rich-footer,
  .cities-body .rich-footer,
  .profile-body .rich-footer,
  .users-body .rich-footer,
  .suggest-body .rich-footer {
    display: none;
  }
}

/* ============================================================
   SIDEBAR — KATKI + KATKILAR + AKSİYONLAR (Wikipedia/Archive tarzı)
   ============================================================ */
.sidebar-contribute {
  margin-bottom: 20px;
  padding: 14px;
  background: #F9FAFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.sidebar-contribute__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.sidebar-contribute__desc {
  font-size: 11px;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.sidebar-contribute__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.sidebar-contribute__buttons .contribute-btn {
  width: 100%;
  justify-content: center;
  font-size: 11px;
  padding: 8px 6px;
  flex-direction: column;
  gap: 3px;
}

.sidebar-contributors {
  margin-bottom: 20px;
}

.sidebar-contributors__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.contributor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  text-decoration: none;
}

.contributor__info {
  display: flex;
  flex-direction: column;
}

.contributor__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.contributor__role {
  font-size: 11px;
  color: var(--color-secondary);
}

/* ============================================================
   KÜLLIYAT — KONU BAZLI KEŞİF
   ============================================================ */
.topics-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .topics-section {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
    padding-bottom: 4px;
    margin: 0 -16px 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .topics-section::-webkit-scrollbar { display: none; }
  .topic-card {
    min-width: 200px;
    flex-shrink: 0;
    padding: 14px 16px;
  }
  .topic-card__name { font-size: 14px; margin-bottom: 6px; }
  .topic-card__stats { gap: 8px; font-size: 12px; }
}

.topic-card {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow 150ms ease;
  cursor: pointer;
}

.topic-card:hover {
  box-shadow: var(--shadow-sm);
}

.topic-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.topic-card__stats {
  display: flex;
  gap: 12px;
}

.topic-card__stats span {
  font-size: 12px;
  color: var(--color-secondary);
  font-weight: 500;
}

/* ============================================================
   MEKAN ÖNER — YENİ TASARIM
   ============================================================ */
.suggest-page {
  min-height: 100vh;
  background: var(--color-background);
  padding: 0 16px 100px;
}

@media (min-width: 1024px) {
  .suggest-page {
    max-width: 560px;
    margin: 0 auto;
    padding: 80px 0 60px;
  }
}

/* Üst bar (mobil) */
.suggest-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 8px;
}

.suggest-topbar__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text);
  font-size: 18px;
  text-decoration: none;
}

.suggest-topbar__title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.suggest-topbar__spacer { width: 36px; }

@media (min-width: 1024px) {
  .suggest-topbar { display: none; }
}

/* Motivasyon hero */
.suggest-hero {
  text-align: center;
  padding: 20px 0 24px;
}

.suggest-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.suggest-hero__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.suggest-hero__desc {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}

/* Adım göstergesi */
.suggest-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  padding: 0 20px;
}

.suggest-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.suggest-step span {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-secondary);
}

.suggest-step__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  background: var(--color-surface);
  transition: all 200ms ease;
}

.suggest-step--active .suggest-step__circle {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: white;
}

.suggest-step--active span {
  color: var(--color-primary);
  font-weight: 600;
}

.suggest-step--done .suggest-step__circle {
  border-color: #4A7C3F;
  background: #4A7C3F;
  color: white;
}

.suggest-step--done span {
  color: #4A7C3F;
}

.suggest-step__line {
  width: 40px;
  height: 2px;
  background: var(--color-border);
  margin: 0 8px;
  margin-bottom: 18px;
  border-radius: 1px;
  transition: background 200ms ease;
}

.suggest-step__line--done {
  background: #4A7C3F;
}

/* Alert */
.suggest-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  color: #8B0000;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Panel */
.suggest-panel__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.suggest-panel__title i {
  color: var(--color-primary);
}

.suggest-panel__desc {
  font-size: 13px;
  color: var(--color-secondary);
  margin-top: -10px;
  margin-bottom: 16px;
}

/* Kategori seçimi */
.suggest-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (max-width: 400px) {
  .suggest-categories { grid-template-columns: repeat(2, 1fr); }
}

.suggest-cat__input { display: none; }

.suggest-cat__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 150ms ease;
  text-align: center;
}

.suggest-cat__card span {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
}

.suggest-cat__card:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
}

.suggest-cat__input:checked + .suggest-cat__card {
  border-color: var(--color-primary);
  background: #F0F4F8;
  box-shadow: 0 0 0 2px rgba(27, 58, 92, 0.12);
}

/* Navigasyon butonları */
.suggest-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  justify-content: space-between;
}

.suggest-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 150ms ease;
}

.suggest-nav__btn--back {
  background: #F3F4F6;
  color: var(--color-text);
}

.suggest-nav__btn--back:hover {
  background: var(--color-border);
}

.suggest-nav__btn--next {
  background: var(--color-primary);
  color: white;
  margin-left: auto;
}

.suggest-nav__btn--next:hover {
  background: var(--color-primary-light);
}

.suggest-nav__btn--submit {
  background: #4A7C3F;
  color: white;
  flex: 1;
}

.suggest-nav__btn--submit:hover {
  background: #3D6B34;
}

/* Konum toggle */
.suggest-location-toggle {
  display: flex;
  gap: 8px;
}

.suggest-loc-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 150ms ease;
}

.suggest-loc-btn--active {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Harita arama */
.suggest-map-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  margin-bottom: 10px;
}

.suggest-map-search i { color: var(--color-secondary); font-size: 16px; }

.suggest-map-search input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
  background: transparent;
}

.suggest-map-search input::placeholder { color: var(--color-secondary); }

.suggest-map-search button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

/* Harita */
.suggest-map {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.suggest-map__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 8px;
}

/* Görsel yükleme */
.suggest-upload__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 16px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 150ms ease;
  text-align: center;
}

.suggest-upload__area:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
}

.suggest-upload__area span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.suggest-upload__area small {
  font-size: 11px;
  color: var(--color-secondary);
}

.suggest-upload__area input[type="file"] { display: none; }

.suggest-upload__area--sm {
  padding: 16px;
}

.suggest-upload__preview {
  position: relative;
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.suggest-upload__preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.suggest-upload__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
}

.suggest-gallery-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.suggest-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}

.suggest-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* İki kolon */
.suggest-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 400px) {
  .suggest-row-2 { grid-template-columns: 1fr; }
}

/* Bilgi notu */
.suggest-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: #F9FAFB;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 20px;
  line-height: 1.5;
}

.suggest-note a {
  color: var(--color-primary);
  font-weight: 500;
}

/* Büyük input */
.form__input--lg {
  padding: 14px 16px;
  font-size: 16px;
}

/* Label opsiyonel/zorunlu */
.form__label-opt {
  font-weight: 400;
  color: var(--color-secondary);
  font-size: 12px;
}

.form__label-req {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 11px;
  background: #F0F4F8;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Shake animasyonu (validasyon) */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.shake {
  animation: shake 400ms ease;
}

/* Karakter sayacı */
.form__char-count {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--color-secondary);
  margin-top: 4px;
}

/* İki kolonlu form satırı */
.form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 480px) {
  .form__row-2 { grid-template-columns: 1fr; }
}

/* Duplikasyon uyarısı */
.form__hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #B8860B;
  margin-top: 6px;
  padding: 8px 10px;
  background: #FFFBEB;
  border-radius: var(--radius-sm);
  border: 1px solid #FDE68A;
}

/* Harita arama barı (suggest) */
.map-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  margin-bottom: 8px;
  transition: border-color 150ms ease;
}

.map-search-bar:focus-within {
  border-color: var(--color-primary);
}

.map-search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text);
  background: transparent;
}

.map-search-bar__input::placeholder {
  color: var(--color-secondary);
}

.map-search-bar__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 150ms ease;
}

.map-search-bar__btn:hover {
  background: var(--color-primary-light);
}

.form__hint-neutral {
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 8px;
}

/* ============================================================
   AUTH MODAL (Giriş gerekli popup)
   ============================================================ */
.auth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}

.auth-modal {
  width: 100%;
  max-width: 400px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  text-align: center;
}

.auth-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-secondary);
  font-size: 18px;
}

.auth-modal__close:hover {
  background: var(--color-border);
}

.auth-modal__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F0F4F8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.auth-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.auth-modal__desc {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.auth-modal__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
  text-align: left;
}

.auth-modal__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4B5563;
  padding: 8px 10px;
  background: #F9FAFB;
  border-radius: var(--radius-sm);
}

.auth-modal__feature i {
  color: var(--color-primary);
  font-size: 16px;
}

.auth-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-modal__note {
  font-size: 11px;
  color: var(--color-secondary);
  margin-top: 16px;
}

/* E-posta sağlayıcı butonları */
.email-providers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.email-provider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 150ms ease;
}

.email-provider-btn:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
  color: var(--color-primary);
}

/* ============================================================
   KULLANICI MENÜSÜ (Avatar dropdown)
   ============================================================ */
.user-menu-wrap {
  position: relative;
}

.user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 100;
  overflow: hidden;
}

.user-menu--open {
  display: block;
}

.user-menu__header {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}

.user-menu__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.user-menu__username {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 500;
}

.user-menu__divider {
  height: 1px;
  background: var(--color-border);
}

.user-menu__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: background 100ms ease;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-sans);
  cursor: pointer;
  text-align: left;
}

.user-menu__item:hover {
  background: #F3F4F6;
}

.user-menu__item i {
  font-size: 16px;
  color: var(--color-secondary);
}

.user-menu__item--danger {
  color: var(--color-error);
}

.user-menu__item--danger i {
  color: var(--color-error);
}

.user-menu__item--danger:hover {
  background: #FEF2F2;
}

/* Sidebar aksiyon butonları — yan yana, kompakt */
.sidebar-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.sidebar-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
}

.sidebar-action-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

.sidebar-action-btn i {
  font-size: 18px;
}

/* ============================================================
   PROFİL — BANNER + DETAYLAR + DÜZENLEME
   ============================================================ */
.profile-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #F0F4F8;
  border: 1px solid #D1E3F6;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.profile-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.profile-banner__content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.profile-banner__content p {
  font-size: 13px;
  color: var(--color-secondary);
}

@media (max-width: 639px) {
  .profile-banner { flex-direction: column; align-items: flex-start; }
}

.profile-header__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--color-secondary);
}

.profile-header__details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-header__details a {
  color: var(--color-primary);
}

.profile-header__interests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.profile-interest-tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 500;
}

/* Form Fieldset */
.form-fieldset {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.form-fieldset__legend {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  padding: 0 8px;
}

.form-fieldset__desc {
  font-size: 12px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

/* İlgi alanı önerileri */
.interest-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.interest-suggestion {
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 150ms ease;
}

.interest-suggestion:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Contribution item */
.contribution-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.contribution-item__type {
  font-weight: 500;
  color: var(--color-text);
}

.contribution-item__status {
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.contribution-item__status--pending { background: #FEF3C7; color: #92400E; }
.contribution-item__status--approved { background: #D1FAE5; color: #065F46; }
.contribution-item__status--rejected { background: #FEE2E2; color: #991B1B; }

.contribution-item__date {
  margin-left: auto;
  color: var(--color-secondary);
  font-size: 12px;
}

/* Avatar upload + header avatar */
.avatar-upload {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.avatar-upload__preview {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
}

.avatar-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-upload__input {
  flex: 1;
}

.top-nav__avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
}

/* Avatar upload butonu */
.avatar-upload__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms ease;
  margin-bottom: 6px;
}

.avatar-upload__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #F0F4F8;
}

/* Saved card (kaldır butonu ile) */
.saved-card {
  position: relative;
}

.saved-card__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
}

.saved-card__remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 150ms ease;
}

.saved-card__remove-btn:hover {
  background: #FEE2E2;
  color: #991B1B;
}

/* Aktivite listesi */
.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.activity-item:last-child { border-bottom: none; }

.activity-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.activity-item__body p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.4;
}

.activity-item__time {
  font-size: 12px;
  color: var(--color-secondary);
  margin-top: 2px;
  display: block;
}

/* Contributor link */
a.contributor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: var(--radius-sm);
  transition: background 150ms ease;
}

a.contributor:hover {
  background: #F3F4F6;
}

/* Arama — kullanıcı kartı (Instagram tarzı) */
.search-result-card--user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-result-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
}

.search-result-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Yasal sayfalar */
.legal-content section {
  margin-bottom: 28px;
}

.legal-content h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.legal-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 12px 0 8px;
}

.legal-content p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-content a {
  color: var(--color-primary);
  font-weight: 500;
}

.faq-item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child { border-bottom: none; }

/* KVKK checkbox */
.form__checkbox--legal {
  font-size: 12px;
  line-height: 1.5;
  align-items: flex-start;
}

.form__checkbox--legal a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Hakkında — Problemler + Kıyaslama */
.about-problems {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.about-problem {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.about-problem__icon {
  font-size: 24px;
  color: #B8860B;
  margin-bottom: 8px;
}

.about-problem h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.about-problem p {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.about-problem__solution {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 12px;
  background: #ECFDF5;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.about-problem__solution i {
  color: #4A7C3F;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Kıyaslama tablosu */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
  .comparison-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}

.comparison-table th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--color-text);
  background: #F9FAFB;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th:first-child {
  min-width: 160px;
}

.comparison-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 500;
}

.comparison-table i {
  font-size: 18px;
}

/* Veri Kaynakları Grid */
.about-sources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 640px) {
  .about-sources-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .about-sources-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-source {
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.about-source__icon {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.about-source h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-source p {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.5;
}
.about-data-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-md);
}
.about-data-note strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.about-data-note p {
  font-size: 13px;
  color: var(--color-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Modal — Arama ve sonuçlar */
.modal-search {
  margin-bottom: 16px;
}

.modal-search__bar {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.modal-search__bar .form__input {
  flex: 1;
}

.modal-search__results {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.modal-search__results:empty {
  display: none;
}

.modal-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background 100ms ease;
  border-bottom: 1px solid var(--color-border);
}

.modal-result:last-child { border-bottom: none; }
.modal-result:hover { background: #F9FAFB; }

.modal-result__cover {
  width: 40px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-result__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-result__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal-result__info strong {
  font-size: 13px;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-result__info span {
  font-size: 11px;
  color: var(--color-secondary);
}

.modal-result__source {
  font-size: 10px;
  color: var(--color-secondary);
  background: #F3F4F6;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--color-secondary);
  font-size: 12px;
}

.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Modal başarı ekranı */
.modal-success {
  text-align: center;
  padding: 8px 0;
}

.modal-success__icon {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.modal-success__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.modal-success__desc {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.modal-success__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #F0F4F8;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.modal-success__track {
  font-size: 12px;
  color: var(--color-secondary);
}

.modal-success__track a {
  color: var(--color-primary);
  font-weight: 600;
}

/* Header arama dropdown + kategori dropdown */
.top-nav__search-row {
  position: relative;
}

.header-search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  overflow: hidden;
}

.header-search-dropdown--open {
  display: block;
}

.header-search-dropdown__hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--color-secondary);
}

.header-search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 100ms ease;
}

.header-search-dropdown__item:hover {
  background: #F9FAFB;
}

.header-search-dropdown__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.header-search-dropdown__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.header-search-dropdown__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-search-dropdown__meta {
  font-size: 12px;
  color: var(--color-secondary);
}

/* Kategori dropdown */
.header-category-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 50;
  padding: 8px;
}

.header-category-dropdown--open {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.header-category-dropdown__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border: none;
  background: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: background 100ms ease;
}

.header-category-dropdown__item:hover {
  background: #F3F4F6;
}

.header-category-dropdown__item i {
  font-size: 18px;
  color: var(--color-primary);
}

.header-category-dropdown__item--clear {
  color: var(--color-secondary);
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-border);
  margin-top: 4px;
  padding-top: 10px;
}

.header-category-dropdown__item--clear i {
  color: var(--color-secondary);
}

/* Kategori seçildiğinde pill'de göster */
.search-pill__segment--category {
  cursor: pointer;
  position: relative;
}

/* Flash mesajları (global) */
.flash {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: flashIn 300ms ease;
  transition: opacity 300ms ease;
}

.flash__close {
  margin-left: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  font-size: 16px;
  display: flex;
}

.flash__close:hover { opacity: 1; }

@keyframes flashIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.flash--success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.flash--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

@media (max-width: 1023px) {
  .flash { top: 16px; }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 16px 0;
}

.pagination__btn {
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  transition: all 150ms ease;
}

.pagination__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.pagination__info {
  font-size: 13px;
  color: var(--color-secondary);
}

/* Görsel yükleme alanı */
.image-upload {
  margin-bottom: 8px;
}

.image-upload__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 150ms ease;
  text-align: center;
}

.image-upload__area:hover {
  border-color: var(--color-primary);
  background: #F0F4F8;
}

.image-upload__area span {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.image-upload__area small {
  font-size: 11px;
  color: var(--color-secondary);
}

.image-upload__area input[type="file"] {
  display: none;
}

.image-upload__preview {
  margin-top: 8px;
}

.image-upload__gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================================
   GLOBAL ONAY MODAL
   ============================================================ */
.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
  animation: fadeIn 150ms ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.confirm-modal {
  width: 100%;
  max-width: 380px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: slideUp 200ms ease;
}

@keyframes slideUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.confirm-modal__icon {
  margin-bottom: 16px;
}

.confirm-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.confirm-modal__message {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.confirm-modal__actions {
  display: flex;
  gap: 8px;
}

.confirm-modal__btn {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 150ms ease;
}

.confirm-modal__btn--cancel {
  background: #F3F4F6;
  color: var(--color-text);
}

.confirm-modal__btn--cancel:hover {
  background: var(--color-border);
}

.confirm-modal__btn--primary {
  background: var(--color-primary);
  color: white;
}

.confirm-modal__btn--primary:hover {
  background: var(--color-primary-light);
}

.confirm-modal__btn--danger {
  background: #DC2626;
  color: white;
}

.confirm-modal__btn--danger:hover {
  background: #B91C1C;
}

/* Mobil mekan aksiyon butonları (eski — artık sticky bar kullanılıyor) */
.place-mobile-actions {
  display: none;
}

/* Mobil aksiyon butonları — sekmeler altında */
.place-mobile-actions-top {
  display: none;
}

@media (max-width: 767px) {
  .place-mobile-actions-top {
    display: flex;
    gap: 8px;
    padding: 12px 16px 0;
  }

  .place-mobile-actions-top__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
  }

  .place-mobile-actions-top__btn i {
    font-size: 16px;
    color: var(--color-primary);
  }

  .place-mobile-actions-top__btn:hover {
    background: #F3F4F6;
  }
}

/* ============================================================
   MOBİL MEKAN DETAY — App Tarzı
   ============================================================ */

@media (max-width: 1023px) {
  /* Hero */
  .place-hero {
    height: 240px;
  }

  .place-hero__overlay {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .place-hero__back {
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0;
  }

  .place-hero__back i { font-size: 18px; }

  .place-hero__right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .place-hero__share {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
  }

  .place-hero__gallery-count {
    padding: 5px 9px;
    font-size: 11px;
  }

  /* Galeri — mobilde yatay scroll */
  .place-gallery {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
    grid-template-columns: unset;
  }

  .place-gallery__img {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    flex-shrink: 0;
  }

  /* Breadcrumb gizle */
  .breadcrumb { display: none; }

  /* İçerik — sıfır padding, tam genişlik */
  .place-content {
    padding: 0 16px 24px;
  }

  /* Başlık */
  .place-header {
    padding: 14px 16px 0;
    margin-bottom: 0;
  }

  .place-header__category {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .place-header__title {
    font-size: 22px;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .place-header__subtitle {
    font-size: 13px;
    color: var(--color-secondary);
    margin-bottom: 6px;
  }

  .place-header__meta {
    gap: 10px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .place-header__meta span { font-size: 12px; }

  .place-richness { margin-top: 8px; }

  /* Sekmeler — sticky, belirgin (Airbnb tarzı) */
  .place-tabs-wrapper {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    margin: 0 -16px;
    padding: 0;
    flex-direction: column;
    gap: 0;
  }

  .place-tabs {
    position: relative;
    top: auto;
    z-index: auto;
    background: none;
    margin: 0;
    padding: 0 4px;
    border: none;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .place-tabs::-webkit-scrollbar { display: none; }

  .place-tab {
    padding: 12px 10px;
    font-size: 12px;
    font-weight: 600;
    gap: 4px;
    color: var(--color-secondary);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .place-tab--active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
  }

  .place-tab i { font-size: 14px; }

  .place-actions-inline { display: none; }

  /* Tab içerik — daha geniş, nefes alan */
  .place-tab-content {
    padding: 20px 16px;
  }

  /* Makale */
  .place-article {
    font-size: 15px;
    line-height: 1.75;
  }

  .place-article p { margin-bottom: 14px; }

  /* Infobox */
  .place-infobox {
    margin-top: 16px;
    padding: 12px;
  }

  .place-infobox__title { font-size: 12px; margin-bottom: 10px; }

  .place-infobox__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
  }

  .place-infobox__label { font-size: 10px; }
  .place-infobox__item span:last-child { font-size: 12px; }

  /* Medya kartları */
  .media-preview-card__thumb {
    width: 100px;
    height: 56px;
  }

  .media-preview-card__title { font-size: 12px; }
  .media-preview-card__meta { font-size: 10px; }
  .media-preview-card { padding: 8px; gap: 10px; }

  /* Harita */
  .place-map-section__container { height: 160px; }
  .place-map-section__directions { font-size: 13px; padding: 10px 14px; }

  /* Alt bölüm */
  .place-bottom {
    margin-top: 16px;
    padding: 16px 16px 0;
    border-top: 1px solid var(--color-border);
  }

  .place-related { margin-bottom: 16px; }
  .place-related__title { font-size: 14px; margin-bottom: 8px; }
  .place-related__grid { grid-template-columns: 1fr; gap: 6px; }
  .place-related__card { padding: 8px 10px; }
  .place-related__icon { width: 28px; height: 28px; font-size: 14px; }
  .place-related__name { font-size: 13px; }
  .place-related__meta { font-size: 10px; }

  .place-contribute { margin-bottom: 16px; padding: 12px; }
  .place-contribute__title { font-size: 13px; }
  .place-contribute__desc { font-size: 11px; margin-bottom: 8px; }
  .place-contribute__btns { gap: 6px; }
  .place-contribute__btns .contribute-btn { font-size: 11px; padding: 8px 10px; }

  .place-contributors { margin-bottom: 12px; }
  .place-contributors__title { font-size: 11px; margin-bottom: 8px; }
  .place-contributors__list { gap: 12px; }
  .place-contributors__item strong { font-size: 12px; }
  .place-contributors__item span { font-size: 10px; }

  /* Sticky bottom bar — Katkıda Bulun (Airbnb Reserve tarzı) */
  .place-sticky-bottom {
    position: fixed;
    bottom: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 0px));
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  }

  .place-sticky-bottom__info {
    flex: 1;
    min-width: 0;
  }

  .place-sticky-bottom__info span {
    display: block;
    font-size: 11px;
    color: var(--color-secondary);
  }

  .place-sticky-bottom__info strong {
    display: block;
    font-size: 13px;
    color: var(--color-text);
  }

  .place-sticky-bottom__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  .place-sticky-bottom__menu {
    position: absolute;
    bottom: 100%;
    right: 16px;
    margin-bottom: 8px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    min-width: 180px;
  }

  .place-sticky-bottom__menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: none;
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
    text-align: left;
  }

  .place-sticky-bottom__menu button:not(:last-child) {
    border-bottom: 1px solid var(--color-border);
  }

  .place-sticky-bottom__menu button:hover {
    background: var(--color-bg);
  }

  .place-sticky-bottom__menu button i {
    font-size: 18px;
    color: var(--color-primary);
  }

  /* Bottom bar + bottom nav olduğu için içerik altına padding ekle */
  .place-bottom {
    padding-bottom: 140px !important;
  }

  .place-bottom-actions {
    margin-top: 12px;
    padding-top: 12px;
    padding-bottom: 80px;
    gap: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .place-bottom-action {
    font-size: 11px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    min-height: 44px;
  }
  .place-bottom-action i { font-size: 18px !important; }

  /* Sticky bar kaldırıldı, standart bottom-nav gösterilecek */
}

/* Mobil boş sekme durumu */
.place-empty-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 16px;
  text-align: center;
}

.place-empty-tab p {
  font-size: 14px;
  color: var(--color-secondary);
}

/* Mobil mini harita (ziyaret sekmesinde) */
.place-mobile-map {
  display: none;
}

@media (max-width: 1023px) {
  .place-mobile-map {
    display: block;
    margin-top: 16px;
  }

  .place-mobile-map__container {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
  }

  .place-mobile-map__directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 150ms ease;
  }

  .place-mobile-map__directions:hover {
    background: var(--color-primary-light);
  }
}

/* Mobil ilişkili mekanlar */
.place-mobile-related {
  display: none;
}

@media (max-width: 1023px) {
  .place-mobile-related {
    display: block;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .place-mobile-related__section {
    margin-bottom: 24px;
  }

  .place-mobile-related__section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 12px;
  }

  .place-mobile-related__list {
    display: flex;
    flex-direction: column;
  }

  .place-mobile-related__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
  }

  .place-mobile-related__item:last-child {
    border-bottom: none;
  }

  .place-mobile-related__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .place-mobile-related__info {
    flex: 1;
    min-width: 0;
  }

  .place-mobile-related__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
  }

  .place-mobile-related__meta {
    display: block;
    font-size: 12px;
    color: var(--color-secondary);
    margin-top: 2px;
  }

  /* Katkıda bulun bölümü */
  .place-mobile-contribute {
    padding: 16px;
    background: #F9FAFB;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-top: 8px;
  }

  .place-mobile-contribute h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
  }

  .place-mobile-contribute p {
    font-size: 13px;
    color: var(--color-secondary);
    margin-bottom: 12px;
  }

  .place-mobile-contribute__btns {
    display: flex;
    gap: 8px;
  }

  .place-mobile-contribute__btns .contribute-btn {
    flex: 1;
    font-size: 12px;
    padding: 10px 8px;
    justify-content: center;
  }
}

/* Mobil sabit aksiyon bar (alt kısım) */
.place-sticky-bar {
  display: none;
}

@media (max-width: 1023px) {
  .place-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    align-items: center;
  }

  .place-sticky-bar__form {
    flex: 1;
    margin: 0;
  }

  .place-sticky-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 11px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    text-decoration: none;
    transition: all 150ms ease;
    white-space: nowrap;
  }

  .place-sticky-bar__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
  }

  .place-sticky-bar__btn--primary {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
  }

  .place-sticky-bar__btn--primary:hover {
    background: var(--color-primary-light);
    color: white;
  }

  /* Sidebar masaüstünde göster, mobilde gizle (artık inline gösteriliyor) */
  .place-sidebar {
    display: none;
  }
}

/* ============================================================
   SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 50;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text);
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

@media (min-width: 1024px) {
  .scroll-top { bottom: 32px; right: 32px; }
}

/* ============================================================
   MEKAN GALERİ — Airbnb Tarzı Grid + Lightbox
   ============================================================ */

/* Masaüstü galeri grid */
.place-gallery-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 16px;
}

.place-gallery-grid {
  display: none;
  grid-template-columns: 3fr 1fr;
  gap: 4px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
}

@media (min-width: 768px) {
  .place-gallery-grid { display: grid; }
  .place-gallery-mobile { display: none; }
}

.place-gallery-grid__main {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.place-gallery-grid__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.place-gallery-grid__main:hover img {
  transform: scale(1.02);
}

.place-gallery-grid__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.place-gallery-grid__thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.place-gallery-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease, opacity 200ms ease;
}

.place-gallery-grid__thumb:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.place-gallery-grid__more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

/* Mobil galeri */
.place-gallery-mobile {
  display: block;
}

@media (min-width: 768px) {
  .place-gallery-mobile { display: none; }
}

.place-gallery-mobile__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

.place-gallery-mobile__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-gallery-mobile__hero .place-hero__back {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 2;
}

.place-gallery-mobile__count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.place-gallery-mobile__scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 16px;
  scrollbar-width: none;
}

.place-gallery-mobile__scroll::-webkit-scrollbar { display: none; }

.place-gallery-mobile__img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
}

@media (max-width: 767px) {
  .place-actions-inline {
    display: none;
  }
}

.place-mobile-actions {
  display: none;
}

@media (max-width: 767px) {
  .place-mobile-actions {
    display: none;
  }

  /* Benzer mekanlar — yatay scroll */
  .place-related__grid {
    display: flex !important;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }

  .place-related__grid::-webkit-scrollbar { display: none; }

  .place-related__card {
    min-width: 200px;
    flex-shrink: 0;
  }
}

/* Lightbox (tam ekran görsel) */
.place-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.place-lightbox--open { display: flex; }

.place-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.place-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.place-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.place-lightbox__nav--prev { left: 16px; }
.place-lightbox__nav--next { right: 16px; }

.place-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.place-hero__gallery-count {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

/* Hero sağ taraf (mobil) */
.place-hero__right {
  display: none;
}

.place-hero__share {
  display: none;
}

@media (max-width: 1023px) {
  .place-hero__right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .place-hero__gallery-count {
    position: static;
    bottom: auto;
    right: auto;
  }

  .place-hero__share {
    display: flex;
  }
}

/* ============================================================
   SKELETON LOADING (Global)
   ============================================================ */
.skeleton {
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

.skeleton--text { height: 14px; width: 80%; margin-bottom: 8px; }
.skeleton--title { height: 20px; width: 60%; margin-bottom: 12px; }
.skeleton--image { height: 160px; width: 100%; border-radius: 12px; margin-bottom: 12px; }
.skeleton--circle { width: 40px; height: 40px; border-radius: 50%; }

/* Dönem badge */
.place-era-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #F0F4F8;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-primary);
  margin-left: 6px;
}

/* Koruma statüsü */
.place-protection-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: #ECFDF5;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: #065F46;
}

/* Zenginlik skoru */
.place-richness {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

.place-richness span {
  font-size: 11px;
  color: var(--color-secondary);
  margin-left: 6px;
}

/* Bu bilgi güncel mi? */
.place-verify {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.place-verify__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 150ms ease;
}

.place-verify__btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.place-verify__btn:disabled {
  cursor: default;
  border-color: #A7F3D0;
  color: #065F46;
  background: #ECFDF5;
}

/* Küratör rozeti (profil) */
.profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
}

.profile-badge--admin { background: #EDE9FE; color: #5B21B6; }
.profile-badge--curator { background: #DBEAFE; color: #1E40AF; }
.profile-badge--contributor { background: #FEF3C7; color: #92400E; }

/* Harita/Keşfet geçiş animasyonu */
.explore-view, .map-view {
  transition: opacity 200ms ease;
}

/* Renk tutarsızlığı düzeltme — tüm hardcoded renkler token'a */
.place-header__category { color: var(--color-primary); }
.featured-card__category { color: var(--color-primary); }

/* ============================================================
   BUTON BOYUTLARI — STANDART
   ============================================================ */
.btn--sm { padding: 6px 12px; font-size: 12px; }
.btn--md { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 14px 24px; font-size: 15px; }
.btn--xl { padding: 16px 32px; font-size: 16px; }

/* ============================================================
   PWA INSTALL BANNER
   ============================================================ */
.pwa-banner {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 420px;
  width: calc(100% - 32px);
  animation: slideUp 300ms ease;
}

.pwa-banner__content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwa-banner__content strong {
  font-size: 14px;
  color: var(--color-text);
  display: block;
}

.pwa-banner__content p {
  font-size: 12px;
  color: var(--color-secondary);
  margin: 0;
}

.pwa-banner__actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.pwa-banner__btn {
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
}

.pwa-banner__btn--install {
  background: var(--color-primary);
  color: white;
}

.pwa-banner__btn--dismiss {
  background: #F3F4F6;
  color: var(--color-secondary);
}

@media (min-width: 1024px) {
  .pwa-banner { bottom: 32px; }
}

/* Profil banner adımları */
.profile-banner__steps {
  display: flex;
  gap: 12px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.profile-banner__step {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-secondary);
}

.profile-banner__step--done {
  color: #4A7C3F;
}

.profile-banner__step--done i {
  color: #4A7C3F;
}

/* Sekmeler — mobilde scroll indicator */
@media (max-width: 767px) {
  .place-tabs {
    position: relative;
  }
  .place-tabs::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--color-background));
    pointer-events: none;
  }
}

/* Harita dönem filtreleri */
.map-era-filters {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 4px;
  background: var(--color-surface);
  padding: 6px 8px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.map-era-btn {
  padding: 6px 12px;
  border: none;
  border-radius: var(--radius-full);
  background: none;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-secondary);
  cursor: pointer;
  transition: all 150ms ease;
}

.map-era-btn:hover { color: var(--color-text); }
.map-era-btn--active { background: var(--color-primary); color: white; }

/* Öneri listesi (profil) */
.suggestions-list { display:flex; flex-direction:column; gap:12px; }
.suggestion-item { padding:14px; border:1px solid var(--color-border); border-radius:var(--radius-md); }
.suggestion-item__info { display:flex; align-items:center; gap:10px; margin-bottom:4px; }
.suggestion-item__info strong { font-size:14px; }
.suggestion-item__date { font-size:12px; color:var(--color-secondary); }
.suggestion-item__reject { margin-top:10px; padding-top:10px; border-top:1px solid var(--color-border); }
.suggestion-item__reason { font-size:13px; color:#92400E; background:#FEF3C7; padding:8px 12px; border-radius:6px; margin-bottom:8px; display:flex; align-items:center; gap:6px; }

/* CTA Banner (mekan detay altı) */
.cta-banner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #F0F4F8;
  border: 1px solid #D1E3F6;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.cta-banner__content h3 { font-size:16px; font-weight:700; color:var(--color-text); margin-bottom:4px; }
.cta-banner__content p { font-size:13px; color:var(--color-secondary); }
.cta-banner__actions { display:flex; gap:8px; flex-shrink:0; }
.cta-banner__actions .btn { white-space: nowrap; }

@media (max-width:639px) {
  .cta-banner { display: none; }
}

/* ============================================================
   APP HİSSİ — Sayfa Geçiş + Mikro Etkileşimler
   ============================================================ */

/* Sayfa yüklenme animasyonu */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.explore-view, .kulliyat-page, .page-container, .place-page, .auth-layout {
  animation: pageIn 300ms ease;
}

/* Kart tıklama efekti */
.explore-card:active, .kulliyat-card:active {
  transform: scale(0.98);
  transition: transform 100ms ease;
}

/* Buton tıklama efekti */
.btn:active {
  transform: scale(0.96);
  transition: transform 80ms ease;
}

/* Link hover — yumuşak geçiş */
.top-nav__tab, .bottom-nav__item, .category-item, .category-chip {
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom nav — iOS tarzı blur */
@supports (backdrop-filter: blur(12px)) {
  .bottom-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* Header — scroll'da gölge */
.top-nav {
  transition: box-shadow 200ms ease;
}

/* Smooth scroll (tüm sayfa) */
html {
  scroll-behavior: smooth;
}

/* Tab geçiş animasyonu */
.place-tab-content {
  animation: fadeIn 200ms ease;
}

/* Kart hover — gölge geçişi yumuşak */
.explore-card, .kulliyat-card, .search-result-card {
  transition: box-shadow 250ms ease, transform 250ms ease;
}

/* Modal açılma — daha yumuşak */
.modal-overlay, .auth-modal-overlay, .confirm-modal-overlay {
  animation: fadeIn 200ms ease;
}

.modal, .auth-modal, .confirm-modal {
  animation: slideUp 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Bottom sheet — iOS tarzı spring */
.bottom-sheet {
  transition: transform 350ms cubic-bezier(0.32, 0.72, 0, 1);
}

/* İkon hover — hafif büyüme */
.bottom-nav__icon, .category-item__icon {
  transition: transform 150ms ease;
}

.bottom-nav__item:active .bottom-nav__icon {
  transform: scale(0.9);
}

/* Input focus — yumuşak glow */
.form__input:focus, .form__textarea:focus, .form__select:focus {
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

/* Sayfa yüklenirken body fade */
body {
  opacity: 1;
  transition: opacity 150ms ease;
}

/* Pull-down refresh hissi (mobil) */
@media (max-width: 1023px) {
  .explore-view {
    overscroll-behavior-y: contain;
  }
}

/* Harita modunda footer gizle — JS ile yönetiliyor */

/* Harita popup kartı */
.map-popup {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 300px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  padding: 16px;
  animation: slideUp 200ms ease;
}

@media (min-width: 1024px) {
  .map-popup {
    bottom: auto;
    top: 50%;
    left: auto;
    right: 380px;
    transform: translateY(-50%);
  }
}

.map-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.map-popup__category {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.map-popup__close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-secondary);
}

.map-popup__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.map-popup__meta {
  font-size: 13px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.map-popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  transition: background 150ms ease;
}

.map-popup__btn:hover {
  background: var(--color-primary-light);
}

/* Anasayfa dışındaki sayfalarda header daha kısa (search-row yok) */
@media (min-width: 1024px) {
  body:not(.home-page) .page-container,
  body:not(.home-page) .kulliyat-page,
  body:not(.home-page) .place-page {
    padding-top: 64px;
  }
}

/* ============================================================
   MOBİL İYİLEŞTİRMELER
   ============================================================ */

/* Touch target minimum 44px */
@media (max-width: 1023px) {
  .bottom-nav__item { min-height: 44px; min-width: 44px; }
  .category-item { min-height: 44px; padding: 8px 12px 10px; }
  .btn { min-height: 44px; }
  .contribute-btn { min-height: 40px; }
  .place-tab { min-height: 44px; }
}

/* Alt menü — aktif state güçlendirme */
@media (max-width: 1023px) {
  .bottom-nav__item--active {
    background: rgba(27, 58, 92, 0.06);
    border-radius: 12px;
  }
  .bottom-nav__item--active::before { width: 24px; height: 3px; }
}

/* Mekan detay — hero görsel mobilde daha yüksek */
@media (max-width: 767px) {
  .place-hero { height: 280px; }
}

/* Mobilde sidebar gizle (içerik artık inline gösteriliyor) */
@media (max-width: 1023px) {
  .place-sidebar {
    display: none;
  }
}

/* Font minimum 12px (mobil) */
@media (max-width: 1023px) {
  .explore-card__stat, .category-item__label, .bottom-nav__label {
    font-size: 12px;
  }
}

/* Safe area (iPhone notch) */
@media (max-width: 1023px) {
  .header-panel {
    padding-top: env(safe-area-inset-top, 0px);
  }
  .bottom-nav {
    padding-bottom: env(safe-area-inset-bottom, 8px);
  }
}

/* Mobilde kart — artık base 1fr */

/* Loading indicator (üst progress bar) */
.page-loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  z-index: 9999;
  transition: width 300ms ease;
}

.page-loading-bar--active {
  width: 70%;
  animation: loadingPulse 1.5s ease infinite;
}

@keyframes loadingPulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Haptic feedback visual (buton tıklama) */
@media (max-width: 1023px) {
  .btn:active, .explore-card:active, .bottom-nav__item:active {
    transform: scale(0.97);
    transition: transform 50ms ease;
  }
}

/* Kategori bar — scroll indicator güçlendirme */
@media (max-width: 1023px) {
  .category-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--color-surface));
    pointer-events: none;
    z-index: 2;
  }
  .category-bar { position: relative; }
}

/* Auth modal — mobilde full screen */
@media (max-width: 639px) {
  .auth-modal-overlay { padding: 0; align-items: flex-end; }
  .auth-modal {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Mekan detay — eski aksiyon butonları kaldırıldı, sticky bar kullanılıyor */

/* ============================================================
   MOBİL ONBOARDING
   ============================================================ */
.onboarding-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.onboarding-slides { width: 100%; max-width: 320px; text-align: center; }

.onboarding-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeIn 300ms ease;
}

.onboarding-slide--active { display: flex; }

.onboarding-slide__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: #F0F4F8;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}

.onboarding-slide h2 { font-size: 22px; font-weight: 700; color: var(--color-text); }
.onboarding-slide p { font-size: 15px; color: var(--color-secondary); line-height: 1.6; }

.onboarding-dots {
  display: flex; gap: 8px; margin: 32px 0;
}

.onboarding-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all 200ms ease;
}

.onboarding-dot--active {
  width: 24px;
  border-radius: 4px;
  background: var(--color-primary);
}

.onboarding-actions {
  display: flex; gap: 12px; width: 100%; max-width: 320px;
}

.onboarding-skip {
  flex: 1; padding: 14px;
  border: none; background: none;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  color: var(--color-secondary); cursor: pointer;
}

.onboarding-next {
  flex: 2; padding: 14px;
  border: none; border-radius: var(--radius-full);
  background: var(--color-primary); color: white;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background 150ms ease;
}

.onboarding-next:hover { background: var(--color-primary-light); }

/* ============================================================
   YAZAR/MİMAR DETAY SAYFASI (Akademik/Wikipedia tarzı)
   ============================================================ */
.author-page-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.author-page-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.author-page-header__name {
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.author-page-header__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: #F0F4F8;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
}

.author-page-header__dates {
  font-size: 14px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.author-page-header__bio {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.7;
}

.author-page-header__long-bio {
  font-size: 15px;
  color: var(--color-secondary);
  line-height: 1.7;
  margin-top: 12px;
}

.author-stat-cards {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.author-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.author-stat-card__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
}

.author-stat-card__label {
  font-size: 13px;
  color: var(--color-secondary);
}

.author-section {
  margin-bottom: 32px;
}

.author-section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

/* Şehirler grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.city-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: box-shadow 200ms ease, transform 200ms ease;
  text-align: center;
}

.city-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.city-card h3 { font-size: 16px; font-weight: 600; color: var(--color-text); }
.city-card span { font-size: 12px; color: var(--color-secondary); }

/* Sticky bottom bar — varsayılan gizli (sadece mobilde gösterilir) */
.place-sticky-bottom {
  display: none;
}

/* ============================================================
   MOBİL ANASAYFA — Airbnb tarzı kompakt tasarım
   ============================================================ */
@media (max-width: 639px) {
  /* Featured card — mobilde gizle */
  .featured-card {
    display: none;
  }

  /* Harita butonu header'da — floating toggle gizle */
  .mode-toggle {
    display: none;
  }

  /* Arama yanı harita butonu */
  .mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-search__map-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* Explore grid — 2'li kompakt grid */
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
  }

  /* Harita butonu mobilde göster */
  .mobile-search__map-btn {
    display: flex !important;
  }

  /* Kart görseli — daha kısa */
  .explore-card__image {
    height: 120px;
  }

  .explore-card__image img {
    height: 120px;
  }

  /* Kart body — kompakt */
  .explore-card__body {
    padding: 8px 10px 10px;
  }

  .explore-card__title {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .explore-card__meta {
    font-size: 11px;
    margin-bottom: 4px;
  }

  /* Açıklama — mobilde gizle (yer kazanmak için) */
  .explore-card__desc {
    display: none;
  }

  /* Footer — kompakt */
  .explore-card__footer {
    font-size: 10px;
    gap: 6px;
  }

  .explore-card__arrow {
    display: none;
  }

  /* Badge — küçült */
  .explore-card__badge {
    font-size: 9px;
    padding: 2px 6px;
    top: 6px;
    left: 6px;
  }

  /* Era badge — gizle */
  .explore-card__meta .place-era-badge {
    display: none;
  }

  /* Bugün Tarihte — alta taşı, kompakt */
  .today-section {
    margin-top: 16px;
  }

  /* Hero section (giriş yapmamışlar) — kompakt */
  .hero-section {
    padding: 24px 16px;
  }

  .hero-title {
    font-size: 20px;
  }
}

/* Turbo Drive progress bar — her zaman en üstte */
.turbo-progress-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999 !important;
  height: 3px !important;
  background-color: var(--color-primary) !important;
}

/* Arama sayfası — mobilde kompakt */
@media (max-width: 639px) {
  .search-page-header {
    margin-bottom: 16px;
  }
  .search-page-form {
    padding: 11px 16px;
    background: #F3F4F6;
    border: 1px solid transparent;
  }
  /* Arama sayfasında footer gizle (mobilde) */
  .page-container ~ .rich-footer {
    display: none;
  }
}


/* ============================================================
   MEKAN DETAY — YENİ TASARIM (pd = place detail)
   Mobil-first, tek akış, Instagram tarzı galeri
   ============================================================ */
.pd { padding-bottom: calc(var(--bottom-bar-height) + 24px); background: var(--color-background); }
.pd-gallery { position: relative; }
.pd-gallery__hero { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.pd-gallery__hero img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__back { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; background: rgba(0,0,0,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; text-decoration: none; backdrop-filter: blur(4px); z-index: 2; }
.pd-gallery__count { position: absolute; bottom: 12px; right: 12px; background: rgba(0,0,0,0.6); color: white; font-size: 12px; padding: 4px 10px; border-radius: 16px; backdrop-filter: blur(4px); display: flex; align-items: center; gap: 4px; }
.pd-gallery__thumbs { display: flex; gap: 4px; padding: 4px 16px; overflow-x: auto; scrollbar-width: none; }
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.pd-gallery__thumb { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex-shrink: 0; cursor: pointer; opacity: 0.8; transition: opacity 150ms; }
.pd-gallery__thumb:hover { opacity: 1; }
.pd-body { padding: 20px 16px; }
.pd-header { margin-bottom: 16px; }
.pd-header__badges { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.pd-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--color-primary); background: rgba(27, 58, 92, 0.06); padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px; }
.pd-badge--era { color: #8B4513; background: rgba(139, 69, 19, 0.06); }
.pd-header__title { font-size: 24px; font-weight: 700; color: var(--color-text); line-height: 1.2; margin: 0 0 6px; }
.pd-header__location { font-size: 14px; color: var(--color-secondary); display: flex; align-items: center; gap: 4px; margin: 0 0 8px; }
.pd-header__meta { display: flex; gap: 12px; flex-wrap: wrap; }
.pd-header__meta span { font-size: 12px; color: var(--color-secondary); display: flex; align-items: center; gap: 4px; }
.pd-actions { display: flex; gap: 8px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); overflow-x: auto; scrollbar-width: none; }
.pd-actions::-webkit-scrollbar { display: none; }
.pd-actions__form { margin: 0; }
.pd-action-btn { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--color-text); text-decoration: none; cursor: pointer; transition: all 150ms; white-space: nowrap; flex-shrink: 0; }
.pd-action-btn i { font-size: 18px; color: var(--color-primary); }
.pd-action-btn:hover { background: var(--color-surface); border-color: var(--color-primary); }
.pd-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
.pd-section:last-child { border-bottom: none; }
.pd-section__title { font-size: 16px; font-weight: 600; color: var(--color-text); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.pd-section__title i { color: var(--color-primary); }
.pd-section__count { font-size: 12px; font-weight: 500; color: var(--color-secondary); background: var(--color-bg); padding: 2px 8px; border-radius: 10px; }
.pd-article p { font-size: 15px; line-height: 1.7; color: var(--color-text); margin: 0 0 12px; }
.pd-expand-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; color: var(--color-primary); font-size: 14px; font-weight: 600; cursor: pointer; padding: 8px 0; }
.pd-info-card { background: var(--color-bg); border-radius: 12px; padding: 16px; }
.pd-info-card__row { display: flex; gap: 16px; flex-wrap: wrap; }
.pd-info-card__row + .pd-info-card__row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--color-border); }
.pd-info-card__item { flex: 1; min-width: 80px; }
.pd-info-card__label { display: block; font-size: 10px; font-weight: 600; color: var(--color-secondary); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.pd-info-card__value { display: block; font-size: 14px; font-weight: 500; color: var(--color-text); }
.pd-scroll-row { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.pd-scroll-row::-webkit-scrollbar { display: none; }
.pd-book-card { flex-shrink: 0; width: 160px; padding: 14px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: box-shadow 150ms; }
.pd-book-card:hover { box-shadow: var(--shadow-md); }
.pd-book-card i { font-size: 20px; color: var(--color-primary); }
.pd-book-card strong { font-size: 13px; color: var(--color-text); line-height: 1.3; }
.pd-book-card span { font-size: 11px; color: var(--color-secondary); }
.pd-book-card small { font-size: 10px; color: var(--color-secondary); }
.pd-media-card { flex-shrink: 0; width: 200px; cursor: pointer; display: flex; flex-direction: column; gap: 8px; }
.pd-media-card__thumb { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; background: #1a1a1a; }
.pd-media-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-media-card__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; background: rgba(0,0,0,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; }
.pd-media-card strong { font-size: 12px; color: var(--color-text); line-height: 1.3; }
.pd-media-card span { font-size: 11px; color: var(--color-secondary); }
.pd-related-card { flex-shrink: 0; width: 150px; padding: 14px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: box-shadow 150ms; }
.pd-related-card:hover { box-shadow: var(--shadow-md); }
.pd-related-card__icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(27, 58, 92, 0.06); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.pd-related-card strong { font-size: 13px; color: var(--color-text); line-height: 1.3; }
.pd-related-card span { font-size: 11px; color: var(--color-secondary); }
.pd-map { width: 100%; height: 180px; border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.pd-map-info { display: flex; align-items: center; justify-content: space-between; }
.pd-map-info span { font-size: 13px; color: var(--color-secondary); }
.pd-map-link { font-size: 13px; font-weight: 600; color: var(--color-primary); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.pd-collapse-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 12px 0; background: none; border: none; font-size: 14px; font-weight: 600; color: var(--color-text); cursor: pointer; }
.pd-collapse-btn span { display: flex; align-items: center; gap: 8px; }
.pd-collapse-btn i:last-child { color: var(--color-secondary); }
.pd-collapse-content { padding: 0 0 8px; }
.pd-sources { list-style: none; padding: 0; margin: 0; }
.pd-sources li { font-size: 13px; color: var(--color-secondary); padding: 6px 0; border-bottom: 1px solid var(--color-border); }
.pd-sources li:last-child { border-bottom: none; }
.pd-sources--empty { font-style: italic; }

/* Ziyaret Bilgisi */
.pd-visit-info { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: rgba(74, 124, 63, 0.06); border: 1px solid rgba(74, 124, 63, 0.15); border-radius: 10px; }
.pd-visit-info i { font-size: 18px; color: #4A7C3F; flex-shrink: 0; margin-top: 1px; }
.pd-visit-info p { font-size: 14px; line-height: 1.5; color: var(--color-text); margin: 0; }

/* Breadcrumb */
.pd-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-breadcrumb a { color: var(--color-secondary); text-decoration: none; transition: color 150ms; }
.pd-breadcrumb a:hover { color: var(--color-primary); }
.pd-breadcrumb i { font-size: 10px; color: var(--color-muted); }
.pd-breadcrumb span { color: var(--color-text); font-weight: 500; }

.pd-contribute__desc { font-size: 13px; color: var(--color-secondary); margin: 0 0 12px; }
.pd-contribute__btns { display: flex; gap: 8px; }
.pd-contribute__btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 12px 10px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 10px; font-size: 12px; font-weight: 500; color: var(--color-text); cursor: pointer; transition: background 150ms; }
.pd-contribute__btn i { font-size: 16px; color: var(--color-primary); }
.pd-contribute__btn:hover { background: var(--color-surface); border-color: var(--color-primary); }

/* Spinner animasyonu */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Katkıda Bulunanlar */
.pd-contributors__list { display: flex; flex-direction: column; gap: 12px; }
.pd-contributors__item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 10px; }
.pd-contributors__avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.pd-contributors__avatar img { width: 100%; height: 100%; object-fit: cover; }
.pd-contributors__avatar span { color: white; font-size: 14px; font-weight: 600; }
.pd-contributors__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pd-contributors__name { font-size: 13px; font-weight: 600; color: var(--color-text); }
.pd-contributors__meta { font-size: 12px; color: var(--color-secondary); line-height: 1.4; }
.pd-contributors__meta i { font-size: 13px; vertical-align: -1px; margin-right: 2px; }
.pd-contributors__meta a { color: var(--color-primary); text-decoration: none; }
.pd-contributors__meta a:hover { text-decoration: underline; }
.pd-contributors__meta strong { font-weight: 600; color: var(--color-text); }
.pd-contributors__thumb { display: block; width: 60px; height: 40px; object-fit: cover; border-radius: 6px; margin-top: 6px; }
.pd-contributors__date { font-size: 11px; color: var(--color-muted); }

.pd-lightbox { position: fixed; inset: 0; z-index: 1000; background: #000; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: opacity 200ms; }
.pd-lightbox--open { opacity: 1; pointer-events: all; }
.pd-lightbox__header { display: flex; align-items: center; justify-content: space-between; padding: 16px; flex-shrink: 0; }
.pd-lightbox__close { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: white; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pd-lightbox__counter { font-size: 14px; color: rgba(255,255,255,0.7); }
.pd-lightbox__body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 16px; min-height: 0; }
.pd-lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.pd-lightbox__info { padding: 16px; flex-shrink: 0; }
.pd-lightbox__title { font-size: 16px; font-weight: 600; color: white; margin: 0 0 4px; }
.pd-lightbox__meta { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.pd-lightbox__nav { display: flex; justify-content: center; gap: 16px; padding: 0 16px 24px; flex-shrink: 0; }
.pd-lightbox__nav button { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: white; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pd-lightbox__nav button:hover { background: rgba(255,255,255,0.2); }
@media (min-width: 768px) {
  .pd-body { max-width: 1280px; margin: 0 auto; padding: 32px 32px; }
  .pd-article p { max-width: 800px; }
  .pd-gallery__hero { aspect-ratio: 16/9; max-height: 480px; }
  .pd-header__title { font-size: 32px; }
  .pd-article p { font-size: 16px; }
  .pd-map { height: 240px; }
  .pd-actions { gap: 12px; }
  .pd-action-btn { padding: 12px 18px; font-size: 14px; }
}

/* ============================================================
   PD — Sticky Header (scroll'da görünür)
   ============================================================ */
.pd-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  transition: transform 250ms ease;
  padding-top: env(safe-area-inset-top, 0px);
}
.pd-sticky-bar--visible { transform: translateY(0); }
.pd-sticky-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.pd-sticky-bar__back {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-text);
  text-decoration: none;
  font-size: 18px;
  flex-shrink: 0;
  transition: background 150ms;
}
.pd-sticky-bar__back:hover { background: var(--color-border); }
.pd-sticky-bar__title {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pd-sticky-bar__title strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-sticky-bar__title span {
  font-size: 12px;
  color: var(--color-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pd-sticky-bar__actions { display: flex; gap: 6px; flex-shrink: 0; }
.pd-sticky-bar__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.pd-sticky-bar__btn:hover { background: var(--color-border); }
@media (min-width: 1024px) {
  .pd-sticky-bar__inner { padding: 0 32px; height: 64px; }
  .pd-sticky-bar__title strong { font-size: 16px; }
}

/* ============================================================
   PD — Layout (Desktop 2-sütun)
   ============================================================ */
.pd-layout { display: block; }
.pd-main { width: 100%; }
.pd-sidebar { display: none; }

@media (min-width: 1024px) {
  .pd-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
  }
  .pd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .pd-sidebar::-webkit-scrollbar { width: 4px; }
  .pd-sidebar::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 2px; }
}

/* Sidebar Card */
.pd-sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
}
.pd-sidebar-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pd-sidebar-card__title i { color: var(--color-primary); font-size: 16px; }

/* Hızlı Bilgi (sidebar) */
.pd-quick-info { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pd-quick-info > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}
.pd-quick-info > div:last-child { border-bottom: none; }
.pd-quick-info dt { color: var(--color-secondary); font-weight: 500; margin: 0; }
.pd-quick-info dd { color: var(--color-text); font-weight: 600; margin: 0; text-align: right; }

/* Katkıda Bulun CTA (vurgulu) */
.pd-contribute-cta {
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.04), rgba(27, 58, 92, 0.08));
  border-color: rgba(27, 58, 92, 0.2);
}
.pd-contribute-cta__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.pd-contribute-cta__header > i {
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-contribute-cta__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 2px;
}
.pd-contribute-cta__desc {
  font-size: 12px;
  color: var(--color-secondary);
  margin: 0;
}
.pd-contribute-cta__btns { display: flex; flex-direction: column; gap: 8px; }
.pd-contribute-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 150ms;
  text-align: left;
}
.pd-contribute-btn i {
  font-size: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pd-contribute-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.pd-contribute-btn:hover i { color: white; }
.pd-contribute-btn--secondary {
  background: transparent;
  font-size: 12px;
  padding: 8px 12px;
  border-style: dashed;
}

/* Cards Grid (yatay scroll yerine grid - desktop) */
.pd-cards-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}
.pd-cards-grid::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .pd-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}

/* Mobil Aksiyon - Paylaş sadece mobil */
@media (min-width: 1024px) {
  .pd-action-btn--mobile-only { display: none; }
}

/* ============================================================
   PD — FAB (Floating Action Button — sağ alt bubble)
   ============================================================ */
.pd-fab {
  display: block;
  position: fixed;
  bottom: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 0px) + 16px);
  right: 16px;
  z-index: 28;
}
@media (min-width: 1024px) {
  .pd-fab { display: none; }
}

.pd-fab__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(27, 58, 92, 0.35);
  transition: transform 200ms, box-shadow 200ms;
}
.pd-fab__btn:active { transform: scale(0.92); }
.pd-fab--open .pd-fab__btn {
  background: #374151;
  transform: rotate(0deg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.pd-fab__menu {
  position: absolute;
  bottom: 64px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.95);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pd-fab__menu--open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.pd-fab__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 150ms;
}
.pd-fab__item i {
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pd-fab__item:active {
  transform: scale(0.96);
  background: rgba(27, 58, 92, 0.06);
}

.pd-fab__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 27;
  backdrop-filter: blur(2px);
}
.pd-fab__overlay--open { display: block; }
@media (min-width: 1024px) {
  .pd-fab__overlay { display: none !important; }
}

/* ============================================================
   KATKILARIM SAYFASI
   ============================================================ */
.contributions-page { padding-top: 80px; }
.contributions-page__header { margin-bottom: 24px; }
.contributions-page__header h1 { font-size: 24px; font-weight: 700; color: var(--color-text); display: flex; align-items: center; gap: 10px; margin: 0 0 6px; }
.contributions-page__header h1 i { color: var(--color-primary); }
.contributions-page__header p { font-size: 14px; color: var(--color-secondary); margin: 0; }

.contributions-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.contributions-stat { text-align: center; padding: 16px 12px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 12px; }
.contributions-stat__number { display: block; font-size: 24px; font-weight: 700; color: var(--color-text); }
.contributions-stat__label { display: block; font-size: 12px; font-weight: 500; color: var(--color-secondary); margin-top: 2px; }
.contributions-stat--pending { border-color: #F59E0B; background: rgba(245, 158, 11, 0.04); }
.contributions-stat--pending .contributions-stat__number { color: #D97706; }
.contributions-stat--approved { border-color: #10B981; background: rgba(16, 185, 129, 0.04); }
.contributions-stat--approved .contributions-stat__number { color: #059669; }
.contributions-stat--rejected { border-color: #EF4444; background: rgba(239, 68, 68, 0.04); }
.contributions-stat--rejected .contributions-stat__number { color: #DC2626; }

.contributions-empty { text-align: center; padding: 48px 24px; }
.contributions-empty h3 { font-size: 18px; font-weight: 600; color: var(--color-text); margin: 16px 0 8px; }
.contributions-empty p { font-size: 14px; color: var(--color-secondary); margin: 0 0 20px; }

.contributions-section { margin-bottom: 32px; }
.contributions-section__title { font-size: 16px; font-weight: 600; color: var(--color-text); margin: 0 0 14px; display: flex; align-items: center; gap: 8px; }
.contributions-section__dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.contributions-section__dot--pending { background: #F59E0B; }
.contributions-section__dot--approved { background: #10B981; }
.contributions-section__dot--rejected { background: #EF4444; }

.contributions-list { display: flex; flex-direction: column; gap: 12px; }

.contribution-card { display: flex; gap: 14px; padding: 16px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; transition: border-color 150ms; }
.contribution-card:hover { border-color: var(--color-primary); }
.contribution-card--approved { border-left: 3px solid #10B981; }
.contribution-card--rejected { border-left: 3px solid #EF4444; }
.contribution-card--pending { border-left: 3px solid #F59E0B; }

.contribution-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--color-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contribution-card__icon i { font-size: 20px; color: var(--color-primary); }

.contribution-card__body { flex: 1; min-width: 0; }
.contribution-card__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.contribution-card__type { font-size: 14px; font-weight: 600; color: var(--color-text); }
.contribution-card__status { font-size: 12px; font-weight: 500; padding: 3px 8px; border-radius: 6px; }
.contribution-card__status--pending { background: rgba(245, 158, 11, 0.1); color: #D97706; }
.contribution-card__status--approved { background: rgba(16, 185, 129, 0.1); color: #059669; }
.contribution-card__status--rejected { background: rgba(239, 68, 68, 0.1); color: #DC2626; }

.contribution-card__place { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--color-primary); text-decoration: none; margin-bottom: 6px; }
.contribution-card__place:hover { text-decoration: underline; }
.contribution-card__place i { font-size: 14px; }

.contribution-card__detail { font-size: 13px; color: var(--color-secondary); margin: 0 0 8px; font-style: italic; }
.contribution-card__image { width: 80px; height: 56px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }

.contribution-card__footer { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.contribution-card__date { font-size: 12px; color: var(--color-muted); }
.contribution-card__reason { font-size: 12px; color: #DC2626; display: flex; align-items: center; gap: 4px; background: rgba(239, 68, 68, 0.06); padding: 4px 8px; border-radius: 6px; }
.contribution-card__reviewed { font-size: 12px; color: #059669; }

@media (max-width: 640px) {
  .contributions-stats { grid-template-columns: repeat(2, 1fr); }
  .contributions-page { padding-top: 16px; }
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-list { display: flex; flex-direction: column; gap: 16px; }
.blog-card { display: block; padding: 20px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; text-decoration: none; transition: border-color 150ms, box-shadow 150ms; }
.blog-card:hover { border-color: var(--color-primary); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.blog-card__category { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary); background: rgba(27,58,92,0.06); padding: 3px 8px; border-radius: 4px; }
.blog-card__date { font-size: 12px; color: var(--color-muted); }
.blog-card__title { font-size: 18px; font-weight: 700; color: var(--color-text); margin: 0 0 6px; line-height: 1.3; }
.blog-card__desc { font-size: 14px; color: var(--color-secondary); margin: 0 0 10px; line-height: 1.5; }
.blog-card__link { font-size: 13px; font-weight: 600; color: var(--color-primary); display: inline-flex; align-items: center; gap: 4px; }

.blog-article__header { margin-bottom: 32px; }
.blog-article__header h1 { font-size: 28px; font-weight: 700; color: var(--color-text); line-height: 1.3; margin: 12px 0 8px; }
.blog-article__meta { font-size: 13px; color: var(--color-secondary); display: flex; align-items: center; gap: 12px; }
.blog-article__body { font-size: 16px; line-height: 1.8; color: var(--color-text); }
.blog-article__body h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; color: var(--color-text); }
.blog-article__body p { margin: 0 0 16px; }
.blog-article__body ul { margin: 0 0 16px; padding-left: 20px; }
.blog-article__body li { margin-bottom: 8px; line-height: 1.6; }
.blog-article__body a { color: var(--color-primary); text-decoration: underline; }
.blog-article__body a:hover { text-decoration: none; }
.blog-article__footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--color-border); text-align: center; }
.blog-article__footer p { font-size: 14px; color: var(--color-secondary); margin-bottom: 16px; }
