/* ============================================================
   Veteriner Evi — Homepage styles
   Design system: teal primary, coral accent, mustard secondary
   ============================================================ */

:root {
  /* palette */
  --teal-50:  #eaf7f4;
  --teal-100: #d3efe9;
  --teal-200: #a6dfd2;
  --teal-400: #4ec2b0;
  --teal-500: #2fae9a;
  --teal-600: #1f8e7d;
  --teal-700: #176a5d;
  --teal-900: #0e3f37;

  --coral-100: #ffe2d6;
  --coral-300: #ffb89a;
  --coral-500: #ff8e64;
  --coral-600: #f06f43;
  --coral-700: #c5532d;

  --mustard-200: #fbe6b3;
  --mustard-400: #f5c265;
  --mustard-500: #e7a83d;

  --plum-500: #8a5cb6;
  --sky-500:  #4aa3d8;
  --leaf-500: #6cba65;

  --ink-900: #1b2a3a;
  --ink-700: #38495a;
  --ink-500: #6b7a8a;
  --ink-300: #aab5c0;
  --ink-200: #d4dbe2;
  --ink-100: #ebeff3;

  --cream: #fff8f0;
  --cream-2: #fbf2e6;
  --paper: #ffffff;
  --shadow-soft: 0 6px 24px rgba(27,42,58,0.06), 0 2px 6px rgba(27,42,58,0.04);
  --shadow-pop:  0 18px 50px rgba(27,42,58,0.12), 0 4px 12px rgba(27,42,58,0.05);
  --shadow-warm: 0 12px 36px rgba(240,111,67,0.18);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, Segoe UI, sans-serif;

  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink-900);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.vp-root {
  container-type: inline-size;
  container-name: vp;
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.paw-bg {
  background-image: radial-gradient(circle at 12px 12px, rgba(47,174,154,0.07) 2.5px, transparent 3px),
                    radial-gradient(circle at 36px 36px, rgba(255,142,100,0.06) 2px, transparent 2.5px);
  background-size: 48px 48px, 48px 48px;
  background-position: 0 0, 24px 24px;
}

/* ---------- shared bits ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.eyebrow.coral { background: var(--coral-100); color: var(--coral-700); }
.eyebrow.mustard { background: var(--mustard-200); color: #6b4f0d; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0;
  letter-spacing: -0.01em;
}
h2.section-title {
  font-size: clamp(28px, 3.6cqw, 46px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 22ch;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 56ch;
  margin: 14px 0 0;
  text-wrap: pretty;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}
.section-head .right { display: flex; gap: 12px; flex-shrink: 0; }

/* button system */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal-600); color: white; box-shadow: 0 6px 18px rgba(31,142,125,0.32); }
.btn-primary:hover { background: var(--teal-700); }
.btn-coral { background: var(--coral-500); color: white; box-shadow: var(--shadow-warm); }
.btn-coral:hover { background: var(--coral-600); }
.btn-ghost { background: transparent; color: var(--ink-700); border: 1.5px solid var(--ink-200); }
.btn-ghost:hover { border-color: var(--teal-500); color: var(--teal-700); }
.btn-soft { background: var(--cream-2); color: var(--ink-900); }
.btn-soft:hover { background: var(--mustard-200); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(27,42,58,0.06);
}
.site-header .container {
  display: flex; align-items: center; gap: 24px;
  height: 76px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink-900);
  flex-shrink: 0;
}
.logo-img {
  width: 38px; height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-600);
  letter-spacing: 0.02em;
  margin-top: -3px;
}

.main-nav {
  display: flex; gap: 4px; align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--teal-50); color: var(--teal-700); }
.main-nav a.active { color: var(--teal-700); background: var(--teal-50); }

.header-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-pill);
  padding: 8px 16px 8px 14px;
  flex: 1; max-width: 320px;
  transition: border-color .15s, box-shadow .15s;
}
.header-search:focus-within { border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-50); }
.header-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 14px; color: var(--ink-900); min-width: 0;
}
.header-search input::placeholder { color: var(--ink-500); }
.header-search svg { color: var(--ink-500); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-700);
  transition: background .15s;
}
.icon-btn:hover { background: var(--teal-50); color: var(--teal-700); }

.hamburger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(255,142,100,0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 70%, rgba(79,179,165,0.10), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4cqw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-copy h1 .accent {
  background: linear-gradient(180deg, transparent 60%, rgba(245,194,101,0.55) 60%);
  padding: 0 4px;
  border-radius: 4px;
}
.hero-copy h1 .heart { color: var(--coral-500); display: inline-block; }
.hero-copy p.lead {
  font-size: 19px;
  color: var(--ink-500);
  margin: 22px 0 32px;
  max-width: 52ch;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--ink-200);
}
.hero-trust .avatars { display: flex; flex-shrink: 0; }
.hero-trust .avatars span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background-size: cover; background-position: center;
  margin-left: -10px;
  display: grid; place-items: center;
  font-size: 14px;
  font-family: var(--font-display); font-weight: 700;
  color: white;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .avatars span:nth-child(1) { background: var(--teal-500); }
