@charset "UTF-8";

/* ============================================================
   Ankara Gurme - Nötr Koyu Tema (Tailwind CDN ile)
   Gri/siyah arka plan, #08f9e7 vurgu
   ============================================================ */

:root {
  --ay-bg:       #18181b;
  --ay-surface:  #27272a;
  --ay-surface2: #3f3f46;
  --ay-border:   #52525b;
  --ay-text:     #fafafa;
  --ay-muted:    #a1a1aa;
  --ay-primary:  #08f9e7;
  --ay-primary-d:#06c4b8;
  --ay-primary-glow: rgba(8, 249, 231, 0.15);
  --ay-primary-fg: #0a0a0a;
  --ay-success:  #22c55e;
  --ay-error:    #ef4444;
  --ay-radius:   0.75rem;
  --ay-shadow:   0 8px 30px rgba(0,0,0,.35);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

/* Capacitor iOS/Android — centik / status bar / home indicator */
html.ay-native-app body {
  padding-top: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

html.ay-native-app .ay-nav {
  top: env(safe-area-inset-top, 0px);
  padding-top: env(safe-area-inset-top, 0px);
}

html.ay-native-app #mobilePanel.open {
  padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0px));
}

body {
  margin: 0;
  background: var(--ay-bg);
  color: var(--ay-text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.font-display { font-family: 'Plus Jakarta Sans', Inter, sans-serif; }
.text-muted { color: var(--ay-muted); }
.text-brand { color: var(--ay-primary); }
.text-success { color: var(--ay-success); }
.text-error { color: var(--ay-error); }
.text-warning { color: #fbbf24; }
.ay-link { color: var(--ay-primary); background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; font: inherit; }
.ay-link:hover { color: var(--ay-primary-d); }
.ay-badge-success { background: rgba(34,197,94,.15); color: var(--ay-success); }
.line-clamp-2 { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.line-clamp-3 { display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }

/* Layout */
.ay-container { max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }

/* Navbar */
.ay-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(24,24,27,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ay-surface2);
}
.ay-nav-inner {
  max-width: 72rem; margin: 0 auto; padding: .65rem 1rem .45rem;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.ay-nav-top {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 2.75rem;
}
.ay-nav-brand {
  grid-column: 2;
  justify-self: center;
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Plus Jakarta Sans', Inter, sans-serif;
  font-weight: 700; font-size: 1.05rem; color: var(--ay-text); text-decoration: none;
}
.ay-nav-brand:hover { color: var(--ay-primary); }
.ay-nav-icon {
  width: 2.25rem; height: 2.25rem; border-radius: .65rem; flex-shrink: 0;
  background: rgba(8,249,231,.15); color: var(--ay-primary);
  display: flex; align-items: center; justify-content: center;
}
.ay-nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex; align-items: center; gap: .4rem; flex-shrink: 0;
}
.ay-nav-actions .ay-nav-mobile { display: inline-flex; }
@media (min-width: 1024px) { .ay-nav-actions .ay-nav-mobile { display: none; } }
.ay-nav-links {
  display: none; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: .125rem; list-style: none; margin: 0; padding: 0; width: 100%;
}
@media (min-width: 1024px) { .ay-nav-links { display: flex; } }
.ay-nav-links li { flex-shrink: 0; }
.ay-nav-links a, .ay-nav-links summary {
  display: inline-flex; align-items: center; gap: .2rem;
  padding: .45rem .6rem; border-radius: var(--ay-radius);
  color: var(--ay-muted); text-decoration: none; cursor: pointer;
  font-size: .875rem; font-weight: 500; white-space: nowrap;
}
.ay-nav-links a:hover, .ay-nav-links summary:hover { background: var(--ay-surface); color: var(--ay-text); }
@media (max-width: 639px) {
  .ay-nav-owner-text, .ay-nav-auth-text { display: none; }
  .ay-nav-actions .ay-btn-sm { padding: .45rem .55rem; }
}
@media (max-width: 1023px) {
  .ay-nav-top { grid-template-columns: auto 1fr auto; }
  .ay-nav-brand { grid-column: 1; justify-self: start; }
  .ay-nav-actions { grid-column: 3; }
  .ay-nav-brand-text { display: none !important; }
  .ay-nav-owner-btn { display: none; }
}

/* Dropdown (details) */
.ay-drop { position: relative; }
.ay-drop details { position: relative; }
.ay-drop summary {
  list-style: none;
}
.ay-drop summary::-webkit-details-marker,
.ay-drop summary::marker {
  display: none;
  content: '';
}
.ay-drop-chevron {
  width: .875rem; height: .875rem; flex-shrink: 0;
  opacity: .5; transition: transform .15s ease, opacity .15s ease;
}
.ay-drop summary:hover .ay-drop-chevron { opacity: .85; }
.ay-drop details[open] .ay-drop-chevron { transform: rotate(180deg); opacity: .85; }
.ay-drop-menu {
  position: absolute; top: 100%; left: 0; margin-top: .35rem;
  min-width: 14rem; padding: .35rem;
  background: var(--ay-surface); border: 1px solid var(--ay-surface2);
  border-radius: var(--ay-radius); box-shadow: var(--ay-shadow); z-index: 50;
}
.ay-drop-menu a {
  display: block; padding: .5rem .75rem; border-radius: .5rem;
  color: var(--ay-text); text-decoration: none; font-size: .875rem;
}
.ay-drop-menu a:hover { background: var(--ay-surface2); color: var(--ay-primary); }
.ay-drop-menu.grid-2 { display: grid; grid-template-columns: 1fr 1fr; min-width: 18rem; }

/* Buttons */
.ay-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .5rem 1rem; border-radius: var(--ay-radius); border: none;
  font-size: .875rem; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background .15s, transform .1s; white-space: nowrap;
}
.ay-btn:active { transform: scale(.98); }
.ay-btn-primary { background: var(--ay-primary); color: var(--ay-primary-fg); }
.ay-btn-primary:hover { background: var(--ay-primary-d); color: var(--ay-primary-fg); }
.ay-btn-ghost { background: transparent; color: var(--ay-muted); border: 1px solid var(--ay-surface2); }
.ay-btn-ghost:hover { background: var(--ay-surface); color: var(--ay-text); }
.ay-btn-success { background: var(--ay-success); color: #fff; }
.ay-btn-success:hover { background: #16a34a; }
.ay-btn-sm { padding: .35rem .75rem; font-size: .8125rem; }
.ay-btn-icon { width: 2.25rem; height: 2.25rem; padding: 0; border-radius: 50%; }

/* Badge */
.ay-badge {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .15rem .55rem; border-radius: .4rem;
  font-size: .75rem; font-weight: 600;
  background: var(--ay-surface2); color: var(--ay-text);
}
.ay-badge-primary { background: var(--ay-primary); color: var(--ay-primary-fg); }
.ay-badge-outline { background: transparent; border: 1px solid var(--ay-border); color: var(--ay-muted); }
.ay-badge-price { font-size: .68rem; padding: .12rem .45rem; letter-spacing: -.01em; white-space: nowrap; }

.ay-open-badge {
  display: inline-flex; align-items: center;
  padding: .15rem .5rem; border-radius: .35rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
}
.ay-open-badge--on { background: rgba(34,197,94,.18); color: var(--ay-success); }
.ay-open-badge--off { background: rgba(161,161,170,.15); color: var(--ay-muted); }

.ay-filter-chip {
  display: inline-flex;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin: 0;
}
.ay-filter-chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ay-filter-chip-ui {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  font-size: .8125rem;
  font-weight: 600;
  border: 1px solid var(--ay-surface2);
  background: var(--ay-surface);
  color: var(--ay-muted);
  transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
}
.ay-filter-chip-ui [data-lucide],
.ay-filter-chip-ui svg {
  width: .95rem;
  height: .95rem;
  flex-shrink: 0;
}
.ay-filter-chip:hover .ay-filter-chip-ui {
  border-color: var(--ay-border);
  color: var(--ay-text);
}
.ay-filter-chip input:checked + .ay-filter-chip-ui {
  border-color: rgba(34, 197, 94, .45);
  background: rgba(34, 197, 94, .12);
  color: var(--ay-success);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, .12);
}
.ay-filter-chip input:focus-visible + .ay-filter-chip-ui {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 249, 231, .22);
}
.ay-filter-chip input:checked:focus-visible + .ay-filter-chip-ui {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
}

.ay-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.ay-pagination-pages {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.ay-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 .55rem;
  border-radius: .65rem;
  border: 1px solid var(--ay-surface2);
  background: var(--ay-surface);
  color: var(--ay-muted);
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.ay-pagination-btn:hover {
  border-color: var(--ay-border);
  color: var(--ay-text);
  background: var(--ay-surface2);
}
.ay-pagination-btn.is-active {
  border-color: var(--ay-primary);
  background: color-mix(in srgb, var(--ay-primary) 14%, var(--ay-surface));
  color: var(--ay-primary);
  cursor: default;
}
.ay-pagination-btn.is-disabled {
  opacity: .35;
  pointer-events: none;
}
.ay-pagination-nav [data-lucide],
.ay-pagination-nav svg {
  width: 1rem;
  height: 1rem;
}
.ay-pagination-ellipsis {
  min-width: 1.5rem;
  text-align: center;
  color: var(--ay-muted);
  font-size: .875rem;
}

.ay-hours-table td { border-bottom: 1px solid var(--ay-surface2); }
.ay-hours-table tr:last-child td { border-bottom: 0; }
.ay-hours-today td { color: var(--ay-text); font-weight: 600; }
.ay-hours-today td:first-child { color: var(--ay-primary); }

.ay-place-page.ay-has-sticky-cta { padding-bottom: 5rem; }
.ay-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; gap: .35rem; padding: .5rem .75rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(24,24,27,.96); border-top: 1px solid var(--ay-border);
  backdrop-filter: blur(8px);
}
.ay-sticky-cta-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem; padding: .45rem .25rem; border-radius: .65rem;
  font-size: .68rem; font-weight: 600; text-decoration: none; color: var(--ay-text);
  background: var(--ay-surface2); min-height: 3rem;
}
.ay-sticky-cta-btn i { width: 1.1rem; height: 1.1rem; }
.ay-sticky-cta-wa { background: rgba(34,197,94,.15); color: var(--ay-success); }
@media (min-width: 768px) {
  .ay-sticky-cta { display: none; }
  .ay-place-page.ay-has-sticky-cta { padding-bottom: 2rem; }
}

/* Card */
.ay-card {
  background: var(--ay-surface);
  border: 1px solid var(--ay-surface2);
  border-radius: 1rem;
  overflow: hidden;
  color: var(--ay-text);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
a.ay-card { text-decoration: none; display: block; min-width: 0; }
.ay-card-wa {
  background: none; border: none; padding: 0; font: inherit; cursor: pointer;
}
.ay-card-wa:hover { text-decoration: underline; }
a.ay-card:hover {
  border-color: var(--ay-primary);
  box-shadow: 0 12px 32px rgba(8,249,231,.12);
  transform: translateY(-2px);
}
.ay-card-pad { padding: 1.25rem; }

/* Inputs */
.ay-input, .ay-select, .ay-textarea {
  width: 100%; padding: .65rem .85rem;
  background: var(--ay-surface); border: 1px solid var(--ay-surface2);
  border-radius: var(--ay-radius); color: var(--ay-text); font-size: .875rem;
}
.ay-input:focus, .ay-select:focus, .ay-textarea:focus {
  outline: none; border-color: var(--ay-primary);
  box-shadow: 0 0 0 3px rgba(8,249,231,.2);
}
.ay-input::placeholder, .ay-textarea::placeholder { color: var(--ay-muted); }
.ay-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.35rem;
  color-scheme: dark;
  background-color: var(--ay-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 1rem;
  transition: border-color .15s, box-shadow .15s, background-color .15s;
}
.ay-select:hover {
  border-color: var(--ay-border);
  background-color: var(--ay-surface2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2308f9e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}
.ay-select option,
.ay-select optgroup {
  background: var(--ay-surface);
  color: var(--ay-text);
}
.ay-select option:checked,
.ay-select option:hover {
  background: var(--ay-surface2);
  color: var(--ay-text);
}

.ay-dropzone {
  border: 2px dashed var(--ay-surface2);
  border-radius: var(--ay-radius);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.ay-dropzone:hover,
.ay-dropzone.ay-dropzone-hover {
  border-color: var(--ay-primary);
  background: rgba(249, 115, 22, .06);
}
.ay-dropzone-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--ay-muted);
  pointer-events: none;
}
.ay-dropzone-placeholder i { width: 1.75rem; height: 1.75rem; color: var(--ay-primary); }
.ay-dropzone-placeholder p { margin: 0; font-size: .8125rem; font-weight: 500; color: var(--ay-text); }
.ay-dropzone-hint { font-size: .68rem; }
.ay-dropzone-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .65rem;
}
.ay-dropzone-preview-grid:empty { display: none; }
.ay-dropzone-thumb-wrap { position: relative; width: 4.5rem; height: 4.5rem; }
.ay-dropzone-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid var(--ay-surface2);
}
.ay-dropzone-thumb-rm {
  position: absolute; top: -.35rem; right: -.35rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--ay-surface);
  border: 1px solid var(--ay-surface2);
  color: var(--ay-muted);
  font-size: .875rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.ay-dropzone-thumb-rm:hover { color: var(--ay-text); border-color: var(--ay-primary); }

