/* Kars Nöbetçi — uygulama kabuğu + masaüstü */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; max-width: 100%; -webkit-text-size-adjust: 100%; }
img, video, svg { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; }

:root {
  --wine: #8f1220;
  --wine-2: #6d0e18;
  --red: #c81e3a;
  --ink: #1a1413;
  --muted: #6b5e5a;
  --line: rgba(143, 18, 32, .12);
  --card: #fff;
  --bg: #f3ece8;
  --live: #059669;
  --wa: #128c7e;
  --radius: 1.2rem;
  --tab-h: 4.15rem;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
}

body.app {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.ico { width: 1.15rem; height: 1.15rem; fill: currentColor; flex-shrink: 0; display: block; }
.ico-sm { width: 1rem; height: 1rem; }
.ico-lg { width: 1.35rem; height: 1.35rem; }
.ico-stroke { fill: none; }
main { flex: 1 0 auto; }

.wrap { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.wrap-n { padding-left: 0; padding-right: 0; }

/* ——— Topbar ——— */
.app-top {
  position: sticky; top: 0; z-index: 40;
  padding-top: var(--safe-t);
  background: linear-gradient(180deg, var(--wine) 0%, var(--wine-2) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(111, 14, 24, .28);
}
.app-top__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .7rem 1rem .75rem;
}
.app-brand {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; min-width: 0; color: #fff;
}
.app-brand img {
  width: 2.15rem; height: 2.15rem; border-radius: .7rem;
  object-fit: cover; background: #fff; flex-shrink: 0;
}
.app-brand strong { display: block; font-size: .95rem; font-weight: 800; letter-spacing: -.02em; }
.app-brand small { display: block; font-size: .7rem; opacity: .8; font-weight: 650; }
.app-nav-d { display: none; gap: .3rem; }
.app-nav-d a {
  color: rgba(255,255,255,.82); text-decoration: none; font-weight: 750; font-size: .82rem;
  padding: .4rem .75rem; border-radius: 999px;
}
.app-nav-d a.is-on, .app-nav-d a:hover { background: rgba(255,255,255,.16); color: #fff; }

/* ——— Chips ——— */
.chip-row {
  display: flex; gap: .45rem; overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: .75rem 1rem .15rem;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto; text-decoration: none;
  padding: .42rem .85rem; border-radius: 999px;
  background: #fff; color: var(--wine);
  font-size: .78rem; font-weight: 800;
  border: 1px solid var(--line);
}
.chip.is-on {
  background: var(--wine); color: #fff; border-color: var(--wine);
}

/* ——— Page shell + side ads ——— */
.ad-top { margin: .65rem 1rem 0; display: none; }
.ad-top:has(ins.adsbygoogle[data-ad-status="filled"]) { display: block; }
.ad-top:not(:has(.ad-native)) { display: none; margin: 0; }
.ad-top .ad-native { margin: 0; }
.page-shell { display: block; }
.page-main { min-width: 0; }
.ad-rail { display: none; }

/* ——— Hero = ürün detayı ——— */
.app-hero {
  margin: .7rem 1rem 0;
  background: var(--card);
  border-radius: calc(var(--radius) + .15rem);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(111, 14, 24, .12);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.app-hero--empty { display: block; }
.app-hero__photo {
  position: relative; height: 230px; min-height: 230px; background: var(--wine-2);
}
.app-hero__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.app-live {
  position: absolute; top: .4rem; left: .4rem;
  display: inline-flex; align-items: center; gap: .28rem;
  background: rgba(5, 150, 105, .92); color: #fff;
  font-size: .55rem; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; padding: .18rem .42rem; border-radius: 999px;
}
.app-live i, .app-live .dot {
  width: .45rem; height: .45rem; border-radius: 99px; background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}
.app-hero__body {
  padding: .9rem 1rem 1rem; min-width: 0;
  display: flex; flex-direction: column;
}
.app-kicker {
  margin: 0 0 .25rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--red);
}
.app-hero h1, .app-hero__name {
  margin: 0; font-size: 1.55rem; font-weight: 800; letter-spacing: -.04em; line-height: 1.15;
}
.app-hero__name a { text-decoration: none; color: var(--wine); }
.app-hero__name a:hover { color: var(--red); }
.app-hero__photo-link { display: block; height: 100%; color: inherit; }
.pd-hours {
  margin: .4rem 0 .55rem; color: var(--muted); font-size: .86rem; font-weight: 700;
  display: flex; align-items: center; gap: .4rem;
}
.pd-hours .ico { color: var(--red); }
.pd-label {
  margin: .45rem 0 .12rem; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.hero-title {
  margin: 0; display: block;
  font-size: 1.18rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.3;
  color: var(--red); text-decoration: none;
}
.hero-title--tel { font-size: 1.32rem; }
.hero-title--sm { font-size: 1.02rem; }
.hero-title--sm.hero-title--tel { font-size: 1.12rem; }
.hero-addr {
  margin: 0; font-size: .95rem; font-weight: 650; line-height: 1.4; color: var(--ink);
}
.hero-tel {
  margin: 0; display: inline-block; font-size: 1.28rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--wine); text-decoration: none;
}
.hero-tel:hover { color: var(--red); }
.pd-actions {
  display: flex; flex-wrap: wrap; gap: .55rem .35rem;
  margin: .85rem 0 .15rem;
}
.pd-act {
  flex: 0 0 4.4rem; width: 4.4rem;
  display: flex; flex-direction: column; align-items: center; gap: .32rem;
  background: none; border: 0; padding: 0; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  text-decoration: none; color: var(--ink);
  font-size: .68rem; font-weight: 800; letter-spacing: -.01em;
}
.pd-act__ico {
  width: 3.15rem; height: 3.15rem; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(111, 14, 24, .12);
}
.pd-act__ico .ico { width: 1.45rem; height: 1.45rem; }
.pd-act--call .pd-act__ico { background: var(--wine); color: #fff; }
.pd-act--wa .pd-act__ico { background: #25d366; color: #fff; }
.pd-act--ig .pd-act__ico { background: radial-gradient(circle at 30% 110%, #fdf497, #fd5949 45%, #d6249f 70%, #285aeb); color: #fff; }
.pd-act--fb .pd-act__ico { background: #1877f2; color: #fff; }
.pd-act--map .pd-act__ico { background: var(--ink); color: #fff; }
.pd-act--share .pd-act__ico { background: #fff; color: var(--wine); border: 1px solid var(--line); }
.app-hero__cta {
  display: flex; gap: .45rem; flex-wrap: wrap;
  margin-top: auto; padding: .85rem 0 0;
}
.app-hero__cta .cta-btn { flex: 1 1 0; min-width: 5rem; padding: .78rem .5rem; font-size: .84rem; }
.app-empty { padding: 1.4rem 1.1rem; text-align: center; }
.app-empty h1 { font-size: 1.15rem; margin: 0 0 .4rem; }
.app-empty p { margin: 0 0 .8rem; color: var(--muted); }
.app-empty a { color: var(--wine); font-weight: 800; }

/* ——— Native ads ——— */
.ad-native {
  margin: .85rem 1rem 0;
  background: transparent;
  overflow: hidden;
  text-align: center;
  position: relative;
  display: none;
}
.ad-native:has(ins.adsbygoogle[data-ad-status="filled"]) { display: block; }
.ad-native--rail { margin: 0; }
.ad-native--foot { margin: .85rem 1rem 0; }
.ad-native__box { width: 100%; display: block; }
.ad-native ins.adsbygoogle { display: block; margin: 0 auto; width: 100%; min-height: 0; }
.ad-native--mid:has(ins.adsbygoogle[data-ad-status="filled"]) ins.adsbygoogle,
.ad-native--hero:has(ins.adsbygoogle[data-ad-status="filled"]) ins.adsbygoogle { min-height: 250px; }
/* Unfilled AdSense kutularını gizle (onay öncesi boş alan) */
ins.adsbygoogle[data-ad-status="unfilled"],
.ad-native:has(ins.adsbygoogle[data-ad-status="unfilled"]) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.ad-rail:has(ins.adsbygoogle[data-ad-status="unfilled"]),
.ad-top:has(ins.adsbygoogle[data-ad-status="unfilled"]) {
  display: none !important;
}
.ad-native--rail:has(ins.adsbygoogle[data-ad-status="filled"]) ins.adsbygoogle { min-height: 280px; }
.ad-native--leader:has(ins.adsbygoogle[data-ad-status="filled"]) ins.adsbygoogle { min-height: 90px; }
.ad-wrap { margin: .85rem auto 0; max-width: 728px; width: calc(100% - 2rem); text-align: center; overflow: hidden; }

.ad-house {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  width: 100%; text-decoration: none; color: #fff; text-align: left;
  border-radius: calc(var(--radius) - .15rem); padding: 1.05rem 1.15rem 1.15rem;
  min-height: 108px; box-shadow: 0 10px 28px rgba(26, 20, 19, .12);
}
.ad-house__k {
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  opacity: .75; margin-bottom: .35rem;
}
.ad-house strong { font-size: 1.12rem; letter-spacing: -.03em; line-height: 1.2; }
.ad-house__d { margin-top: .3rem; font-size: .86rem; font-weight: 650; opacity: .92; line-height: 1.35; }
.ad-house__cta {
  margin-top: .7rem; display: inline-flex; align-items: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-weight: 800; font-size: .78rem;
  padding: .4rem .8rem; border-radius: 999px;
}
.ad-house--wine { background: linear-gradient(135deg, #8f1220, #c81e3a 58%, #6d0e18); }
.ad-house--ink { background: linear-gradient(135deg, #1a1413, #3d2a28 55%, #8f1220); }
.ad-house--gold { background: linear-gradient(135deg, #7a4a12, #c9852a 50%, #8f1220); }
.ad-house--sky { min-height: 280px; padding: 1.3rem 1.1rem; }
.ad-house--sky strong { font-size: 1.28rem; }
.ad-house--banner { min-height: 118px; }

/* ——— Rows / lists ——— */
.app-block { margin: 1.1rem 1rem 0; }
.app-block h2 {
  margin: 0 0 .55rem; font-size: .78rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.app-list {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
}
.app-row {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem .85rem; text-decoration: none; color: inherit;
  border-bottom: 1px solid var(--line);
}
.app-row:last-child { border-bottom: 0; }
.app-row img, .app-row__av {
  width: 2.7rem; height: 2.7rem; border-radius: .8rem;
  object-fit: cover; background: var(--wine); flex-shrink: 0;
}
.app-row__txt { min-width: 0; flex: 1; }
.app-row__txt b { display: block; font-size: .92rem; color: var(--wine); }
.app-row__txt span { display: block; font-size: .75rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-row .ico { color: #c4b4b0; }

/* ——— SEO fold ——— */
.app-seo {
  margin: 1rem 1rem 0; background: #fff; border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
}
.app-seo > summary {
  list-style: none; cursor: pointer; padding: .9rem 1rem;
  font-weight: 800; font-size: .92rem;
}
.app-seo > summary::-webkit-details-marker { display: none; }
.app-seo__body { padding: 0 1rem 1rem; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.app-seo__body h3 { color: var(--ink); font-size: .9rem; margin: .85rem 0 .35rem; }
.app-seo details { margin: .4rem 0; }
.app-seo details p { margin: .3rem 0 0; }
.app-seo a { color: var(--wine); font-weight: 700; }

.app-block, .nl-band, .site-footer { content-visibility: auto; contain-intrinsic-size: 1px 120px; }
.app-hero, .map-card, .chip-row { content-visibility: visible; contain: none; }

.home-links {
  margin: 1rem 1rem 0; text-align: center; font-size: .88rem; font-weight: 700;
  color: var(--muted);
}
.home-links a { color: var(--wine); text-decoration: none; }
.home-links span { margin: 0 .35rem; opacity: .5; }

/* ——— Tab bar ——— */
.app-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  height: calc(var(--tab-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px rgba(26, 20, 19, .08);
}
.app-tabs a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .18rem; text-decoration: none; color: #8a7a76;
  font-size: .62rem; font-weight: 800; letter-spacing: .02em;
}
.app-tabs a.is-on { color: var(--wine); }
.app-tabs a.is-call { color: var(--ink); }
.app-tabs a.is-map { color: var(--red); }
.app-tabs .ico { width: 1.25rem; height: 1.25rem; }

body.app { padding-bottom: calc(var(--tab-h) + var(--safe-b)); }

/* ——— Newsletter (homepage, above footer) ——— */
.nl-band {
  margin: .85rem 1rem 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .85rem .9rem .95rem;
  box-shadow: 0 10px 28px rgba(111, 14, 24, .06);
}
.nl-kicker {
  margin: 0; font-size: .65rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--red);
}
.nl-band h2 { margin: .15rem 0 .25rem; font-size: 1.05rem; letter-spacing: -.02em; }
.nl-band__copy p:last-child { margin: 0 0 .65rem; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.nl-row { display: grid; gap: .4rem; }
.nl-form .nl-input {
  width: 100%; border-radius: .75rem; border: 1px solid var(--line);
  background: #faf6f4; color: var(--ink); padding: .62rem .75rem; margin: 0;
}
.nl-form .nl-btn {
  width: 100%; background: var(--wine); color: #fff; border: 0; border-radius: .8rem;
  font-weight: 800; padding: .68rem; cursor: pointer;
}
.nl-form .nl-check {
  display: flex; gap: .45rem; align-items: flex-start; margin: .45rem 0 0;
  color: var(--muted); font-size: .74rem; line-height: 1.35;
}
.nl-form .nl-check a { color: var(--wine); font-weight: 800; }
.nl-form .nl-msg { margin: .4rem 0 0; font-size: .78rem; font-weight: 700; }
.nl-form .nl-msg.is-ok { color: #047857; }
.nl-form .nl-msg.is-err { color: var(--red); }

/* ——— Footer ——— */
.site-footer {
  margin-top: .85rem; background:
    radial-gradient(700px 180px at 10% 0%, rgba(200, 30, 58, .22), transparent 60%),
    linear-gradient(180deg, #241416 0%, #140c0d 100%);
  color: #d7ccc8;
  padding: .85rem 1rem calc(1rem);
  font-size: .8rem;
}
.site-footer a { color: #f3b4b8; text-decoration: none; }
.foot-in { max-width: 72rem; margin: 0 auto; }
.foot-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .65rem; }
.foot-brand {
  display: flex; align-items: center; gap: .6rem; color: #fff; text-decoration: none; min-width: 0;
}
.foot-brand img {
  width: 2.15rem; height: 2.15rem; border-radius: .65rem; object-fit: cover; background: #fff; flex-shrink: 0;
}
.foot-brand strong { display: block; font-size: .88rem; font-weight: 800; color: #fff; }
.foot-brand small { display: block; font-size: .68rem; color: #cbbfb9; font-weight: 600; line-height: 1.3; }
.foot-contact { display: none; }
.foot-ilce {
  display: flex; flex-wrap: wrap; gap: .28rem;
  margin: 0 0 .55rem;
}
.foot-ilce a {
  flex: 0 0 auto;
  font-size: .66rem; font-weight: 800; letter-spacing: .01em;
  padding: .18rem .46rem; line-height: 1.2;
  border: 1px solid rgba(243, 180, 184, .22);
  border-radius: .35rem; color: #f6c9cc; background: rgba(255,255,255,.04);
}
.foot-ilce a.is-on { background: var(--red); color: #fff; border-color: var(--red); }
.foot-grid { display: none; gap: .7rem; }
.foot-h { font-weight: 800; color: #f3b4b8; margin: 0 0 .4rem; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.foot-copy { margin: .55rem 0 0; color: #8a7a76; font-size: .7rem; }
.foot-d { display: none; }

.cookie-bar {
  position: fixed; left: .65rem; right: .65rem;
  bottom: calc(var(--tab-h) + var(--safe-b) + .5rem);
  z-index: 80; background: #1a1413; color: #f3ece8;
  border-radius: 1rem; padding: .75rem .85rem;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  display: flex; gap: .65rem; align-items: center; justify-content: space-between;
}
.cookie-bar p { margin: 0; font-size: .78rem; line-height: 1.35; }
.cookie-bar a { color: #f3b4b8; }
.cookie-bar button {
  flex-shrink: 0; border: 0; background: var(--red); color: #fff;
  border-radius: 999px; padding: .45rem .8rem; font-weight: 800; font-size: .78rem; cursor: pointer;
}
.cookie-long { display: none; }
.cookie-bar[hidden] { display: none !important; }

/* ——— Pages / cards ——— */
.page { max-width: 42rem; margin: 0 auto; padding: 1.15rem 1rem 1.5rem; }
.page h1 { font-size: 1.45rem; margin: 0 0 .5rem; letter-spacing: -.03em; }
.page .lead { color: var(--muted); margin: 0 0 1rem; }
.page-wide { max-width: 72rem; padding-bottom: .35rem; }
.prose, .prose-legal { color: var(--ink); line-height: 1.6; font-size: .92rem; }
.prose h2, .prose-legal h2 { font-size: 1.05rem; margin: 1.1rem 0 .4rem; }
.prose h3 { font-size: .95rem; margin: .9rem 0 .35rem; }
.prose a, .prose-legal a { color: var(--wine); font-weight: 700; }
.prose ul, .prose ol, .prose-legal ul { padding-left: 1.15rem; }
.prose li { margin: .25rem 0; }

.guide-kicker { margin: 0 0 .35rem; color: var(--wine); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.guide-meta { color: var(--muted); font-size: .82rem; margin: 0 0 1.1rem; }
.guide-layout {
  display: grid; gap: 1rem; width: min(1120px, calc(100% - 1.5rem));
  margin: .85rem auto 1.25rem; align-items: start;
}
.guide-layout__main { min-width: 0; }
.guide-hero {
  background: #fff; border-radius: 1.15rem; padding: 1.15rem 1.15rem 1rem;
  border: 1px solid rgba(143,18,32,.07);
  background-image: linear-gradient(135deg, rgba(143,18,32,.06), transparent 55%), #fff;
}
.guide-hero h1 { margin: 0 0 .45rem; font-size: 1.45rem; letter-spacing: -.03em; }
.guide-hero .lead { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.guide-grid { display: grid; gap: .75rem; margin: 1rem 0; }
.guide-card {
  display: flex; flex-direction: column; gap: .35rem; padding: 1rem 1.05rem;
  background: #fff; border-radius: 1rem; text-decoration: none; color: inherit;
  border: 1px solid rgba(143,18,32,.08); transition: border-color .15s ease, transform .15s ease;
}
.guide-card:hover { border-color: rgba(143,18,32,.28); transform: translateY(-1px); }
.guide-card--compact { padding: .85rem .95rem; }
.guide-card__kicker { font-size: .68rem; font-weight: 800; color: var(--wine); text-transform: uppercase; letter-spacing: .04em; }
.guide-card strong { font-size: 1rem; line-height: 1.35; }
.guide-card__desc { color: var(--muted); font-size: .84rem; line-height: 1.45; }
.guide-card__meta { font-size: .75rem; color: var(--muted); margin-top: .2rem; }
.guide-foot { margin-top: 1.5rem; color: var(--muted); font-size: .88rem; }
.guide-note {
  background: #fff; border-radius: 1rem; padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(143,18,32,.07); margin: 1rem 0 0;
}
.guide-note h2 { margin-top: 0; }
.guide-body {
  background: #fff; border-radius: 1.15rem; padding: 1.1rem 1.15rem 1.25rem;
  border: 1px solid rgba(143,18,32,.06); margin-top: .85rem;
}
.guide-body .ad-native { margin: 1.1rem 0; }
.guide-cta {
  margin: 1.15rem 0 0; padding: 1rem 1.05rem; background: #fff; border-radius: 1rem;
  border: 1px solid rgba(143,18,32,.1);
}
.guide-cta .btn-inline {
  display: inline-block; margin: .35rem .45rem .35rem 0; padding: .45rem .85rem;
  background: var(--wine); color: #fff !important; border-radius: .7rem; text-decoration: none; font-weight: 700; font-size: .86rem;
}
.guide-cta .btn-inline--ghost {
  background: transparent; color: var(--wine) !important; border: 1px solid rgba(143,18,32,.25);
}
.guide-related { margin: 1.25rem 0 0; }
.guide-related h2 { font-size: 1.05rem; margin: 0 0 .65rem; }
.guide-related__grid { display: grid; gap: .65rem; }
.guide-teaser__list { padding-left: 1.1rem; margin: .5rem 0 0; }
.guide-teaser__list a { color: var(--wine); font-weight: 700; }
.district-guide { background: #fff; border-radius: 1.15rem; padding: 1rem 1.05rem 1.15rem; }
.district-guide h2 { margin-top: 0; font-size: 1.15rem; }
.pharmacy-about { margin: 1.15rem 0 0; padding: 1rem 1.05rem; background: #fff; border-radius: 1rem; }

.guide-side { display: grid; gap: .75rem; }
.guide-side__card {
  background: #fff; border-radius: 1rem; padding: .9rem .95rem;
  border: 1px solid rgba(143,18,32,.08);
}
.guide-side__label {
  margin: 0 0 .35rem; font-size: .68rem; font-weight: 800; letter-spacing: .05em;
  text-transform: uppercase; color: var(--wine);
}
.guide-side__date { margin: 0 0 .65rem; font-size: .8rem; color: var(--muted); }
.guide-side__empty { margin: 0 0 .65rem; font-size: .84rem; color: var(--muted); }
.guide-side__duty-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.guide-side__duty-list li {
  display: grid; grid-template-columns: 1fr auto; gap: .35rem; align-items: center;
  padding: .45rem .5rem; border-radius: .7rem; background: rgba(143,18,32,.04);
}
.guide-side__pharm { text-decoration: none; color: inherit; min-width: 0; }
.guide-side__pharm strong { display: block; font-size: .84rem; line-height: 1.3; }
.guide-side__pharm span { display: block; font-size: .72rem; color: var(--muted); }
.guide-side__call {
  width: 2rem; height: 2rem; border-radius: 999px; display: grid; place-items: center;
  background: var(--wine); color: #fff; text-decoration: none;
}
.guide-side__btn {
  display: block; margin-top: .7rem; text-align: center; padding: .5rem .7rem;
  background: var(--wine); color: #fff !important; border-radius: .7rem;
  text-decoration: none; font-weight: 700; font-size: .82rem;
}
.guide-side__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.guide-side__nav a {
  display: block; padding: .45rem .5rem; border-radius: .55rem; text-decoration: none;
  color: var(--ink); font-size: .82rem; line-height: 1.35;
}
.guide-side__nav a:hover { background: rgba(143,18,32,.06); }
.guide-side__nav a.is-on { background: rgba(143,18,32,.1); color: var(--wine); font-weight: 700; }
.guide-side__chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.guide-side__chips a {
  font-size: .72rem; font-weight: 700; text-decoration: none; color: var(--wine);
  padding: .28rem .5rem; border-radius: 999px; background: rgba(143,18,32,.07);
}
.guide-side__ad .ad-native { margin: 0; }

@media (min-width: 700px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .guide-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 1.15rem; }
  .guide-side { position: sticky; top: 4.6rem; }
  .guide-hero h1 { font-size: 1.75rem; }
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem;
}
.card h2 { margin: 0 0 .4rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.search-bar { display: flex; gap: .4rem; margin: .85rem 0 .5rem; flex-wrap: wrap; }
.search-bar input, .search-bar select {
  flex: 1; border: 1px solid var(--line); border-radius: .9rem; padding: .7rem .85rem; background: #fff; min-width: 0;
}
.search-bar select { font-weight: 700; flex: 0 0 100%; }
.search-bar button {
  border: 0; background: var(--wine); color: #fff; font-weight: 800;
  border-radius: .9rem; padding: .7rem 1rem; cursor: pointer;
}
.chip-row--flush { padding-left: 0; padding-right: 0; }
.crumbs { font-size: .78rem; color: var(--muted); margin: 0 0 .45rem; }
.crumbs a { color: var(--wine); text-decoration: none; font-weight: 700; }
.duty-grid { display: grid; gap: .65rem; }
.duty-grid p { margin: .2rem 0; font-weight: 650; }
.detail-note { margin-top: .85rem; font-size: .84rem; line-height: 1.5; }
.ph-card {
  display: flex; gap: .8rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; margin-bottom: .65rem;
}
.ph-card img { width: 5.5rem; height: 5.5rem; object-fit: cover; flex-shrink: 0; }
.ph-card__b { padding: .7rem .75rem .75rem 0; min-width: 0; flex: 1; }
.ph-card__b p { margin: 0; font-size: .72rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: .05em; }
.ph-card__b h2 { margin: .15rem 0 .25rem; font-size: 1rem; }
.ph-card__b h2 a { text-decoration: none; color: inherit; }
.ph-card__b span { display: block; font-size: .78rem; color: var(--muted); }
.cta-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .35rem; margin-top: .55rem; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .3rem;
  padding: .55rem .4rem; border-radius: .7rem; font-weight: 800; font-size: .72rem; text-decoration: none;
  border: 0; cursor: pointer; font-family: inherit; color: inherit;
}
.cta-map { background: var(--wine); color: #fff; }
.cta-call { background: var(--ink); color: #fff; }
.cta-wa { background: var(--wa); color: #fff; }
.cta-share { background: #fff; color: var(--wine); border: 1px solid var(--line); }
.cta-share.is-copied, .hero-share-ico.is-copied { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }

.app-hero__photo .ph-slider {
  position: absolute; inset: 0; border-radius: 0; min-height: 0; height: 100%;
}
.app-hero__photo .ph-slider__slide img { height: 100%; min-height: 230px; }
.ph-slider { position: relative; overflow: hidden; background: var(--wine-2); border-radius: var(--radius); min-height: 168px; }
.ph-slider__track { display: flex; height: 100%; transition: transform .45s ease; }
.ph-slider__slide { flex: 0 0 100%; min-width: 0; position: relative; }
.ph-slider__slide img { width: 100%; height: 168px; object-fit: cover; display: block; }
.ph-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2rem; height: 2rem; border: 0; border-radius: 99px;
  background: rgba(255,255,255,.92); color: var(--wine); display: grid; place-items: center; cursor: pointer; z-index: 2;
}
.ph-slider__nav--prev { left: .55rem; }
.ph-slider__nav--next { right: .55rem; }
.ph-slider__dots { position: absolute; bottom: .5rem; left: 0; right: 0; display: flex; justify-content: center; gap: .3rem; z-index: 2; }
.ph-slider__dots button { width: .45rem; height: .45rem; border: 0; border-radius: 99px; background: rgba(255,255,255,.45); }
.ph-slider__dots button.is-active { background: #fff; width: 1.1rem; }

.duty-split { display: contents; }
.duty-meta, .duty-actions, .hide-mobile { }
.duty-badge { display: none; }

.contact-line { display: flex; gap: .55rem; align-items: center; margin: .55rem 0; font-weight: 700; }
.contact-line a { text-decoration: none; display: flex; gap: .55rem; align-items: center; }
.muted { color: var(--muted); }
.badge-live {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #ecfdf5; color: #047857; font-size: .7rem; font-weight: 800;
  padding: .25rem .6rem; border-radius: 99px; text-transform: uppercase;
}

/* ——— Desktop ——— */
@media (min-width: 860px) {
  body.app { padding-bottom: 0; background:
    radial-gradient(900px 400px at 0% 0%, rgba(143,18,32,.12), transparent 55%),
    var(--bg);
  }
  .app-tabs { display: none; }
  .app-nav-d { display: flex; }
  .app-brand strong { font-size: 1.12rem; }
  .app-brand img { width: 2.5rem; height: 2.5rem; }
  .chip-row { flex-wrap: wrap; overflow: visible; max-width: none; margin: 0; padding: 1rem 0 .35rem; }
  .chip-row--top { display: flex; }
  .wrap-pad { padding-left: 1rem; padding-right: 1rem; }
  .app-hero {
    margin: .9rem 0 0; max-width: none;
    grid-template-columns: 1fr 1fr;
  }
  .app-hero--empty { display: block; }
  .app-hero__photo { height: auto; min-height: 460px; }
  .app-hero__photo img { height: 100%; }
  .app-hero__photo .ph-slider__slide img { height: 100%; min-height: 460px; }
  .app-hero__body { padding: 1.5rem 1.7rem 1.45rem; }
  .app-hero__name { font-size: 2.15rem; }
  .hero-title { font-size: 1.38rem; }
  .hero-title--tel { font-size: 1.72rem; }
  .pd-act { flex-basis: 4.7rem; width: 4.7rem; }
  .pd-act__ico { width: 3.4rem; height: 3.4rem; }
  .app-live { top: .75rem; left: .75rem; font-size: .65rem; padding: .28rem .6rem; }
  .app-hero__cta { padding-top: 1.15rem; }
  .app-hero__cta .cta-btn { padding: .85rem .55rem; font-size: .9rem; }
  .search-bar select { flex: 0 0 11rem; }
  .duty-grid { grid-template-columns: 1fr 1fr; }
  .page-wide { max-width: none; padding-left: 0; padding-right: 0; }
  .page-shell {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 1.25rem 1.5rem;
  }
  .page-main { width: 100%; min-width: 0; }
  .ad-top { margin: .85rem 1.25rem 0; max-width: none; }
  .ad-native { margin: .85rem 0 0; width: 100%; }
  .ad-native--foot { margin: .85rem 1.25rem 0; }
  .app-block { max-width: none; margin: 1.15rem 0 0; padding: 0; }
  .app-list { display: grid; grid-template-columns: 1fr 1fr; }
  .app-seo { max-width: none; margin: 1.25rem 0; }
  .app-seo[open] .app-seo__body { display: block; }
  .nl-band {
    max-width: 72rem; margin: 1.6rem auto 0;
    display: grid; grid-template-columns: .95fr 1.35fr; gap: 1.6rem; align-items: center;
    padding: 1.4rem 1.6rem;
  }
  .nl-band h2 { font-size: 1.45rem; }
  .nl-band__copy p:last-child { margin-bottom: 0; font-size: .9rem; }
  .nl-row { grid-template-columns: 1fr 1fr auto; align-items: start; }
  .nl-form .nl-btn { width: auto; padding: .68rem 1.3rem; white-space: nowrap; }
  .site-footer { padding: 2.35rem 1.25rem 1.35rem; margin-top: 0; }
  .foot-top { justify-content: space-between; align-items: flex-start; margin-bottom: 1.15rem; }
  .foot-brand img { width: 3.1rem; height: 3.1rem; border-radius: .85rem; }
  .foot-brand strong { font-size: 1.22rem; }
  .foot-brand small { font-size: .8rem; max-width: 28rem; }
  .foot-contact { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; }
  .foot-contact a, .foot-contact span {
    display: inline-flex; align-items: center; gap: .4rem; color: #f3b4b8; font-weight: 700;
  }
  .foot-ilce { gap: .4rem; margin: 0 0 1.35rem; }
  .foot-ilce a { font-size: .78rem; padding: .38rem .8rem; border-radius: 999px; }
  .foot-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.08); }
  .foot-d { display: block; }
  .foot-m { display: none; }
  .cookie-bar { left: 50%; right: auto; transform: translateX(-50%); width: min(640px, calc(100% - 2rem)); bottom: 1.2rem; }
  .cookie-long { display: inline; }
  .cookie-short { display: none; }
  .ph-card { max-width: 72rem; margin: 0 auto .75rem; }
  .ph-card img { width: 11rem; height: 8.5rem; }
  .page { max-width: 46rem; padding-top: 2rem; }
  .cta-row { grid-template-columns: repeat(3, 1fr); max-width: 28rem; }
  .hide-desk { display: none !important; }
}

@media (max-width: 859px) {
  .hide-mobile { display: none !important; }
  .foot-d { display: none; }
  .app-hero__photo .ph-slider__nav { display: none; }
}

/* Yan reklam: içeriği daraltmadan, ancak ekranda yer varken */
@media (min-width: 1500px) {
  .page-shell:has(.ad-rail .ad-native) {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    gap: 1.15rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 1.15rem 1.5rem;
    align-items: start;
  }
  .ad-rail { display: block; }
  .ad-rail .ad-native { margin: .85rem 0 0; position: sticky; top: 5.2rem; }
  .ad-top { margin-left: 1.15rem; margin-right: 1.15rem; max-width: none; }
  .ad-native--foot { margin-left: 1.15rem; margin-right: 1.15rem; }
  .page-main .app-hero,
  .page-main .app-block,
  .page-main .ad-native,
  .page-main .map-live,
  .page-main .map-card,
  .page-main .id-card { margin-left: 0; margin-right: 0; max-width: none; }
  .page-main .profile-page { width: 100%; }
}
@media (min-width: 1800px) {
  .page-shell:has(.ad-rail .ad-native) {
    grid-template-columns: 180px minmax(0, 1fr) 180px;
    gap: 1.35rem;
    padding: 0 1.5rem 1.6rem;
  }
  .ad-top, .ad-native--foot { margin-left: 1.5rem; margin-right: 1.5rem; }
}

.id-card {
  display: grid; grid-template-columns: 5.6rem 1fr; gap: .85rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin: .65rem 0; box-shadow: 0 10px 28px rgba(111,14,24,.08);
}
.id-card__media { position: relative; background: var(--wine-2); min-height: 5.6rem; }
.id-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 5.6rem; }
.id-card__live {
  position: absolute; top: .4rem; left: .4rem;
  background: var(--live); color: #fff; font-size: .62rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: .18rem .45rem; border-radius: 999px;
}
.id-card__body { padding: .7rem .85rem .85rem 0; min-width: 0; }
.id-card .pd-actions { margin: .55rem 0 .2rem; }
.id-card .pd-act { flex-basis: 3.65rem; width: 3.65rem; font-size: .62rem; }
.id-card .pd-act__ico { width: 2.7rem; height: 2.7rem; }
.id-card .pd-act__ico .ico { width: 1.2rem; height: 1.2rem; }
.id-card .pd-label { margin-top: .35rem; }
.id-card__dist { margin: 0; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--red); }
.id-card h2 { margin: .15rem 0 .45rem; font-size: 1.05rem; }
.id-card h2 a { text-decoration: none; color: var(--wine); }
.id-card h2 a:hover { color: var(--red); }
.id-card__media { display: block; color: inherit; }
.id-meta { list-style: none; margin: 0 0 .55rem; padding: 0; }
.id-meta li {
  display: flex; gap: .4rem; align-items: flex-start;
  font-size: .8rem; font-weight: 650; color: var(--ink); margin: .22rem 0;
}
.id-meta .ico { color: var(--red); margin-top: .12rem; }
.id-meta a { color: inherit; text-decoration: none; font-weight: 800; }
.id-card--duty, .id-card--profile {
  grid-template-columns: 1fr;
}
.id-card--duty .id-card__media img,
.id-card--profile .id-card__media img {
  min-height: 11.5rem; height: 12.5rem; width: 100%;
}
.id-card--duty .id-card__body,
.id-card--profile .id-card__body { padding: .9rem 1rem 1rem; }
.id-card--profile {
  margin: 0 0 1rem;
}
.id-card--profile h2 { font-size: 1.55rem; }

.profile-page { width: min(72rem, calc(100% - 2rem)); margin: .85rem auto 0; }
.profile-slider { margin-bottom: .85rem; border-radius: var(--radius); }
.profile-slider .ph-slider__slide img { height: 240px; }

.map-card, .pano-card, .map-live {
  margin: .85rem 1rem 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  contain: layout;
}
.profile-page .map-card, .profile-page .pano-card { margin-left: 0; margin-right: 0; }
.map-card__bar {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .55rem .8rem; font-size: .8rem; font-weight: 800;
  border-bottom: 1px solid var(--line);
}
.map-card__bar a { color: var(--wine); text-decoration: none; }
.map-embed, .leaflet-host, .pano-box, .map-facade {
  width: 100%; height: 220px; border: 0; display: block; background: #e8ddd8;
}
.map-facade {
  position: relative; display: grid; place-items: center;
  background: linear-gradient(160deg, #d9cfc9, #efe8e3 55%, #d4c4be);
  overflow: hidden;
}
.map-facade__bg {
  position: absolute; inset: 0; opacity: .35;
  background:
    radial-gradient(circle at 30% 40%, rgba(143,18,32,.2), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(26,20,19,.12), transparent 40%);
}
.map-facade__btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .45rem;
  border: 0; cursor: pointer; font-family: inherit; font-weight: 800;
  background: var(--wine); color: #fff; border-radius: .85rem;
  padding: .7rem 1rem; font-size: .88rem;
  box-shadow: 0 10px 24px rgba(111,14,24,.22);
}
.map-facade__btn .ico { width: 1.15rem; height: 1.15rem; }
.map-facade__hint {
  position: absolute; left: .75rem; right: .75rem; bottom: .65rem; z-index: 1;
  margin: 0; font-size: .72rem; color: rgba(26,20,19,.7); text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pano-box { height: 280px; }
.map-live { margin: .85rem 0 0; }
.map-live .leaflet-host { height: 260px; }
.map-live__hint { padding: .45rem .8rem .65rem; margin: 0; font-size: .75rem; }

@media (min-width: 860px) {
  .id-card { grid-template-columns: 8.5rem 1fr; max-width: none; margin: 0 0 .75rem; }
  .id-card--duty, .id-card--profile { grid-template-columns: 14rem 1fr; }
  .id-card--profile .id-card__media img,
  .id-card--duty .id-card__media img { min-height: 14rem; height: 100%; }
  .profile-slider .ph-slider__slide img { height: 380px; }
  .map-embed, .leaflet-host, .map-facade { height: 320px; }
  .pano-box { height: 420px; }
  .map-live { max-width: none; margin-left: 0; margin-right: 0; }
  .map-card { max-width: none; margin-left: 0; margin-right: 0; }
  .map-live .leaflet-host { height: 340px; }
}
