﻿/* Global Variables */
:root {
  --ink: #1a1208;
  --ink2: #4a3728;
  --ink3: #8a7060;
  --cream: #fdf6ee;
  --cream2: #f0e6d3;
  --cream3: #ede0cc;
  --red: #b5341a;
  --red2: #8c2412;
  --gold: #c49a2a;
  --gold2: #9a7518;
  --green: #2d5a3d;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-y: scroll !important;
  display: block !important;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* HEADER */
header {
  border-bottom: 1px solid var(--cream3);
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 768px) {
  header { padding: 1.5rem 1rem; }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -1px;
}
.logo span { color: var(--red); }
.logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 4px;
  margin-bottom: 12px;
}
.header-search {
  width: 400px;
  max-width: 100%;
}
.header-search .search-input {
  width: 100%;
  padding: 8px 14px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid var(--cream3);
  border-radius: 20px;
  background: var(--cream2);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.header-search .search-input::placeholder {
  color: var(--ink3);
}
.header-search .search-input:focus {
  border-color: var(--gold);
  background: var(--cream);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.city-select {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink2);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 8px;
}
.city-select:focus { color: var(--gold2); }
.list-count {
  background: var(--cream2);
  color: var(--ink2);
  border: 1px solid var(--cream3);
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.list-count:hover {
  background: #faf3e0;
  border-color: var(--gold);
  color: var(--ink);
}
.list-count span {
  font-weight: 500;
  color: var(--gold2);
}

/* ── CONTAINER BASE CLASS ─────────────────────────────── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
}

/* ── ASPECT RATIO ENFORCEMENT (CLS prevention) ─────────────── */
img[width][height] { aspect-ratio: attr(width) / attr(height); }
picture img[width][height] { aspect-ratio: attr(width) / attr(height); }
.ylp-city-card img { aspect-ratio: 3/4; }
.ylp-sdrop-img { aspect-ratio: 4/5; }
.cm-item-img { aspect-ratio: 16/9; }
.rm-result-img { aspect-ratio: 4/3; }
.rm-selected-img { aspect-ratio: 16/9; }
.ylp-featured-hero-media img { aspect-ratio: 16/10; }
.ylp-venue-img-wrap img { aspect-ratio: 16/10.67; }
.card-bg-img { aspect-ratio: 16/10; }
.post-hero-img { aspect-ratio: 16/9; }
.blog-featured-img { aspect-ratio: 16/9; }

/* HERO STRIP */
.hero {
  padding: 3rem 0 1.5rem;
  margin: 0 auto;
  max-width: 1300px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 100;
  overflow: hidden;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.hero-text {
  flex: 0 0 680px;
  position: relative;
  z-index: 10;
}
.hero-carousel-container {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.32, 1.1, 0.64, 1);
  position: relative;
  z-index: 5;
  transform: translateX(-100px);
}
.hero-carousel-container.shift {
  transform: translateX(-290px);
}
.hero-carousel {
  width: 100%;
  max-width: clamp(300px, 90vw, 1400px);
  aspect-ratio: 16 / 10;
  background: var(--cream2);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(26,18,8,0.15);
  border: 2px solid var(--cream3);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  cursor: grab;
  user-select: none;
}
.carousel-slide.active {
  opacity: 1;
}
.carousel-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(26,18,8,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--cream);
  z-index: 10;
}
.carousel-number {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--gold);
}
.carousel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.carousel-rating {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.carousel-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.carousel-tag {
  font-size: 0.75rem;
  background: rgba(196,154,42,0.2);
  color: var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(196,154,42,0.4);
}
.hero-carousel-nav {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
  border: 1px solid rgba(255,255,255,0.6);
}
.carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
  border-color: var(--gold);
}
.hero-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero p {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.7;
  max-width: 480px;
}

/* MAP SECTION */
.map-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem 1.5rem;
}
@media (max-width: 768px) {
  .map-section { padding: 0 1rem 1.5rem; }
}
.map-buttons {
  display: flex;
  gap: 12px;
}
.map-toggle-btn {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.map-toggle-btn:hover { background: var(--cream3); }
.find-btn { background: var(--cream); border-color: var(--gold); color: var(--gold2); }
.find-btn:hover { background: #faf3e0; }
.map-wrapper {
  margin-top: 1rem;
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  border-radius: 16px;
  isolation: isolate; /* Modal vb. pencerelerin haritanın altında kalmasını önler */
}
.map-wrapper.open {
  height: 400px;
  border: 1px solid var(--cream3);
  box-shadow: 0 8px 24px rgba(26,18,8,0.1);
}
#city-map { width: 100%; height: 100%; background: var(--cream2); }

/* CUSTOM MAP MARKER */
.custom-marker {
  width: 28px;
  height: 28px;
  background-color: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 2px 8px rgba(26,18,8,0.35);
  border: 2px solid #fff;
  transition: background-color .15s, transform .15s;
  cursor: pointer;
}
.custom-marker.marker-highlight {
  background-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 3px 12px rgba(196,154,42,0.5);
  z-index: 999;
}

.map-move-search-floating {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 700;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--cream3);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(26,18,8,0.16);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
}

.map-move-search-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--ink2);
  user-select: none;
  white-space: nowrap;
}

.map-move-search-toggle {
  width: 16px;
  height: 16px;
  accent-color: #0e829f;
  cursor: pointer;
}

.map-expand-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 700;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cream3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink2);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(26,18,8,0.12);
  backdrop-filter: blur(6px);
}

.map-expand-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
}

/* Mobil harita kapatma butonu (sağ üst, expand-btn yerinde) */
.map-close-mobile-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 700;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cream3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink2);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(26,18,8,0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-weight: 300;
}

.map-close-mobile-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(255, 255, 255, 0.99);
}

@media (min-width: 901px) {
  .map-close-mobile-btn {
    display: none !important;
  }
}

body.srp-mode.srp-ready .srp-body,
body.srp-mode.srp-ready .srp-sidebar,
body.srp-mode.srp-ready .srp-results,
body.srp-mode.srp-ready .srp-map-panel {
  transition: grid-template-columns .28s ease, width .28s ease, max-width .28s ease, min-width .28s ease, padding .28s ease, border-color .28s ease, opacity .28s ease;
}

body.srp-mode.map-expanded .srp-body {
  grid-template-columns: 0 clamp(360px, 31vw, 460px) minmax(0, 1fr);
}

body.srp-mode.map-expanded .srp-sidebar {
  width: 0;
  min-width: 0;
  max-width: 0;
  padding: 0;
  border-right: none;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

body.srp-mode.map-expanded .srp-grid .venue-card {
  flex-direction: column !important;
  padding: 0 !important;
  min-height: 0 !important;
}

body.srp-mode.map-expanded .srp-grid .venue-card .card-photo-wrap {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 185px !important;
  border-radius: 12px 12px 0 0 !important;
  flex-shrink: 0;
}
body.srp-mode.map-expanded .srp-grid .venue-card .card-photo-wrap .card-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  border-radius: 0 !important;
}
body.srp-mode.map-expanded .srp-grid .venue-card::before {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 185px !important;
  border-radius: 12px 12px 0 0 !important;
}

body.srp-mode.map-expanded .srp-grid .venue-card .card-top {
  display: none !important;
}
body.srp-mode.map-expanded .srp-grid .venue-card .card-photo-btns {
  left: auto !important;
  right: 10px !important;
}
body.srp-mode.map-expanded .srp-grid .venue-card > div:not(.card-top):not(.card-photo-wrap):not(.card-photo-btns) {
  padding: 0 14px !important;
}
body.srp-mode.map-expanded .srp-grid .venue-card .card-body {
  padding: 12px 14px 0 !important;
}
body.srp-mode.map-expanded .srp-grid .venue-card .venue-footer {
  padding: 10px 14px 14px !important;
}

@media (max-width: 640px) {
  .map-move-search-floating {
    top: 8px;
    max-width: calc(100% - 16px);
    width: max-content;
  }

  .map-move-search-label {
    font-size: 11px;
  }

  .map-expand-btn {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 900px) {
  .map-expand-btn {
    display: none !important;
  }
}

/* MAP MARKER NAME TOOLTIP */
.leaflet-tooltip.map-name-tooltip {
  background: rgba(26, 18, 8, 0.82);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 5px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(26,18,8,0.25);
  backdrop-filter: blur(4px);
}
.leaflet-tooltip.map-name-tooltip::before {
  border-top-color: rgba(26, 18, 8, 0.82);
}

/* MAP HOVER VENUE CARD */
.leaflet-popup.map-venue-popup .leaflet-popup-content-wrapper {
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 12px 30px rgba(26,18,8,0.22);
}
.leaflet-popup.map-venue-popup .leaflet-popup-content {
  margin: 0;
  width: 270px !important;
}
.leaflet-popup.map-venue-popup .leaflet-popup-tip {
  box-shadow: none;
}
.map-venue-card {
  cursor: pointer;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.map-venue-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.map-venue-card picture { display: block; }
.map-venue-card-body {
  padding: 10px;
}
.map-venue-card-title-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}
.map-venue-card-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: #faeae6;
  border-radius: 999px;
  padding: 3px 8px;
  line-height: 1;
}
.map-venue-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.map-venue-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.map-venue-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.map-venue-card-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold2);
  background: rgba(196,154,42,0.1);
  padding: 3px 9px;
  border-radius: 20px;
}
.map-venue-card-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink3);
  background: rgba(26,18,8,0.05);
  padding: 3px 9px;
  border-radius: 20px;
}
.map-venue-card-actions {
  display: flex;
  gap: 6px;
}
.map-venue-action-btn {
  border: 1px solid var(--cream3);
  background: #fff;
  color: var(--ink2);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
}
.map-venue-action-btn.primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.map-venue-action-btn:hover {
  background: var(--cream2);
}
.map-venue-action-btn.primary:hover {
  background: var(--red2);
}
/* Map popup saat durumu */
.map-venue-hours {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
}
.map-venue-hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.map-venue-hours-open { color: #2ecc71; }
.map-venue-hours-open .map-venue-hours-dot { background: #2ecc71; }
.map-venue-hours-closed { color: #e74c3c; }
.map-venue-hours-closed .map-venue-hours-dot { background: #e74c3c; }
/* Görsel vurgu yalnızca marker-highlight (hover) ile yapılır */
.user-marker {
  width: 16px;
  height: 16px;
  background-color: #4285f4;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(66, 133, 244, 0); }
  100% { box-shadow: 0 0 0 0 rgba(66, 133, 244, 0); }
}

/* FILTERS */
.filters {
  padding: 1.25rem 2rem;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--cream3);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 10;
}
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--cream3);
  background: transparent;
  color: var(--ink3);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); background: #faf3e0; }
.filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* SEARCH */
.search-wrap {
  padding: 1rem 2rem 0;
  max-width: 400px;
}
.search-input {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 9px 16px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  background: var(--cream2);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--gold); background: var(--cream); }
.search-input::placeholder { color: var(--ink3); }

/* ADVANCED FILTERS */
.advanced-filters {
  padding: 1rem 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--cream3);
  background: var(--cream);
}
.suggest-inline-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: var(--red);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background-color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.suggest-inline-btn:hover {
  background: #a6310f;
  transform: translateY(-1px);
}
.sort-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--cream3);
  background: var(--cream2);
  color: var(--ink);
  outline: none;
  cursor: pointer;
}

/* STATS BAR */
.stats {
  display: flex;
  gap: 2rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--cream3);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}
.stat-label { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink3); margin-top: 2px; }

/* GRID */
.grid-header {
  padding: 1.5rem 2rem .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grid-title {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
}
.grid-showing { font-size: 12px; color: var(--ink3); }

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1px;
  border-top: 1px solid var(--cream3);
}

/* VENUE CARD */
.venue-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3);
  cursor: pointer;
  transition: background .2s;
  position: relative;
}
.venue-card:hover { background: var(--cream2); }
.venue-card.saved { background: #f5f0e8; }
.venue-card.map-selected {
  box-shadow: 0 0 0 2px rgba(181,52,26,0.35), 0 10px 20px rgba(26,18,8,0.12);
  border-color: rgba(181,52,26,0.45) !important;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  gap: 0.5rem;
}
.card-type {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(196,154,42,0.75);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  user-select: none;
  flex: 1;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream3);
  line-height: 1;
  user-select: none;
  transition: color .2s;
  flex-shrink: 0;
}
.venue-card:hover .card-num { color: var(--cream3); }
.venue-card.saved .card-num { color: var(--gold); }

.save-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--cream3);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,18,8,0.18);
}
.save-btn:hover { border-color: var(--gold); background: #faf3e0; }
.venue-card.saved .save-btn { background: var(--red); border-color: var(--red); color: #fff; }

.venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.venue-list-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.02em;
  opacity: 0.8;
  vertical-align: middle;
  margin-right: 2px;
}
.venue-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.vtag {
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
}
.vtag-red { background: #faeae6; color: var(--red2); }
.vtag-gold { background: #faf3e0; color: var(--gold2); }
.vtag-green { background: #e8f0eb; color: var(--green); }
.vtag-purple { background: #f0ebf8; color: #7c3aed; }
.vtag-orange { background: #fff3e0; color: #e65100; }
.vtag-gray { background: var(--cream2); color: var(--ink3); }

.venue-desc {
  font-size: 13.5px;
  color: var(--ink3);
  line-height: 1.6;
  min-height: 50px;
  flex: 1;
}
.venue-footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--cream3);
}
.venue-footer-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
/* Mekan kartı saat durumu */
.venue-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  width: fit-content;
}
.venue-hours-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.venue-hours-open {
  color: #1a7a3a;
  background: rgba(46,204,113,0.12);
}
.venue-hours-open .venue-hours-dot { background: #2ecc71; }
.venue-hours-closed {
  color: #a02020;
  background: rgba(231,76,60,0.10);
}
.venue-hours-closed .venue-hours-dot { background: #e74c3c; }
.venue-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold2);
  background: rgba(196,154,42,0.1);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.venue-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink3);
  background: rgba(26,18,8,0.05);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.local-tip {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink2);
  line-height: 1.4;
  font-weight: 400;
}
.card-tip-inline {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 11.5px;
  color: var(--ink2);
  line-height: 1.4;
  font-weight: 400;
  margin-top: 8px;
  padding: 6px 8px;
  background: rgba(196,154,42,0.08);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.tip-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tip-icon {
  flex-shrink: 0;
  margin-top: 0.5px;
}

/* SAVED PANEL */
.saved-panel {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(26,18,8,.25);
  transform: translateY(120%);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  z-index: 100;
  cursor: default;
  max-width: 340px;
}
.saved-panel.visible { transform: translateY(0); }
.saved-panel-icon { font-size: 18px; }
.saved-panel-text { line-height: 1.3; }
.saved-panel-count { font-weight: 500; color: var(--gold); }
.saved-panel-hint { font-size: 11px; color: #9a8a7a; margin-top: 1px; }

/* TOAST */
.toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  z-index: 9999;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* VENUE OPEN/CLOSED BADGE */
.venue-open-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 11px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  z-index: 3;
  backdrop-filter: blur(4px);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
}
.venue-open-badge--open {
  background: rgba(46, 204, 113, 0.9);
}
.venue-open-badge--closed {
  background: rgba(231, 76, 60, 0.9);
}

/* MY LIST MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.6);
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--cream);
  border-radius: 16px 16px 0 0;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream3);
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--cream3);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: .625rem 0;
  border-bottom: 1px solid var(--cream3);
}
.modal-item:last-child { border-bottom: none; }
.modal-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 28px;
}
.modal-item-name { font-size: 13px; font-weight: 500; flex: 1; }
.modal-item-tag { font-size: 10px; color: var(--ink3); }
.modal-remove {
  font-size: 18px;
  color: var(--cream3);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: color .15s;
}
.modal-remove:hover { color: var(--red); }
.modal-empty { text-align: center; padding: 2rem; color: var(--ink3); font-style: italic; }
.export-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 12px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .2s;
}
.export-btn:hover { background: var(--red); }

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--cream3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink2);
}
.footer-logo span { color: var(--red); }
.footer-text { font-size: 11px; color: var(--ink3); }

/* CARD HOVER BG IMAGE */
.card-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}
.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.45s ease;
  border-radius: inherit;
}
/* <picture> wrapper inherits absolute positioning from card-photo-wrap */
.card-photo-wrap picture,
.carousel-slide picture {
  position: absolute;
  inset: 0;
  display: block;
}
.venue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.55) 0%, rgba(26,18,8,0.88) 100%);
  border-radius: inherit;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.venue-card:hover .card-bg-img { opacity: 1; }
.venue-card:hover::before { opacity: 1; }
.venue-card > *:not(.card-photo-wrap):not(.card-photo-btns) { position: relative; z-index: 2; }

/* Fotoğraf üstü ikonlar */
.card-photo-btns {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.venue-card:hover .venue-name { color: var(--cream); transition: color 0.3s; }
.venue-card:hover .venue-desc { color: rgba(253,246,238,0.72); transition: color 0.3s; }
.venue-card:hover .card-num { color: rgba(253,246,238,0.18); transition: color 0.3s; }
.venue-card:hover .venue-footer { border-top-color: rgba(253,246,238,0.15); }
.venue-card:hover .local-tip { color: rgba(253,246,238,0.9); }
.venue-card:hover .card-tip-inline { color: rgba(253,246,238,0.85); }
.venue-card:hover .venue-price { background: rgba(253,246,238,0.15); color: rgba(253,246,238,0.7); }
.venue-card:hover .venue-rating { background: rgba(196,154,42,0.25); }

/* CITY TRANSITION */
.venue-grid, .hero { transition: opacity 0.22s ease, transform 0.22s ease; }
.venue-grid.fading, .hero.fading {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

/* COMMENTS SECTION */
.comments-section {
  max-width: 1200px;
  padding: 3rem 2rem;
  border-top: 1px solid var(--cream3);
}
.comments-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.comments-section-sub {
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.comment-input-row {
  display: flex;
  gap: 10px;
}
.comment-author-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 9px 14px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  background: var(--cream2);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.comment-author-input:focus { border-color: var(--gold); background: var(--cream); }
.comment-textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  background: var(--cream2);
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color .2s;
}
.comment-textarea:focus { border-color: var(--gold); background: var(--cream); }
.comment-submit-btn {
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .2s;
}
.comment-submit-btn:hover { background: var(--red2); }
.comments-list { display: flex; flex-direction: column; gap: 12px; }
.comment-item {
  padding: 1rem 1.25rem;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 10px;
  animation: fadeUp .3s ease both;
}
.comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.comment-author {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
}
.comment-date { font-size: 11px; color: var(--ink3); }
.comment-text { font-size: 13px; color: var(--ink); line-height: 1.6; }
.comment-delete {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--cream3);
  padding: 2px 4px;
  transition: color .15s;
}
.comment-delete:hover { color: var(--red); }
.comments-empty {
  font-size: 13px;
  color: var(--ink3);
  font-style: italic;
  padding: 1rem 0;
}

/* BLOG NAV LINK */
.blog-nav-link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink2);
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid var(--cream3);
  border-radius: 20px;
  background: var(--cream2);
  transition: background-color .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.blog-nav-link:hover { border-color: var(--gold); color: var(--ink); background: #faf3e0; }
.blog-nav-link.active { background: var(--red); border-color: var(--red); color: #fff; }

/* Blog header logo (blog.html + blog/*.html) */
.header-logo-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-link .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.header-logo-link .logo-wordmark span {
  color: var(--red);
}
.header-logo-link .logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 2px;
}

/* BLOG LİSTELEME SAYFASI */
.blog-hero {
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--cream3);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.blog-hero-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: .75rem;
}
.blog-hero h1 em { font-style: italic; color: var(--red); }
.blog-hero p { font-size: 14px; color: var(--ink3); line-height: 1.7; max-width: 520px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  border-top: 1px solid var(--cream3);
  max-width: none;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 2rem;
  border-right: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3);
  transition: background .2s;
  animation: fadeUp .4s ease both;
}
.blog-card:hover { background: var(--cream2); }
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--cream3);
}
.blog-card-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
  font-weight: 500;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .625rem;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream3);
  font-size: 11px;
  color: var(--ink3);
}
.blog-card-read { color: var(--red); font-weight: 500; }