.ay-label-row { display: flex; align-items: center; gap: .5rem; }

/* Page sections */
.ay-page-head {
  background: var(--ay-surface);
  border-bottom: 1px solid var(--ay-surface2);
  padding: 2rem 0;
}
.ay-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: #0a0a0a;
}
.ay-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ay-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ay-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
}
.ay-hero .ay-container {
  position: relative;
  z-index: 1;
}

.ay-live-search {
  position: relative;
}
.ay-live-search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .45rem);
  z-index: 30;
  border: 1px solid var(--ay-surface2);
  border-radius: 1rem;
  background: var(--ay-surface);
  box-shadow: var(--ay-shadow);
  max-height: min(24rem, 60vh);
  overflow-y: auto;
}
.ay-live-search-results.hidden { display: none; }
.ay-live-search-group + .ay-live-search-group {
  border-top: 1px solid var(--ay-surface2);
}
.ay-live-search-group-label {
  padding: .55rem .85rem .35rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ay-muted);
  background: color-mix(in srgb, var(--ay-surface2) 35%, transparent);
}
.ay-live-search-type {
  font-size: .65rem;
  font-weight: 600;
  color: var(--ay-primary);
  flex-shrink: 0;
  padding: .15rem .4rem;
  border-radius: .35rem;
  background: color-mix(in srgb, var(--ay-primary) 10%, transparent);
}
.ay-live-search-status {
  padding: .85rem 1rem;
  font-size: .8125rem;
  color: var(--ay-muted);
  border-bottom: 1px solid var(--ay-surface2);
}
.ay-live-search-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .85rem;
  text-decoration: none;
  color: var(--ay-text);
  border-bottom: 1px solid color-mix(in srgb, var(--ay-surface2) 70%, transparent);
  transition: background .12s;
}
.ay-live-search-item:last-of-type { border-bottom: 0; }
.ay-live-search-item:hover,
.ay-live-search-item.is-active {
  background: color-mix(in srgb, var(--ay-primary) 8%, var(--ay-surface2));
}
.ay-live-search-thumb {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .55rem;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--ay-surface2);
}
.ay-live-search-thumb-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ay-muted);
}
.ay-live-search-meta {
  min-width: 0;
  flex: 1;
}
.ay-live-search-meta strong {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ay-live-search-meta span {
  display: block;
  font-size: .75rem;
  color: var(--ay-muted);
  margin-top: .1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ay-live-search-rating {
  font-size: .75rem;
  font-weight: 600;
  color: #fbbf24;
  flex-shrink: 0;
}
.ay-live-search-footer {
  display: block;
  padding: .75rem 1rem;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--ay-primary);
  text-decoration: none;
  border-top: 1px solid var(--ay-surface2);
  background: color-mix(in srgb, var(--ay-primary) 4%, transparent);
}
.ay-live-search-footer:hover {
  background: color-mix(in srgb, var(--ay-primary) 10%, transparent);
}

.ay-hero-feature {
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 768px) {
  .ay-hero-feature { margin-top: 3.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .ay-hero-video { display: none; }
  .ay-hero { background: linear-gradient(160deg, #18181b 0%, #27272a 60%, #1c1917 100%); }
}
.ay-crumb { font-size: .75rem; color: var(--ay-muted); margin-bottom: .75rem; }
.ay-crumb a { color: var(--ay-muted); text-decoration: none; }
.ay-crumb a:hover { color: var(--ay-primary); }

/* Grid */
.ay-grid { display: grid; gap: 1.25rem; }
.ay-grid > * { min-width: 0; }
.ay-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .ay-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .ay-grid-3 { grid-template-columns: repeat(3,1fr); } }

/* Modal */
.ay-modal { display: none; position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.65); align-items: center; justify-content: center; padding: 1rem; }
.ay-modal.open { display: flex; }
.ay-modal-box {
  background: var(--ay-surface); border: 1px solid var(--ay-surface2);
  border-radius: 1rem; padding: 1.5rem; width: 100%; max-width: 28rem;
  box-shadow: var(--ay-shadow); position: relative;
}
.ay-modal-box .modal-close { position: absolute; top: .75rem; right: .75rem; }
.ay-tabs { display: flex; gap: .25rem; margin-bottom: 1rem; }
.ay-tabs button { flex: 1; padding: .5rem; border-radius: var(--ay-radius); border: 1px solid var(--ay-surface2); background: transparent; color: var(--ay-muted); cursor: pointer; font-weight: 600; font-size: .875rem; }
.ay-tabs button.active { background: var(--ay-primary); border-color: var(--ay-primary); color: var(--ay-primary-fg); }

/* Footer */
.ay-footer {
  margin-top: 4rem; border-top: 1px solid var(--ay-surface2);
  background: var(--ay-surface); padding: 3rem 0 1.5rem;
}
.ay-footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .ay-footer-grid { grid-template-columns: repeat(4,1fr); } }
.ay-footer h3 { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ay-muted); margin-bottom: 1rem; }
.ay-footer a { color: var(--ay-muted); text-decoration: none; font-size: .875rem; display: block; margin-bottom: .5rem; }
.ay-footer a:hover { color: var(--ay-primary); }