.hero-trust .avatars span:nth-child(2) { background: var(--coral-500); }
.hero-trust .avatars span:nth-child(3) { background: var(--mustard-400); }
.hero-trust .avatars span:nth-child(4) { background: var(--plum-500); }
.hero-trust .text { font-size: 13px; color: var(--ink-500); line-height: 1.4; min-width: 0; }
.hero-trust .text strong { color: var(--ink-900); display: block; font-family: var(--font-display); font-size: 14px; }

/* Hero collage */
.hero-collage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 520px;
  margin: 0 0 0 auto;
  isolation: isolate;
}
.collage-tile {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  background: var(--paper);
}
.collage-tile.t1 {
  top: 0; left: 0; width: 52%; height: 54%;
  background: linear-gradient(135deg, #fce4d2 0%, #ffd4b8 100%);
  transform: rotate(-2deg);
}
.collage-tile.t2 {
  top: 6%; right: 0; width: 42%; height: 40%;
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--teal-200) 100%);
  transform: rotate(3deg);
}
.collage-tile.t3 {
  bottom: 0; right: 2%; width: 50%; height: 46%;
  background: linear-gradient(135deg, var(--mustard-200) 0%, var(--mustard-400) 100%);
  transform: rotate(2deg);
}
.collage-tile.t4 {
  bottom: 4%; left: 4%; width: 36%; height: 36%;
  background: linear-gradient(135deg, var(--coral-100) 0%, var(--coral-300) 100%);
  transform: rotate(-3deg);
}
.collage-tile .ph-label { display: none; }
.collage-animal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 70%; height: 70%;
  opacity: .9;
}
.collage-label {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(27,42,58,0.65);
  background: rgba(255,255,255,0.72);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.collage-tile.t1::before, .collage-tile.t2::before, .collage-tile.t3::before, .collage-tile.t4::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 16px,
    rgba(255,255,255,0.25) 16px, rgba(255,255,255,0.25) 17px);
}
.collage-pill {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  box-shadow: var(--shadow-pop);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  z-index: 2;
}
.collage-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.collage-pill.p1 { top: 44%; left: -4%; }
.collage-pill.p1 .dot { background: var(--coral-500); }
.collage-pill.p2 { top: 2%; right: -2%; }
.collage-pill.p2 .dot { background: var(--teal-500); }
.collage-pill.p3 { bottom: 2%; left: 32%; }
.collage-pill.p3 .dot { background: var(--mustard-500); }

/* hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.hero-stat { padding: 0 20px; border-right: 1px solid var(--ink-100); }
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.hero-stat .num .plus { color: var(--teal-500); font-size: 22px; }
.hero-stat .num .star { color: var(--mustard-500); }
.hero-stat .lbl { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section { padding: 100px 0; background: var(--cream); position: relative; }
.map-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(47,174,154,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.map-head {
  text-align: center;
  margin-bottom: 36px;
  display: flex; flex-direction: column; align-items: center;
}
.map-head .eyebrow { margin-bottom: 16px; }
.map-head h2 { text-align: center; margin: 0 auto; }
.map-head .section-lead { text-align: center; }

.filter-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0 24px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-700);
  transition: all .15s;
}
.chip:hover { border-color: var(--teal-300); }
.chip .dot { width: 10px; height: 10px; border-radius: 50%; }
.chip.active {
  background: var(--ink-900);
  color: var(--paper);
  border-color: var(--ink-900);
}
.chip .count { color: var(--ink-300); font-weight: 700; font-size: 12px; margin-left: 2px; }
.chip.active .count { color: rgba(255,255,255,0.5); }

.map-frame {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pop);
  padding: 28px;
  overflow: hidden;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.map-frame::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12px 12px, rgba(47,174,154,0.05) 2px, transparent 2.5px);
  background-size: 28px 28px;
  pointer-events: none;
}
.map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 600 / 280;
  background: linear-gradient(180deg, #f4faf8 0%, #eef6f3 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-canvas svg.turkey { width: 100%; height: 100%; display: block; }

/* pins */
.pin {
  position: absolute;
  transform: translate(-50%, -100%);
  width: 28px; height: 36px;
  cursor: pointer;
  transition: transform .15s ease;
}
.pin:hover { transform: translate(-50%, -100%) scale(1.15); z-index: 5; }
.pin svg { width: 100%; height: 100%; filter: drop-shadow(0 3px 4px rgba(0,0,0,0.25)); }
.pin.vet svg path { fill: var(--teal-500); }
.pin.shop svg path { fill: var(--coral-500); }
.pin.groom svg path { fill: var(--plum-500); }
.pin.hosp svg path { fill: var(--sky-500); }
.pin.boarding svg path { fill: var(--mustard-500); }
.pin.training svg path { fill: var(--leaf-500); }
.pin .pulse {
  position: absolute;
  inset: -4px -4px auto -4px;
  height: 36px;
  border-radius: 50%;
  opacity: 0.25;
  animation: pulse 2s ease-out infinite;
  pointer-events: none;
}
.pin.vet .pulse { background: var(--teal-500); }
.pin.shop .pulse { background: var(--coral-500); }
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.city-label {
  position: absolute;
  transform: translate(-50%, 0);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-700);
  background: rgba(255,255,255,0.85);
  padding: 2px 6px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.02em;
}