.blog-toolbar {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 2rem 1.25rem;
  border-bottom: 1px solid var(--cream3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  border-radius: 999px;
  height: 42px;
  padding: 0 14px;
  min-width: 280px;
}

.blog-search-icon {
  font-size: 14px;
  opacity: 0.7;
}

.blog-search-input {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  width: 100%;
  background: transparent;
}

.blog-search-input::placeholder {
  color: var(--ink3);
}

.blog-results-meta {
  font-size: 12px;
  color: var(--ink3);
}

.blog-results-meta strong {
  color: var(--ink);
  font-size: 14px;
  margin-right: 4px;
}

.blog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-sort-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink3);
}

.blog-sort-select {
  border: 1px solid var(--cream3);
  background: var(--cream);
  color: var(--ink2);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  outline: none;
}

.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
}

.blog-main-column {
  min-width: 0;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.blog-side-card {
  background: var(--cream);
  border: 1px solid var(--cream3);
  border-radius: 12px;
  padding: 14px;
}

.blog-side-card-highlight {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream2) 100%);
  border-color: #e8d6b3;
}

.blog-side-title {
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink2);
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-side-text {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink3);
}

.blog-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-side-tag {
  border: 1px solid var(--cream3);
  background: var(--cream2);
  color: var(--ink2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.blog-side-tag:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.blog-side-list {
  padding-left: 16px;
  display: grid;
  gap: 8px;
}

.blog-side-list li {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.55;
}

.blog-side-list li a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

.blog-side-list li a:hover {
  text-decoration: underline;
}

.blog-side-city-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.blog-side-city-link {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  transition: background .15s, color .15s;
}

.blog-side-city-link:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.blog-side-popular {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.blog-side-popular li a {
  font-size: 12px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.45;
  font-weight: 400;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream3);
}

.blog-side-popular li:last-child a {
  border-bottom: none;
}

.blog-side-popular li a:hover {
  color: var(--red);
}

.blog-city-hub {
  margin: 3rem 0 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream3);
}

.blog-city-hub-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.blog-city-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.blog-city-hub-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  text-decoration: none;
  text-align: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  gap: 5px;
  transition: background .15s, border-color .15s, color .15s;
}

.blog-city-hub-link:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.blog-city-hub-link span {
  font-size: 18px;
}

.blog-empty-state {
  margin-top: 16px;
  background: var(--cream);
  border: 1px dashed var(--cream3);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  color: var(--ink3);
}

/* BLOG YAZI SAYFASI */
.post-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.post-breadcrumb {
  font-size: 11px;
  color: var(--ink3);
  margin-bottom: 2rem;
}
.post-breadcrumb a { color: var(--ink3); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--red); }
.post-category {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
  font-weight: 500;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.post-title em { font-style: italic; color: var(--red); }
.post-lead {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.post-meta {
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: 1px;
  padding-bottom: .6rem;
  margin-bottom: .4rem;
}
.post-author {
  font-size: 11px;
  color: var(--ink3);
  letter-spacing: .5px;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream3);
  margin-bottom: 2.5rem;
}
.post-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin: 0 0 2rem;
  border: 1px solid var(--cream3);
  border-radius: 12px;
  background: #fff;
}
.post-share-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink3);
  white-space: nowrap;
}
.post-share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.post-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--cream3);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
}
.post-share-link:hover,
.post-share-link:focus-visible {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.post-share-button {
  cursor: pointer;
  font-family: inherit;
}
.post-share-button.is-copied {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
@media (max-width: 640px) {
  .post-share {
    flex-direction: column;
    align-items: stretch;
  }

  .post-share-actions {
    justify-content: flex-start;
  }
}
.post-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  border: 1px solid var(--cream3);
}
.post-venue-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin: 1.25rem 0 1rem;
  border: 1px solid var(--cream3);
  display: block;
}
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream3);
}
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink2);
  margin: 1.5rem 0 .5rem;
}
.post-content p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.post-content strong { color: var(--ink); }
.post-venue-box {
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.post-venue-box-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.post-venue-box-tip {
  font-size: 12px;
  color: var(--gold2);
  font-weight: 500;
  margin-top: 6px;
}
.post-venue-box-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}
.post-venue-box-link:hover { text-decoration: underline; }
.post-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2.5rem 0 1rem;
}
.post-day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cream3);
  line-height: 1;
}
.post-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.post-tip-box {
  background: #faf3e0;
  border: 1px solid #e8d89a;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
}
.post-tip-box strong { color: var(--gold2); }
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink3);
  text-decoration: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream3);
  transition: color .2s;
}
.post-back-link:hover { color: var(--red); }
.post-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink2);
  background: var(--cream2);
  border-radius: 0 8px 8px 0;
  line-height: 1.6;
}
.post-content blockquote cite {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: .75rem;
}
.post-divider {
  text-align: center;
  color: var(--cream3);
  letter-spacing: 10px;
  margin: 2.5rem 0;
  font-size: 1rem;
  user-select: none;
}
.post-highlight {
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
}

/* BLOG FİLTRE BAR */
.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  max-width: 1200px;
  border-bottom: 1px solid var(--cream3);
  margin: 0 auto;
  width: 100%;
}
.blog-filter-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid var(--cream3);
  background: var(--cream2);
  color: var(--ink2);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.blog-filter-pill:hover { border-color: var(--gold); color: var(--ink); background: #faf3e0; }
.blog-filter-pill.active { background: var(--red); border-color: var(--red); color: #fff; }

/* BLOG ÖNE ÇIKAN YAZI */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  max-width: none;
  border-bottom: 1px solid var(--cream3);
  transition: background .2s;
  overflow: hidden;
  background: var(--cream);
  border-right: 1px solid var(--cream3);
  border-left: 1px solid var(--cream3);
}
.blog-featured:hover { background: var(--cream2); }
.blog-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.blog-featured-body {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-badge {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-featured-badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.blog-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .875rem;
}
.blog-featured-title em { font-style: italic; color: var(--red); }
.blog-featured-excerpt {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream3);
  font-size: 11px;
  color: var(--ink3);
}
.blog-featured-meta .blog-card-read { color: var(--red); font-weight: 500; }

/* BLOG PAGE — PRO POLISH */
.blog-page {
  background: #fbf8f3;
}

.blog-page-shell {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  background: #fbf8f3;
}

.blog-page .blog-hero {
  border: 1px solid #e8dbc8;
  border-radius: 16px;
  margin-top: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(250,241,226,0.84) 100%);
  box-shadow: 0 12px 30px rgba(26,18,8,0.08);
}

.blog-page .blog-filter-bar,
.blog-page .blog-toolbar {
  border: 1px solid #eadfce;
  border-radius: 14px;
  margin-top: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(2px);
}

.blog-page .blog-toolbar {
  box-shadow: 0 8px 20px rgba(26,18,8,0.06);
}

.blog-page .blog-search-wrap,
.blog-page .blog-sort-select,
.blog-page .blog-side-card,
.blog-page .blog-card,
.blog-page .blog-featured {
  background: #fffdf9;
}

.blog-page .blog-search-wrap {
  border-color: #decbb1;
}

.blog-page .blog-search-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,0.14);
}

.blog-page .blog-layout {
  padding-top: 14px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.blog-page .blog-featured {
  border: 1px solid #e7dac5;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(26,18,8,0.07);
  position: relative;
  overflow: hidden;
}

.blog-page .blog-featured::after {
  content: attr(data-read) ' dk';
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(26,18,8,0.78);
  color: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.4px;
}

.blog-page .blog-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26,18,8,0.1);
}

.blog-page .blog-featured-img {
  height: clamp(320px, 42vw, 420px);
  object-position: center 42%;
}

.blog-page .blog-grid {
  border-top: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.blog-page .blog-card {
  border: 1px solid #eadfcd;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(26,18,8,0.06);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.blog-page .blog-card::after {
  content: attr(data-read) ' dk';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,18,8,0.74);
  color: #fff;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 10px;
  letter-spacing: 0.3px;
}

.blog-page .blog-card:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26,18,8,0.12);
  border-color: #dfcbad;
}

.blog-page .blog-card-image {
  aspect-ratio: 16 / 10;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 10px;
  object-position: center 38%;
}

.blog-page .blog-card-title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
}

.blog-page .blog-card-excerpt {
  font-size: 13.5px;
}

.blog-page .blog-sidebar {
  gap: 14px;
}

.blog-page .blog-side-card {
  border-color: #e9dcc8;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(26,18,8,0.06);
}

.blog-page .blog-side-tag {
  transition: transform .15s ease, border-color .15s ease, color .15s ease;
}

.blog-page .blog-side-tag:hover {
  transform: translateY(-1px);
}

.blog-page .blog-side-tag.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.blog-page .blog-empty-state {
  border-radius: 12px;
  border-color: #ddccb0;
  background: #fffdf8;
}

@media (max-width: 980px) {
  .blog-page .blog-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .blog-page .blog-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

@media (max-width: 760px) {
  .blog-page .blog-hero {
    padding: 2rem 1.1rem 1.25rem;
  }

  .blog-page .blog-filter-bar,
  .blog-page .blog-toolbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-page .blog-layout {
    padding: 10px 1rem 2rem;
  }

  .blog-page .blog-featured-body {
    padding: 1.35rem 1.1rem;
  }

  .blog-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-page .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* OKUMA İLERLEME BARI */
.post-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  width: 0%;
  background: var(--gold);
  transition: width .1s linear;
  pointer-events: none;
}

/* İLGİLİ YAZILAR */
.post-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream3);
}
.post-related-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.25rem;
}
.post-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.post-related-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.post-related-card:hover { border-color: var(--gold); background: var(--cream2); }
.post-related-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.post-related-card-body { padding: .875rem 1rem; }
.post-related-card-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .375rem;
}
.post-related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.post-related-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.25rem;
}
.post-related-card .post-related-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .375rem;
  padding: .875rem 1rem 0;
}
.post-related-card .post-related-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  padding: .375rem 1rem 0;
}
.post-related-card .post-related-meta {
  font-size: .75rem;
  color: var(--ink3);
  padding: .375rem 1rem .875rem;
}

/* ŞEHİR CTA */
.post-city-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.post-city-cta:hover { border-color: var(--gold); background: #faf3e0; }
.post-city-cta-text { font-size: 13px; color: var(--ink2); line-height: 1.4; }
.post-city-cta-text strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }
.post-city-cta-arrow { color: var(--red); font-size: 1.4rem; flex-shrink: 0; }


/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
body.srp-ready .venue-card { animation: fadeUp .4s ease both; }


/* VISIT BTN (Ben Gittim) */
.visit-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--cream3);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
  flex-shrink: 0;
  color: var(--ink3);
  box-shadow: 0 2px 8px rgba(26,18,8,0.18);
}
.visit-btn:hover { border-color: var(--green); background: #edf5ef; }
.visit-btn.visited { background: var(--green); border-color: var(--green); color: #fff; }
.visit-count {
  font-size: 11px;
  color: var(--green);
  background: #edf5ef;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 500;
}

/* BANA ÖNER */
.suggest-bar {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(196,154,42,0.08), rgba(181,52,26,0.04));
  border: 2px solid var(--gold);
  border-radius: 12px;
  margin: 0 2rem 1rem;
}
.suggest-trigger-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: white;
  background: var(--gold);
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  cursor: pointer;
  letter-spacing: 0.8px;
  transition: background-color 0.3s cubic-bezier(0.32, 1.1, 0.64, 1), transform 0.3s cubic-bezier(0.32, 1.1, 0.64, 1), box-shadow 0.3s cubic-bezier(0.32, 1.1, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(196, 154, 42, 0.2);
}
.suggest-trigger-btn:hover {
  background: #d4a855;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 154, 42, 0.3);
}
.suggest-bar-sub {
  font-size: 13px;
  color: var(--ink2);
  font-weight: 400;
}
.suggest-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.suggest-overlay.open { opacity: 1; pointer-events: all; }
.suggest-modal {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(26,18,8,0.25);
  transform: scale(0.95) translateY(20px);
  transition: transform .35s cubic-bezier(0.34,1.56,0.64,1);
}
.suggest-overlay.open .suggest-modal {
  transform: scale(1) translateY(0);
}
.suggest-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.suggest-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.suggest-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
  font-weight: 500;
}
.suggest-budget-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.suggest-budget-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.suggest-budget-btn:hover { border-color: var(--ink3); }
.suggest-budget-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.suggest-cat-select {
  width: 100%;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink2);
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
  cursor: pointer;
  appearance: none;
}
.suggest-action-btn {
  width: 100%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--cream);
  background: var(--red);
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background .2s;
}
.suggest-action-btn:hover { background: var(--red2); }
.suggest-result-card {
  margin-top: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px;
  padding: 1.25rem;
}
.suggest-result-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream3);
  line-height: 1;
  margin-bottom: 4px;
  opacity: .6;
}
.suggest-result-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
}
.suggest-result-tags { margin-bottom: 10px; display: flex; gap: 6px; flex-wrap: wrap; }
.suggest-result-desc { font-size: 13px; color: var(--cream3); line-height: 1.5; margin-bottom: 12px; }
.suggest-result-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 10px;
}
.suggest-tip { color: var(--cream3); font-weight: 400; }
.suggest-result-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.suggest-go-link {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 12px;
  text-decoration: none;
  transition: background .15s;
}
.suggest-go-link:hover { background: var(--cream2); }
.suggest-again-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.suggest-again-btn:hover { background: rgba(255,255,255,.2); }
.suggest-no-result {
  margin-top: 1rem;
  font-size: 13px;
  color: var(--ink3);
  text-align: center;
  padding: 1rem;
  background: var(--cream2);
  border-radius: 8px;
}

/* SAVED PANEL — ROTA BUTONU */
.panel-route-btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--gold);
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  margin-left: auto;
}
.panel-route-btn:hover { background: var(--gold2); color: var(--cream); }
.saved-panel-inner { display: flex; align-items: center; gap: 12px; cursor: pointer; flex: 1; }

/* VENUE DETAIL PANEL */
.detail-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.5);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.detail-backdrop.open { opacity: 1; pointer-events: all; }

.detail-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 401;
  background: var(--cream);
  border-radius: 20px 20px 0 0;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,1.1,.64,1);
  overscroll-behavior: contain;
}
.detail-panel.open { transform: translateY(0); }

/* drag handle */
.detail-handle {
  width: 40px;
  height: 4px;
  background: var(--cream3);
  border-radius: 2px;
  margin: 12px auto 0;
}

.detail-hero {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-top: 8px;
  background: #1a1208;
}

/* CAROUSEL */
.detail-carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.detail-carousel-slide {
  flex-shrink: 0;
  flex-grow: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
}

.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: background-color .2s, width .2s, border-radius .2s;
  cursor: pointer;
}
.carousel-dot.active {
  width: 18px;
  border-radius: 3px;
  background: #fff;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26,18,8,.4);
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(4px);
  transition: background .15s, opacity .15s;
}
.carousel-arrow:hover { background: rgba(26,18,8,.65); }
.carousel-arrow.hidden { opacity: 0; pointer-events: none; }
.carousel-arrow-left { left: 12px; }
.carousel-arrow-right { right: 12px; }

.detail-hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.7) 0%, transparent 55%);
}
.detail-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(26,18,8,.45);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .15s;
}
.detail-close-btn:hover { background: rgba(26,18,8,.7); }

.detail-body {
  padding: 1.25rem 1.5rem 0;
}

.detail-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream3);
  line-height: 1;
  flex-shrink: 0;
}
.detail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  flex: 1;
}
.detail-rating-badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold2);
  background: #faf3e0;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.detail-action-btns {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.detail-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.25rem; }

.detail-divider {
  height: 1px;
  background: var(--cream3);
  margin: 1.25rem 0;
}

.detail-section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  font-weight: 500;
  margin-bottom: 6px;
}
.detail-desc {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
}
.detail-must-try {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--cream2);
  border: 1px solid var(--gold2);
  border-radius: 8px;
}
.must-try-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.must-try-content {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.detail-tip-block {
  background: #faf3e0;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--gold2);
  font-weight: 500;
  line-height: 1.5;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.detail-meta-item {
  background: var(--cream2);
  border-radius: 10px;
  padding: 12px 14px;
  overflow: hidden;
}
.detail-meta-item-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 4px;
}
.detail-meta-item-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
  word-wrap: break-word;
}
.meta-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.meta-link:hover {
  text-decoration: underline;
}
.meta-address {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
}

.detail-mini-map {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream3);
}

/* sticky CTA */
.detail-cta-bar {
  position: sticky;
  bottom: 0;
  background: var(--cream);
  border-top: 1px solid var(--cream3);
  padding: 1rem 1.5rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.detail-cta-primary {
  flex: 1 1 40%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--cream);
  background: var(--red);
  border: none;
  border-radius: 10px;
  padding: 13px 12px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.detail-cta-primary:hover { background: var(--red2); }
.detail-cta-secondary {
  flex: 1 1 25%;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  background: var(--cream2);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 13px 10px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.detail-cta-secondary:hover { background: var(--gold2); color: var(--cream); border-color: var(--gold2); }
.detail-cta-maps {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 10px;
  padding: 13px 16px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background .15s;
  white-space: nowrap;
}
.detail-cta-maps:hover { background: var(--cream3); }


@media (min-width: 1100px) {
  .detail-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 420px;
    height: 100vh;
    max-height: 100vh;
    border-radius: 20px 0 0 20px;
    transform: translateX(100%);
    z-index: 401;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(26,18,8,.16);
  }
  .detail-panel.open { transform: translateX(0); }
  .detail-handle { display: none; }
  body.srp-mode.map-expanded .detail-panel { width: 340px; }
}

@media (min-width: 700px) and (max-width: 1099px) {
  .detail-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(100%);
    width: 520px;
    border-radius: 20px 20px 0 0;
  }
  .detail-panel.open { transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════════ */
/* MOBIL BOTTOM SHEET (≤900px) — TripAdvisor tarzı */
/* ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .detail-panel {
    position: fixed !important;
    inset: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: 90vh !important;
    border-radius: 20px 20px 0 0 !important;
    transform: translateY(100%) !important;
    border: none !important;
    box-shadow: 0 -4px 32px rgba(26,18,8,.2) !important;
    z-index: 401 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
  }

  .detail-panel.open { 
    transform: translateY(0) !important; 
  }

  /* Swipe handle görünsün */
  .detail-handle { 
    display: block !important;
    margin: 14px auto 8px !important;
    width: 48px !important;
    height: 4px !important;
  }

  /* Panel açıkken backdrop göster */
  .detail-backdrop.open { 
    backdrop-filter: blur(2px) !important;
  }

  /* Hero görselin boy oranı mobil için optimize et */
  .detail-hero { 
    aspect-ratio: 3.5 / 2 !important;
    margin-top: 0 !important;
  }

  /* Body padding'i mobil için daralt */
  .detail-body {
    padding: 0.75rem 1.25rem 0 !important;
  }

  /* İçeriği daha kompakt yap */
  .detail-top-row {
    margin-bottom: 8px !important;
  }

  .detail-name {
    font-size: 1.25rem !important;
  }

  .detail-tags { 
    margin-bottom: 1rem !important; 
  }

  /* CTA bar'ı mobil'de optimize et */
  .detail-cta-bar {
    padding: 0.75rem 1rem !important;
    gap: 6px !important;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom)) !important;
  }

  .detail-cta-primary {
    flex: 1 !important;
    font-size: 1rem !important;
    padding: 11px 10px !important;
  }

  .detail-cta-maps {
    flex: 0 0 auto !important;
    padding: 11px 12px !important;
  }

  .detail-meta-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .detail-divider {
    margin: 1rem 0 !important;
  }

  .detail-section-label {
    margin-bottom: 4px !important;
  }

  .detail-desc {
    font-size: 13px !important;
  }

  /* Önemi az metaları 900px altında gizle */
  .detail-meta-item:nth-child(n+3) {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .hero-carousel-container { width: 100%; }
  .hero-carousel { max-width: 100%; }
}