/* Swiper */
.swiper-button-next, .swiper-button-prev { color: #fff !important; background: rgba(0,0,0,.5); width: 2.5rem !important; height: 2.5rem !important; border-radius: 50%; }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; }
.hero-swiper .swiper-pagination-bullet-active, .gallery-swiper .swiper-pagination-bullet-active { background: var(--ay-primary); }

/* Map */
#placeMap { border-radius: 1rem; border: 1px solid var(--ay-surface2); z-index: 0; }
.leaflet-popup-content-wrapper { background: var(--ay-surface); color: var(--ay-text); border-radius: .75rem; }

/* Stars */
#starInput button { opacity: .35; color: #fbbf24; background: none; border: none; cursor: pointer; font-size: 1.25rem; }
#starInput button.active { opacity: 1; }

/* Article */
.article-body h2 { font-size: 1.35rem; font-weight: 700; margin: 1.5rem 0 .65rem; color: var(--ay-text); }
.article-body h3 { font-size: 1.1rem; font-weight: 600; margin: 1rem 0 .4rem; color: var(--ay-text); }
.article-body p, .article-body li { color: #d4d4d8; line-height: 1.75; margin: .5rem 0; }
.article-body ul, .article-body ol { padding-left: 1.25rem; margin: .75rem 0; }
.article-body a { color: var(--ay-primary); }
.article-body img { border-radius: .75rem; border: 1px solid var(--ay-surface2); max-width: 100%; }
.ay-legal-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .9rem; }
.ay-legal-body th, .ay-legal-body td { padding: .55rem .65rem; border-bottom: 1px solid var(--ay-surface2); text-align: left; vertical-align: top; }
.ay-legal-body th { color: var(--ay-text); font-weight: 600; }
.ay-legal-body td { color: #d4d4d8; }

/* Toast */
#toast { background: var(--ay-surface); color: var(--ay-text); border: 1px solid var(--ay-surface2); }

/* Lucide */
[data-lucide] { width: 1em; height: 1em; vertical-align: -.125em; display: inline-block; }

/* Mobile menu panel */
#mobilePanel { display: none; border-top: 1px solid var(--ay-surface2); background: var(--ay-surface); padding: .75rem 1rem; }
#mobilePanel.open { display: block; }
@media (min-width: 1024px) { #mobilePanel, #mobilePanel.open { display: none; } }
#mobilePanel a { display: block; padding: .6rem .75rem; border-radius: .5rem; color: var(--ay-text); text-decoration: none; font-size: .875rem; }
#mobilePanel a.ay-mobile-owner {
  background: var(--ay-primary); color: var(--ay-primary-fg); font-weight: 600; text-align: center; margin-bottom: .35rem;
}
#mobilePanel a.ay-mobile-owner:hover { background: var(--ay-primary-d); color: var(--ay-primary-fg); }
#mobilePanel a:hover { background: var(--ay-surface2); }

/* Admin uyumluluk */
.ay-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.ay-table th { text-align: left; padding: .65rem 1rem; color: var(--ay-muted); background: var(--ay-bg); font-weight: 600; }
.ay-table td { padding: .65rem 1rem; border-top: 1px solid var(--ay-surface2); }
.ay-table tr:hover td { background: rgba(255,255,255,.02); }

/* Anasayfa SEO blogu (footer ust) */
.ay-seo-block {
  margin-top: 3rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--ay-surface2);
  background: linear-gradient(180deg, var(--ay-bg) 0%, var(--ay-surface) 100%);
}
.ay-seo-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .ay-seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ay-seo-grid { grid-template-columns: repeat(3, 1fr); } }
.ay-seo-district {
  background: var(--ay-surface);
  border: 1px solid var(--ay-surface2);
  border-radius: var(--ay-radius);
  overflow: hidden;
}
.ay-seo-district-title {
  padding: .75rem 1rem;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  background: rgba(255,255,255,.02);
}
.ay-seo-district-title::-webkit-details-marker { display: none; }
.ay-seo-links {
  list-style: none;
  margin: 0;
  padding: .5rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.ay-seo-links a {
  display: block;
  padding: .35rem .5rem;
  border-radius: .4rem;
  font-size: .8125rem;
  color: var(--ay-muted);
  text-decoration: none;
  line-height: 1.35;
}
.ay-seo-links a:hover { color: var(--ay-primary); background: rgba(8,249,231,.08); }

/* QR Menü tanıtım (anasayfa) */
.ay-qr-promo {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(8,249,231,.08) 0%, var(--ay-bg) 45%, var(--ay-surface) 100%);
  border-top: 1px solid var(--ay-surface2);
  border-bottom: 1px solid var(--ay-surface2);
}
.ay-qr-promo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ay-qr-promo-inner { grid-template-columns: 1.1fr 0.9fr; }
}
.ay-qr-promo-badge { margin-bottom: 0; }
.ay-qr-promo-features {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.ay-qr-promo-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--ay-muted);
}
.ay-qr-promo-features i { width: 1.1rem; height: 1.1rem; color: var(--ay-primary); flex-shrink: 0; }
.ay-qr-promo-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.75rem; }
.ay-qr-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ay-qr-mock-phone {
  width: 11rem;
  background: #111;
  border-radius: 1.25rem;
  padding: .5rem;
  border: 2px solid var(--ay-surface2);
  box-shadow: var(--ay-shadow);
}
.ay-qr-mock-screen {
  background: var(--ay-surface);
  border-radius: .85rem;
  padding: .75rem;
  min-height: 10rem;
}
.ay-qr-mock-header {
  font-size: .75rem;
  font-weight: 700;
  text-align: center;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--ay-surface2);
  margin-bottom: .5rem;
}
.ay-qr-mock-item {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--ay-muted);
}
.ay-qr-mock-item strong { color: var(--ay-primary); }
.ay-qr-mock-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--ay-muted);
}
.ay-qr-mock-qr {
  width: 6.5rem;
  height: 6.5rem;
  background: #fff;
  border-radius: .5rem;
  padding: .35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.ay-qr-mock-qr img,
.ay-qr-mock-qr canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
}