/* selected business info card overlaid on map */
.biz-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
  padding: 14px 16px;
  width: 280px;
  z-index: 10;
  border: 2px solid var(--teal-500);
}
.biz-card::before {
  content: '';
  position: absolute;
  bottom: -8px; left: 28px;
  width: 14px; height: 14px;
  background: var(--paper);
  border-right: 2px solid var(--teal-500);
  border-bottom: 2px solid var(--teal-500);
  transform: rotate(45deg);
}
.biz-card .biz-row { display: flex; gap: 12px; align-items: flex-start; }
.biz-card .biz-thumb {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  display: grid; place-items: center;
  color: var(--teal-700);
}
.biz-card .biz-info { flex: 1; min-width: 0; }
.biz-card .biz-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-900);
  line-height: 1.2;
  margin: 0;
}
.biz-card .biz-meta {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 3px;
}
.biz-card .biz-stats {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 700;
}
.biz-card .biz-stats .rating { color: var(--mustard-500); }
.biz-card .biz-stats .open { color: var(--teal-600); display: inline-flex; align-items: center; gap: 4px; }
.biz-card .biz-stats .open::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.biz-card .biz-actions {
  display: flex; gap: 8px; margin-top: 10px;
}
.biz-card .biz-actions .btn { padding: 7px 14px; font-size: 12px; }

/* legend + side stats */
.map-side {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-500);
}
.legend span { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; }
.legend span::before { content: ''; width: 10px; height: 10px; border-radius: 50%; }
.legend .vet::before { background: var(--teal-500); }
.legend .shop::before { background: var(--coral-500); }
.legend .groom::before { background: var(--plum-500); }
.legend .hosp::before { background: var(--sky-500); }
.legend .boarding::before { background: var(--mustard-500); }
.legend .training::before { background: var(--leaf-500); }

.map-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-300);
  font-style: italic;
  text-align: center;
  font-family: ui-monospace, Menlo, monospace;
}

/* ============================================================
   SERVICE CATEGORIES
   ============================================================ */
.services { padding: 100px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  min-height: 320px;
  box-shadow: var(--shadow-soft);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.svc-card .svc-art {
  height: 120px;
  margin: -28px -28px 20px;
  position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 14px,
    rgba(255,255,255,0.3) 14px, rgba(255,255,255,0.3) 15px);
}
.svc-card.vet .svc-art { background-color: var(--teal-100); }
.svc-card.shop .svc-art { background-color: var(--coral-100); }
.svc-card.groom .svc-art { background-color: #efe1f8; }
.svc-card.hosp .svc-art { background-color: #dceefc; }
.svc-card .svc-icon {
  position: absolute;
  bottom: -16px; right: 20px;
  width: 64px; height: 64px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 32px;
  box-shadow: var(--shadow-soft);
}
.svc-card.vet .svc-icon { background: var(--teal-500); color: white; }
.svc-card.shop .svc-icon { background: var(--coral-500); color: white; }
.svc-card.groom .svc-icon { background: var(--plum-500); color: white; }
.svc-card.hosp .svc-icon { background: var(--sky-500); color: white; }
.svc-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0 0 18px;
  flex: 1;
}
.svc-card .svc-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.svc-card .svc-count {
  background: var(--cream-2);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: var(--ink-700);
}
.svc-card .svc-link { color: var(--teal-700); display: inline-flex; align-items: center; gap: 4px; }
.svc-card .svc-link:hover { gap: 8px; }

/* ============================================================
   EMERGENCY
   ============================================================ */
.emergency {
  padding: 80px 0;
}
.emergency-card {
  background: linear-gradient(135deg, #2a201a 0%, #3a2a22 100%);
  color: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.emergency-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,142,100,0.35), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(245,194,101,0.2), transparent 60%);
}
.emergency-card > * { position: relative; z-index: 1; }
.emergency-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral-500);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.emergency-tag .pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse-dot 1.5s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  100% { box-shadow: 0 0 0 16px rgba(255,255,255,0); }
}
.emergency-card h2 {
  font-size: clamp(32px, 4cqw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: white;
  margin: 0 0 16px;
  text-wrap: balance;
}
.emergency-card p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 44ch;
  margin: 0 0 28px;
}
.emergency-card .ec-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.duty-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
}
.duty-card .duty-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.duty-card .duty-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--coral-500);
  display: grid; place-items: center;
  color: white;
  font-size: 22px;
}
.duty-card .duty-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: white; margin: 0; }
.duty-card .duty-loc { font-size: 13px; color: rgba(255,255,255,0.6); }
.duty-card .duty-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--mustard-400);
  letter-spacing: 0.02em;
  margin: 10px 0 16px;
}
.duty-card .duty-list { border-top: 1px dashed rgba(255,255,255,0.15); padding-top: 14px; }
.duty-card .duty-list-title { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-display); font-weight: 700; margin-bottom: 10px; }
.duty-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 13px; }
.duty-item .di-name { color: white; font-weight: 600; }
.duty-item .di-dist { color: rgba(255,255,255,0.5); }

/* ============================================================
   ADOPTION
   ============================================================ */