@media (max-width: 768px) {
  .hero-carousel {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }
  .detail-hero { aspect-ratio: 4 / 2.5; }
}



/* Tablet landscape adjust */
@media (max-width: 1024px) {
  .hero {
    gap: 1.5rem;
  }
}

/* AUTH MODAL */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  backdrop-filter: blur(2px);
}

.auth-modal-overlay.open {
  display: flex;
  animation: fadeIn .2s ease;
}

.auth-modal {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  position: relative;
  width: 90%;
  box-shadow: 0 20px 60px rgba(26, 18, 8, 0.3);
  border: 1px solid var(--cream3);
  animation: slideUp .3s cubic-bezier(.32,1.1,.64,1);
}

.auth-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.auth-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.auth-modal-desc {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.auth-field {
  display: block;
}

.auth-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream2);
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}

.auth-input::placeholder {
  color: var(--ink3);
}

.auth-input:focus {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.1);
}

.auth-submit-btn {
  width: 100%;
  padding: 12px 16px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, transform .2s, box-shadow .2s;
  margin-top: 8px;
}

.auth-submit-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 52, 26, 0.28);
}

.auth-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--ink3);
}

.auth-switch-btn {
  border: none;
  background: transparent;
  color: var(--gold2);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.auth-switch-btn:hover {
  color: var(--gold);
  text-decoration: underline;
}

.auth-cancel-btn {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  color: var(--ink3);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}

.auth-cancel-btn:hover {
  background: var(--cream2);
  border-color: var(--ink3);
  color: var(--ink);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* VENUE COMMENTS & RATINGS */
.detail-avg-rating {
  font-size: 12px;
  background: var(--cream2);
  padding: 4px 12px;
  border-radius: 12px;
  margin-left: 12px;
  color: var(--gold);
  font-weight: 600;
}

.detail-rating-action {
  margin: 16px 0;
  padding: 16px;
  background: var(--cream2);
  border-radius: 8px;
  border: 1px solid var(--cream3);
}

.detail-rating-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-select-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating-stars {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rating-star {
  font-size: 28px;
  background: var(--cream);
  border: 2px solid var(--cream3);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--ink3);
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.rating-star:hover {
  transform: scale(1.15);
  color: var(--gold);
  border-color: var(--gold);
  background: #faf3e0;
  box-shadow: 0 4px 12px rgba(196, 154, 42, 0.2);
}

.detail-auth-btn {
  width: 100%;
  padding: 12px;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  color: var(--ink);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background-color .2s, border-color .2s, color .2s;
}

.detail-auth-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.detail-auth-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-action-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  color: var(--ink);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.detail-action-btn:hover {
  background: var(--cream2);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 154, 42, 0.15);
}

.detail-action-btn:active {
  transform: translateY(0);
}

.detail-comments-form {
  margin: 16px 0;
  padding: 16px;
  background: var(--cream2);
  border-radius: 8px;
  border: 1px solid var(--cream3);
}

.comment-input-row {
  margin-bottom: 12px;
}

.comment-user-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: #faf3e0;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.comment-textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: white;
  resize: vertical;
  outline: none;
  transition: border .2s;
  margin-bottom: 12px;
}

.comment-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.1);
}

.comment-form-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.comment-photo-btn,
.comment-submit-btn {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}

.comment-photo-btn {
  background: var(--cream3);
  color: var(--ink);
  border: 1px solid var(--cream3);
}

.comment-photo-btn:hover {
  background: var(--ink);
  color: white;
}

.comment-submit-btn {
  background: var(--red);
  color: white;
}

.comment-submit-btn:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 52, 26, 0.28);
}

.venue-comments-empty {
  text-align: center;
  color: var(--ink3);
  padding: 24px 16px;
  font-size: 13px;
  font-style: italic;
}

.venue-comment-item {
  padding: 16px;
  border-left: 3px solid var(--cream3);
  margin-bottom: 12px;
  background: white;
  border-radius: 0 8px 8px 0;
  transition: border-left-color .2s, background-color .2s, opacity .2s, box-shadow .2s;
}

.venue-comment-item:hover {
  border-left-color: var(--gold);
  box-shadow: 0 2px 8px rgba(26, 18, 8, 0.05);
}

.venue-comment-item.deleted {
  opacity: 0.6;
  background: var(--cream2);
}

.venue-comment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  align-items: center;
}

.venue-comment-author {
  font-weight: 600;
  color: var(--ink);
}

.venue-comment-rating {
  color: var(--gold);
  font-weight: 600;
  background: #faf3e0;
  padding: 2px 8px;
  border-radius: 4px;
}

.venue-comment-date {
  color: var(--ink3);
}

.venue-comment-actions {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.venue-comment-edit,
.venue-comment-delete {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color .2s, color .2s;
  color: var(--ink3);
}

.venue-comment-edit:hover {
  background: var(--cream2);
  color: var(--gold);
}

.venue-comment-delete:hover {
  background: #ffe8e8;
  color: var(--red);
}

.venue-comment-text {
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 13px;
}

.venue-comment-edit-textarea {
  width: 100%;
  min-height: 60px;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: white;
  outline: none;
}

.venue-comment-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.venue-comment-photo {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .2s;
  border: 1px solid var(--cream3);
}

.venue-comment-photo:hover {
  transform: scale(1.08);
}

/* USER PHOTOS GRID */
.venue-user-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.venue-user-photo-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform .2s;
  border: 1px solid var(--cream3);
}

.venue-user-photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(26, 18, 8, 0.15);
}

.venue-user-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-user-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.9), transparent);
  color: white;
  padding: 12px 8px 8px;
  font-size: 12px;
  line-height: 1.4;
  max-height: 60%;
  overflow: hidden;
}

.venue-user-photo-author {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .venue-user-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .venue-comment-photos {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (min-width: 1024px) {
  .venue-user-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* HERO COMMENT SECTION */
.hero-carousel-container {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}



/* LOGIN BUTTON */
.login-btn {
  background: var(--cream2);
  color: var(--ink2);
  border: 1px solid var(--cream3);
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.login-btn:hover {
  background: #faf3e0;
  border-color: var(--gold);
  color: var(--ink);
}

/* ══════════════════════════════════════════════════════════════ */
/* YELP-STYLE LANDING — Nav · Hero · Cats · Cities · Featured   */
/* ══════════════════════════════════════════════════════════════ */

/* ── NAV ─────────────────────────────────────────────── */
.ylp-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--cream3);
  box-shadow: 0 1px 8px rgba(26,18,8,.07);
}
.ylp-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 82px;
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 768px) {
  .ylp-nav-inner { padding: 0 1rem; }
}
.ylp-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
}
.ylp-logo .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.ylp-logo .logo-wordmark span {
  color: var(--red);
}
.ylp-logo .logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink3);
}

.ylp-nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.ylp-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  /* button reset */
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
.ylp-nav-link:hover { background: var(--cream2); color: var(--ink); }
.ylp-nav-login {
  font-size: 13px;
  font-weight: 500;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 20px;
  cursor: pointer;
  margin-left: 8px;
  transition: background .2s;
}
.ylp-nav-login:hover { background: var(--red2); }
.ylp-nav-profile { margin-left: 4px; }
.ylp-nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
  color: var(--ink);
}
.ylp-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--cream3);
  padding: 8px 24px 16px;
}
.ylp-mobile-menu.open { display: flex; }
.ylp-mobile-menu a {
  font-size: 15px;
  color: var(--ink2);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream3);
}
.ylp-mobile-menu a:last-child { border-bottom: none; }
.ylp-mobile-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink3);
  padding: 10px 0 6px;
}
.ylp-mobile-actions {
  display: flex;
  gap: 8px;
  padding: 14px 0 4px;
  border-top: 1px solid var(--cream3);
  margin-top: 4px;
}
.ylp-mobile-action-btn {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.ylp-mobile-action-review {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.ylp-mobile-action-review:hover { background: rgba(196,154,42,.08); }
.ylp-mobile-action-add {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.ylp-mobile-action-add:hover { background: var(--gold2); border-color: var(--gold2); }


/* ══════════════════════════════════════════════════════ */
/* CITY MODAL (cm-*)                                      */
/* ══════════════════════════════════════════════════════ */
.cm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.52);
  backdrop-filter: blur(5px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.cm-overlay.open { opacity: 1; pointer-events: all; }
.cm-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 24px 80px rgba(26,18,8,.18);
  transform: translateY(18px) scale(.98);
  transition: transform .24s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.cm-overlay.open .cm-modal { transform: translateY(0) scale(1); }

.cm-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 20px;
  border-bottom: 1px solid var(--cream3);
}
.cm-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.cm-logo span { color: var(--red); }
.cm-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.cm-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.cm-close:hover { background: var(--cream2); color: var(--ink); }

.cm-body { padding: 20px 24px 24px; }
.cm-sub {
  font-size: 13px;
  color: var(--ink3);
  margin: 0 0 14px;
}
.cm-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .12s, border-color .12s;
}
.cm-item:hover { background: #faf6f0; border-color: var(--cream3); }
.cm-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cm-item-info { flex: 1; min-width: 0; }
.cm-item-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.cm-item-tag {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 2px;
  display: block;
}
.cm-item-arrow { font-size: 20px; color: var(--ink3); flex-shrink: 0; }

/* Mobil menü link stili */
.ylp-mobile-menu-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 15px;
  color: var(--ink2);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream3);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.ylp-mobile-menu-link:last-of-type { border-bottom: none; }

/* ══════════════════════════════════════════════════════ */
/* REVIEW MODAL (rm-*)                                    */
/* ══════════════════════════════════════════════════════ */
.rm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.52);
  backdrop-filter: blur(5px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.rm-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.rm-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(26,18,8,.18);
  transform: translateY(18px) scale(.98);
  transition: transform .24s cubic-bezier(.22,1,.36,1);
}
.rm-overlay.open .rm-modal {
  transform: translateY(0) scale(1);
}
.rm-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px 20px;
  border-bottom: 1px solid var(--cream3);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}
.rm-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.rm-logo .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.rm-logo .logo-wordmark span {
  color: var(--red);
}
.rm-logo .logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 1px;
}
.rm-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.rm-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--ink3);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.rm-close:hover { background: var(--cream2); color: var(--ink); }

/* Steps */
.rm-step { padding: 24px; }
.rm-hidden { display: none !important; }

/* Step 1 — Search */
.rm-hint {
  font-size: 13px;
  color: var(--ink3);
  margin: 0 0 14px;
}
.rm-search-wrap {
  position: relative;
  margin-bottom: 16px;
}
.rm-search-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ink3);
  pointer-events: none;
}
.rm-search-input {
  width: 100%;
  padding: 12px 16px 12px 40px;
  border: 1.5px solid var(--cream3);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #faf6f0;
  outline: none;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
}
.rm-search-input:focus { border-color: var(--gold); background: #fff; }
.rm-search-input::placeholder { color: var(--ink3); }
.rm-results {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 340px;
  overflow-y: auto;
}
.rm-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .12s;
  border: 1px solid transparent;
}
.rm-result:hover { background: #faf6f0; border-color: var(--cream3); }
.rm-result-img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream2);
}
.rm-result-body { flex: 1; min-width: 0; }
.rm-result-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rm-result-meta { font-size: 12px; color: var(--ink3); margin-top: 2px; }
.rm-result-arrow { font-size: 18px; color: var(--ink3); flex-shrink: 0; }
.rm-no-result { text-align: center; color: var(--ink3); font-size: 14px; padding: 28px 0; }
.rm-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--ink3);
  padding: 4px 12px 8px;
}

/* Step 2 — Form */
.rm-selected-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #faf6f0;
  border: 1px solid var(--cream3);
  border-radius: 12px;
  margin-bottom: 28px;
}
.rm-selected-img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream2);
}
.rm-selected-info { flex: 1; min-width: 0; }
.rm-selected-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rm-selected-meta { font-size: 12px; color: var(--ink3); margin-top: 3px; }
.rm-change-btn {
  font-size: 12px;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.rm-change-btn:hover { background: rgba(196,154,42,.08); }

/* Star rating */
.rm-rating-section {
  text-align: center;
  margin-bottom: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3);
}
.rm-rating-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.rm-stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}
.rm-star {
  font-size: 42px;
  cursor: pointer;
  color: var(--cream3);
  transition: color .1s, transform .12s;
  line-height: 1;
  user-select: none;
}
.rm-star.lit { color: var(--gold); }
.rm-star:hover { transform: scale(1.18); }
.rm-rating-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink3);
  min-height: 20px;
  transition: color .15s;
  letter-spacing: .01em;
}
.rm-rating-label.has-rating { color: var(--gold); font-weight: 600; }

/* Text */
.rm-field { margin-bottom: 20px; }
.rm-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 8px;
}
.rm-req { color: var(--red); }
.rm-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream3);
  border-radius: 12px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #faf6f0;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color .15s, background .15s;
  box-sizing: border-box;
  line-height: 1.6;
}
.rm-textarea:focus { border-color: var(--gold); background: #fff; }
.rm-textarea::placeholder { color: var(--ink3); }
.rm-char-row {
  text-align: right;
  font-size: 12px;
  color: var(--ink3);
  margin-top: 5px;
}
.rm-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}
.rm-submit-btn:hover { background: var(--red2); }

/* Step 3 — Success */
.rm-success-step { text-align: center; padding: 48px 32px 36px; }
.rm-success-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #e6f4ea, #c5e1c8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #2e7d32;
  margin: 0 auto 22px;
}
.rm-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.rm-success-desc {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.65;
  margin: 0 0 28px;
}
.rm-success-link {
  display: inline-block;
  padding: 11px 26px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: background .18s;
  display: block;
  text-align: center;
}
.rm-success-link:hover { background: var(--gold2); }
.rm-success-close {
  background: none;
  border: none;
  font-size: 13px;
  color: var(--ink3);
  cursor: pointer;
  margin-top: 4px;
  text-decoration: underline;
}
.rm-success-close:hover { color: var(--ink); }

/* ── NAV SEPARATOR & MEKAN EKLE ───────────────────────── */
.ylp-nav-sep {
  width: 1px;
  height: 20px;
  background: var(--cream3);
  margin: 0 6px;
  flex-shrink: 0;
}
.ylp-nav-add-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  color: var(--ink2);
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.ylp-nav-add-btn:hover { background: var(--cream2); color: var(--ink); }

/* ── HERO ────────────────────────────────────────────── */
/* Hero → Featured yumuşak geçiş */
.ylp-hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ylp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://res.cloudinary.com/dsvdkrla1/image/upload/v1777122549/istanbul1.jpg');
  background-size: cover;
  background-position: center center;
  transition: opacity 0.18s ease;
}
#landing-page.hidden { display: none; }
.ylp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26,18,8,.72) 0%,
    rgba(26,18,8,.55) 60%,
    rgba(196,154,42,.25) 100%);
}
.ylp-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 860px;
  margin-bottom: 4vh;
}
.ylp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: opacity 0.18s ease;
}
.ylp-hero-title em { color: var(--gold); font-style: italic; }
.ylp-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  letter-spacing: .5px;
}

/* Search Bar */
/* Wrapper: dropdown'ı konumlandırmak için */
.ylp-search-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto 20px;
}

.ylp-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  overflow: hidden;
  height: 60px;
  position: relative;
  z-index: 2;
}

/* ── Arama öneri dropdown ── */
.ylp-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(26,18,8,.18);
  overflow: hidden;
  z-index: 300;
  border: 1px solid var(--cream3);
}
.ylp-search-dropdown.open { display: block; }

.ylp-sdrop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
  border-bottom: 1px solid var(--cream2);
}
.ylp-sdrop-item:last-child { border-bottom: none; }
.ylp-sdrop-item:hover { background: var(--cream); }

.ylp-sdrop-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.ylp-sdrop-img--ph {
  background: var(--cream2);
}

.ylp-sdrop-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.ylp-sdrop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ylp-sdrop-mstar {
  color: var(--gold);
  font-size: .95rem;
}
.ylp-sdrop-meta {
  font-size: 12px;
  color: var(--ink3);
}
.ylp-sdrop-tags {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}
.ylp-sdrop-tags span {
  font-size: 11px;
  color: var(--ink3);
  background: var(--cream2);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: capitalize;
  white-space: nowrap;
}
.ylp-sdrop-arrow {
  font-size: 14px;
  color: var(--red);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity .15s;
}
.ylp-sdrop-item:hover .ylp-sdrop-arrow { opacity: 1; }

.ylp-sdrop-empty {
  padding: 18px;
  text-align: center;
  color: var(--ink3);
  font-size: 14px;
}
.ylp-search-what {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 20px;
  gap: 10px;
  min-width: 0;
}
.ylp-search-where {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  flex-shrink: 0;
}
.ylp-search-ico { font-size: 1rem; flex-shrink: 0; color: var(--ink3); display: flex; align-items: center; }
.ylp-search-ico svg { fill: none !important; stroke: var(--ink3); }
.ylp-search-what input {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  width: 100%;
  min-width: 0;
}
.ylp-search-what input::placeholder { color: var(--ink3); }
.ylp-search-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: var(--cream3);
  color: var(--ink2);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, color .15s;
  padding: 0;
  margin-right: 4px;
}
.ylp-search-clear:hover { background: var(--ink3); color: #fff; }
.ylp-search-clear.visible { display: flex; }
.ylp-search-sep {
  width: 1px;
  height: 32px;
  background: var(--cream3);
  flex-shrink: 0;
}
.ylp-search-where select {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  padding-right: 4px;
}
.ylp-search-btn {
  background: var(--red);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0 30px;
  height: 100%;
  cursor: pointer;
  transition: background .2s;
  border-radius: 0 50px 50px 0;
  flex-shrink: 0;
  letter-spacing: .3px;
}
.ylp-search-btn:hover { background: var(--red2); }

/* Quick tags — tek satır yatay scroll strip */
.ylp-hero-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 0;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 768px) {
  .ylp-hero-tags {
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .ylp-hero-tags {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ylp-hero-tags::-webkit-scrollbar { display: none; }
.ylp-hero-tag {
  appearance: none;
  border: 1px solid rgba(255,255,255,.3);
  font: inherit;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,.1);
  white-space: nowrap;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: auto;
}
.ylp-hero-tag:hover,
.ylp-hero-tag:focus-visible {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.ylp-hero-tag:focus-visible {
  outline: 2px solid rgba(255,255,255,.85);
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .ylp-hero-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
}
@media (max-width: 480px) {
  .ylp-hero-tag {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* ── GENEL İÇ WRAPPER ───────────────────────────────── */
.ylp-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .ylp-inner { padding: 0 1rem; }
}
/* ── Section başlık bloğu ─────────────────────────────── */
.ylp-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.ylp-section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
/* Dekoratif altın çizgi */
.ylp-section-head::after {
  content: '';
  display: block;
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold2) 25%,
    var(--gold2) 75%,
    transparent 100%);
  margin: 14px auto 0;
  opacity: .8;
}

.ylp-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 32px;
  line-height: 1.2;
}
/* section-head içindeyken margin kaldır, ::after üstlenir */
.ylp-section-head .ylp-section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 0;
  line-height: 1.1;
}