/* İşletme yanıtı (mekan sayfası) */
.ay-owner-reply {
  padding: .75rem 1rem;
  background: rgba(8,249,231,.08);
  border-left: 3px solid var(--ay-primary);
  border-radius: 0 .5rem .5rem 0;
}

/* Kullanıcı hesap paneli */
.ay-account-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.ay-account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ay-account-layout { grid-template-columns: 14rem 1fr; align-items: start; }
}
.ay-account-nav {
  display: flex;
  flex-direction: row;
  gap: .35rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .ay-account-nav {
    flex-direction: column;
    background: var(--ay-surface);
    border: 1px solid var(--ay-surface2);
    border-radius: 1rem;
    padding: .5rem;
    overflow: visible;
  }
}
.ay-account-tab {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .85rem;
  border: 1px solid var(--ay-surface2);
  border-radius: var(--ay-radius);
  background: var(--ay-surface);
  color: var(--ay-muted);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}
@media (min-width: 768px) {
  .ay-account-tab { border-color: transparent; background: transparent; width: 100%; }
}
.ay-account-tab i { width: 1rem; height: 1rem; }
.ay-account-tab:hover { color: var(--ay-text); background: rgba(255,255,255,.04); }
.ay-account-tab.active {
  background: var(--ay-primary);
  border-color: var(--ay-primary);
  color: var(--ay-primary-fg);
}
.ay-account-section.hidden { display: none; }
.ay-review-card {
  padding: 1rem;
  border: 1px solid var(--ay-surface2);
  border-radius: var(--ay-radius);
  background: rgba(0,0,0,.15);
}
.ay-review-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .5rem;
}
.ay-review-status {
  font-size: .68rem;
  font-weight: 600;
  padding: .15rem .45rem;
  border-radius: .35rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.ay-review-status.pending { background: rgba(245,158,11,.15); color: #fbbf24; }
.ay-review-status.approved { background: rgba(34,197,94,.15); color: var(--ay-success); }
.ay-review-status.rejected { background: rgba(239,68,68,.15); color: var(--ay-error); }

/* Gezilecek yerler kartları */
.ay-attraction-card { overflow: hidden; }
.ay-attractions-filters {
  margin-top: 1.75rem;
  padding-bottom: .75rem;
}
.ay-attractions-list {
  padding-top: 1.5rem;
}
.ay-attraction-cover {
  position: relative;
  height: 12rem;
  background: var(--ay-surface2);
  overflow: hidden;
}
.ay-attraction-badge {
  position: absolute;
  top: .65rem;
  left: .65rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: .4rem;
  background: rgba(0,0,0,.65);
  color: #fbbf24;
  backdrop-filter: blur(4px);
}
.ay-attraction-badge i { width: .75rem; height: .75rem; }

/* Auth modal iyileştirme */
.ay-modal-box { position: relative; }
.ay-modal .ay-tabs { display: flex; gap: .35rem; margin-bottom: 1rem; }
.ay-modal .ay-tabs button {
  flex: 1;
  padding: .5rem;
  border-radius: .55rem;
  border: 1px solid var(--ay-surface2);
  background: transparent;
  color: var(--ay-muted);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.ay-modal .ay-tabs button.active {
  background: var(--ay-primary);
  border-color: var(--ay-primary);
  color: var(--ay-primary-fg);
}

/* Instagram tarzı hikayeler */
.ay-stories-section { padding: .75rem 0 1.25rem; position: relative; z-index: 5; }
.ay-stories-heading {
  display: flex; align-items: center; gap: .35rem;
  font-size: .8125rem; font-weight: 600; color: var(--ay-muted);
  margin: 0 0 .65rem .15rem;
}
.ay-stories-heading i { width: 1rem; height: 1rem; color: var(--ay-primary); }
.ay-stories-scroll {
  display: flex; gap: .85rem; overflow-x: auto; padding: .25rem .15rem .5rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ay-stories-scroll::-webkit-scrollbar { display: none; }
.ay-story-ring {
  flex: 0 0 auto; width: 4.75rem; background: none; border: none; padding: 0;
  cursor: pointer; scroll-snap-align: start; text-align: center;
}
.ay-story-ring-border {
  display: block; width: 4.25rem; height: 4.25rem; margin: 0 auto;
  padding: 3px; border-radius: 50%;
  background: linear-gradient(135deg, #08f9e7, #06c4b8, #04a89a);
  position: relative; overflow: hidden;
}
.ay-story-ring-border img,
.ay-story-ring-border video,
.ay-story-ring-fallback {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ay-bg, #18181b); display: block;
  background: var(--ay-surface2);
}
.ay-story-ring-fallback {
  display: flex; align-items: center; justify-content: center;
}
.ay-story-ring-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; color: #fff; background: rgba(0,0,0,.25);
  border-radius: 50%; margin: 3px;
}
.ay-story-ring-play i { width: 1.1rem; height: 1.1rem; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.ay-story-ring-fallback i { width: 1.25rem; height: 1.25rem; color: var(--ay-muted); }
.ay-story-ring-label {
  display: block; margin-top: .35rem; font-size: .68rem; color: var(--ay-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 4.75rem;
}
.ay-story-viewer {
  position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center;
}
.ay-story-viewer.hidden { display: none !important; }
.ay-story-viewer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); }
.ay-story-viewer-inner {
  position: relative; width: min(100vw, 420px); height: min(100vh, 780px);
  max-height: 92vh; border-radius: 1rem; overflow: hidden; background: #000;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
}
.ay-story-progress { display: flex; gap: 3px; padding: .65rem .75rem 0; position: absolute; top: 0; left: 0; right: 0; z-index: 3; }
.ay-story-progress-bar {
  flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,.35); overflow: hidden;
}
.ay-story-progress-bar span {
  display: block; height: 100%; width: 0; background: #fff; transition: width linear;
}
.ay-story-viewer-head {
  position: absolute; top: 1.1rem; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; padding: 0 .75rem;
}
.ay-story-viewer-place {
  color: #fff; font-size: .875rem; font-weight: 600; text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.ay-story-viewer-close {
  background: rgba(0,0,0,.35); border: none; color: #fff; width: 2rem; height: 2rem;
  border-radius: 50%; font-size: 1.25rem; cursor: pointer; line-height: 1;
}
.ay-story-viewer-body {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.ay-story-viewer-body video,
.ay-story-viewer-body img {
  width: 100%; height: 100%; object-fit: contain; background: #000;
}
.ay-story-nav {
  position: absolute; top: 0; bottom: 0; width: 35%; border: none; background: transparent;
  cursor: pointer; z-index: 2;
}
.ay-story-nav-prev { left: 0; }
.ay-story-nav-next { right: 0; }
.ay-place-video video { max-height: 280px; background: #000; }

.ay-review-photo { cursor: zoom-in; transition: opacity .15s; }
.ay-review-photo:hover { opacity: .92; }
.ay-review-photo:focus-visible { outline: 2px solid var(--ay-primary); outline-offset: 2px; }
.ay-photo-viewer {
  position: fixed; inset: 0; z-index: 75; display: flex; align-items: center; justify-content: center;
}
.ay-photo-viewer.hidden { display: none !important; }
.ay-photo-viewer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.92); cursor: zoom-out; }
.ay-photo-viewer-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: rgba(0,0,0,.45); border: none; color: #fff; width: 2.5rem; height: 2.5rem;
  border-radius: 50%; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.ay-photo-viewer-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(0,0,0,.35); border: none; color: #fff; width: 2.75rem; height: 2.75rem;
  border-radius: 50%; font-size: 1.75rem; cursor: pointer; line-height: 1;
}
.ay-photo-viewer-nav.hidden { display: none !important; }
.ay-photo-viewer-prev { left: .75rem; }
.ay-photo-viewer-next { right: .75rem; }
#reviewPhotoViewerImg {
  position: relative; z-index: 1; max-width: min(92vw, 960px); max-height: 88vh;
  object-fit: contain; border-radius: .5rem; box-shadow: 0 20px 50px rgba(0,0,0,.45);
  cursor: zoom-out; user-select: none;
}

/* Fenomenler */
.ay-influencer-hero { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: flex-start; }
.ay-influencer-avatar {
  width: 5.5rem; height: 5.5rem; border-radius: 50%; overflow: hidden;
  background: var(--ay-surface2); border: 2px solid var(--ay-primary); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ay-influencer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ay-influencer-avatar-sm { width: 3.5rem; height: 3.5rem; }
.ay-influencer-avatar-xs { width: 1.75rem; height: 1.75rem; border-width: 1px; }
.ay-influencer-initial { font-family: var(--font-display, inherit); font-weight: 800; font-size: 1.5rem; color: var(--ay-primary); }
.ay-influencer-avatar-sm .ay-influencer-initial { font-size: 1.1rem; }
.ay-influencer-avatar-xs .ay-influencer-initial { font-size: .65rem; }
.ay-influencer-card { transition: border-color .15s; }
.ay-influencer-card:hover { border-color: color-mix(in srgb, var(--ay-primary) 40%, transparent); }
.ay-influencer-home-profiles {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.ay-inf-place-results {
  margin-top: .35rem; border: 1px solid var(--ay-surface2); border-radius: .75rem;
  max-height: 12rem; overflow-y: auto; background: var(--ay-surface);
}
.ay-inf-place-results button {
  display: block; width: 100%; text-align: left; padding: .65rem .85rem; border: none;
  background: transparent; color: var(--ay-text); cursor: pointer; font-size: .875rem;
}
.ay-inf-place-results button:hover { background: var(--ay-surface2); }
.ay-inf-form { max-width: 36rem; }
.ay-inf-avatar-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ay-influencer-avatar-lg { width: 5rem; height: 5rem; }
.ay-influencer-avatar-lg .ay-influencer-initial { font-size: 1.75rem; }

/* Profil fotoğrafı kırpma */
.ay-crop-modal {
  position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.ay-crop-modal.hidden { display: none; }
.ay-crop-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.ay-crop-box {
  position: relative; z-index: 1; width: min(100%, 32rem);
  background: var(--ay-surface); border: 1px solid var(--ay-border);
  border-radius: 1rem; padding: 1.25rem; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.ay-crop-head { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; margin-bottom: .35rem; }
.ay-crop-stage {
  margin: 1rem 0; max-height: min(60vh, 24rem); background: #000; border-radius: .75rem; overflow: hidden;
}
.ay-crop-stage img { display: block; max-width: 100%; max-height: min(60vh, 24rem); }
.ay-crop-actions { display: flex; justify-content: flex-end; gap: .5rem; flex-wrap: wrap; }

.ay-influencer-socials { gap: .65rem; }
.ay-influencer-social {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .75rem; border-radius: 999px; font-size: .8125rem; font-weight: 600;
  text-decoration: none; color: var(--ay-text);
  border: 1px solid color-mix(in srgb, var(--ay-primary) 40%, var(--ay-border));
  background: color-mix(in srgb, var(--ay-primary) 6%, transparent);
  transition: border-color .15s, color .15s, background .15s;
}
.ay-influencer-social:hover {
  border-color: var(--ay-primary);
  color: var(--ay-primary);
  background: color-mix(in srgb, var(--ay-primary) 12%, transparent);
}
.ay-influencer-social svg,
.ay-influencer-social [data-lucide],
.ay-influencer-social .ay-icon-instagram {
  width: 1rem; height: 1rem;
  color: var(--ay-primary) !important;
  stroke: var(--ay-primary) !important;
}
.ay-icon-instagram {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: -.125em;
}

.ay-star-btn,
#infPostStarInput button {
  opacity: .35; color: #fbbf24; background: none; border: none; cursor: pointer;
  font-size: 1.35rem; line-height: 1; padding: 0 .05rem;
}
.ay-star-btn.active,
#infPostStarInput button.active { opacity: 1; }

.ay-inf-cover-preview {
  position: relative; max-width: 20rem; border-radius: .75rem; overflow: hidden;
  border: 1px solid var(--ay-surface2); aspect-ratio: 16 / 10; background: var(--ay-surface2);
}
.ay-inf-cover-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ay-inf-cover-rm {
  position: absolute; top: .4rem; right: .4rem; width: 1.75rem; height: 1.75rem;
  border-radius: 50%; border: none; background: rgba(0,0,0,.65); color: #fff;
  font-size: 1.1rem; cursor: pointer; line-height: 1;
}