.adoption { padding: 100px 0; background: var(--cream-2); }
.adoption-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pet-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.pet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.pet-photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.pet-photo .ph {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 12px,
    rgba(255,255,255,0.4) 12px, rgba(255,255,255,0.4) 13px);
}
.pet-photo .ph-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--ink-700);
}
.pet-photo .fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid; place-items: center;
  color: var(--coral-500);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.pet-photo .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral-500);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pet-card.c1 .pet-photo { background: linear-gradient(135deg, #ffd9c1, #ffb89a); }
.pet-card.c2 .pet-photo { background: linear-gradient(135deg, #c8e9e1, #9bd7c8); }
.pet-card.c3 .pet-photo { background: linear-gradient(135deg, #fbe6b3, #f5c265); }
.pet-card.c4 .pet-photo { background: linear-gradient(135deg, #e1d2f2, #c4b0e0); }
.pet-card.c5 .pet-photo { background: linear-gradient(135deg, #d3edf8, #a8d3e8); }
.pet-card.c6 .pet-photo { background: linear-gradient(135deg, #ffd5cd, #ffb0a3); }

.pet-info { padding: 16px 18px 20px; }
.pet-info h3 { font-size: 19px; font-weight: 800; margin: 0; display: flex; justify-content: space-between; align-items: baseline; }
.pet-info h3 .age { font-size: 12px; color: var(--ink-500); font-weight: 600; font-family: var(--font-body); }
.pet-info .breed { font-size: 13px; color: var(--ink-500); margin: 2px 0 12px; }
.pet-info .city {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--ink-700);
  font-family: var(--font-display); font-weight: 600;
  margin-bottom: 14px;
}
.pet-info .pet-actions { display: flex; gap: 8px; }
.pet-info .pet-actions .btn { flex: 1; padding: 9px 12px; font-size: 13px; }
.pet-info .pet-actions .btn-primary { background: var(--coral-500); box-shadow: 0 4px 12px rgba(255,142,100,0.3); }
.pet-info .pet-actions .btn-primary:hover { background: var(--coral-600); }

/* ============================================================
   FEATURED BUSINESSES
   ============================================================ */
.featured { padding: 100px 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fb-card {
  display: flex; gap: 18px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s, box-shadow .2s;
}
.fb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-pop); }
.fb-thumb {
  width: 130px; height: 130px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 10px,
    rgba(255,255,255,0.3) 10px, rgba(255,255,255,0.3) 11px);
}
.fb-thumb .ph-label {
  position: absolute; bottom: 6px; left: 6px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  color: var(--ink-700);
  background: rgba(255,255,255,0.85);
  padding: 2px 6px;
  border-radius: 5px;
}
.fb-card.fb1 .fb-thumb { background-color: var(--teal-100); }
.fb-card.fb2 .fb-thumb { background-color: var(--coral-100); }
.fb-card.fb3 .fb-thumb { background-color: #efe1f8; }
.fb-card.fb4 .fb-thumb { background-color: var(--mustard-200); }

.fb-info { flex: 1; min-width: 0; }
.fb-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fb-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fb-cat.vet { background: var(--teal-100); color: var(--teal-700); }
.fb-cat.shop { background: var(--coral-100); color: var(--coral-700); }
.fb-cat.groom { background: #efe1f8; color: #62428f; }
.fb-cat.boarding { background: var(--mustard-200); color: #6b4f0d; }
.fb-cat.hosp { background: #dceefc; color: #1d5d83; }
.fb-cat.training { background: #d9f0d8; color: #2d6e2a; }
.fb-rating { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink-900); display: inline-flex; align-items: center; gap: 4px; }
.fb-rating .star { color: var(--mustard-500); }
.fb-rating .count { color: var(--ink-500); font-weight: 600; font-size: 12px; }
.fb-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; margin: 8px 0 4px; }
.fb-loc { font-size: 13px; color: var(--ink-500); display: inline-flex; align-items: center; gap: 4px; }
.fb-feats { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.fb-feat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  background: var(--cream-2);
  color: var(--ink-700);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   FORUM
   ============================================================ */
.forum { padding: 100px 0; background: var(--cream-2); }
.forum-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.forum-list {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-soft);
}
.topic {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  align-items: center;
  border-bottom: 1px dashed var(--ink-100);
  transition: background .15s;
}
.topic:last-child { border-bottom: 0; }
.topic:hover { background: var(--cream-2); }
.topic .t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}
.topic .t-mid { min-width: 0; }
.topic .t-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink-900); margin: 0 0 4px; }
.topic .t-meta { display: flex; gap: 10px; font-size: 12px; color: var(--ink-500); align-items: center; }
.topic .t-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.topic .t-cat.health { background: var(--teal-50); color: var(--teal-700); }
.topic .t-cat.food { background: var(--coral-100); color: var(--coral-700); }
.topic .t-cat.train { background: #efe1f8; color: #62428f; }
.topic .t-cat.adopt { background: var(--mustard-200); color: #6b4f0d; }
.topic .t-cat.story { background: #dceefc; color: #1d5d83; }
.topic .t-right { text-align: right; }
.topic .t-replies {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--ink-900);
}
.topic .t-ago { font-size: 11px; color: var(--ink-500); margin-top: 2px; }

.forum-side {
  background: linear-gradient(155deg, var(--teal-600) 0%, var(--teal-700) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.forum-side::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.forum-side > * { position: relative; z-index: 1; }
.forum-side h3 { font-size: 26px; font-weight: 800; color: white; margin: 0 0 8px; letter-spacing: -0.01em; }
.forum-side p { font-size: 14px; color: rgba(255,255,255,0.78); margin: 0 0 24px; }
.forum-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.forum-stat {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px;
}
.forum-stat .num { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: white; }
.forum-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.7); }
.forum-side .btn { align-self: flex-start; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); }
.post-cover {
  aspect-ratio: 4 / 3;
  position: relative;
  background-image: repeating-linear-gradient(45deg,
    rgba(255,255,255,0.0) 0, rgba(255,255,255,0.0) 14px,
    rgba(255,255,255,0.3) 14px, rgba(255,255,255,0.3) 15px);
}
.post-cover .ph-label {
  position: absolute; bottom: 10px; left: 10px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  background: rgba(255,255,255,0.85);
  padding: 3px 8px;
  border-radius: 5px;
  color: var(--ink-700);
}
.post-card.p1 .post-cover { background-color: var(--teal-100); }
.post-card.p2 .post-cover { background-color: var(--coral-100); }
.post-card.p3 .post-cover { background-color: var(--mustard-200); }
.post-card.p4 .post-cover { background-color: #efe1f8; }
.post-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--ink-500); margin-bottom: 10px; font-family: var(--font-display); font-weight: 600; }
.post-cat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.post-card.p2 .post-cat { color: var(--coral-700); }
.post-card.p3 .post-cat { color: #6b4f0d; }
.post-card.p4 .post-cat { color: #62428f; }
.post-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink-900);
  text-wrap: balance;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 80px 0 100px;
}
.newsletter-card {
  background:
    radial-gradient(circle at 90% 30%, rgba(255,142,100,0.15), transparent 50%),
    var(--cream-2);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-card h2 {
  font-size: clamp(28px, 3.4cqw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  text-wrap: balance;
}
.newsletter-card p { font-size: 16px; color: var(--ink-500); margin: 0 0 24px; }
.newsletter-form {
  display: flex;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 6px;
  box-shadow: var(--shadow-soft);
  align-items: center;
}
.newsletter-form input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; padding: 12px 18px; font-size: 15px; min-width: 0;
}
.newsletter-side {
  display: grid; place-items: center;
  position: relative;
}
.newsletter-pawstack {
  width: 220px; height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  display: grid; place-items: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(31,142,125,0.32);
}
.newsletter-pawstack::before {
  content: '🐾';
  font-size: 90px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.newsletter-pawstack .badge {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.newsletter-pawstack .badge.b1 { top: 0; left: -30px; }
.newsletter-pawstack .badge.b2 { bottom: 12px; right: -30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer .logo { color: white; }
.site-footer .logo small { color: var(--teal-400); }
.footer-logo-wrap {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; margin-bottom: 18px;
}
.footer-logo-img {
  width: 80px; height: 80px;
  object-fit: contain; flex-shrink: 0;
  background: white;
  border-radius: 16px;
  padding: 6px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: white;
  line-height: 1.15;
}
.footer-logo-text small {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-400);
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.footer-desc { margin: 0 0 22px; font-size: 14px; color: rgba(255,255,255,0.55); max-width: 32ch; line-height: 1.6; }
.social { display: flex; gap: 10px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: background .15s;
}
.social a:hover { background: var(--teal-600); color: white; }

.footer-col h4 {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .15s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

.footer-medyabim {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.medyabim-logo {
  height: 28px; width: auto;
  opacity: .55;
  transition: opacity .15s;
  filter: brightness(0) invert(1);
}
.footer-medyabim a:hover .medyabim-logo { opacity: .85; }

/* ============================================================
   RESPONSIVE — MOBILE
   container queries on .vp-root (so side-by-side preview works);
   when the homepage runs standalone, .vp-root spans the viewport.
   ============================================================ */
@container vp (max-width: 880px) {
  .container { padding: 0 20px; }

  .main-nav, .header-search, .icon-btn.notif, .btn.add-biz-desktop { display: none; }
  .hamburger { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; }
  .site-header .container { height: 64px; gap: 12px; }
  .header-actions { gap: 8px; }
  .btn.add-biz-mobile { display: inline-flex; padding: 8px 14px; font-size: 13px; }

  .hero { padding: 32px 0 48px; }
  .hero .container { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy h1 { font-size: 34px; line-height: 1.05; }
  .hero-copy p.lead { font-size: 15px; margin: 14px 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { margin-top: 24px; padding-top: 18px; gap: 12px; }
  .hero-trust .text { font-size: 12px; }
  .hero-trust .text strong { font-size: 13px; }
  .hero-collage { max-width: 280px; margin: 0 auto; }
  .collage-pill { font-size: 10px; padding: 6px 10px; }
  .collage-pill .dot { width: 6px; height: 6px; }
  .collage-pill.p1 { left: 0; }
  .collage-pill.p2 { right: 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 18px; margin-top: 28px; }
  .hero-stat { padding: 14px 12px; border-right: 0; border-bottom: 1px solid var(--ink-100); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: 0; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--ink-100); }
  .hero-stat .num { font-size: 22px; }

  .map-section { padding: 60px 0; }
  .map-head h2 { font-size: 28px; }
  .filter-chips { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
  .chip { flex-shrink: 0; padding: 8px 14px; font-size: 13px; }
  .map-frame { padding: 16px; border-radius: var(--radius-lg); width: 100%; }
  .map-canvas { aspect-ratio: 600 / 340; }
  .biz-card { width: 220px; }
  .biz-card .biz-name { font-size: 13px; }
  .biz-card .biz-meta, .biz-card .biz-stats { font-size: 11px; }
  .city-label { font-size: 8px; padding: 1px 4px; }
  .legend { font-size: 11px; gap: 10px; }

  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-card { padding: 18px; min-height: 240px; }
  .svc-card .svc-art { height: 80px; margin: -18px -18px 16px; }
  .svc-card .svc-icon { width: 48px; height: 48px; font-size: 24px; border-radius: 14px; right: 14px; }
  .svc-card h3 { font-size: 17px; }
  .svc-card p { font-size: 12px; margin-bottom: 14px; }
  .svc-card .svc-foot { font-size: 11px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 24px; }

  .emergency { padding: 56px 0; }
  .emergency-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; border-radius: var(--radius-lg); }
  .emergency-card h2 { font-size: 28px; }
  .emergency-card p { font-size: 15px; }
  .duty-card .duty-phone { font-size: 18px; }

  .adoption { padding: 64px 0; }
  .adoption-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pet-info { padding: 12px 14px 16px; }
  .pet-info h3 { font-size: 16px; }
  .pet-info .breed { font-size: 12px; }
  .pet-info .pet-actions .btn { padding: 8px 10px; font-size: 12px; }

  .featured { padding: 64px 0; }
  .featured-grid { grid-template-columns: 1fr; gap: 14px; }
  .fb-card { padding: 14px; gap: 12px; }
  .fb-thumb { width: 92px; height: 92px; }
  .fb-name { font-size: 15px; }

  .forum { padding: 64px 0; }
  .forum-wrap { grid-template-columns: 1fr; gap: 16px; }
  .forum-side { padding: 24px; }
  .forum-side h3 { font-size: 22px; }
  .topic { grid-template-columns: 36px 1fr auto; padding: 12px; gap: 10px; }
  .topic .t-avatar { width: 36px; height: 36px; font-size: 13px; }
  .topic .t-title { font-size: 14px; }

  .blog { padding: 64px 0; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .post-body { padding: 14px 16px 18px; }
  .post-title { font-size: 15px; }

  .newsletter { padding: 56px 0 64px; }
  .newsletter-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; text-align: center; }
  .newsletter-side { order: -1; }
  .newsletter-pawstack { width: 140px; height: 140px; }
  .newsletter-pawstack::before { font-size: 60px; }
  .newsletter-pawstack .badge { font-size: 10px; padding: 6px 10px; }
  .newsletter-pawstack .badge.b1 { left: -20px; top: -10px; }
  .newsletter-pawstack .badge.b2 { right: -20px; bottom: 0; }
  .newsletter-form input { padding: 10px 14px; font-size: 14px; }
  .newsletter-form .btn { padding: 10px 16px; font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; font-size: 12px; }
  .footer-bottom .links { flex-wrap: wrap; gap: 14px; }
}

/* ============================================================
   İşletme Profil Sayfası (Faz 5)
   ============================================================ */

/* ─── Hero ──────────────────────────────────────────────────── */
.bp-hero {
  position: relative;
  background: var(--teal-900);
  padding-bottom: 0;
}
.bp-cover {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bp-cover--placeholder {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.bp-cover--map {
  overflow: hidden;
}
.bp-cover--map #bp-hero-map {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bp-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.bp-hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 0 0 24px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
.bp-logo-wrap { flex-shrink: 0; }
.bp-logo {
  width: 96px; height: 96px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 4px solid var(--paper);
  box-shadow: var(--shadow-pop);
  display: flex; align-items: center; justify-content: center;
}
.bp-logo-icon { font-size: 42px; line-height: 1; }
.bp-hero-info { flex: 1; min-width: 0; }
.bp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 700; font-family: var(--font-display); }
.badge--cat  { background: var(--teal-100); color: var(--teal-700); }
.badge--duty { background: #fff3cd; color: #856404; }
.badge--featured { background: var(--mustard-200); color: #7a5800; }
.badge--open { background: #d4edda; color: #155724; }
.bp-name { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--paper); margin: 0 0 10px; line-height: 1.2; }
.bp-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.bp-location { color: rgba(255,255,255,0.75); font-size: 14px; }
.bp-rating-summary { display: flex; align-items: center; gap: 6px; }
.bp-stars { color: var(--mustard-400); letter-spacing: 2px; font-size: 15px; }
.bp-rating-summary strong { color: var(--paper); font-size: 15px; }
.bp-review-cnt { color: rgba(255,255,255,0.6); font-size: 13px; }
.bp-status { font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-pill); }
.bp-status--open  { background: rgba(40,167,69,0.25); color: #75e090; }
.bp-status--closed { background: rgba(220,53,69,0.2); color: #f4a0a8; }

/* ─── Body layout ────────────────────────────────────────────── */
.bp-body { padding: 40px 40px 80px; }
.bp-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.bp-sidebar { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 20px; }

/* ─── Cards ──────────────────────────────────────────────────── */
.bp-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
}
.bp-card:last-child { margin-bottom: 0; }
.bp-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink-100);
  display: flex; align-items: center; gap: 10px;
}
.bp-desc { color: var(--ink-700); line-height: 1.7; font-size: 15px; }
.bp-badge-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── Nöbet Banner ───────────────────────────────────────────── */
.bp-duty-banner {
  background: linear-gradient(135deg, #fff3cd, #ffeeba);
  border: 2px solid #ffc107;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 15px;
  margin-bottom: 24px;
  color: #856404;
}

/* ─── Galeri ─────────────────────────────────────────────────── */
.bp-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.bp-gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; display: block; }
.bp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.bp-gallery-item:hover img { transform: scale(1.05); }

/* ─── Çalışma Saatleri ───────────────────────────────────────── */
.bp-hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bp-hours-table tr { border-bottom: 1px solid var(--ink-100); }
.bp-hours-table tr.today { background: var(--teal-50); }
.bp-hours-table tr.today .bp-day { font-weight: 700; color: var(--teal-700); }
.bp-hours-table tr.today .bp-day::after { content: ' (bugün)'; font-size: 11px; opacity: 0.7; }
.bp-day  { padding: 9px 12px; color: var(--ink-700); width: 130px; }
.bp-time { padding: 9px 12px; color: var(--ink-900); font-weight: 500; }
.closed-text { color: var(--ink-300); }

/* ─── Harita Widget ──────────────────────────────────────────── */
.bp-map-widget {
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.bp-directions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn-dir {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-dir:hover { opacity: 0.82; }
.btn-dir--google { background: #4285f4; color: #fff; }
.btn-dir--yandex { background: #fc3f1d; color: #fff; }
.btn-dir--apple  { background: var(--ink-900); color: #fff; }

/* ─── Nitelikler ─────────────────────────────────────────────── */
.bp-attrs { display: flex; flex-wrap: wrap; gap: 10px; }
.bp-attr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-50); color: var(--teal-700);
  border: 1px solid var(--teal-100);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}

/* ─── Rating Breakdown ───────────────────────────────────────── */
.bp-rating-breakdown {
  display: flex; gap: 32px; align-items: center;
  background: var(--cream); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 24px;
}
.bp-overall-score { text-align: center; flex-shrink: 0; min-width: 80px; }
.bp-big-score { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--teal-600); line-height: 1; display: block; }
.bp-big-stars { color: var(--mustard-400); font-size: 18px; letter-spacing: 2px; margin: 4px 0; }
.bp-big-stars .star-fill { color: var(--mustard-400); }
.bp-big-stars .star-empty { color: var(--ink-200); }
.bp-score-label { font-size: 11px; color: var(--ink-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.bp-criteria-scores { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bp-criteria-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.bp-criteria-label { width: 140px; flex-shrink: 0; color: var(--ink-700); font-weight: 600; }
.bp-criteria-bar-wrap { flex: 1; height: 8px; background: var(--ink-100); border-radius: 999px; overflow: hidden; }
.bp-criteria-bar { height: 100%; background: linear-gradient(90deg, var(--teal-400), var(--teal-600)); border-radius: 999px; transition: width 0.6s ease; }
.bp-criteria-val { width: 28px; text-align: right; font-weight: 700; color: var(--ink-900); flex-shrink: 0; }

/* ─── Yorumlar ───────────────────────────────────────────────── */
.bp-review-badge {
  background: var(--teal-500); color: #fff;
  font-size: 12px; padding: 2px 8px; border-radius: var(--radius-pill);
}
.bp-empty-reviews { color: var(--ink-500); font-size: 15px; padding: 20px 0; text-align: center; }
.bp-reviews-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.bp-review-item {
  padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--ink-100); background: var(--paper);
  transition: box-shadow 0.2s;
}
.bp-review-item:hover { box-shadow: var(--shadow-soft); }
.bp-review-item--duty { border-color: #ffc107; background: #fffef0; }
.bp-review-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 12px; }
.bp-reviewer-info { display: flex; align-items: center; gap: 12px; }
.bp-reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-700));
  color: #fff; font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bp-reviewer-name { font-weight: 700; font-size: 14px; display: block; }
.bp-verified-badge { font-size: 11px; color: var(--teal-600); font-weight: 600; margin-left: 6px; }
.bp-duty-badge { font-size: 11px; color: #856404; background: #fff3cd; padding: 1px 7px; border-radius: 999px; margin-left: 6px; }
.bp-review-meta { text-align: right; flex-shrink: 0; }
.bp-review-score { font-size: 15px; font-weight: 800; color: var(--teal-600); display: block; }
.bp-review-date { font-size: 12px; color: var(--ink-400); }
.bp-review-ratings { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.bp-mini-rating { background: var(--cream); border-radius: var(--radius-pill); padding: 3px 10px; font-size: 12px; }
.bp-mini-label { color: var(--ink-500); }
.bp-mini-stars { color: var(--mustard-400); letter-spacing: 1px; }
.bp-review-comment { color: var(--ink-700); font-size: 14px; line-height: 1.65; margin: 0; }

/* ─── Yorum Formu ────────────────────────────────────────────── */
.bp-review-form-wrap { border-top: 2px solid var(--ink-100); padding-top: 28px; margin-top: 8px; }
.bp-form-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin: 0 0 18px; }
.bp-form-warning {
  background: #fff3cd; border: 1px solid #ffc107;
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; color: #856404; margin-bottom: 16px;
}
.bp-review-form { display: flex; flex-direction: column; gap: 16px; }
.bp-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.bp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bp-form-group { display: flex; flex-direction: column; gap: 6px; }
.bp-form-group label { font-size: 13px; font-weight: 700; color: var(--ink-700); }
.bp-form-group small { font-weight: 400; color: var(--ink-400); }
.bp-form-group input,
.bp-form-group textarea {
  padding: 10px 14px; border-radius: var(--radius-sm);
  border: 2px solid var(--ink-200); font-family: var(--font-body);
  font-size: 14px; color: var(--ink-900); background: var(--paper);
  transition: border-color 0.2s;
  resize: vertical;
}
.bp-form-group input:focus,
.bp-form-group textarea:focus { outline: none; border-color: var(--teal-400); }
.bp-stars-section { display: flex; flex-direction: column; gap: 12px; }
.bp-stars-title { font-size: 13px; font-weight: 700; color: var(--ink-700); margin: 0; }
.bp-stars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.bp-star-group { display: flex; flex-direction: column; gap: 6px; }
.bp-star-label { font-size: 12px; font-weight: 600; color: var(--ink-600); }
.bp-star-input { display: flex; gap: 4px; }
.bp-star {
  font-size: 22px; color: var(--ink-200);
  cursor: pointer; transition: color 0.15s, transform 0.15s;
  padding: 0 1px;
}
.bp-star.active,
.bp-star:hover { color: var(--mustard-400); }
.bp-star:active { transform: scale(0.9); }
.bp-form-check label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-700); cursor: pointer; }
.bp-form-actions { display: flex; justify-content: flex-end; }
.bp-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 700;
  padding: 11px 28px; border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: opacity 0.2s, transform 0.15s;
}
.bp-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.bp-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.bp-form-message {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; margin-top: 4px;
}
.bp-form-message--success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.bp-form-message--error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ─── E-posta Doğrulama ──────────────────────────────────────── */
.bp-verify-step { padding: 24px; background: var(--cream); border-radius: var(--radius); border: 2px solid var(--teal-100); }
.bp-verify-info { font-size: 14px; color: var(--ink-700); margin: 0 0 16px; line-height: 1.6; }
.bp-verify-form { display: flex; gap: 12px; align-items: center; }
.bp-verify-form input {
  flex: 1; padding: 11px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--ink-200); font-size: 20px; font-weight: 700;
  letter-spacing: 6px; text-align: center; max-width: 160px;
}
.bp-verify-form input:focus { outline: none; border-color: var(--teal-400); }

.bp-moderation-note {
  font-size: 12px; color: var(--ink-400); margin: 16px 0 0;
  text-align: center; padding-top: 16px; border-top: 1px solid var(--ink-100);
}

/* ─── Sidebar İletişim ───────────────────────────────────────── */
.bp-contact-card { margin-bottom: 0; }
.bp-contact-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bp-contact-list li { display: flex; align-items: center; gap: 10px; }
.bp-contact-icon { font-size: 16px; flex-shrink: 0; }
.bp-contact-link { color: var(--teal-700); font-weight: 600; font-size: 14px; }
.bp-contact-link:hover { text-decoration: underline; }
.bp-whatsapp { color: #25d366; }
.bp-address { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-700); line-height: 1.5; margin-bottom: 10px; }
.bp-established { font-size: 13px; color: var(--ink-500); padding-top: 10px; border-top: 1px solid var(--ink-100); margin-top: 10px; }
.bp-cta-card { background: linear-gradient(135deg, var(--teal-50), var(--teal-100)); border: 2px solid var(--teal-200); text-align: center; }
.bp-cta-card p { margin: 0 0 14px; color: var(--teal-800, var(--teal-700)); font-size: 14px; }
.bp-cta-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--teal-600); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background 0.2s;
}
.bp-cta-btn:hover { background: var(--teal-700); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .bp-grid { grid-template-columns: 1fr; }
  .bp-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .bp-sidebar > .bp-card { flex: 1 1 280px; margin-bottom: 0; }
  .bp-rating-breakdown { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bp-criteria-label { width: 110px; }
}
@media (max-width: 600px) {
  .bp-body { padding: 20px 16px 60px; }
  .bp-card { padding: 20px; }
  .bp-name { font-size: 20px; }
  .bp-hero-inner { gap: 14px; padding: 0 0 16px; margin-top: -36px; }
  .bp-logo { width: 72px; height: 72px; }
  .bp-logo-icon { font-size: 30px; }
  .bp-form-row { grid-template-columns: 1fr; }
  .bp-stars-grid { grid-template-columns: 1fr 1fr; }
  .bp-verify-form { flex-direction: column; align-items: stretch; }
  .bp-verify-form input { max-width: 100%; }
  .bp-directions { flex-direction: column; }
  .btn-dir { justify-content: center; }
  .bp-cover { height: 150px; }
}

/* ============================================================
   BLOG CONTENT — rich text styles
   ============================================================ */
.blog-content {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-700);
}
.blog-content p {
  margin: 0 0 20px;
}
.blog-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-100);
  line-height: 1.35;
}
.blog-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-800);
  margin: 28px 0 10px;
}
.blog-content ul,
.blog-content ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.blog-content li {
  margin-bottom: 8px;
}
.blog-content strong {
  font-weight: 700;
  color: var(--ink-900);
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 13.5px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.blog-content thead {
  background: var(--teal-600);
  color: #fff;
}
.blog-content th {
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
  vertical-align: top;
}
.blog-content tbody tr:nth-child(odd) {
  background: var(--cream-2);
}
.blog-content tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .blog-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }
}