/* ── KATEGORİLER ─────────────────────────────────────── */
/* ── ŞEHİRLER ────────────────────────────────────────── */
.ylp-cities {
  padding: 56px 0;
  background: var(--cream);
}
.ylp-cities-wrap {
  position: relative;
}
/* Sağ tarafa yatay kaydırma ipucu fade */
.ylp-cities-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--cream));
  pointer-events: none;
  z-index: 1;
  transition: opacity .3s;
}
.ylp-cities-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
   scroll-snap-type: x proximity;
   scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.ylp-cities-grid.is-holding {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.ylp-cities-grid.is-scrolling {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.ylp-cities-grid::-webkit-scrollbar { display: none; }
.ylp-cities-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,18,8,.25);
  transition: opacity .2s, background .2s;
  opacity: .85;
}
.ylp-cities-arrow:hover { opacity: 1; background: var(--red); }
.ylp-cities-arrow.hidden { opacity: 0; pointer-events: none; }
.ylp-cities-arrow-left  { left: -22px; }
.ylp-cities-arrow-right { right: -22px; }
.ylp-city-card {
  position: relative;
  border-radius: 14px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 310px;
  scroll-snap-align: start;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  aspect-ratio: 3 / 4;
  box-shadow: 0 4px 16px rgba(26,18,8,.1);
  transition: transform .3s cubic-bezier(.32,1.1,.64,1), box-shadow .3s;
}
.ylp-city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,18,8,.18);
}
.ylp-city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s ease;
}
.ylp-city-card picture { display: block; width: 100%; height: 100%; }
.ylp-city-card:hover img { transform: scale(1.07); }
.ylp-city-card:hover picture img { transform: scale(1.07); }
.ylp-city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.85) 0%, rgba(26,18,8,.2) 55%, transparent 100%);
}
.ylp-city-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ylp-city-badge {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.ylp-city-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  display: block;
}
.ylp-city-count {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* ── ÖNE ÇIKAN MEKANLAR ─────────────────────────────── */
/* .ylp-featured → ticker bölümünde yeniden tanımlandı */
.ylp-featured-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.ylp-see-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.ylp-see-all:hover { color: var(--red2); }

.ylp-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ylp-venue-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--cream3);
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.ylp-venue-card:hover {
  box-shadow: 0 10px 32px rgba(26,18,8,.12);
  transform: translateY(-4px);
}
.ylp-venue-img-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex-shrink: 0;
}
.ylp-venue-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.ylp-venue-img-wrap picture { display: block; width: 100%; height: 100%; }
.ylp-venue-card:hover .ylp-venue-img-wrap img { transform: scale(1.06); }
.ylp-venue-city-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(26,18,8,.55);
  color: #fff;
  padding: 3px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.ylp-venue-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.ylp-venue-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.ylp-venue-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ylp-stars {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold2);
}
.ylp-price {
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 1px;
}
.ylp-venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ylp-tag {
  font-size: 12px;
  color: var(--ink3);
  background: var(--cream2);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: capitalize;
}

/* Skeleton loader */
.ylp-venue-skeleton {
  border-radius: 12px;
  aspect-ratio: 3 / 2;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream3) 50%, var(--cream2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Ticker / Otomatik Kaydırmalı Karousel ──────────────── */
.ylp-featured {
  padding: 56px 0 72px;
  background: var(--cream);
  overflow: hidden;
}
.ylp-featured-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#featured-hero {
  transition: opacity .32s ease, transform .32s ease;
}
/* Skeleton loader — JS yüklenene kadar */
#featured-hero:empty::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream3) 50%, var(--cream2) 75%);
  background-size: 400% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
}
#featured-grid:empty::before {
  content: '';
  display: block;
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--cream2) 25%, var(--cream3) 50%, var(--cream2) 75%);
  background-size: 400% 100%;
  animation: skeletonShimmer 1.4s ease infinite;
}
@keyframes skeletonShimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
.ylp-featured-hero-shell {
  position: relative;
}
.ylp-featured-hero-stage {
  position: relative;
  cursor: grab;
  will-change: transform;
  touch-action: pan-y;
  overflow: hidden;
}
.ylp-featured-hero-stage.dragging {
  cursor: grabbing;
  user-select: none;
}
.ylp-featured-hero-layer {
  position: absolute;
  inset: 0;
}
.ylp-featured-hero-layer.is-current { z-index: 1; }
.ylp-featured-hero-layer.is-next { z-index: 2; pointer-events: none; }
.ylp-featured-hero-layer .ylp-featured-hero-card {
  height: 100%;
}
.ylp-featured-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(16,13,9,.46);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background-color .2s, border-color .2s, transform .2s;
}
.ylp-featured-hero-nav--prev { left: 12px; }
.ylp-featured-hero-nav--next { right: 12px; }
.ylp-featured-hero-nav:hover {
  background: rgba(16,13,9,.72);
  border-color: rgba(255,255,255,.68);
}
.ylp-featured-empty {
  border: 1px solid var(--cream3);
  border-radius: 12px;
  padding: 24px;
  background: var(--cream2);
  color: var(--ink2);
  font-size: 14px;
  text-align: center;
}
.ylp-featured-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(26,18,8,.12);
  background: #101010;
  box-shadow: 0 12px 34px rgba(26,18,8,.16);
}
.ylp-featured-hero-media {
  position: relative;
  min-height: 360px;
}
.ylp-featured-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ylp-featured-hero-panel {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 20% 50%, rgba(196,154,42,.2), transparent 58%),
    linear-gradient(120deg, #100d09 0%, #19120b 56%, #120f0b 100%);
  color: #f4eee3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}
.ylp-featured-kicker {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.ylp-featured-rank {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
  color: rgba(244,238,227,.18);
  line-height: 1;
}
.ylp-featured-name {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ylp-featured-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244,238,227,.82);
  max-width: 44ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: 72px;
}
.ylp-featured-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ylp-featured-meta-row .ylp-stars {
  background: rgba(196,154,42,.2);
  color: #f6cd6c;
  padding: 4px 10px;
  border-radius: 999px;
}
.ylp-featured-meta-row .ylp-price {
  background: rgba(255,255,255,.1);
  color: rgba(244,238,227,.9);
  padding: 4px 10px;
  border-radius: 999px;
}
.ylp-featured-meta-row .ylp-tag {
  background: rgba(255,255,255,.08);
  color: rgba(244,238,227,.85);
  border: 1px solid rgba(255,255,255,.14);
}
.ylp-featured-cta {
  margin-top: auto;
  margin-left: auto;
  align-self: flex-end;
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color .2s, border-color .2s;
}
.ylp-featured-hero-card:hover .ylp-featured-cta {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
}
.ylp-featured-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ylp-featured-strip-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ylp-featured-strip-head {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(26,18,8,.62);
  border-top: 1px solid var(--cream3);
  padding-top: 13px;
}
.ylp-featured-scroll-controls {
  display: inline-flex;
  gap: 8px;
  margin-top: 8px;
}
.ylp-featured-scroll-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--cream3);
  background: #fff;
  color: var(--ink2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, opacity .2s;
}
.ylp-featured-scroll-btn:hover:not(:disabled) {
  background: var(--cream2);
  border-color: var(--gold);
  color: var(--ink);
}
.ylp-featured-scroll-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.ylp-featured-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  cursor: grab;
}
.ylp-featured-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.ylp-featured-scroll-wrap.dragging {
  cursor: grabbing;
  user-select: none;
}
.ylp-featured-grid {
  display: flex;
  gap: 14px;
  width: max-content;
}
.ylp-featured-mini-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: clamp(230px, 24vw, 310px);
  flex: 0 0 clamp(230px, 24vw, 310px);
  cursor: pointer;
  transition: box-shadow .2s;
}
.ylp-featured-mini-card:hover {
  box-shadow: 0 8px 24px rgba(26,18,8,.1);
}
.ylp-featured-mini-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream2);
}
.ylp-featured-mini-cover picture { display: block; width: 100%; height: 100%; }
.ylp-featured-mini-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.ylp-featured-mini-card:hover .ylp-featured-mini-cover img { transform: scale(1.04); }
.ylp-featured-mini-rank {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  color: var(--cream);
  padding: 8px 0 0 14px;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  letter-spacing: -.02em;
  pointer-events: none;
}
.ylp-featured-mini-cover .ylp-venue-city-tag {
  top: 12px;
  left: auto;
  right: 12px;
  border-radius: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .18em;
  background: var(--cream);
  color: var(--ink);
  padding: 5px 9px;
}
.ylp-featured-mini-body {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ylp-featured-mini-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.ylp-featured-mini-rating {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
}
.ylp-featured-mini-rating b {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}
.ylp-featured-mini-rating .star { color: var(--gold); font-size: 13px; }
.ylp-featured-mini-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--gold);
  font-weight: 500;
}
.ylp-featured-mini-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.ylp-featured-mini-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.ylp-featured-mini-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
  padding: 3px 8px;
  border: 1px solid var(--cream3);
}
.ylp-featured-mini-dishes {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink2);
  margin: 0 0 14px;
  padding-top: 10px;
  border-top: 1px solid var(--cream3);
}
.ylp-featured-mini-dishes b {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.ylp-featured-mini-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  padding-top: 4px;
}
.ylp-featured-mini-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
}
.ylp-featured-mini-card:hover .ylp-featured-mini-link {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── FOOTER ──────────────────────────────────────────── */
.ylp-footer {
  background: var(--cream2);
  color: var(--ink2);
  border-top: 1px solid var(--cream3);
  position: relative;
}
.ylp-footer-main {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--cream3);
}
.ylp-footer-brand {
  display: flex;
  flex-direction: column;
}
.ylp-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.3px;
  line-height: 1;
  margin-bottom: 12px;
  text-decoration: none;
  display: block;
}
.ylp-footer-logo span { color: var(--red); }
.ylp-footer-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink3);
  line-height: 1.65;
  margin-bottom: 24px;
}
.ylp-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}
.ylp-footer-contact a {
  font-size: 12px;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ylp-footer-contact a:hover { color: var(--red); }
.ylp-footer-contact a svg { opacity: .6; flex-shrink: 0; }
.ylp-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.ylp-footer-col {
  display: flex;
  flex-direction: column;
}
.ylp-footer-col-title {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink2);
  font-weight: 700;
  margin-bottom: 16px;
}
.ylp-footer-col a {
  font-size: 13.5px;
  color: var(--ink2);
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.3;
  transition: color .15s, padding-left .15s;
}
.ylp-footer-col a:hover { color: var(--red); padding-left: 4px; }
.ylp-footer-col.cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  align-content: start;
}
.ylp-footer-col.cities .ylp-footer-col-title { grid-column: 1 / -1; }
.ylp-footer-col.cities a {
  border-bottom: 1px solid var(--cream3);
  padding: 6px 0;
}
.ylp-footer-col.cities a:nth-last-child(-n+2) { border-bottom: none; }
.ylp-footer-col.about p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink3);
  margin-bottom: 18px;
}
.ylp-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  letter-spacing: .4px;
  color: var(--ink3);
  border: 1px solid var(--cream3);
  border-radius: 20px;
  padding: 5px 12px;
  width: fit-content;
}
.ylp-footer-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: .7;
  flex-shrink: 0;
}
.ylp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.ylp-footer-copy { font-size: 11.5px; color: var(--ink3); }
.ylp-footer-copy strong { color: var(--ink2); font-weight: 500; }
.ylp-footer-legal { display: flex; align-items: center; gap: 4px; }
.ylp-footer-legal a {
  font-size: 11.5px;
  color: var(--ink3);
  text-decoration: none;
  padding: 2px 8px;
  transition: color .2s;
}
.ylp-footer-legal a:hover { color: var(--red); }
.ylp-footer-legal-sep { color: var(--cream3); font-size: 11px; user-select: none; }
.ylp-footer-social { display: flex; gap: 3px; }
.ylp-footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.ylp-footer-social a:hover { color: var(--red); background: rgba(181,52,26,.08); }

@media (max-width: 960px) {
  .ylp-footer-main { grid-template-columns: 1fr; gap: 36px; padding: 44px 0 40px; }
  .ylp-footer-links { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .ylp-footer-links { grid-template-columns: 1fr 1fr; }
  .ylp-footer-col.about { grid-column: 1 / -1; }
  .ylp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── LANDING (eski app.js uyumluluğu) ───────────────── */
#landing-page.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════════ */
/* İŞLETME KAYIT CTA BÖLÜMÜ                                         */
/* ══════════════════════════════════════════════════════════════════ */
.ylp-biz-cta-section {
  background: var(--cream);
  border-top: 1px solid var(--cream3);
  border-bottom: 1px solid var(--cream3);
  padding: 46px 0 42px;
  position: relative;
  overflow: hidden;
}
.ylp-biz-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,154,42,.08) 0%, transparent 70%);
  pointer-events: none;
}
.ylp-biz-cta-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: center;
}
/* LEFT */
.ylp-biz-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 600;
  margin-bottom: 14px;
}
.ylp-biz-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 12px;
}
.ylp-biz-sub {
  font-size: 14px;
  color: var(--ink3);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 620px;
}
.ylp-biz-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.ylp-biz-benefits li {
  font-size: 13.5px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ylp-biz-benefit-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.ylp-biz-open-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(196,154,42,.35);
  text-decoration: none;
}
.ylp-biz-open-btn:hover {
  background: #d4a830;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,154,42,.45);
}
/* RIGHT — mock card */
.ylp-biz-cta-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.ylp-biz-mock-card {
  width: 100%;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(26,18,8,.2);
  border: 1px solid rgba(196,154,42,.2);
}
.ylp-biz-mock-img {
  height: 142px;
  background-size: cover;
  background-position: center;
  background-color: #2d1e0e;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.ylp-biz-mock-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,18,8,.45) 100%);
  pointer-events: none;
}
.ylp-biz-mock-badge {
  background: rgba(196,154,42,.92);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 3px 9px;
  border-radius: 20px;
}
.ylp-biz-mock-body {
  padding: 12px 14px 14px;
}
.ylp-biz-mock-cat {
  font-size: 10px;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(26,18,8,.5);
  margin-bottom: 4px;
}
.ylp-biz-mock-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.ylp-biz-mock-stars {
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 8px;
}
.ylp-biz-mock-stars span {
  color: var(--ink);
  font-weight: 600;
  margin-left: 4px;
}
.ylp-biz-mock-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.ylp-biz-mock-tags span {
  background: rgba(196,154,42,.12);
  color: #7a5c1a;
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(196,154,42,.2);
}
.ylp-biz-mock-tip {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ink3);
  line-height: 1.4;
}
.ylp-biz-mock-tip em { font-style: normal; font-weight: 600; color: var(--ink2); }
.ylp-biz-mock-caption {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink3);
  letter-spacing: .5px;
  margin: 0;
}
/* Stats row */
.ylp-biz-mock-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.ylp-biz-stat {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ylp-biz-stat:last-child { border-right: none; }
.ylp-biz-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.ylp-biz-stat-l {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  letter-spacing: .5px;
}

/* ══════════════════════════════════════════════════════════════════ */
/* İŞLETME KAYIT MODAL                                              */
/* ══════════════════════════════════════════════════════════════════ */
.biz-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.72);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.biz-modal-overlay.active {
  display: flex;
}
.biz-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: bizModalIn .28s ease;
}
@keyframes bizModalIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
/* Modal header */
.biz-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f0ebe3;
  flex-shrink: 0;
}
.biz-modal-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.biz-modal-logo .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.biz-modal-logo .logo-wordmark span {
  color: var(--red);
}
.biz-modal-logo .logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 1px;
}
.biz-modal-title-wrap { flex: 1; min-width: 0; }
.biz-modal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.biz-modal-subtitle {
  font-size: 11.5px;
  color: rgba(26,18,8,.45);
  margin-top: 2px;
}
.biz-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f5f0e8;
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
  line-height: 1;
  padding: 0;
}
.biz-modal-close:hover { background: #ece4d5; }
/* Progress steps */
.biz-progress-wrap {
  padding: 16px 24px 12px;
  border-bottom: 1px solid #f0ebe3;
  flex-shrink: 0;
  background: #fdf9f4;
}
.biz-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.biz-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
}
.biz-step-dot span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8e0d4;
  color: rgba(26,18,8,.4);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.biz-step-dot label {
  font-size: 10.5px;
  color: rgba(26,18,8,.4);
  letter-spacing: .5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .25s;
}
.biz-step-dot.active span {
  background: var(--gold);
  color: #fff;
}
.biz-step-dot.active label { color: var(--ink); }
.biz-step-dot.done span {
  background: var(--ink);
  color: #fff;
}
.biz-step-dot.done label { color: var(--ink); }
.biz-step-line {
  flex: 1;
  height: 2px;
  background: #e8e0d4;
  margin: 0 10px;
  margin-bottom: 15px;
  max-width: 80px;
  transition: background .25s;
}
/* Modal body — scrollable */
.biz-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 24px 8px;
}
.biz-step.hidden { display: none !important; }
.biz-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}
.biz-step-desc {
  font-size: 13.5px;
  color: rgba(26,18,8,.5);
  margin: 0 0 20px;
  line-height: 1.5;
}
/* Field styles */
.biz-field-group {
  margin-bottom: 16px;
}
.biz-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.biz-label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(26,18,8,.65);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.biz-req { color: var(--red); }
.biz-optional { font-weight: 400; opacity: .55; font-size: 11px; }
.biz-input {
  width: 100%;
  border: 1.5px solid #e0d8cc;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 14px;
  color: var(--ink);
  background: #fdfaf6;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
  box-sizing: border-box;
}
.biz-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,.12);
  background: #fff;
}
.biz-input.biz-input-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(181,52,26,.1);
  animation: bizShake .3s ease;
}
@keyframes bizShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.biz-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1208' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; cursor: pointer; }
.biz-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}
.biz-char-count {
  font-size: 11.5px;
  color: rgba(26,18,8,.35);
  text-align: right;
  margin-top: 4px;
}
/* Price buttons */
.biz-price-btns {
  display: flex;
  gap: 10px;
}
.biz-price-btn {
  flex: 1;
  padding: 9px 8px;
  border: 1.5px solid #e0d8cc;
  background: #fdfaf6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(26,18,8,.55);
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s, box-shadow .2s;
  font-family: inherit;
}
.biz-price-btn:hover { border-color: var(--gold); color: var(--ink); }
.biz-price-btn.active {
  border-color: var(--gold);
  background: rgba(196,154,42,.1);
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(196,154,42,.12);
}
/* Feature checkboxes */
.biz-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.biz-feature-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(26,18,8,.75);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 7px;
  border: 1.5px solid #e8e2d8;
  background: #fdfaf6;
  transition: border-color .15s, background .15s;
  user-select: none;
}
.biz-feature-check:hover { border-color: var(--gold); background: rgba(196,154,42,.05); }
.biz-feature-check input { accent-color: var(--gold); flex-shrink: 0; }
.biz-terms-row {
  margin-top: 12px;
  padding: 12px;
  background: #fdf9f0;
  border-radius: 8px;
  border: 1px solid rgba(196,154,42,.2);
}
.biz-terms-row .biz-feature-check {
  border: none;
  background: none;
  padding: 0;
  font-size: 12.5px;
  color: rgba(26,18,8,.6);
  line-height: 1.5;
}
/* Modal footer */
.biz-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #f0ebe3;
  background: #fdf9f4;
  flex-shrink: 0;
}
.biz-step-indicator {
  font-size: 12px;
  color: rgba(26,18,8,.4);
  font-weight: 600;
  letter-spacing: .5px;
}
.biz-btn-prev {
  background: none;
  border: 1.5px solid #e0d8cc;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(26,18,8,.55);
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
  font-family: inherit;
}
.biz-btn-prev:hover { border-color: var(--ink); color: var(--ink); }
.biz-btn-next {
  background: var(--ink);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background .15s, transform .1s;
  font-family: inherit;
  letter-spacing: .3px;
}
.biz-btn-next:hover { background: #2d1e0e; transform: translateY(-1px); }
/* Success screen */
.biz-step-success {
  text-align: center;
  padding: 20px 0 24px;
}
.biz-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), #d4a830);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 28px rgba(196,154,42,.35);
}
.biz-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.biz-success-desc {
  font-size: 14px;
  color: rgba(26,18,8,.55);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 16px;
}
.biz-success-summary {
  background: #fdf9f0;
  border: 1px solid rgba(196,154,42,.25);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto 20px;
}
.biz-close-btn { margin-top: 0 !important; }
/* Toast */
.biz-toast {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.biz-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Fotoğraf upload */
.biz-photo-drop-zone {
  border: 2px dashed #d8d0c4;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  background: #fdfaf6;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}
.biz-photo-drop-zone:hover,
.biz-photo-drop-zone.drag-over {
  border-color: var(--gold);
  background: rgba(196,154,42,.05);
}
.biz-photo-drop-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}
.biz-photo-drop-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.biz-photo-drop-hint {
  font-size: 12px;
  color: rgba(26,18,8,.4);
}
.biz-photo-previews {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.biz-photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #e0d8cc;
  background: #f5f0e8;
}
.biz-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biz-photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(26,18,8,.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .15s;
}
.biz-photo-thumb-remove:hover { background: var(--red); }
.biz-photo-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,18,8,.55);
  color: #fff;
  font-size: 9px;
  text-align: center;
  padding: 3px 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 520px) {
  .biz-photo-previews { grid-template-columns: repeat(3, 1fr); }
}

/* Responsive — biz section */
@media (max-width: 860px) {
  .ylp-biz-cta-wrap { grid-template-columns: 1fr; gap: 20px; }
  .ylp-biz-cta-right { display: none; }
  .ylp-biz-headline { font-size: 2rem; }
}
@media (max-width: 520px) {
  .ylp-biz-cta-section { padding: 36px 0 34px; }
  .ylp-biz-headline { font-size: 1.7rem; }
  .biz-field-row { grid-template-columns: 1fr; }
  .biz-features-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .ylp-venue-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .ylp-nav-inner { height: 74px; }
  .ylp-logo {
    gap: 1px;
    margin-right: 14px;
  }
  .ylp-logo .logo-wordmark { font-size: 22px; }
  .ylp-logo .logo-sub { font-size: 8px; letter-spacing: 2.5px; }
  .ylp-logo img,
  .ylp-logo-img {
    height: 50px;
    width: auto;
  }
  /* Mobilde Blog ve Mekan Ekle direkt görünsün */
  .ylp-nav-right .ylp-nav-link { font-size: 12px; padding: 5px 8px; }
  .ylp-nav-sep { display: none; }
  .ylp-nav-add-btn { font-size: 11px; padding: 5px 8px; }
  .ylp-nav-login { font-size: 12px; padding: 6px 12px; margin-left: 2px; }
  .ylp-nav-hamburger { display: none; }
  .ylp-mobile-menu { display: none !important; }
  /* Giriş Yap kompakt metin */
  .nav-short { display: inline; }
  .nav-full { display: none; }
  .ylp-hero { height: calc(100vh - 64px); min-height: 480px; }
  .ylp-hero-title { font-size: 2rem; }
  /* Arama bar — mobilde tek satır pill (wrap yok) */
  .ylp-search-bar { border-radius: 50px; height: 54px; flex-wrap: nowrap; }
  .ylp-search-dropdown { border-radius: 14px; }
  .ylp-search-what { padding: 0 10px 0 16px; }
  .ylp-search-what input { font-size: 13px; }
  .ylp-search-what input::placeholder { font-size: 13px; }
  .ylp-search-sep { width: 1px; height: 26px; }
  .ylp-search-where { padding: 0 8px; }
  .ylp-search-where select { font-size: 13px; }
  .ylp-search-btn { border-radius: 0 50px 50px 0; width: auto; height: 100%; padding: 0 16px; font-size: 13px; white-space: nowrap; }
  .ylp-city-card { flex: 0 0 200px; }
  .ylp-featured-hero-nav { width: 34px; height: 34px; font-size: 22px; }
  .ylp-featured-hero-card { grid-template-columns: 1fr; }
  .ylp-featured-hero-media { min-height: 300px; }
  .ylp-featured-hero-panel { gap: 10px; }
  .ylp-featured-mini-card {
    width: clamp(220px, 52vw, 280px);
    flex-basis: clamp(220px, 52vw, 280px);
  }
  .ylp-cities-arrow-left  { left: -10px; }
  .ylp-cities-arrow-right { right: -10px; }
  .ylp-venue-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ylp-footer-top { gap: 32px; }
  .ylp-footer-brand { flex: 0 0 100%; }
}

@media (min-width: 801px) {
  #featured-hero,
  .ylp-featured-hero-shell,
  .ylp-featured-hero-stage,
  .ylp-featured-hero-card {
    height: 430px;
  }

  .ylp-featured-hero-media,
  .ylp-featured-hero-panel {
    height: 100%;
  }
}
@media (max-width: 520px) {
  .ylp-hero-content { padding: 0 16px; }
  .ylp-city-card { flex: 0 0 160px; }
  .ylp-featured-hero-media { min-height: 230px; }
  .ylp-featured-scroll-controls { display: none; }
  .ylp-featured-mini-card {
    width: clamp(210px, 84vw, 260px);
    flex-basis: clamp(210px, 84vw, 260px);
  }
  .ylp-venue-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ylp-inner { padding: 0 16px; }
  .ylp-cities, .ylp-featured { padding: 40px 0; }
  .ylp-footer-links { gap: 28px; }
}

@media (max-width: 430px) {
  .ylp-nav-inner { padding: 0 10px; }
  .ylp-nav-right { gap: 3px; }
  .ylp-nav-right .ylp-nav-link { font-size: 11px; padding: 5px 6px; }
  .ylp-nav-add-btn { padding: 5px 6px; font-size: 11px; }
  .ylp-nav-login { padding: 6px 8px; font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════════ */
/* SRP (Search Results Page) — Yelp-tarzı 3-Kolon Layout            */
/* Nav · Sol Filtre · Orta Liste · Sağ Harita                       */
/* ══════════════════════════════════════════════════════════════════ */

/* body override — SRP sayfası için scroll'u ortadan kaldır */
body.srp-mode {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  display: flex !important;
  flex-direction: column;
  min-height: 100vh;
}

/* ── SRP NAV ───────────────────────────────────────────── */
.srp-nav {
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 82px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream3);
  box-shadow: 0 1px 6px rgba(26,18,8,.06);
  z-index: 200;
}
.srp-nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr minmax(200px, 580px) 1fr;
  align-items: center;
  gap: 12px;
}
.srp-nav-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.srp-nav-logo .logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.3px;
  color: var(--ink);
  line-height: 1;
}
.srp-nav-logo .logo-wordmark span {
  color: var(--red);
}
.srp-nav-logo .logo-sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--ink3);
}

.srp-nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  border-radius: 24px;
  padding: 0 14px;
  height: 42px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.srp-nav-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,42,.1);
  background: #fff;
}
.srp-nav-search-ico { font-size: 0.95rem; flex-shrink: 0; display: flex; align-items: center; color: var(--ink); }
.srp-nav-search-ico svg { fill: none !important; stroke: var(--ink); width: 16px; height: 16px; }
.srp-nav-search .search-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  width: 100%;
}
.srp-nav-search .search-input::placeholder { color: var(--ink3); }

.srp-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  flex-shrink: 0;
}
/* Şehir pill butonları */
.srp-city-pills {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  width: 200px;
  flex-shrink: 0;
}
.srp-city-pills::-webkit-scrollbar { display: none; }
.srp-city-pills.dragging { cursor: grabbing; }
.srp-city-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 16px;
  transition: background-color .15s, border-color .15s, color .15s;
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.srp-city-pill:hover { background: var(--cream2); color: var(--ink); }
.srp-city-pill.active {
  background: var(--cream2);
  border-color: var(--cream3);
  color: var(--ink);
  font-weight: 600;
}

/* Arama temizle butonu */
.srp-search-clear {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink3);
  font-size: 18px;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.srp-search-clear:hover { color: var(--ink); }

/* Breadcrumb */
.srp-breadcrumb {
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
  font-size: 12px;
  flex-shrink: 0;
}
.srp-bc-link {
  color: var(--ink3);
  text-decoration: none;
  transition: color .15s;
}
.srp-bc-link:hover { color: var(--ink); }
.srp-bc-sep { color: var(--ink3); opacity: .4; font-size: 11px; }
.srp-bc-current { color: var(--ink2); font-weight: 500; }

/* Eski select — gizli kalacak */
.srp-city-select { display: none; }
.srp-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .15s;
}
.srp-nav-link:hover { background: var(--cream2); }
/* Mekan sayfası navındaki "Mekan Ekle" butonu */
.srp-nav-add-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: none;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.srp-nav-add-btn:hover { background: var(--gold); color: #fff; }
.srp-cities-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.srp-cities-btn:hover { background: var(--cream2); color: var(--ink); }
.srp-login-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.srp-login-btn:hover { background: var(--red2); }
.srp-profile-btn {
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .2s;
}
.srp-profile-btn:hover { background: var(--cream2); }

/* ── 3-KOLON GRID ──────────────────────────────────────── */
.srp-body {
  display: grid;
  grid-template-columns: 300px 1fr 440px;
  grid-template-rows: 1fr;
  flex: 1;
  min-height: 0;
  height: 100%;
  align-items: start;
}

/* ── SOL: SIDEBAR ──────────────────────────────────────── */
.srp-sidebar {
  overflow-y: auto;
  background: var(--cream);
  padding: 20px 16px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 82px;
  max-height: calc(100vh - 82px);
  align-self: start;
}
.srp-sidebar::-webkit-scrollbar { width: 4px; }
.srp-sidebar::-webkit-scrollbar-thumb { background: var(--cream3); border-radius: 4px; }

.srp-sidebar-heading {
  display: none;
}
.srp-filter-drawer-close {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  background: #fff;
  border: 1px solid var(--cream3);
  border-radius: 14px;
  padding: 5px 10px;
  cursor: pointer;
}
.srp-filter-drawer-close:hover {
  border-color: var(--gold);
  color: var(--ink);
}
.srp-filter-apply-btn {
  display: none;
}
.srp-sidebar-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}
.srp-sidebar-count {
  font-size: 12px;
  color: var(--ink3);
  margin-top: 4px;
}

.srp-category-hub {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 16px 0 0;
}

.srp-category-hub::before {
  content: 'Şehrin En İyi Mekanları';
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 8px;
}

.srp-category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  padding: 7px 8px 7px 10px;
  border-radius: 7px;
  border-left: 2px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, padding-left .15s ease;
}

.srp-category-link::after {
  content: '›';
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: var(--cream3);
  flex-shrink: 0;
  transition: color .15s ease, transform .15s ease;
}

.srp-category-link:hover {
  color: var(--red);
  background: var(--cream2);
  border-left-color: var(--gold);
  padding-left: 13px;
}

.srp-category-link:hover::after {
  color: var(--gold);
  transform: translateX(2px);
}

.srp-filter-section {
  padding: 16px 0;
  border-bottom: 1px solid var(--cream3);
}

/* Custom Filter Styles */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.toggle-switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--cream3);
  transition: .3s;
  border-radius: 20px;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
input:checked + .toggle-slider {
  background-color: var(--red);
}
input:checked + .toggle-slider:before {
  transform: translateX(16px);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
}
.custom-select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: var(--ink3);
}
.filter-dropdown {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 12px 36px 12px 14px;
  border: 1px solid var(--cream3);
  border-radius: 8px;
  background-color: #f9f9f9;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  outline: none;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}
.filter-dropdown:hover {
  border-color: rgba(0,0,0,0.3);
  background-color: #fff;
}
.filter-dropdown:focus {
  border-color: var(--gold);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(196, 154, 42, 0.15);
}

.srp-filter-section:last-child { border-bottom: none; }
.srp-filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.srp-collapse-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink3);
  font-size: 18px;
  padding: 0 2px;
  line-height: 1;
  transition: transform .2s, color .15s;
  margin-bottom: 0;
  flex-shrink: 0;
}
.srp-collapse-btn:hover { color: var(--ink); }
.srp-filter-section.collapsed .srp-collapse-btn { transform: rotate(-90deg); }
.srp-filter-section.collapsed .srp-filters,
.srp-filter-section.collapsed .srp-price-btns,
.srp-filter-section.collapsed .srp-sort-select {
  display: none;
}

/* Aktif filtreler bar */
.srp-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 0 0 14px;
  margin-bottom: 4px;
}
.afilter-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  background: var(--cream2);
  border: 1px solid var(--cream3);
  color: var(--ink2);
  padding: 4px 8px 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.afilter-chip:hover { border-color: var(--red); color: var(--red); }
.afilter-chip-x {
  font-size: 14px;
  line-height: 1;
  opacity: .6;
}
.afilter-chip:hover .afilter-chip-x { opacity: 1; }
.afilter-clear-all {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--red);
  background: none;
  border: 1px solid rgba(181,52,26,.3);
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
  margin-left: auto;
  white-space: nowrap;
}
.afilter-clear-all:hover { background: var(--red); color: #fff; border-color: var(--red); }
.afilter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink3);
  flex-shrink: 0;
}

/* Kategori count badge */
.filter-count {
  font-size: 10px;
  font-weight: 400;
  color: var(--ink3);
  background: rgba(0,0,0,.06);
  padding: 1px 5px;
  border-radius: 10px;
  margin-left: 3px;
  min-width: 18px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}
.filter-btn.active .filter-count {
  background: rgba(181,52,26,.15);
  color: var(--red);
}

/* Fiyat buton etiketi */
.srp-price-label {
  display: none;
}

/* Sidebar içindeki kategori filtreleri */
.srp-filters {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: none;
  padding: 0;
  margin: 0;
}
#filters-container {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  flex-wrap: nowrap;
}
.srp-filters .filter-btn {
  text-align: left;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 400;
  border: none;
  background: transparent;
  color: var(--ink2);
  cursor: pointer;
  transition: background .15s, color .15s;
  width: 100%;
}
.filter-btn-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.filter-cb {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--cream3);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  background: #fff;
  transition: all 0.2s;
}
.filter-cb:checked {
  background: var(--red);
  border-color: var(--red);
}
.filter-cb:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-text {
  flex-grow: 1;
}
.srp-filters .filter-btn:hover {
  background: var(--cream2);
  color: var(--ink);
}
.srp-filters .filter-btn.active {
  background: var(--cream2);
  color: var(--red);
  font-weight: 600;
}

/* Fiyat butonları */
.srp-price-btns {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}
.srp-price-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--cream3);
  background: #fff;
  color: var(--ink2);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.srp-price-btn .pi { color: inherit; }
.srp-price-btn .pd { color: #ccc; }
.srp-price-btn:hover { border-color: var(--gold); color: var(--ink); }
.srp-price-btn:hover .pd { color: #bbb; }
.srp-price-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.srp-price-btn.active .pi { color: #fff; }
.srp-price-btn.active .pd { color: rgba(255,255,255,0.28); }

/* Sıralama select */
.srp-sort-select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--cream3);
  border-radius: 8px;
  padding: 8px 12px;
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.srp-sort-select:focus { border-color: var(--gold); }

/* Bana Öner butonu */
.srp-suggest-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  color: var(--ink2);
  background: transparent;
  border: 1.5px solid var(--cream3);
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.srp-suggest-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* Listemde butonu */
.srp-saved-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--cream2);
  border: 1px solid var(--cream3);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.srp-saved-btn:hover { border-color: var(--red); color: var(--red); background: #fdf0ec; }
.srp-saved-btn > span:first-child { color: var(--red); font-size: 1rem; }

.srp-michelin-note {
  font-size: 11.5px;
  color: var(--ink3);
  padding: 16px 0 0;
  line-height: 1.5;
}

/* ── ORTA: SONUÇLAR ────────────────────────────────────── */
.srp-results {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.srp-results::-webkit-scrollbar { width: 6px; }
.srp-results::-webkit-scrollbar-thumb { background: var(--cream3); border-radius: 4px; }

.srp-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px 16px;
  background: var(--cream);
  position: relative;
  z-index: 10;
}
.srp-header-title-container {
  display: flex;
  flex-direction: column;
}
.srp-results-actions { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; flex: 1; justify-content: flex-end; }
.srp-sort-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  position: relative;
}
.srp-sort-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
}
.srp-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ink);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  line-height: 1.3;
  transition: color .15s;
  white-space: nowrap;
}
.srp-sort-btn::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231a1208' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  flex-shrink: 0;
}
.srp-sort-btn:hover { color: var(--red); }
.srp-sort-btn:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23b5341a' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
}
.srp-sort-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.11);
  min-width: 210px;
  padding: 5px 0;
  z-index: 200;
}
.srp-sort-dropdown[hidden] { display: none; }
.srp-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 9px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .1s;
}
.srp-sort-option:hover { background: var(--cream2); }
.srp-sort-option.active { font-weight: 600; }
.srp-sort-option.active::after {
  content: '✓';
  font-size: 11px;
  color: var(--gold);
  margin-left: 6px;
  flex-shrink: 0;
}
.srp-map-mobile-btn {
  display: none;
}

/* ── MOBILE FILTER BUTTON & MAP CLOSE (base — hidden on desktop) ─── */
.srp-filter-mobile-btn,
.srp-map-mobile-btn {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'%3E%3Cpath fill='%231a1208' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  border: none;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  padding: 4px 18px 4px 0;
  align-items: center;
  gap: 5px;
  transition: color .15s;
  white-space: nowrap;
}
.srp-filter-mobile-btn:hover,
.srp-filter-mobile-btn:focus,
.srp-map-mobile-btn:hover,
.srp-map-mobile-btn:focus {
  color: var(--red);
  background-color: transparent;
}
.srp-filter-mobile-btn.active,
.srp-map-mobile-btn.active {
  color: var(--red);
}

.srp-map-close-mobile { display: none; }

/* Filter drawer arka plan overlay */
.srp-filter-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,.45);
  z-index: 250;
  cursor: pointer;
}
.srp-filter-backdrop.open { display: block; }

/* Nav compact text spans (landing page) */
.nav-short { display: none; }

@media (max-width: 800px) {
  .nav-short { display: inline; }
  .nav-full { display: none; }
}

/* SRP venue grid — dikey liste */
.srp-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-top: none !important;
  padding: 12px 16px 16px !important;
  gap: 10px !important;
  grid-template-columns: unset !important;
}

/* SRP venue kartları footer — tek tip dikey hizalama */
.srp-grid .venue-card .venue-footer {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin-top: auto !important;
  padding: 10px 14px 14px !important;
  border-top: 1px solid var(--cream3) !important;
  min-height: 40px;
}

.srp-grid .venue-card .venue-footer-meta {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
}

.srp-grid .venue-card .venue-footer-meta .visit-count {
  display: inline-flex !important;
  font-size: 11px !important;
  color: var(--green) !important;
  background: #edf5ef !important;
  padding: 3px 8px !important;
  border-radius: 20px !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.srp-grid .venue-card .venue-hours-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
  margin: 0 !important;
  width: auto !important;
}

.srp-grid .venue-card {
  flex-direction: row !important;
  padding: 0 !important;
  min-height: 190px !important;
  border-radius: 12px !important;
  border: 1px solid var(--cream3) !important;
  border-right: 1px solid var(--cream3) !important;
  border-bottom: 1px solid var(--cream3) !important;
  background: #fff !important;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26,18,8,.04);
  transition: box-shadow .25s, transform .25s !important;
}
.srp-grid .venue-card:hover {
  box-shadow: 0 8px 24px rgba(26,18,8,.1) !important;
  transform: translateY(-2px);
  background: #fff !important;
}

/* Resim — sol panel olarak göster */
.srp-grid .card-photo-wrap {
  position: relative !important;
  inset: auto !important;
  width: 250px !important;
  flex-shrink: 0;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  pointer-events: auto;
}
.srp-grid .card-photo-wrap .card-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  border-radius: 0 !important;
  transition: transform .4s ease !important;
}
.srp-grid .venue-card:hover .card-bg-img {
  transform: scale(1.04);
}

/* Overlay gradient — sadece resim üzerine */
.srp-grid .venue-card::before {
  width: 250px !important;
  right: auto !important;
  background: linear-gradient(to right, rgba(26,18,8,.15), transparent) !important;
  opacity: 1 !important;
  border-radius: 12px 0 0 12px !important;
}

/* Kart sayısı ve card-top — gizle (yatay tasarımda yer kaplıyor) */
.srp-grid .card-num,
.srp-grid .card-top { display: none !important; }

/* Fotoğraf üstü ikonlar — resim alanı içinde konumlandır */
.srp-grid .card-photo-btns {
  left: 208px !important;
  right: auto !important;
}

/* İçerik alanı padding'i */
.srp-grid .venue-card > div:not(.card-top):not(.card-photo-wrap):not(.card-photo-btns) {
  padding: 0 14px !important;
}
.srp-grid .venue-card .venue-footer {
  padding: 10px 14px 14px !important;
  margin-top: auto !important;
}
.srp-grid .venue-card .card-body {
  padding: 14px 14px 0 14px !important;
}

/* hover renk override — beyaz card'da koyu renk kalsın */
.srp-grid .venue-card:hover .venue-name   { color: var(--ink)  !important; }
.srp-grid .venue-card:hover .venue-desc   { color: var(--ink3) !important; }
.srp-grid .venue-card:hover .venue-footer { border-top-color: var(--cream3) !important; }
.srp-grid .venue-card:hover .local-tip,
.srp-grid .venue-card:hover .card-tip-inline { color: var(--ink2) !important; }
.srp-grid .venue-card:hover .venue-price  { background: rgba(26,18,8,0.05) !important; color: var(--ink3) !important; }
.srp-grid .venue-card:hover .venue-rating { background: rgba(196,154,42,0.1) !important; }

/* Save & visit butonlar — fotoğraf üzerinde daha belirgin */
.srp-grid .save-btn, .srp-grid .visit-btn {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(4px) !important;
}

/* SRP kartlarda aktif durumlar beyazda kaybolmasın */
.srp-grid .venue-card.saved .save-btn {
  background: #b5341a !important;
  border-color: #b5341a !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(181, 52, 26, 0.24), 0 6px 14px rgba(26, 18, 8, 0.24) !important;
}

.srp-grid .visit-btn.visited {
  background: #11824b !important;
  border-color: #11824b !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(17, 130, 75, 0.24), 0 6px 14px rgba(26, 18, 8, 0.24) !important;
}

/* ── SAĞ: HARİTA PANEL ─────────────────────────────────── */
.srp-map-panel {
  border-left: 1px solid var(--cream3);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 82px;
  height: calc(100vh - 82px);
  background: #e8e0d8;
  overflow: hidden;
  align-self: start;
}
/* Map wrapper — SRP modunda her zaman açık */
.srp-map-wrapper {
  flex: 1 !important;
  height: 100% !important;
  max-height: none !important;
  display: flex !important;
  overflow: hidden !important;
  animation: none !important;
  position: relative;
}

/* Harita üstü konum butonu */
.map-locate-fab {
  position: absolute;
  bottom: 24px;
  right: 10px;
  z-index: 800;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(196,154,42,0.35);
  border-radius: 20px;
  padding: 7px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,18,8,0.18);
  transition: background .15s, border-color .15s, box-shadow .15s;
  white-space: nowrap;
  line-height: 1.4;
}
.map-locate-fab:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(26,18,8,0.22);
}

/* Saved panel — harita içi sol-alt pill */
.srp-map-wrapper .saved-panel {
  position: absolute !important;
  bottom: 14px !important;
  left: 10px !important;
  right: auto !important;
  top: auto !important;
  z-index: 1000 !important;
  /* kompakt pill */
  padding: 7px 13px !important;
  border-radius: 20px !important;
  gap: 6px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  max-width: none !important;
  width: auto !important;
  /* gizle/göster — overflow:hidden içinde kalır */
  transform: translateY(8px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .2s ease, transform .2s ease !important;
}
.srp-map-wrapper .saved-panel.visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.srp-map-wrapper .saved-panel-inner {
  padding: 0 !important;
  gap: 6px !important;
}
.srp-map-wrapper .saved-panel-icon {
  font-size: 13px !important;
}
.srp-map-wrapper .saved-panel-hint,
.srp-map-wrapper .saved-panel .panel-route-btn {
  display: none !important;
}
.srp-map-wrapper .saved-panel-count {
  font-size: 12px !important;
  line-height: 1 !important;
}
.srp-city-map {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* Mobil: Leaflet container boyutu hiçbir zaman 0 olmasın */
@media (max-width: 900px) {
  body.mobile-map-inline #map-wrapper {
    height: 100% !important;
    min-height: 320px !important;
    max-height: none !important;
  }
  body.mobile-map-inline #city-map,
  body.mobile-map-inline .leaflet-container {
    height: 100% !important;
    min-height: 320px !important;
  }
}
@media (max-width: 680px) {
  body.mobile-map-inline #map-wrapper {
    min-height: 340px !important;
  }
  body.mobile-map-inline #city-map,
  body.mobile-map-inline .leaflet-container {
    min-height: 340px !important;
  }
}

/* map-wrapper open animasyonunu etkisizleştir */
.srp-mode #map-wrapper {
  height: 100% !important;
  max-height: none !important;
}
.srp-mode #city-map {
  height: 100% !important;
}

/* SRP comments */
.srp-comments {
  margin: 0 !important;
  padding: 24px 20px !important;
  border-top: 3px solid var(--cream3);
  background: #fff;
}

/* ── MOBİL: RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  .srp-body {
    grid-template-columns: 260px 1fr 360px;
  }
}

@media (max-width: 900px) {
  .srp-body {
    grid-template-columns: 200px 1fr;
  }
  .srp-map-panel {
    display: none;
    position: static;
    inset: auto;
    z-index: auto;
    border: none;
  }
  .srp-map-mobile-btn { display: block; }
  .srp-map-close-mobile { display: none; }

  body.srp-mode.map-expanded .srp-sidebar,
  body.srp-mode.map-expanded .srp-results {
    display: block;
  }

  body.srp-mode.map-expanded .srp-map-panel {
    display: none !important;
    position: static;
    inset: auto;
    z-index: auto;
  }

  .srp-sidebar {
    position: fixed;
    inset: 0;
    z-index: 260;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--cream);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .28s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 16px 108px;
    border: none;
    border-radius: 0;
    pointer-events: none;
    max-height: none;
  }
  .srp-sidebar::before {
    display: none;
  }
  .srp-sidebar.srp-mobile-filter-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .srp-sidebar-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: start;
    padding-bottom: 16px;
    margin-bottom: 2px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--cream);
  }
  .srp-sidebar-count {
    grid-column: 1 / -1;
  }
  .srp-filter-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
  }
  .srp-filter-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    margin-top: auto;
    margin-left: auto;
    bottom: 16px;
    min-height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(181,52,26,.26);
    cursor: pointer;
    z-index: 2;
  }
  .srp-filter-apply-btn:hover {
    background: var(--red2);
  }

  /* Harita butonuyla açılan inline mobil görünüm (900px altı) */
  body.mobile-map-inline {
    height: 100vh;
    overflow: hidden;
  }

  body.mobile-map-inline .srp-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
  }

  body.mobile-map-inline .srp-sidebar {
    display: none;
  }

  body.mobile-map-inline .srp-results {
    order: 2;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
  }

  /* Mobile-map-inline modunda sonuç başlığını gizle */
  body.mobile-map-inline .srp-results-head {
    display: none;
  }

  body.mobile-map-inline .srp-map-mobile-btn {
    display: none;
  }


  body.mobile-map-inline .srp-map-panel {
    display: flex !important;
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    inset: auto;
    z-index: auto;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    max-height: 65vh;
    border: none;
    border-bottom: 1px solid var(--cream3);
    flex-shrink: 0;
    overflow: hidden;
  }

  body.mobile-map-inline .srp-map-controls {
    display: none;
  }

  /* Harita üstünde detail panel açıkken scroll devre dışı bırak */
  body.mobile-map-inline .leaflet-container {
    touch-action: none;
  }

  /* Detail panel açıkken harita scroll devre dışı */
  .detail-backdrop.open ~ .srp-body body.mobile-map-inline .srp-map-panel {
    pointer-events: none;
  }
}

@media (max-width: 680px) {
  .srp-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .srp-results { order: 2; }

  .srp-map-panel {
    display: none;
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    inset: auto;
    height: 58vh;
    min-height: 360px;
    max-height: 72vh;
    border: none;
    border-bottom: 1px solid var(--cream3);
  }

  body.mobile-map-inline .srp-map-panel {
    display: flex;
    width: 100%;
  }

  .srp-map-controls {
    display: none;
  }

  body.srp-mode.map-expanded .srp-map-panel {
    display: none !important;
    inset: auto;
  }

  .srp-sidebar,
  .srp-results {
    min-width: 0;
    max-width: 100%;
  }
  .srp-category-hub { flex-basis: auto; margin: 18px 0 0; padding: 16px 0 0; }
  .srp-filter-section { border-bottom: 1px solid var(--cream3); padding: 16px 0; }
  .srp-filter-section:last-child { border-bottom: none; }
  .srp-filters { flex-direction: column; flex-wrap: nowrap; }
  .srp-filters .filter-btn { width: 100%; padding: 8px 12px; }
  .srp-michelin-note { display: block; }
  .srp-active-filters { display: flex; }
  .srp-filter-mobile-btn { display: inline-flex; }

  /* Venue kartlarını mobilde dikey stack'e çevir (resim üstte, içerik altta) */
  .srp-grid .venue-card {
    flex-direction: column !important;
    padding: 0 !important;
    min-height: 0 !important;
  }
  .srp-grid .venue-card .card-photo-wrap {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: 180px !important;
    border-radius: 12px 12px 0 0 !important;
    flex-shrink: 0;
  }
  .srp-grid .venue-card .card-photo-wrap .card-bg-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    border-radius: 0 !important;
  }
  .srp-grid .venue-card::before {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 180px !important;
  }
  .srp-grid .venue-card .card-photo-btns { left: auto !important; right: 10px !important; top: 10px !important; }
  .srp-grid .venue-card .card-top { display: none !important; }
  .srp-grid .venue-card .card-body { padding: 12px 14px 0 !important; }
  .srp-grid .venue-card > div:not(.card-top):not(.card-photo-wrap):not(.card-photo-btns) { padding: 0 14px !important; }
  .srp-grid .venue-card .venue-footer { padding: 10px 14px 14px !important; }

  /* Sonuç header'ını tek satırda tutmak yerine mobil görünümde ayarla */
  .srp-results-head {
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }
  .srp-header-title-container {
    width: 100%;
    margin-bottom: 4px;
  }
  .srp-results-actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
  .srp-sort-inline {
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
  }
  .srp-sort-dropdown {
    right: 0;
    left: auto;
    min-width: 190px;
  }


  /* Header mobilde 2 sıra: üstte logo+butonlar, altta arama */
  .srp-nav { height: auto; }
  .srp-nav-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    padding: 10px 12px 6px;
    gap: 6px;
    align-items: center;
  }
  .srp-nav-logo { grid-column: 1; grid-row: 1; }
  .srp-nav-logo .logo-wordmark { font-size: 22px; }
  .srp-nav-logo .logo-sub { font-size: 8px; letter-spacing: 2.5px; }
  .srp-nav-right { grid-column: 3; grid-row: 1; justify-self: end; gap: 4px; }
  .srp-nav-search { grid-column: 1 / -1; grid-row: 2; height: 36px; width: 100%; border-radius: 18px; padding: 0 12px; }
  .srp-nav-search-ico svg { width: 14px; height: 14px; }
  .srp-nav-search .search-input { font-size: 13px; }
  .srp-city-pills { display: none; }
  .srp-nav-link { display: none; }
  .srp-login-btn { padding: 6px 12px; font-size: 12px; white-space: nowrap; }
  .srp-city-select { font-size: 12px; padding: 5px 8px; max-width: 90px; }
}

/* ── TABLET ADJUSTMENTS (app sayfaları için) ─────────── */

/* LOADING SPINNER */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.suggest-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 1rem;
}
.suggest-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--cream3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.suggest-loading-text {
  font-size: 14px;
  color: var(--ink2);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   PROFILE BUTTON (NAV)
   ═══════════════════════════════════════════════════════════ */
.profile-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e1b859);
  border: none;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(196,154,42,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  padding: 0;
}
.profile-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(196,154,42,0.38);
}

/* ═══════════════════════════════════════════════════════════
   PROFILE MODAL — Professional redesign
   ═══════════════════════════════════════════════════════════ */
.profile-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 2, 0.62);
  display: flex;
  align-items: stretch;
  justify-content: center;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 0;
}
.profile-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.profile-modal {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  background: #fdf9f4;
  border-radius: 0;
  box-shadow: 0 0 80px rgba(10,6,2,0.32);
  scrollbar-width: thin;
  scrollbar-color: rgba(196,154,42,0.28) transparent;
}
.profile-modal::-webkit-scrollbar { width: 4px; }
.profile-modal::-webkit-scrollbar-thumb { background: rgba(196,154,42,0.28); border-radius: 9px; }

/* ── Cover ── */
.profile-cover {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.profile-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.52) 100%);
}
.profile-cover-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.profile-cover-close:hover { background: rgba(0,0,0,0.65); }

/* ── Identity ── */
.profile-identity {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: flex-end;
  padding: 0 2rem 1.4rem;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.profile-avatar-wrap { position: relative; flex-shrink: 0; }
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #fdf9f4;
  background: linear-gradient(135deg, #c49a2a, #e1b859);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(196,154,42,0.28);
  overflow: hidden;
}
.profile-avatar-edit-btn {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid white;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.profile-avatar-edit-btn:hover { background: var(--gold2); transform: scale(1.1); }
.profile-identity-main { padding-top: 3.2rem; min-width: 0; }
.profile-level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.26rem 0.68rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.profile-level-tier-1 { background: rgba(107,114,128,0.1);  color: #6b7280; border: 1px solid rgba(107,114,128,0.18); }
.profile-level-tier-2 { background: rgba(196,154,42,0.1);   color: #a07a1a; border: 1px solid rgba(196,154,42,0.24); }
.profile-level-tier-3 { background: rgba(16,185,129,0.1);   color: #059669; border: 1px solid rgba(16,185,129,0.24); }
.profile-level-tier-4 { background: linear-gradient(135deg,rgba(196,154,42,0.14),rgba(181,52,26,0.08)); color: #b5341a; border: 1px solid rgba(196,154,42,0.28); }
.profile-user-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.3rem;
}
.profile-personality-tag { font-size: 0.88rem; color: var(--ink2); margin-bottom: 0.5rem; }
.profile-user-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.profile-user-meta span {
  font-size: 0.77rem;
  color: var(--ink3);
  background: rgba(26,18,8,0.04);
  border: 1px solid rgba(26,18,8,0.09);
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  max-width: 26ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-score-hero { text-align: right; padding-top: 3.2rem; padding-left: 1rem; }
.profile-score-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.profile-score-label {
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink3);
  margin-bottom: 0.5rem;
}
.profile-score-track-wrap { width: 120px; margin-left: auto; margin-bottom: 0.35rem; }
.profile-score-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(26,18,8,0.09);
  overflow: hidden;
}
.profile-score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e7bd5e);
  transition: width 0.6s ease;
}
.profile-score-next-label { font-size: 0.74rem; color: var(--ink3); }

/* ── Stats Strip ── */
.profile-stats-strip {
  display: flex;
  border-top: 1px solid rgba(196,154,42,0.14);
  border-bottom: 1px solid rgba(196,154,42,0.14);
  background: rgba(255,255,255,0.5);
}
.profile-strip-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  padding: 1rem 0.4rem;
  border-right: 1px solid rgba(196,154,42,0.1);
  transition: background 0.2s;
}
.profile-strip-stat:last-child { border-right: none; }
.profile-strip-stat:hover { background: rgba(196,154,42,0.06); }
.profile-strip-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.profile-strip-stat span {
  font-size: 0.71rem;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.profile-strip-stat--accent strong { color: var(--gold2); }

/* ── Bottom Bar (Çıkış Yap — her zaman altta) ── */
.profile-bottom-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to top, rgba(253,249,244,0.98) 75%, transparent);
  border-top: 1px solid rgba(196,154,42,0.1);
}
.profile-top-logout-btn {
  padding: 0.5rem 1.15rem;
  border-radius: 8px;
  border: 1px solid rgba(181,52,26,0.22);
  background: rgba(181,52,26,0.06);
  color: #b5341a;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
}
.profile-top-logout-btn:hover {
  background: rgba(181,52,26,0.14);
  transform: translateY(-1px);
}

/* ── Tab Nav ── */
.profile-tab-nav {
  display: flex;
  border-bottom: 2px solid rgba(196,154,42,0.12);
  background: rgba(253,249,244,0.95);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.profile-tab-btn {
  flex: 1;
  padding: 1rem 0.4rem;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  color: var(--ink3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.profile-tab-btn:hover { color: var(--ink); }
.profile-tab-btn.active { color: var(--gold2); border-bottom-color: var(--gold); }
.profile-panel-section[hidden] { display: none; }
.profile-panel-section { padding: 1.6rem 2rem; }

/* ── Section label ── */
.profile-section-label {
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink3);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* ── Progress card ── */
.profile-progress-card {
  background: white;
  border: 1px solid rgba(196,154,42,0.14);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.profile-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink2);
}
.profile-progress-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.profile-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(26,18,8,0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.profile-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e7bd5e);
  transition: width 0.6s ease;
}
.profile-progress-sub { font-size: 0.82rem; color: var(--ink3); }

/* ── Overview columns ── */
.profile-overview-cols {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.profile-city-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: white;
  border: 1px solid rgba(196,154,42,0.13);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}
.profile-city-bar-row {
  display: grid;
  grid-template-columns: 88px 1fr 28px;
  align-items: center;
  gap: 0.55rem;
}
.profile-city-bar-label { font-size: 0.84rem; color: var(--ink2); }
.profile-city-bar-track {
  height: 7px;
  background: rgba(26,18,8,0.07);
  border-radius: 999px;
  overflow: hidden;
}
.profile-city-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #e7bd5e);
}
.profile-city-bar-count { font-size: 0.83rem; color: var(--ink3); text-align: right; }
.profile-highlights {
  background: white;
  border: 1px solid rgba(196,154,42,0.13);
  border-radius: 14px;
  overflow: hidden;
}
.profile-highlight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 1.1rem;
  border-bottom: 1px solid rgba(196,154,42,0.08);
}
.profile-highlight-item:last-child { border-bottom: none; }
.profile-highlight-key { font-size: 0.81rem; color: var(--ink3); }
.profile-highlight-item strong { font-size: 0.88rem; color: var(--ink); text-align: right; }

/* ── Badges ── */
.profile-badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.8rem;
}
.profile-badge-card {
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: white;
  border: 1px solid rgba(196,154,42,0.13);
  border-radius: 14px;
}
.profile-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196,154,42,0.1);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.profile-badge-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.18rem; }
.profile-badge-desc { font-size: 0.79rem; color: var(--ink3); }

/* ── Activity ── */
.profile-activity-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.profile-feed-block {
  background: white;
  border: 1px solid rgba(196,154,42,0.13);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}
.profile-feed-list { display: flex; flex-direction: column; gap: 0.58rem; }
.profile-feed-item {
  width: 100%;
  text-align: left;
  background: rgba(253,246,238,0.55);
  border: 1px solid rgba(196,154,42,0.09);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.profile-feed-item:hover {
  border-color: rgba(196,154,42,0.26);
  box-shadow: 0 6px 18px rgba(26,18,8,0.06);
  transform: translateY(-1px);
}
.profile-feed-venue { font-size: 0.9rem; font-weight: 600; color: var(--ink); margin-bottom: 0.18rem; }
.profile-feed-text { font-size: 0.81rem; color: var(--ink2); margin-bottom: 0.28rem; line-height: 1.4; }
.profile-feed-meta { font-size: 0.77rem; color: var(--gold2); font-weight: 500; }

/* ── Gallery ── */
.profile-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.75rem;
}
.profile-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(26,18,8,0.04);
  border: 1px solid rgba(196,154,42,0.12);
  position: relative;
  aspect-ratio: 1 / 1;
}
.profile-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.profile-gallery-item:hover img { transform: scale(1.06); }
.profile-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.65rem;
  background: linear-gradient(to top, rgba(0,0,0,0.58), transparent);
  color: white;
  font-size: 0.77rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-gallery-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--ink3);
}
.profile-empty-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.profile-empty-sub { font-size: 0.84rem; margin-top: 0.35rem; }

/* ── Map ── */
#profile-map-container {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,154,42,0.15);
  margin-bottom: 1rem;
}
.profile-map-legend { display: flex; gap: 1.5rem; font-size: 0.84rem; color: var(--ink2); align-items: center; }
.profile-map-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 0.38rem;
  vertical-align: middle;
}
.profile-map-dot--visited { background: #b5341a; }
.profile-map-dot--saved   { background: #c49a2a; }

/* ── Settings ── */
.profile-settings-list { display: flex; flex-direction: column; gap: 0.72rem; margin-bottom: 1.6rem; }
.profile-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.88rem 1.1rem;
  background: white;
  border: 1px solid rgba(196,154,42,0.12);
  border-radius: 12px;
  cursor: pointer;
}
.profile-setting-row strong { display: block; font-size: 0.92rem; color: var(--ink); margin-bottom: 0.18rem; }
.profile-setting-row span { display: block; font-size: 0.81rem; color: var(--ink3); line-height: 1.4; max-width: 44ch; }
.profile-setting-row--toggle input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--gold); flex-shrink: 0; }
.profile-setting-select {
  min-width: 140px;
  border-radius: 10px;
  border: 1px solid rgba(26,18,8,0.12);
  background: #fdf9f4;
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
}
.profile-action-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.profile-act-btn {
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.profile-act-btn--ghost    { background: transparent; color: var(--ink2); border: 1px solid rgba(26,18,8,0.11); }
.profile-act-btn--ghost:hover  { background: rgba(26,18,8,0.04); }
.profile-act-btn--secondary    { background: rgba(196,154,42,0.1); color: var(--gold2); }
.profile-act-btn--secondary:hover { background: rgba(196,154,42,0.17); }
.profile-act-btn--primary  { background: var(--gold); color: white; box-shadow: 0 8px 18px rgba(196,154,42,0.2); }
.profile-act-btn--primary:hover { background: var(--gold2); transform: translateY(-1px); }
.profile-act-btn--primary:disabled { opacity: 0.42; cursor: not-allowed; transform: none; box-shadow: none; }
.profile-act-btn--danger   { background: var(--red); color: white; margin-left: auto; }
.profile-act-btn--danger:hover { background: #a02b14; transform: translateY(-1px); }

/* ── Empty note ── */
.profile-empty-note {
  color: var(--ink3);
  font-size: 0.85rem;
  padding: 1.2rem;
  text-align: center;
  background: rgba(26,18,8,0.025);
  border-radius: 10px;
}

/* ═══════════════════════════════════════════════════════════
   PROFILE RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .profile-modal {
    width: calc(100vw - 8px);
    max-height: 96vh;
    border-radius: 16px;
  }
  .profile-identity {
    grid-template-columns: 1fr;
    padding: 0 1.25rem 1.25rem;
    margin-top: -40px;
    gap: 0.75rem;
  }
  .profile-identity-main { padding-top: 2.6rem; }
  .profile-score-hero {
    text-align: left;
    padding-top: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .profile-score-track-wrap { margin-left: 0; }
  .profile-stats-strip { flex-wrap: wrap; }
  .profile-strip-stat { min-width: 33.33%; }
  .profile-tab-btn { padding: 0.82rem 0.2rem; font-size: 0.76rem; }
  .profile-panel-section { padding: 1.2rem; }
  .profile-overview-cols,
  .profile-activity-cols { grid-template-columns: 1fr; }
  .profile-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  #profile-map-container { height: 280px; }
  .profile-setting-row { flex-direction: column; align-items: flex-start; }
  .profile-setting-select,
  .profile-act-btn { width: 100%; }
  .profile-act-btn--danger { margin-left: 0; }
}

@media (min-width: 768px) {
  .rating-stars {
    gap: 12px;
  }

  .rating-star {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .venue-user-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .comment-form-actions {
    gap: 12px;
  }

  .comment-photo-btn,
  .comment-submit-btn {
    flex: 0;
  }
}

@media (min-width: 1024px) {
  .venue-user-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
/* ===== CAROUSEL IMPROVEMENTS ===== */
.carousel-total {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(196,154,42,0.6);
  margin-left: 4px;
}

/* Smooth detail carousel transition */
#detail-carousel {
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero carousel cursor hint */
.hero-carousel {
  cursor: grab;
}

/* ═══════════════════════════════════════ */
/* MOBILE ADJUSTMENTS (max-width: 600px) */
/* ═══════════════════════════════════════ */
@media (max-width: 600px) {
  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero, .blog-card { padding-left: 1rem; padding-right: 1rem; }
  .blog-filter-bar { padding: .875rem 1rem; }
  .blog-toolbar {
    padding: .875rem 1rem;
    align-items: stretch;
    gap: 10px;
  }
  .blog-toolbar-left,
  .blog-toolbar-right {
    width: 100%;
  }
  .blog-search-wrap {
    min-width: 0;
    width: 100%;
  }
  .blog-sort-select { width: 100%; }
  .blog-layout {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
    gap: 14px;
  }
  .blog-sidebar {
    position: static;
  }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .blog-featured-body { padding: 1.25rem 1rem; }
  .post-wrap { padding: 2rem 1rem 4rem; }
  .post-hero-img { height: 220px; border-radius: 8px; }
  .post-related-grid { grid-template-columns: 1fr; }

  /* Header */
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .blog-page header {
    flex-direction: row;
    align-items: center;
  }
  .logo-block { width: 100%; }
  .header-search {
    width: 100%;
    max-width: 100%;
  }
  .header-right {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  /* Main Layout */
  .hero { flex-direction: column; align-items: stretch; padding: 2rem 1.5rem; }
  .filters, .stats, .grid-header { padding-left: 1rem; padding-right: 1rem; }
  .venue-card { padding-left: 1rem; padding-right: 1rem; }
  .venue-grid { grid-template-columns: 1fr; }
  .saved-panel { 
    left: auto; 
    right: 1rem; 
    bottom: 1.25rem;
    max-width: none; 
    padding: 10px 18px; 
    border-radius: 30px; 
  }
  .saved-panel-icon { font-size: 16px; }
  .saved-panel-hint,
  .saved-panel .panel-route-btn { display: none !important; }
  .saved-panel-inner { gap: 8px; }
  .saved-panel-text { line-height: 1; }

  /* Hero Banner & Carousel */
  .hero-banner { max-width: 100%; height: 240px; border-radius: 12px; }
  .hero-carousel-container { max-width: 100%; gap: 12px; margin-top: 16px; }
  .hero-carousel {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }
  .carousel-number { font-size: 2rem; }
  .carousel-name { font-size: 0.95rem; }
  .carousel-overlay { padding: 1rem; }

  /* Detail Panel */
  .detail-hero { aspect-ratio: 4 / 3; }
  .detail-meta-grid { grid-template-columns: 1fr; }

  /* Comments */
  .comments-section { padding: 2rem 1rem; }
  .comment-input-row { flex-direction: column; }

  /* Suggest Bar */
  .suggest-bar { padding-left: 1rem; padding-right: 1rem; }
}

/* ═══════════════════════════════════════ */
/* TABLET ADJUSTMENTS (max-width: 900px)  */
/* ═══════════════════════════════════════ */
@media (max-width: 900px) {
  /* Header */
  .header-search {
    width: 100%;
    max-width: 250px;
    order: 3;
  }

  /* Hero Carousel */
  .hero-carousel {
    aspect-ratio: 16 / 10;
  }
  .carousel-number { font-size: 2.8rem; }
  .hero-carousel-container { gap: 12px; }

  /* Landing */
  .landing-cities {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.hero-carousel:active {
  cursor: grabbing;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ylp-city-card,
  .ylp-hero-bg,
  .ylp-hero-title {
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════
   SAVED MEKANLAR MODAL
   ═══════════════════════════════════════════ */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 18, 8, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--cream);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(26, 18, 8, 0.2);
  animation: slideUp 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
  z-index: 10;
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.2);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid var(--gold);
}

.modal-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin: 0;
}

.modal-count {
  background: var(--gold);
  color: var(--cream);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.modal-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,154,42,.2) transparent;
}

.modal-empty {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--ink2);
  font-size: 1.1rem;
  line-height: 1.6;
}

.modal-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: var(--cream2);
  border-radius: 8px;
  align-items: center;
  transition: all 0.2s;
}

.modal-item:hover {
  background: var(--cream3);
  transform: translateX(4px);
}

.modal-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 30px;
  text-align: center;
}

.modal-item-name {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.modal-item-tag {
  font-size: 0.85rem;
  color: var(--ink2);
}

.modal-remove {
  margin-left: auto;
  background: var(--red);
  color: var(--cream);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-remove:hover {
  background: var(--red2);
}

.modal-actions {
  padding: 1rem 2rem;
  border-top: 1px solid var(--gold);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* ===== GENERATED CATEGORY + VENUE DETAIL PAGES ===== */

/* ===== CATEGORY SHELL ===== */

.cat-shell{
  max-width:1240px;
  margin:0 auto;
  padding:24px;
}

/* ===== HERO ===== */

.cat-page-hero{
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 52px 48px 48px;
  border-radius: 36px;

  background: 
    radial-gradient(ellipse at 0% 0%, rgba(196,154,42,0.16) 0%, transparent 60%),
    linear-gradient(145deg, #fdf7ed 0%, #fff9f2 50%, #fdfbf7 100%);

  box-shadow:
    0 2px 0 rgba(255,255,255,0.85) inset,
    0 38px 90px rgba(26,18,8,0.11),
    0 12px 40px rgba(26,18,8,0.07);

  border: 1px solid rgba(196,154,42,0.16);
  margin-bottom: 44px;
}

/* Texture */
.cat-page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  opacity:0.055;
  pointer-events:none;
  background-image:url("/noise.png");
  background-size:300px;
  mix-blend-mode: multiply;
}

/* Sol Taraf */
.cat-page-breadcrumb{
  color:#a88a5f;
  font-size:0.88rem;
  margin-bottom:18px;
  font-weight:500;
}

.cat-page-hero h1{
  margin:0 0 20px;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.75rem, 5.8vw, 4.1rem);
  line-height:1.02;
  font-weight:700;
  letter-spacing:-0.045em;
  color:#18100a;
}

.cat-page-hero > div > p{
  margin:0 0 24px;
  color:#6a5a4a;
  max-width:65ch;
  line-height:1.8;
  font-size:1.06rem;
}

/* Sağ Taraf */
.cat-hero-side{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* Tabs */
.cat-tabs{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding-bottom:4px;
}

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

.cat-tab{
  padding:11px 20px;
  border-radius:9999px;
  background:rgba(255,255,255,0.9);
  color:#6b5a3d;
  font-weight:600;
  font-size:0.92rem;
  white-space:nowrap;
  transition:all 0.25s ease;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.cat-tab:hover{
  background:#f8ecd6;
  transform:translateY(-2px);
}

.cat-tab.active{
  background: linear-gradient(135deg, #c49a2a 0%, #a07820 100%);
  color:white;
  box-shadow:0 8px 24px rgba(196,154,42,0.35);
}

/* Harita Butonu - Daha zarif */
.harita-btn{
  padding:14px 26px;
  background: #1c1408;
  color:white;
  border:none;
  border-radius:9999px;
  font-weight:700;
  font-size:0.98rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 8px 24px rgba(28,20,8,0.25);
  align-self: flex-start;
}

.harita-btn:hover{
  background:#2c2216;
  transform:translateY(-3px);
}

/* Responsive */
@media (max-width: 960px){
  .cat-page-hero{
    padding: 48px 42px;
  }
}

@media (max-width: 640px){
  .cat-page-hero{
    padding: 40px 24px;
    border-radius: 28px;
  }
  
  .cat-page-hero h1{
    font-size: clamp(2.6rem, 7vw, 3.4rem);
  }
  
  .cat-tab {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  
  .harita-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ===== SUMMARY ===== */

.cat-summary{
  display:flex;
  flex-wrap:wrap;
  gap:6px 18px;
  color:var(--ink3);
  font-size:.84rem;
  padding: 12px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border: 1px solid rgba(196,154,42,0.12);
  backdrop-filter: blur(6px);
}

.cat-summary strong{
  color:var(--ink);
}

/* ===== DISTRICT DROPDOWN ===== */
.cat-district-dropdown {
  position: relative;
  display: inline-block;
}
.cat-district-btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}
.cat-district-btn:hover {
  background: rgba(0,0,0,0.04);
  color: var(--ink);
}
.cat-district-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: #fff;
  border: 1px solid var(--cream3);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(26,18,8,0.12);
  padding: 8px;
  min-width: 200px;
  max-height: 340px;
  overflow-y: auto;
  z-index: 100;
  flex-direction: column;
  gap: 2px;
}
.cat-district-menu::-webkit-scrollbar {
  width: 6px;
}
.cat-district-menu::-webkit-scrollbar-thumb {
  background: var(--cream3);
  border-radius: 4px;
}
.cat-district-dropdown.open .cat-district-menu {
  display: flex;
}
.cat-dist-link {
  font-size: 0.85rem;
  color: var(--ink2);
  text-decoration: none;
  padding: 8px 12px;
  background: transparent;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: block;
  width: 100%;
}
.cat-dist-link:hover {
  background: var(--cream2);
  color: var(--ink);
}

/* ===== GRID ===== */

.cat-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:28px;
}

/* ===== CARD ===== */

.cat-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  background:#fff;
  display:flex;
  flex-direction:column;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.9) inset,
    0 6px 20px rgba(26,18,8,.06),
    0 2px 6px rgba(26,18,8,.04);
  transition:
    transform .26s ease,
    box-shadow .26s ease;
  border: 1px solid rgba(196,154,42,0.10);
}

.cat-card:hover{
  transform:translateY(-5px);
  box-shadow:
    0 24px 56px rgba(26,18,8,.13),
    0 8px 24px rgba(26,18,8,.07);
  border-color: rgba(196,154,42,0.22);
}

/* ===== IMAGE ===== */

.cat-cover{
  position:relative;
  overflow:hidden;
  aspect-ratio:4 / 3;
}

.cat-cover img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-cover img{
  transform:scale(1.06);
}

/* Subtle gradient overlay on image bottom */
.cat-cover::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:40%;
  background: linear-gradient(to top, rgba(20,12,4,0.22) 0%, transparent 100%);
  pointer-events:none;
}

/* ===== RANK BADGE ===== */

.cat-rank{
  position:absolute;
  top:14px;
  left:14px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.90);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  color:#1a1208;
  font-size:11px;
  font-weight:700;
  letter-spacing:.5px;
  box-shadow:
    0 4px 14px rgba(0,0,0,.10),
    0 1px 3px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,0.6);
}

/* ===== BODY ===== */

.cat-body{
  padding:22px 24px 28px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.cat-rating{
  font-size:13px;
  font-weight:700;
  color:#b07d10;
  display:flex;
  align-items:center;
  gap:5px;
}

.cat-body h2{
  margin:0;
  font-family:'Cormorant Garamond',serif;
  font-size:1.65rem;
  line-height:1.06;
  font-weight:600;
  color:var(--ink);
  letter-spacing:-0.015em;
}

.cat-body h2 a{
  color:inherit;
  text-decoration:none;
  transition: color .2s;
}

.cat-body h2 a:hover{
  color:var(--red);
}

.cat-meta{
  font-size:.86rem;
  line-height:1.65;
  color:#756a5f;
}

/* ===== RECOMMENDATION TAGS ===== */

.cat-try{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:2px;
}

.cat-try span{
  padding:5px 12px;
  border-radius:999px;
  background:#f6f1e7;
  color:#6f5520;
  font-size:12px;
  font-weight:600;
  border: 1px solid rgba(196,154,42,0.14);
  transition: background .18s;
}

.cat-card:hover .cat-try span{
  background:#f0e8d4;
}

/* ===== ACTIONS ===== */

.cat-actions{
  display:none;
}

.cat-action-btn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border:none;
  border-radius:999px;
  background:#f5f1ea;
  color:var(--ink2);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
  transition:
    background .22s,
    transform .22s,
    color .22s,
    box-shadow .22s;
  border: 1px solid rgba(196,154,42,0.10);
}

.cat-action-btn:hover{
  background: linear-gradient(135deg, #c49a2a 0%, #a07820 100%);
  color: #fff;
  transform:translateY(-1px);
  box-shadow: 0 8px 20px rgba(196,154,42,0.30);
  border-color: transparent;
}

/* =========================================================
   VENUE DETAIL PAGE
========================================================= */

/* ===== VENUE DETAIL PAGE — EDITORIAL REDESIGN ===== */
/* Prefix: vd- (venue detail) */

.venue-detail-page{
  background:#fbf8f3;
}

.vd-shell{
  max-width:1320px;
  margin:0 auto;
  padding:0 40px;
}

/* ── Breadcrumb ── */
.vd-crumbs{
  display:flex;
  align-items:center;gap:10px;
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.12em;
  text-transform:uppercase;color:#958d82;
  padding:28px 0 0;
}
.vd-crumbs a{color:inherit;text-decoration:none;}
.vd-crumbs a:hover{color:#1a1208;}
.vd-crumbs .sep{opacity:.5;}
.vd-crumbs .now{color:#1a1208;}

/* ── Headline ── */
.vd-head{
  padding:36px 0 28px;
  display:grid;grid-template-columns:1fr auto;gap:40px;align-items:end;
  border-bottom:1px solid #d6cdbc;
}
.vd-kicker{
  display:inline-flex;align-items:center;gap:10px;
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.22em;
  text-transform:uppercase;color:#a67c2e;
  margin-bottom:18px;
}
.vd-kicker-num{
  display:inline-grid;place-items:center;
  width:22px;height:22px;
  border:1px solid #c49a2a;border-radius:50%;
  font-size:10px;color:#a67c2e;
}
.vd-title{
  font-family:'Cormorant Garamond','Times New Roman',serif;
  font-weight:500;
  font-size:clamp(56px,8.4vw,132px);
  line-height:.92;letter-spacing:-.025em;
  color:#1a1208;text-wrap:balance;margin:0;
}
.vd-title em{font-style:italic;font-weight:500;color:#a67c2e;}
.vd-head-meta{
  text-align:right;font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;text-transform:uppercase;
  letter-spacing:.14em;color:#958d82;
  line-height:1.9;white-space:nowrap;
}
.vd-head-meta .v{color:#1a1208;}

/* ── Hero ── */
.vd-hero{
  margin:28px 0 0;
  display:grid;grid-template-columns:minmax(0,1.55fr) minmax(0,1fr);gap:40px;
}
.vd-hero-frame{
  position:relative;border-radius:2px;overflow:hidden;
  aspect-ratio:4/3;background:#f2ebe1;
  box-shadow:0 30px 60px -30px rgba(40,28,12,.35);
}
.vd-hero-frame img{width:100%;height:100%;object-fit:cover;display:block;}
.vd-status{
  position:absolute;top:14px;right:14px;
  padding:6px 14px 5px;border-radius:20px;
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:12px;letter-spacing:.05em;font-weight:600;
  backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  z-index:2;text-align:center;line-height:1.3;
}
.vd-status.open{background:rgba(46,204,113,.92);color:#fff;}
.vd-status.closed{background:rgba(231,76,60,.88);color:#fff;}
.vd-status.closed-today{background:rgba(180,50,30,.92);color:#fff;}
.vd-status .vd-status-hours{display:block;font-size:9px;font-weight:400;opacity:.85;letter-spacing:.12em;margin-top:1px;}
.vd-hero-lede{
  display:flex;flex-direction:column;gap:24px;align-self:start;
  padding-top:8px;
}
.vd-lede-text{
  font-family:'Cormorant Garamond',serif;
  font-size:26px;line-height:1.36;
  color:#1a1208;font-weight:400;letter-spacing:-.005em;
}
.vd-lede-text::first-line{font-style:italic;}
.vd-chips{display:flex;flex-wrap:wrap;gap:8px;}
.vd-chip{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.18em;
  text-transform:uppercase;padding:7px 12px;
  border:1px solid #d6cdbc;color:#6b6053;
  border-radius:999px;background:#fff9f0;
}
.vd-chip-solid{background:#1a1208;color:#fbf8f3;border-color:#1a1208;}

/* ── Info Strip ── */
.vd-strip{
  margin-top:48px;
  border-top:1px solid #d6cdbc;border-bottom:1px solid #d6cdbc;
  display:grid;grid-template-columns:repeat(6,1fr);
}
.vd-strip-cell{
  padding:22px;border-right:1px solid #d6cdbc;
  display:flex;flex-direction:column;gap:6px;min-height:108px;
}
.vd-strip-cell:last-child{border-right:0;}
.vd-strip-label{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.18em;
  text-transform:uppercase;color:#958d82;
}
.vd-strip-value{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;line-height:1.15;
  color:#1a1208;font-weight:500;letter-spacing:-.01em;
}
.vd-strip-cell.vd-strip-address .vd-strip-value,
.vd-strip-cell.vd-strip-phone .vd-strip-value{
  font-size:14px;font-family:'DM Sans',sans-serif;font-weight:500;line-height:1.4;
}
.vd-rating-row{display:flex;align-items:baseline;gap:8px;}
.vd-stars{color:#c49a2a;font-size:14px;letter-spacing:2px;}
.vd-strip-cell .vd-strip-small{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;color:#958d82;letter-spacing:.1em;
}
a.vd-strip-cta{
  margin-top:auto;font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.14em;
  text-transform:uppercase;color:#1a1208;
  border-bottom:1px solid #1a1208;padding-bottom:2px;align-self:flex-start;
  text-decoration:none;
}
a.vd-strip-cta:hover{color:#a67c2e;border-color:#a67c2e;}

/* ── Body Grid ── */
.vd-body{
  display:grid;grid-template-columns:minmax(0,1.65fr) minmax(0,1fr);
  gap:80px;padding:80px 0 40px;
}
.vd-section-head{
  display:flex;align-items:baseline;gap:14px;margin-bottom:24px;
  padding-bottom:14px;border-bottom:1px solid #d6cdbc;
}
.vd-section-num{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.14em;color:#a67c2e;
}
.vd-section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:30px;font-weight:500;
  letter-spacing:-.015em;color:#1a1208;margin:0;
}
.vd-section-title em{font-style:italic;color:#a67c2e;}

.vd-feature p{
  font-family:'Cormorant Garamond',serif;
  font-size:19px;line-height:1.65;color:#1a1208;text-wrap:pretty;
  margin-bottom:1em;
}
.vd-feature .vd-first-p::first-letter{
  font-family:'Cormorant Garamond',serif;
  font-size:74px;line-height:.85;
  float:left;padding:8px 12px 0 0;color:#a67c2e;font-weight:500;
}

.vd-pull{
  margin:36px 0;padding:24px 28px;
  border-left:2px solid #c49a2a;
  font-family:'Cormorant Garamond',serif;font-style:italic;
  font-size:24px;line-height:1.4;
  color:#1a1208;letter-spacing:-.005em;
}
.vd-pull-by{
  display:block;margin-top:14px;
  font-family:'JetBrains Mono',ui-monospace,monospace;font-style:normal;
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:#958d82;
}

/* ── Sidebar ── */
.vd-side{display:flex;flex-direction:column;gap:48px;}

.vd-must{
  background:#fff9f0;padding:32px 28px;
  border:1px solid #d6cdbc;position:relative;
}
.vd-must::before{
  content:'';position:absolute;top:-1px;left:24px;width:48px;height:2px;background:#c49a2a;
}
.vd-must h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:500;letter-spacing:-.01em;margin:0 0 4px;
}
.vd-must-sub{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.18em;
  text-transform:uppercase;color:#958d82;margin-bottom:22px;
}
.vd-must ol{list-style:none;counter-reset:vd-must;padding:0;margin:0;}
.vd-must li{
  counter-increment:vd-must;
  display:grid;grid-template-columns:36px 1fr auto;align-items:baseline;gap:12px;
  padding:14px 0;border-top:1px solid #e4dbcc;
}
.vd-must li:first-child{border-top:0;}
.vd-must li::before{
  content:counter(vd-must,decimal-leading-zero);
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.12em;color:#a67c2e;
}
.vd-must-name{font-family:'Cormorant Garamond',serif;font-size:19px;color:#1a1208;}
.vd-must-dot{width:6px;height:6px;border-radius:50%;background:#c49a2a;opacity:.6;align-self:center;}

.vd-tip{padding:24px 0 0;border-top:1px solid #d6cdbc;}
.vd-tip-label{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.22em;
  text-transform:uppercase;color:#b5341a;margin-bottom:10px;
}
.vd-tip p{
  font-family:'Cormorant Garamond',serif;font-size:18px;
  line-height:1.5;color:#1a1208;font-style:italic;margin:0;
}

/* ── Recommendations ── */
.vd-recs{
  border-top:1px solid #d6cdbc;padding:64px 0 80px;
}
.vd-recs-head{
  display:grid;grid-template-columns:auto 1fr auto;align-items:end;gap:24px;
  margin-bottom:36px;
}
.vd-recs-num{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:11px;letter-spacing:.18em;color:#a67c2e;
}
.vd-recs-head h2{
  font-family:'Cormorant Garamond',serif;font-size:48px;font-weight:500;
  letter-spacing:-.02em;line-height:1;margin:0;
}
.vd-recs-head h2 em{font-style:italic;color:#a67c2e;}
.vd-recs-meta{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.16em;
  text-transform:uppercase;color:#958d82;text-align:right;
}
.vd-recs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.vd-rec-card{
  background:#fff9f0;padding:28px 26px 22px;
  border:1px solid #d6cdbc;
  display:flex;flex-direction:column;gap:18px;
  position:relative;transition:transform .25s,border-color .25s;
}
.vd-rec-card:hover{transform:translateY(-2px);border-color:#1a1208;}
.vd-rec-card .vd-rec-cat{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.20em;
  text-transform:uppercase;color:#a67c2e;
}
.vd-rec-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:24px;font-weight:500;letter-spacing:-.01em;line-height:1.15;
  color:#1a1208;margin:0;
}
.vd-rec-card ul{
  list-style:none;display:flex;flex-direction:column;gap:14px;
  margin:auto 0 0;padding:0;
}
.vd-rec-card li{
  display:flex;justify-content:space-between;align-items:baseline;gap:12px;
  padding-bottom:12px;border-bottom:1px solid #e4dbcc;
}
.vd-rec-card li:last-child{border-bottom:0;padding-bottom:0;}
.vd-rec-card li a{
  font-family:'Cormorant Garamond',serif;
  font-size:17px;color:#1a1208;
  border-bottom:1px solid transparent;transition:border-color .2s;
  text-decoration:none;
}
.vd-rec-card li a:hover{border-color:#c49a2a;}
.vd-rec-card li .vd-rec-stat{
  font-family:'JetBrains Mono',ui-monospace,monospace;
  font-size:10px;letter-spacing:.10em;
  color:#958d82;white-space:nowrap;
}
.vd-rec-card li .vd-rec-star{color:#c49a2a;}

/* ── Responsive ── */
@media (max-width:980px){
  .vd-shell{padding-left:24px;padding-right:24px;}
  .vd-head{grid-template-columns:1fr;gap:18px;}
  .vd-head-meta{text-align:left;white-space:normal;}
  .vd-hero{grid-template-columns:1fr;}
  .vd-strip{grid-template-columns:repeat(2,1fr);}
  .vd-strip-cell{border-right:1px solid #d6cdbc;border-bottom:1px solid #d6cdbc;}
  .vd-strip-cell:nth-child(2n){border-right:0;}
  .vd-body{grid-template-columns:1fr;gap:56px;padding:56px 0 24px;}
  .vd-recs-grid{grid-template-columns:1fr;}
  .vd-recs-head{grid-template-columns:1fr;gap:8px;}
  .vd-recs-meta{text-align:left;}
}
@media (max-width:640px){
  .vd-shell{padding-left:16px;padding-right:16px;}
  .vd-crumbs{font-size:10px;}
  .vd-strip{grid-template-columns:1fr;}
  .vd-strip-cell{border-right:0;}
}




/* =========================================================
   VENUE DETAIL PANEL — Editorial Redesign
   Overrides old .detail-panel styles when .vd-panel is present
========================================================= */

/* Mobile-first: full-screen slide-up */
.detail-panel.vd-panel {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  z-index: 999 !important;
  background: #fbf8f3 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 100%, 0) !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 0 !important;
  max-height: none !important;
  box-shadow: none !important;
  width: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  pointer-events: none;
}
.detail-panel.vd-panel.open {
  pointer-events: auto;
  transform: translate3d(0, 0, 0) !important;
}
.detail-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 998;
  background: rgba(26,18,8,0.5);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.detail-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.vd-panel .vd-shell {
  padding: 56px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.vd-panel .dl-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d6cdbc;
  background: #fff9f0;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #1a1208;
  transition: background .2s, border-color .2s;
  line-height: 1;
}
.vd-panel .dl-close:hover {
  background: #1a1208;
  color: #fff;
  border-color: #1a1208;
}

/* Desktop: centered modal */
@media (min-width: 901px) {
  .detail-panel.vd-panel {
    top: 5vh !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate3d(-50%, 30px, 0) !important;
    max-width: 880px !important;
    width: 94% !important;
    max-height: 90vh !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(26,18,8,.3) !important;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s !important;
  }
  .detail-panel.vd-panel.open {
    transform: translate3d(-50%, 0, 0) !important;
    opacity: 1 !important;
    pointer-events: auto;
  }
  .vd-panel .dl-close {
    position: absolute !important;
    top: 14px;
    right: 14px;
  }
  .vd-panel .vd-shell {
    padding: 50px 36px 60px;
    max-width: 760px;
  }
}

.vd-panel .dl-actions {
  display: flex;
  gap: 12px;
  padding: 32px 0 24px;
  border-bottom: 1px solid #d6cdbc;
}
.vd-panel .dl-action-btn {
  padding: 12px 24px;
  border: 1px solid #1a1208;
  background: transparent;
  color: #1a1208;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  border-radius: 0;
}
.vd-panel .dl-action-btn:hover {
  background: #1a1208;
  color: #fbf8f3;
}
.vd-panel .dl-visit-btn.visited {
  background: #2ecc71;
  border-color: #2ecc71;
  color: #fff;
}
.vd-panel .dl-save-btn.saved {
  background: #b5341a;
  border-color: #b5341a;
  color: #fff;
}

.vd-panel .dl-cta-row {
  padding: 40px 0 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.vd-panel .dl-cta-primary,
.vd-panel .dl-cta-maps {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
}
.vd-panel .dl-cta-primary {
  background: #1a1208;
  color: #fbf8f3;
}
.vd-panel .dl-cta-primary:hover {
  background: #c49a2a;
}
.vd-panel .dl-cta-maps {
  background: transparent;
  color: #1a1208;
  border: 1px solid #1a1208;
}
.vd-panel .dl-cta-maps:hover {
  background: #1a1208;
  color: #fbf8f3;
}

.vd-panel #detail-comments-wrap {
  padding: 32px 0 0;
}
.vd-panel .detail-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1a1208;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d6cdbc;
}
.vd-panel .detail-avg-rating {
  margin-left: 12px;
  font-size: 18px;
  color: #c49a2a;
}
.vd-panel .detail-rating-action {
  margin-bottom: 16px;
}
.vd-panel .detail-rating-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vd-panel .rating-select-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #958d82;
}
.vd-panel .rating-star {
  background: none;
  border: none;
  font-size: 22px;
  color: #d6cdbc;
  cursor: pointer;
  padding: 0 2px;
  transition: color .2s;
}
.vd-panel .rating-star:hover {
  color: #c49a2a;
}
.vd-panel .detail-auth-buttons {
  display: flex;
  gap: 8px;
}
.vd-panel .detail-action-btn {
  padding: 10px 20px;
  border: 1px solid #d6cdbc;
  background: #fff9f0;
  color: #1a1208;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.vd-panel .detail-action-btn:hover {
  border-color: #1a1208;
}
.vd-panel .comment-textarea {
  width: 100%;
  border: 1px solid #d6cdbc;
  background: #fff9f0;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #1a1208;
  resize: vertical;
  min-height: 80px;
  margin: 8px 0;
}
.vd-panel .comment-textarea:focus {
  outline: none;
  border-color: #c49a2a;
}
.vd-panel .comment-form-actions {
  display: flex;
  gap: 8px;
  margin: 8px 0;
}
.vd-panel .comment-photo-btn,
.vd-panel .comment-submit-btn {
  padding: 10px 20px;
  border: 1px solid #1a1208;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
  background: transparent;
  color: #1a1208;
}
.vd-panel .comment-submit-btn {
  background: #1a1208;
  color: #fbf8f3;
}
.vd-panel .comment-submit-btn:hover {
  background: #c49a2a;
  border-color: #c49a2a;
}
.vd-panel .comment-photo-btn:hover {
  background: #1a1208;
  color: #fbf8f3;
}
.vd-panel .comment-user-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #1a1208;
  color: #fbf8f3;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vd-panel .detail-comment {
  padding: 18px 0;
  border-bottom: 1px solid #e4dbcc;
}
.vd-panel .detail-comment-author {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a67c2e;
  margin-bottom: 4px;
}
.vd-panel .detail-comment-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1208;
}
.vd-panel .detail-comment-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #958d82;
  margin-top: 4px;
}
.vd-panel .detail-comment-rating {
  color: #c49a2a;
  font-size: 12px;
  margin-bottom: 4px;
}

.vd-panel .detail-user-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin: 16px 0;
}
.vd-panel .detail-user-photos-grid img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid #d6cdbc;
}

@media (max-width: 900px) {
  .vd-panel .vd-shell {
    padding: 48px 20px 60px;
  }
  .vd-panel .vd-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vd-panel .vd-head-meta {
    text-align: left;
    white-space: normal;
  }
  .vd-panel .vd-hero {
    grid-template-columns: 1fr;
  }
  .vd-panel .vd-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .vd-panel .vd-strip-cell {
    border-right: 1px solid #d6cdbc;
    border-bottom: 1px solid #d6cdbc;
  }
  .vd-panel .vd-strip-cell:nth-child(2n) {
    border-right: 0;
  }
  .vd-panel .vd-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vd-panel .dl-actions {
    flex-direction: column;
  }
  .vd-panel .dl-action-btn {
    width: 100%;
    text-align: center;
  }
  .vd-panel .dl-cta-row {
    flex-direction: column;
  }
  .vd-panel .dl-cta-primary,
  .vd-panel .dl-cta-maps {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .vd-panel .vd-crumbs {
    font-size: 10px;
  }
  .vd-panel .vd-strip {
    grid-template-columns: 1fr;
  }
  .vd-panel .vd-strip-cell {
    border-right: 0;
  }
}

/* ═══════════════════════════════════════════
   İTİNERARY (ROTA) BUILDER MODAL
   ═══════════════════════════════════════════ */

.itinerary-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 18, 8, 0.72);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.itinerary-overlay.open {
  display: flex;
}

.itinerary-modal {
  background: var(--cream);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(26, 18, 8, 0.28), 0 0 0 1px rgba(196,154,42,.14);
  animation: slideUp 0.3s ease-out;
}

.itinerary-head {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, #1a1208 0%, #3a2610 100%);
  border-radius: 20px 20px 0 0;
}

.itinerary-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 6px 0;
  color: #fdf9f4;
}

.itinerary-subtitle {
  color: rgba(253,249,244,.62);
  margin: 0;
  font-size: 13px;
}

.itinerary-content {
  padding: 20px 20px 0;
}

.itinerary-section {
  margin-bottom: 2rem;
}

.itinerary-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.itinerary-time-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.time-btn {
  padding: 1.5rem 1rem;
  background: var(--cream2);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.time-btn:hover {
  background: var(--cream3);
  border-color: var(--gold);
}

.time-btn.active {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

.time-value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.time-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
}

.time-btn.active .time-label {
  opacity: 1;
}

/* ── Yeni rota listesi ── */
.itin-route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: calc(88vh - 220px);
  overflow-y: auto;
  padding: 4px 2px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,154,42,.2) transparent;
}

.itin-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--cream2);
  border-radius: 12px;
  border: 1px solid var(--cream3);
  transition: background .18s;
  position: relative;
}

.itin-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  bottom: -9px;
  width: 2px;
  height: 9px;
  background: rgba(196,154,42,.3);
  border-radius: 2px;
}

.itin-item:hover {
  background: var(--cream3);
}

.itin-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: linear-gradient(135deg, #c49a2a, #a07820);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(196,154,42,.35);
}

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

.itin-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
}

.itin-meta {
  font-size: 12px;
  color: var(--ink3);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.itin-status {
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 20px;
}

.itin-open  { background: rgba(46,204,113,.12); color: #1a7a3a; }
.itin-closed { background: rgba(231,76,60,.10); color: #a02020; }

.itin-dist {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold2);
  background: rgba(196,154,42,.1);
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.itinerary-preview {
  background: var(--cream2);
  border-radius: 8px;
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.itinerary-item {
  display: flex;
  gap: 1rem;
  padding: 0.8rem;
  margin-bottom: 0.5rem;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
  align-items: flex-start;
}

.itinerary-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  color: var(--cream);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
}

.itinerary-detail {
  flex: 1;
}

.itinerary-name {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.itinerary-meal {
  font-size: 0.85rem;
  color: var(--ink2);
}

.itinerary-empty {
  padding: 24px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--ink3);
}

.itinerary-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 20px;
  border-top: 1px solid var(--cream3);
  background: var(--cream);
  border-radius: 0 0 20px 20px;
  position: sticky;
  bottom: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-primary {
  background: var(--gold);
  color: var(--cream);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 154, 42, 0.3);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--cream2);
  color: var(--ink);
  border: 1px solid var(--ink2);
}

.btn-secondary:hover {
  background: var(--cream3);
}

/* ═══════════════════════════════════════════
   ANİMASYONLAR
   ═══════════════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .modal,
  .itinerary-modal {
    max-width: 90vw;
    max-height: 85vh;
  }

  .modal-head,
  .itinerary-head {
    padding: 1.5rem;
  }

  .itinerary-time-buttons {
    grid-template-columns: 1fr;
  }

  .itinerary-actions,
  .modal-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* ── Pagination ── */
#venue-pagination { padding: 2rem 0 1rem; }

.pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-nav {
  background: var(--cream);
  border: 1px solid var(--cream3);
  color: var(--ink);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.page-nav:hover:not(:disabled) {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.page-nav:disabled {
  opacity: .35;
  cursor: default;
}

.page-nums { display: flex; align-items: center; gap: 4px; }

.page-num {
  min-width: 36px;
  height: 36px;
  background: var(--cream);
  border: 1px solid var(--cream3);
  color: var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.page-num:hover { background: var(--cream2); border-color: var(--gold); }
.page-num.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  font-weight: 600;
  pointer-events: none;
}

.page-ellipsis {
  color: var(--ink3);
  font-size: 13px;
  padding: 0 4px;
  line-height: 36px;
}

@media (max-width: 480px) {
  .page-nav { padding: 8px 12px; font-size: 12px; }
  .page-num { min-width: 32px; height: 32px; font-size: 12px; }
}