/* vet-finder.gr — design tokens & layout */
:root {
  --vf-teal-50: #f0fdfa;
  --vf-teal-100: #ccfbf1;
  --vf-teal-200: #99f6e4;
  --vf-teal-500: #14b8a6;
  --vf-teal-600: #0d9488;
  --vf-teal-700: #0f766e;
  --vf-teal-800: #115e59;
  --vf-amber-400: #fbbf24;
  --vf-amber-500: #f59e0b;
  --vf-red-500: #ef4444;
  --vf-red-600: #dc2626;
  --vf-slate-50: #f8fafc;
  --vf-slate-100: #f1f5f9;
  --vf-slate-200: #e2e8f0;
  --vf-slate-300: #cbd5e1;
  --vf-slate-400: #94a3b8;
  --vf-slate-500: #64748b;
  --vf-slate-600: #475569;
  --vf-slate-700: #334155;
  --vf-slate-800: #1e293b;
  --vf-slate-900: #0f172a;
  --vf-white: #ffffff;
  --vf-font: 'Inter', system-ui, -apple-system, sans-serif;
  --vf-radius: 12px;
  --vf-radius-lg: 16px;
  --vf-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 4px 16px rgba(15, 23, 42, 0.06);
  --vf-shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.12);
  --vf-max: 1180px;
  --vf-nav-h: 68px;
  --vf-banner-h: 0px;
}

body.vf-has-banner { --vf-banner-h: 38px; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vf-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--vf-slate-700);
  background: var(--vf-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--vf-teal-700); text-decoration: none; }
a:hover { color: var(--vf-teal-600); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--vf-teal-600);
  color: var(--vf-white);
  border-radius: 0 0 var(--vf-radius) 0;
}
.skip-link:focus { left: 0; }

/* ── Web-Partner banner ── */
.vf-partner-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--vf-banner-h, 38px);
  z-index: 110;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--vf-teal-700), var(--vf-teal-600));
  color: var(--vf-white);
  overflow: hidden;
}
.vf-partner-banner[hidden] { display: none; }

.vf-partner-banner__inner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 0 52px;
  justify-content: center;
  font-size: 0.84rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  color: var(--vf-white);
  text-decoration: none;
  transition: filter 0.2s;
}
.vf-partner-banner__inner:hover { filter: brightness(1.08); color: var(--vf-white); }
.vf-partner-banner__inner:focus-visible {
  outline: 2px solid var(--vf-white);
  outline-offset: -3px;
}

.vf-partner-banner__close {
  flex: 0 0 auto;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--vf-white);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s, background 0.15s;
  padding: 0;
}
.vf-partner-banner__close:hover,
.vf-partner-banner__close:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.18);
  outline: none;
}
.vf-partner-banner__close:focus-visible { box-shadow: inset 0 0 0 2px var(--vf-white); }

.vf-partner-banner__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vf-amber-400);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: vf-banner-pulse 1.8s infinite;
  flex-shrink: 0;
}

.vf-partner-banner__label {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}

.vf-partner-banner__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vf-partner-banner__text strong { font-weight: 700; }

.vf-partner-banner__arrow {
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.vf-partner-banner__inner:hover .vf-partner-banner__arrow { transform: translateX(3px); }

@keyframes vf-banner-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

@media (max-width: 720px) {
  body.vf-has-banner { --vf-banner-h: 42px; }
  .vf-partner-banner__inner { font-size: 0.72rem; gap: 8px; padding: 0 10px 0 40px; }
  .vf-partner-banner__close { width: 34px; }
  .vf-partner-banner__label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .vf-partner-banner__pulse { animation: none; }
}

.container {
  width: min(100% - 2rem, var(--vf-max));
  margin-inline: auto;
}

/* ── Nav ── */
.vf-nav {
  position: sticky;
  top: var(--vf-banner-h, 0px);
  z-index: 100;
  height: var(--vf-nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vf-slate-200);
}

.vf-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem;
  min-width: 0;
}

.vf-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--vf-slate-900);
  flex-shrink: 0;
  min-width: 0;
}
.vf-nav__logo:hover { color: var(--vf-teal-700); }
.vf-nav__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.vf-nav__logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vf-nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.vf-nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.vf-nav__list > li > a,
.vf-nav__drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vf-slate-600);
  border-radius: var(--vf-radius-sm);
  white-space: nowrap;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}
.vf-nav__list > li > a:hover,
.vf-nav__drop-trigger:hover { color: var(--vf-teal-700); background: var(--vf-teal-50); }
.vf-nav__emergency { color: var(--vf-red-600) !important; font-weight: 600 !important; }
.vf-nav__emergency:hover { background: #fef2f2 !important; color: var(--vf-red-600) !important; }
.vf-nav__chev { font-size: 0.65rem; opacity: 0.7; }

.vf-nav__dropdown { position: relative; }
.vf-nav__drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 11rem;
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  background: #fff;
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-md);
  box-shadow: var(--vf-shadow-lg);
  z-index: 120;
}
.vf-nav__drop-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vf-slate-700);
  border-radius: var(--vf-radius-sm);
  white-space: nowrap;
}
.vf-nav__drop-menu a:hover { background: var(--vf-teal-50); color: var(--vf-teal-700); }
.vf-nav__dropdown.is-open .vf-nav__drop-menu,
.vf-nav__dropdown:hover .vf-nav__drop-menu { display: block; }
.vf-nav__dropdown.is-open .vf-nav__drop-trigger,
.vf-nav__dropdown.is-active-group .vf-nav__drop-trigger { color: var(--vf-teal-700); }

.vf-nav__cta-mobile { display: none !important; }

.vf-nav__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.vf-nav__cta {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .vf-nav {
    position: sticky;
    overflow: visible;
  }
  .vf-nav__inner {
    position: relative;
  }
  .vf-nav__links {
    display: flex !important;
    position: static;
    flex: 1;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
  .vf-nav__cta-mobile { display: none !important; }
  .vf-nav__cta { display: inline-flex !important; }
  .vf-burger { display: none !important; }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .vf-nav__list > li > a,
  .vf-nav__drop-trigger {
    padding: 0.4rem 0.45rem;
    font-size: 0.8125rem;
  }
  .vf-nav__cta {
    padding: 0.45rem 0.7rem;
    font-size: 0.8125rem;
  }
}

.vf-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.vf-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vf-slate-700);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 1024px) {
  .vf-nav__inner { position: relative; }
  .vf-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    max-height: calc(100dvh - var(--vf-nav-h) - var(--vf-banner-h, 0px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--vf-white);
    border-bottom: 1px solid var(--vf-slate-200);
    box-shadow: var(--vf-shadow-lg);
    z-index: 99;
  }
  .vf-nav__links.is-open { display: flex; }
  .vf-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }
  .vf-nav__list > li { width: 100%; border-bottom: 1px solid var(--vf-slate-100); }
  .vf-nav__list > li > a,
  .vf-nav__drop-trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    border-radius: 0;
  }
  .vf-nav__drop-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0.5rem;
    background: var(--vf-slate-50);
  }
  .vf-nav__dropdown.is-open .vf-nav__drop-menu { display: block; }
  .vf-nav__dropdown:hover .vf-nav__drop-menu { display: none; }
  .vf-nav__dropdown.is-open:hover .vf-nav__drop-menu { display: block; }
  .vf-nav__drop-menu a {
    padding: 0.65rem 1.25rem 0.65rem 2rem;
    font-size: 0.95rem;
  }
  .vf-nav__cta-mobile {
    display: flex !important;
    margin: 0.75rem 1.25rem 0;
    justify-content: center;
  }
  .vf-nav__cta { display: none !important; }
  .vf-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--vf-radius);
  }
  .vf-burger:focus-visible {
    outline: 2px solid var(--vf-teal-500);
    outline-offset: 2px;
  }
  .vf-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .vf-burger.is-open span:nth-child(2) { opacity: 0; }
  .vf-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Buttons ── */
.vf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--vf-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  white-space: nowrap;
}
.vf-btn:active { transform: scale(0.98); }

.vf-btn--primary {
  background: var(--vf-teal-600);
  color: var(--vf-white);
  border-color: var(--vf-teal-600);
}
.vf-btn--primary:hover {
  background: var(--vf-teal-700);
  border-color: var(--vf-teal-700);
  color: var(--vf-white);
}

.vf-btn--outline {
  background: transparent;
  color: var(--vf-teal-700);
  border-color: var(--vf-teal-600);
}
.vf-btn--outline:hover {
  background: var(--vf-teal-50);
}

.vf-btn--white {
  background: var(--vf-white);
  color: var(--vf-teal-700);
  border-color: var(--vf-white);
}
.vf-btn--white:hover { background: var(--vf-teal-50); }

.vf-btn--emergency {
  background: var(--vf-red-600);
  color: var(--vf-white);
  border-color: var(--vf-red-600);
}
.vf-btn--emergency:hover {
  background: var(--vf-red-500);
  border-color: var(--vf-red-500);
  color: var(--vf-white);
}

.vf-btn--lg { padding: 0.85rem 1.75rem; font-size: 1rem; }
.vf-btn--block { width: 100%; }

/* ── Hero ── */
.vf-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background: linear-gradient(160deg, var(--vf-teal-50) 0%, var(--vf-white) 45%, #fefce8 100%);
  overflow: hidden;
}
.vf-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.vf-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .vf-hero__grid { grid-template-columns: 1fr; }
}

.vf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: var(--vf-white);
  border: 1px solid var(--vf-teal-200);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vf-teal-700);
  margin-bottom: 1rem;
}

.vf-hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--vf-slate-900);
  margin-bottom: 1rem;
}
.vf-hero__title em {
  font-style: normal;
  color: var(--vf-teal-600);
}

.vf-hero__sub {
  font-size: 1.1rem;
  color: var(--vf-slate-600);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.vf-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.vf-stat__num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vf-teal-700);
}
.vf-stat__label {
  font-size: 0.85rem;
  color: var(--vf-slate-500);
}

/* ── Search card ── */
.vf-search-card {
  background: var(--vf-white);
  border-radius: var(--vf-radius-lg);
  box-shadow: var(--vf-shadow-lg);
  padding: 1.75rem;
  border: 1px solid var(--vf-slate-200);
}

.vf-search-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vf-slate-900);
  margin-bottom: 0.35rem;
}
.vf-search-card__sub {
  font-size: 0.875rem;
  color: var(--vf-slate-500);
  margin-bottom: 1.25rem;
}

.vf-search-card__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.vf-search-card__photo {
  position: relative;
  border-radius: var(--vf-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vf-search-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-search-card__photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.vf-form-group { margin-bottom: 1rem; }
.vf-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vf-slate-700);
  margin-bottom: 0.4rem;
}

.vf-input,
.vf-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  background: var(--vf-white);
  color: var(--vf-slate-800);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vf-input:focus,
.vf-select:focus {
  outline: none;
  border-color: var(--vf-teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.vf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .vf-form-row { grid-template-columns: 1fr; }
}

.vf-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.vf-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--vf-slate-600);
  cursor: pointer;
}
.vf-checkbox input { accent-color: var(--vf-teal-600); }

.vf-search-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vf-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vf-slate-100);
  font-size: 0.8rem;
  color: var(--vf-slate-500);
}
.vf-trust-row strong { color: var(--vf-slate-700); }

/* ── Sections ── */
.vf-section {
  padding: 4rem 0;
}
.vf-section--muted {
  background: var(--vf-slate-50);
}
.vf-section--teal {
  background: linear-gradient(135deg, var(--vf-teal-700), var(--vf-teal-600));
  color: var(--vf-white);
}

.vf-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.vf-section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vf-teal-600);
  margin-bottom: 0.5rem;
}
.vf-section--teal .vf-section__eyebrow { color: var(--vf-teal-200); }
.vf-section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--vf-slate-900);
  margin-bottom: 0.75rem;
}
.vf-section--teal .vf-section__title { color: var(--vf-white); }
.vf-section__sub {
  color: var(--vf-slate-500);
  font-size: 1rem;
}
.vf-section--teal .vf-section__sub { color: rgba(255,255,255,0.85); }

/* ── City chips ── */
.vf-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.vf-city-chip {
  padding: 0.6rem 1.25rem;
  background: var(--vf-white);
  border: 1.5px solid var(--vf-slate-200);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vf-slate-700);
  cursor: pointer;
  transition: all 0.15s;
}
.vf-city-chip:hover,
.vf-city-chip.is-active {
  background: var(--vf-teal-600);
  border-color: var(--vf-teal-600);
  color: var(--vf-white);
}

/* ── Vet cards ── */
.vf-results-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.vf-results-count {
  font-size: 0.95rem;
  color: var(--vf-slate-600);
}
.vf-results-count strong { color: var(--vf-slate-900); }

.vf-sort select {
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  border: 1.5px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  background: var(--vf-white);
}

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

.vf-card {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.vf-card:hover {
  box-shadow: var(--vf-shadow-lg);
  transform: translateY(-2px);
}

.vf-card--sponsored {
  border-color: var(--vf-amber-400);
  box-shadow: 0 0 0 1px var(--vf-amber-400);
}

.vf-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem 0;
}

.vf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.vf-badge--sponsor { background: #fef3c7; color: #92400e; }
.vf-badge--verified { background: var(--vf-teal-100); color: var(--vf-teal-800); }
.vf-badge--emergency { background: #fee2e2; color: var(--vf-red-600); }
.vf-badge--petshop { background: #dbeafe; color: #1e40af; }
.vf-badge--featured { background: #ede9fe; color: #5b21b6; }

.vf-card__body { padding: 1rem 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }

.vf-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.vf-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vf-slate-900);
}
.vf-card__rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vf-amber-500);
  white-space: nowrap;
}
.vf-card__rating span { color: var(--vf-slate-400); font-weight: 400; }

.vf-card__location {
  font-size: 0.85rem;
  color: var(--vf-slate-500);
  margin-bottom: 0.75rem;
}

.vf-card__desc {
  font-size: 0.875rem;
  color: var(--vf-slate-600);
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.vf-tag {
  padding: 0.25rem 0.6rem;
  background: var(--vf-slate-100);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--vf-slate-600);
}

.vf-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}
.vf-card__actions .vf-btn { flex: 1; min-width: 120px; font-size: 0.85rem; padding: 0.55rem 0.85rem; }

/* ── How it works ── */
.vf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .vf-steps { grid-template-columns: 1fr; }
}

.vf-step {
  text-align: center;
  padding: 1.5rem;
}
.vf-step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vf-teal-100);
  color: var(--vf-teal-700);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
}
.vf-step__title {
  font-weight: 700;
  color: var(--vf-slate-900);
  margin-bottom: 0.5rem;
}
.vf-step__text {
  font-size: 0.9rem;
  color: var(--vf-slate-500);
}

/* ── Map placeholder ── */
.vf-map {
  height: 360px;
  background: var(--vf-slate-100);
  border-radius: var(--vf-radius-lg);
  border: 1px solid var(--vf-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vf-slate-400);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
}

/* ── CTA band ── */
.vf-cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.vf-cta-band__text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.vf-cta-band__text p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ── FAQ ── */
.vf-faq { max-width: 720px; margin: 0 auto; }
.vf-faq details {
  border-bottom: 1px solid var(--vf-slate-200);
  padding: 1rem 0;
}
.vf-faq summary {
  font-weight: 600;
  color: var(--vf-slate-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vf-faq summary::-webkit-details-marker { display: none; }
.vf-faq summary::after { content: '+'; font-size: 1.25rem; color: var(--vf-teal-600); }
.vf-faq details[open] summary::after { content: '−'; }
.vf-faq p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--vf-slate-600);
}

/* ── Footer ── */
.vf-footer {
  background: var(--vf-slate-900);
  color: var(--vf-slate-400);
  padding: 3rem 0 1.5rem;
}
.vf-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 1.75rem 1.25rem;
  margin-bottom: 2rem;
}
@media (max-width: 1100px) {
  .vf-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vf-footer__grid { grid-template-columns: 1fr; }
}
.vf-footer__brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--vf-white);
  margin-bottom: 0.75rem;
}
.vf-footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vf-slate-300);
  margin-bottom: 0.75rem;
}
.vf-footer ul { list-style: none; }
.vf-footer li { margin-bottom: 0.4rem; }
.vf-footer ul a { color: var(--vf-slate-400); font-size: 0.9rem; }
.vf-footer ul a:hover { color: var(--vf-teal-200); }
.vf-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.vf-btn--footer-cta {
  background: transparent;
  color: var(--vf-teal-200);
  border-color: var(--vf-teal-500);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.vf-btn--footer-cta:hover {
  background: rgba(20, 184, 166, 0.12);
  color: var(--vf-teal-100);
  border-color: var(--vf-teal-200);
}
.vf-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--vf-slate-700);
  font-size: 0.8rem;
  text-align: center;
}
.vf-footer__credit {
  text-align: center;
  font-size: 0.8rem;
  color: var(--vf-slate-500);
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vf-slate-800);
}
.vf-footer__credit a {
  color: var(--vf-teal-200);
  font-weight: 600;
}
.vf-footer__credit a:hover { color: var(--vf-teal-200); }

.vf-footer__share {
  margin-bottom: 2rem;
}

.vf-footer .vf-share-strip {
  background: var(--vf-slate-800);
  border-color: var(--vf-slate-700);
}

.vf-footer .vf-share-strip__title {
  color: var(--vf-white);
}

.vf-footer .vf-share-strip__sub {
  color: var(--vf-slate-400);
}

.vf-footer .vf-pet-share-sidebar__btn {
  background: var(--vf-slate-700);
  border-color: var(--vf-slate-600);
  color: var(--vf-slate-100);
}

.vf-footer .vf-pet-share-sidebar__btn:hover {
  background: var(--vf-slate-600);
  border-color: var(--vf-teal-500);
}

/* ── Empty state ── */
.vf-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--vf-slate-500);
}
.vf-empty__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ── Guide cards (SEO content) ── */
.vf-guides {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.vf-guide-card {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.vf-guide-card:hover { box-shadow: var(--vf-shadow); }
.vf-guide-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vf-slate-900);
  margin-bottom: 0.5rem;
}
.vf-guide-card p {
  font-size: 0.875rem;
  color: var(--vf-slate-500);
  margin-bottom: 0.75rem;
}
.vf-guide-card a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Landing / guide pages ── */
.vf-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--vf-slate-500);
  margin-bottom: 1rem;
}
.vf-breadcrumb a { color: var(--vf-teal-700); }
.vf-breadcrumb span { color: var(--vf-slate-400); }

.vf-page-hero {
  padding: 2.5rem 0 2rem;
  background: linear-gradient(160deg, var(--vf-teal-50), var(--vf-white));
  border-bottom: 1px solid var(--vf-slate-200);
}
.vf-page-hero--emergency {
  background: linear-gradient(160deg, #fef2f2, var(--vf-white));
}
.vf-page-hero--teal {
  background: linear-gradient(160deg, var(--vf-teal-100), var(--vf-teal-50));
}
.vf-page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--vf-slate-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.vf-page-hero__sub {
  font-size: 1.05rem;
  color: var(--vf-slate-600);
  max-width: 680px;
}
.vf-article-hero-img {
  margin: 0 0 1.25rem;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  max-width: 760px;
  box-shadow: var(--vf-shadow-md);
}
.vf-article-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.vf-prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 0;
}
.vf-prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vf-slate-900);
  margin: 2rem 0 0.75rem;
}
.vf-prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vf-slate-800);
  margin: 1.5rem 0 0.5rem;
}
.vf-prose p, .vf-prose li {
  font-size: 0.95rem;
  color: var(--vf-slate-600);
  margin-bottom: 0.75rem;
}
.vf-prose ul, .vf-prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.vf-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 1rem 0;
}
.vf-prose th, .vf-prose td {
  border: 1px solid var(--vf-slate-200);
  padding: 0.6rem 0.85rem;
  text-align: left;
}
.vf-prose th { background: var(--vf-teal-50); font-weight: 700; }

.vf-cta-box {
  background: var(--vf-teal-50);
  border: 1px solid var(--vf-teal-200);
  border-radius: var(--vf-radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.vf-cta-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--vf-teal-800);
  margin-bottom: 0.5rem;
}
.vf-cta-box p {
  font-size: 0.9rem;
  color: var(--vf-slate-600);
  margin-bottom: 1rem;
}

.vf-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.vf-related a {
  padding: 0.45rem 1rem;
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vf-slate-700);
}
.vf-related a:hover {
  background: var(--vf-teal-600);
  border-color: var(--vf-teal-600);
  color: var(--vf-white);
}

.vf-nav__links a.is-active,
.vf-nav__drop-menu a.is-active {
  color: var(--vf-teal-700);
  font-weight: 700;
  background: var(--vf-teal-50);
}

/* ── Hero pet images ── */
.vf-hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.vf-hero__photo {
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.vf-hero__photo-wrap {
  position: relative;
}
.vf-hero__photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(15,23,42,.75));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.vf-photo-strip {
  padding: 0 0 2.5rem;
  background: linear-gradient(180deg, var(--vf-white) 0%, var(--vf-slate-50) 100%);
}
.vf-photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.vf-photo-strip__item {
  margin: 0;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow-md);
  background: var(--vf-white);
}
.vf-photo-strip__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.vf-photo-strip__media {
  position: relative;
  overflow: hidden;
}
.vf-photo-strip__item--interactive .vf-photo-strip__media img {
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease;
}
.vf-photo-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.1rem;
  background: linear-gradient(165deg, rgba(15, 118, 110, 0.94) 0%, rgba(13, 148, 136, 0.9) 100%);
  color: var(--vf-white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.vf-photo-strip__benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
}
.vf-photo-strip__benefits li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}
.vf-photo-strip__benefits li:last-child {
  margin-bottom: 0;
}
.vf-photo-strip__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #99f6e4;
}
.vf-photo-strip__item--interactive:hover .vf-photo-strip__overlay,
.vf-photo-strip__item--interactive:focus-within .vf-photo-strip__overlay,
.vf-photo-strip__item--interactive.is-open .vf-photo-strip__overlay {
  opacity: 1;
  visibility: visible;
}
.vf-photo-strip__item--interactive:hover .vf-photo-strip__media img,
.vf-photo-strip__item--interactive:focus-within .vf-photo-strip__media img,
.vf-photo-strip__item--interactive.is-open .vf-photo-strip__media img {
  transform: scale(1.05);
}
.vf-photo-strip__item--interactive {
  cursor: pointer;
}
.vf-photo-strip__overlay-inner {
  width: 100%;
}
.vf-photo-strip__overlay-title {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}
.vf-photo-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}
.vf-photo-strip__link {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font: inherit;
  cursor: pointer;
  color: var(--vf-white);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
}
.vf-photo-strip__link:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--vf-white);
}
.vf-photo-strip__subtitle {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--vf-slate-500);
}
.vf-photo-strip__item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vf-slate-700);
  background: var(--vf-white);
}
@media (max-width: 900px) {
  .vf-photo-strip__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vf-photo-strip__grid { grid-template-columns: 1fr; }
  .vf-hero__visual { grid-template-columns: 1fr 1fr; }
}

/* ── Card images ── */
.vf-card__media {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--vf-slate-100);
}
.vf-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.vf-card:hover .vf-card__img { transform: scale(1.04); }
.vf-card__pet-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vf-slate-700);
}
.vf-card__address,
.vf-card__hours {
  font-size: 0.8rem;
  color: var(--vf-slate-500);
  margin-bottom: 0.35rem;
}
.vf-card--highlight {
  outline: 3px solid var(--vf-teal-500);
  outline-offset: 2px;
}

/* ── Interactive map ── */
.vf-map-wrap {
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vf-slate-200);
  box-shadow: var(--vf-shadow);
}
#vet-map {
  height: 480px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  #vet-map { height: 360px; }
}
.vf-map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: var(--vf-slate-50);
  border-radius: var(--vf-radius);
  border: 1px solid var(--vf-slate-200);
}
.vf-map-toolbar label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vf-slate-700);
}
.vf-map-toolbar select {
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  border: 1.5px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  font-size: 0.875rem;
}
.vf-map-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--vf-slate-500);
}
.vf-map-count strong { color: var(--vf-teal-700); }
.vf-map-marker { background: transparent !important; border: none !important; }

.vf-map-popup { min-width: 180px; }
.vf-map-popup__img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.vf-map-popup strong { display: block; font-size: 0.95rem; color: var(--vf-slate-900); }
.vf-map-popup__rating { color: var(--vf-amber-500); font-size: 0.85rem; font-weight: 700; }
.vf-map-popup p { font-size: 0.8rem; color: var(--vf-slate-500); margin: 0.25rem 0; }
.vf-map-popup__er { display: inline-block; font-size: 0.75rem; background: #fee2e2; color: var(--vf-red-600); padding: 0.15rem 0.5rem; border-radius: 999px; margin: 0.25rem 0; }
.vf-map-popup a { display: inline-block; margin-top: 0.5rem; font-weight: 700; font-size: 0.9rem; }

.vf-pet-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .vf-pet-banner { grid-template-columns: 1fr; }
}
.vf-pet-banner__item {
  position: relative;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  height: 140px;
}
.vf-pet-banner__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vf-pet-banner__item span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(transparent 40%, rgba(15,23,42,.7));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* ── Search (live + compact + nav) ── */
.vf-search-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.vf-search-row--compact {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 900px) {
  .vf-search-row, .vf-search-row--compact { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .vf-search-row, .vf-search-row--compact { grid-template-columns: 1fr; }
}
.vf-form-group--grow { grid-column: span 1; }
.vf-search-live {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vf-teal-700);
}
.vf-search-actions--inline {
  flex-direction: row;
  flex-wrap: wrap;
}
.vf-search-actions--inline .vf-btn { flex: 0 1 auto; }
.vf-search-compact {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--vf-shadow);
}
.vf-search-mount { margin-bottom: 0.5rem; }

.vf-nav-search {
  flex: 1;
  max-width: 320px;
  margin: 0 0.5rem;
}
.vf-nav-search__form {
  display: flex;
  align-items: center;
  background: var(--vf-slate-100);
  border: 1.5px solid var(--vf-slate-200);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.vf-nav-search__form:focus-within {
  border-color: var(--vf-teal-500);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}
.vf-nav-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.45rem 0.85rem;
  font-family: inherit;
  font-size: 0.85rem;
  min-width: 0;
}
.vf-nav-search__input:focus { outline: none; }
.vf-nav-search__btn {
  border: none;
  background: var(--vf-teal-600);
  color: #fff;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.vf-nav-search__btn:hover { background: var(--vf-teal-700); }
@media (max-width: 900px) {
  .vf-nav-search { display: none; }
}

/* ── Spotlight presentations ── */
.vf-spotlight-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vf-spotlight {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  box-shadow: var(--vf-shadow);
  overflow: hidden;
}

.vf-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 340px);
  gap: 0;
}

.vf-spotlight__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vf-teal-700);
  background: var(--vf-teal-50);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 1.25rem 1.25rem 0;
}

.vf-spotlight__vet-inner {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
}

.vf-spotlight__vet-photo {
  border-radius: var(--vf-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.vf-spotlight__vet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vf-spotlight__vet-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vf-slate-900);
  margin-bottom: 0.35rem;
}

.vf-spotlight__vet-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: var(--vf-slate-500);
  margin-bottom: 0.75rem;
}

.vf-spotlight__vet-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--vf-slate-800);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.vf-spotlight__vet-desc {
  font-size: 0.9rem;
  color: var(--vf-slate-600);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.vf-spotlight__tags { margin-bottom: 1rem; }

.vf-spotlight__vet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vf-spotlight__shops {
  background: linear-gradient(180deg, var(--vf-slate-50), var(--vf-white));
  border-left: 1px solid var(--vf-slate-200);
  padding: 1.25rem;
}

.vf-spotlight__shops-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vf-slate-800);
  margin-bottom: 1rem;
}

.vf-spotlight-shop-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vf-spotlight-shop {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  padding: 0.65rem;
}

.vf-spotlight-shop__link {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.vf-spotlight-shop__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.vf-spotlight-shop__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.82rem;
  color: var(--vf-slate-600);
}

.vf-spotlight-shop__info strong {
  font-size: 0.9rem;
  color: var(--vf-slate-900);
}

.vf-spotlight-shop__hours {
  font-size: 0.78rem;
}

.vf-spotlight-shop__phone {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vf-teal-700);
  text-decoration: none;
}

.vf-spotlight-shop__phone:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .vf-spotlight__grid { grid-template-columns: 1fr; }
  .vf-spotlight__shops {
    border-left: none;
    border-top: 1px solid var(--vf-slate-200);
  }
  .vf-spotlight__vet-inner { grid-template-columns: 1fr; }
}

.vf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.vf-benefits { display: grid; gap: 0.5rem; }

.vf-benefit {
  font-size: 0.9rem;
  color: var(--vf-teal-800);
  background: var(--vf-teal-50);
  padding: 0.5rem 0.75rem;
  border-radius: var(--vf-radius);
}

.vf-cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.vf-code-block {
  background: var(--vf-slate-50);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  padding: 0.75rem;
  font-size: 0.8rem;
  overflow-x: auto;
  margin-top: 0.75rem;
}

.vf-card__actions { flex-wrap: wrap; }

.vf-btn--whatsapp:hover {
  background: #dcfce7;
  border-color: #16a34a;
  color: #166534;
}

.vf-sales-intro {
  display: grid;
  grid-template-columns: 1fr min(320px, 100%);
  gap: 2rem;
  align-items: start;
}

.vf-roi-box {
  background: linear-gradient(135deg, var(--vf-teal-50), #fff);
  border: 1px solid var(--vf-teal-200);
  border-radius: var(--vf-radius-lg);
  padding: 1.25rem;
}

.vf-roi-box h3 { margin-top: 0; color: var(--vf-teal-800); }
.vf-roi-box__note { font-size: 0.85rem; color: var(--vf-slate-600); margin-bottom: 0; }

.vf-sales-steps { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.vf-sales-step__num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  background: var(--vf-teal-600);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .vf-sales-intro { grid-template-columns: 1fr; }
}

/* ── Sidebars: food (left) + delivery (right) ── */
.vf-main-with-ads {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr) minmax(240px, 280px);
  align-items: start;
  min-height: calc(100vh - 120px);
}

.vf-main-content {
  min-width: 0;
}

.vf-food-ads {
  position: sticky;
  top: calc(var(--vf-nav-h) + var(--vf-banner-h, 0px) + 12px);
  max-height: calc(100dvh - var(--vf-nav-h) - var(--vf-banner-h, 0px) - 16px);
  overflow-y: auto;
  padding: 1rem 0.85rem 1.5rem;
  background: linear-gradient(180deg, var(--vf-teal-50) 0%, #fff 120px);
  border-right: 1px solid var(--vf-slate-200);
  scrollbar-width: thin;
}

.vf-food-ads__header {
  margin-bottom: 0.85rem;
  padding: 0 0.15rem;
}

.vf-food-ads__eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vf-slate-500);
  background: var(--vf-slate-100);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.vf-food-ads__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--vf-teal-800);
  line-height: 1.25;
}

.vf-food-ads__sub {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--vf-slate-500);
}

.vf-food-ads__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.vf-food-ad {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.55rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--vf-slate-200);
  border-left: 3px solid var(--vf-food-accent, var(--vf-teal-600));
  border-radius: var(--vf-radius);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}

.vf-food-ad:hover {
  box-shadow: var(--vf-shadow-md);
  transform: translateY(-1px);
}

.vf-food-ad__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  background: var(--vf-slate-50);
  border-radius: 10px;
}

.vf-food-ad__body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.vf-food-ad__brand {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vf-food-accent, var(--vf-teal-700));
}

.vf-food-ad__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vf-slate-900);
  line-height: 1.25;
}

.vf-food-ad__pet {
  font-size: 0.72rem;
  color: var(--vf-slate-600);
}

.vf-food-ad__desc {
  font-size: 0.68rem;
  color: var(--vf-slate-500);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-food-ad__price {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vf-teal-700);
  margin-top: 0.15rem;
}

.vf-food-ads__cta {
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

/* ── Right delivery ads sidebar ── */
.vf-delivery-ads {
  padding: 1rem 0.85rem 1.5rem;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 120px);
  border-left: 1px solid var(--vf-slate-200);
}

.vf-delivery-ads__header {
  margin-bottom: 0.85rem;
  padding: 0 0.15rem;
}

.vf-delivery-ads__eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vf-slate-500);
  background: var(--vf-slate-100);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.vf-delivery-ads__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #9a3412;
  line-height: 1.25;
}

.vf-delivery-ads__sub {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--vf-slate-500);
}

.vf-delivery-ads__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.vf-delivery-ad {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.55rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--vf-slate-200);
  border-right: 3px solid var(--vf-delivery-accent, #ea580c);
  border-radius: var(--vf-radius);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}

.vf-delivery-ad:hover {
  box-shadow: var(--vf-shadow-md);
  transform: translateY(-1px);
}

.vf-delivery-ad__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  background: #fff7ed;
  border-radius: 10px;
}

.vf-delivery-ad__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.vf-delivery-ad__company {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vf-slate-500);
}

.vf-delivery-ad__tagline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vf-slate-900);
  line-height: 1.25;
}

.vf-delivery-ad__desc {
  font-size: 0.75rem;
  color: var(--vf-slate-600);
  line-height: 1.35;
}

.vf-delivery-ad__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.72rem;
  color: var(--vf-slate-500);
  margin-top: 0.15rem;
}

.vf-delivery-ad__promo {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c2410c;
  background: #ffedd5;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  align-self: flex-start;
}

.vf-delivery-ads__cta {
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .vf-main-with-ads {
    grid-template-columns: 1fr;
  }

  .vf-food-ads {
    position: static;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid var(--vf-slate-200);
    padding: 1rem;
    width: 100%;
  }

  .vf-food-ads__list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .vf-food-ads__header {
    text-align: center;
  }

  .vf-food-ads__cta {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .vf-delivery-ads {
    position: static;
    max-height: none;
    border-left: none;
    border-top: 1px solid var(--vf-slate-200);
    padding: 1rem;
    width: 100%;
  }

  .vf-delivery-ads__list {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .vf-delivery-ads__header {
    text-align: center;
  }

  .vf-delivery-ads__cta {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Google-style ratings */
.vf-google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.2;
}
.vf-google-stars {
  display: inline-flex;
  gap: 1px;
}
.vf-google-star {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.vf-google-star--full { color: #fbbc04; }
.vf-google-star--half {
  color: #fbbc04;
  opacity: 0.55;
}
.vf-google-star--empty { color: #dadce0; }
.vf-google-rating__score {
  font-weight: 700;
  color: var(--vf-slate-800);
}
.vf-google-rating__reviews {
  color: var(--vf-slate-500);
  text-decoration: none;
  font-size: 0.78rem;
}
.vf-google-rating__reviews:hover {
  color: var(--vf-teal-600);
  text-decoration: underline;
}
.vf-card__head .vf-google-rating {
  flex-shrink: 0;
}

/* ── Mobile & touch-friendly ── */
html { overflow-x: clip; }

body.vf-nav-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.25rem, var(--vf-max));
  }

  .vf-nav__logo {
    font-size: 1rem;
    gap: 0.45rem;
    min-width: 0;
  }
  .vf-nav__logo-icon { width: 32px; height: 32px; }

  .vf-hero {
    padding: 2rem 0 2.5rem;
  }
  .vf-hero__sub {
    font-size: 1rem;
    max-width: none;
  }
  .vf-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }
  .vf-hero__actions .vf-btn {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .vf-section { padding: 2.5rem 0; }
  .vf-section__title { font-size: 1.5rem; }

  .vf-search-card {
    padding: 1.25rem;
  }
  .vf-search-card__visual {
    grid-template-columns: 1fr;
  }

  .vf-input,
  .vf-select,
  .vf-map-toolbar select,
  .vf-sort select {
    font-size: 16px;
    min-height: 44px;
  }

  .vf-btn {
    min-height: 44px;
  }

  .vf-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vf-card:hover {
    transform: none;
  }

  .vf-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .vf-card__head .vf-google-rating {
    flex-shrink: 1;
  }

  .vf-card__actions {
    flex-direction: column;
  }
  .vf-card__actions .vf-btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .vf-results-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .vf-sort select {
    width: 100%;
  }

  .vf-map-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .vf-map-toolbar select {
    width: 100%;
  }
  .vf-map-count {
    margin-left: 0;
    text-align: center;
  }
  #vet-map { height: min(55vh, 360px); }

  .vf-cta-band {
    flex-direction: column;
    text-align: center;
  }
  .vf-cta-band .vf-btn {
    width: 100%;
    white-space: normal;
  }

  .vf-search-actions--inline {
    flex-direction: column;
  }
  .vf-search-actions--inline .vf-btn {
    width: 100%;
  }

  .vf-search-live {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .vf-spotlight__vet-name {
    font-size: 1.15rem;
  }
  .vf-spotlight__vet-actions {
    flex-direction: column;
  }
  .vf-spotlight__vet-actions .vf-btn {
    width: 100%;
    white-space: normal;
  }

  .vf-food-ads__list {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 0.25rem;
    scrollbar-width: none;
  }
  .vf-food-ads__list::-webkit-scrollbar { display: none; }
  .vf-food-ads__list > li {
    flex: 0 0 min(260px, 78vw);
    scroll-snap-align: start;
  }
  .vf-food-ad {
    height: 100%;
  }

  .vf-main-with-ads {
    min-height: 0;
    width: 100%;
  }
  .vf-main-content {
    width: 100%;
    overflow-x: clip;
  }
  .vf-food-ads {
    width: 100%;
    overflow-x: clip;
    padding: 0.85rem 0 1rem;
  }
  .vf-food-ads__header {
    padding: 0 1rem;
  }
  .vf-food-ads__cta {
    margin: 0.85rem 1rem 0;
    max-width: none;
  }

  .vf-partner-banner__inner {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .vf-partner-banner__arrow { display: none; }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1rem, var(--vf-max));
  }

  .vf-hero__title {
    font-size: 1.75rem;
  }
  .vf-hero__stats {
    grid-template-columns: 1fr;
  }
  .vf-hero__actions {
    flex-direction: column;
  }
  .vf-hero__actions .vf-btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .vf-cities {
    gap: 0.4rem;
  }
  .vf-city-chip {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}

@supports (padding: env(safe-area-inset-left)) {
  .vf-nav__inner,
  .vf-partner-banner__inner,
  .vf-footer .container {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  body.vf-nav-open .vf-nav__links {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* ── Plan pricing cards ── */
.vf-plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.vf-plan-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vf-plan-card__name {
  margin: 0.5rem 0 0;
  font-size: 1.15rem;
}
.vf-plan-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--vf-teal-700);
  margin: 0.35rem 0 0.5rem;
}
.vf-plan-card__desc {
  font-size: 0.9rem;
  color: var(--vf-slate-600);
  margin-bottom: 0.75rem;
}
.vf-plan-card__features {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
  font-size: 0.88rem;
  color: var(--vf-slate-700);
}
.vf-plan-card__features li {
  margin-bottom: 0.35rem;
}
.vf-plan-card .vf-btn {
  margin-top: auto;
}

/* ── Profile page ── */
.vf-profile {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}
.vf-profile__hero-img img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--vf-radius-lg);
}
.vf-profile__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.vf-profile__location, .vf-profile__hours, .vf-profile__pets { margin: 0.35rem 0; color: var(--vf-slate-600); }
.vf-profile__section-title { font-size: 1.05rem; margin: 1.25rem 0 0.75rem; color: var(--vf-slate-800); }
.vf-profile__desc { margin: 1rem 0; line-height: 1.6; }
.vf-profile__services { margin-top: 0.5rem; }
.vf-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
}
.vf-service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--vf-slate-50);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  font-size: 0.92rem;
}
.vf-service-item__icon { font-size: 1.1rem; flex-shrink: 0; }
.vf-profile__social { margin-top: 0.25rem; }
.vf-social-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vf-social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--vf-slate-200);
  background: #fff;
  color: var(--vf-slate-700);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vf-social-link:hover { transform: translateY(-1px); box-shadow: var(--vf-shadow-sm); }
.vf-social-link--web { border-color: var(--vf-teal-200); color: var(--vf-teal-700); }
.vf-social-link--facebook { border-color: #1877f2; color: #1877f2; }
.vf-social-link--instagram {
  border-color: #e1306c;
  color: #e1306c;
}
.vf-profile__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.vf-profile__links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.vf-card__distance {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.vf-card__media { position: relative; }
.vf-card__name a { color: inherit; text-decoration: none; }
.vf-card__name a:hover { color: var(--vf-teal-700); }
.vf-form-row--actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ── Share modal ── */
.vf-share-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}
.vf-share-modal[hidden] { display: none !important; }
body.vf-share-open { overflow: hidden; }
.vf-share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.vf-share-modal__panel {
  position: relative;
  width: min(420px, 100%);
  background: #fff;
  border-radius: var(--vf-radius-lg) var(--vf-radius-lg) 0 0;
  padding: 1.25rem 1.25rem 1.5rem;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
  animation: vf-share-slide 0.22s ease-out;
}
@keyframes vf-share-slide {
  from { transform: translateY(100%); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
.vf-share-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--vf-slate-500);
  cursor: pointer;
}
.vf-share-modal__title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  color: var(--vf-slate-900);
}
.vf-share-modal__sub {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--vf-slate-500);
  line-height: 1.4;
}
.vf-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
.vf-share-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-md);
  background: #fff;
  color: var(--vf-slate-800);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
}
.vf-share-item:hover {
  background: var(--vf-slate-50);
  border-color: var(--vf-teal-300);
}
.vf-share-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.vf-share-item--whatsapp .vf-share-item__icon { background: #dcfce7; color: #15803d; }
.vf-share-item--facebook .vf-share-item__icon { background: #dbeafe; color: #1d4ed8; }
.vf-share-item--x .vf-share-item__icon { background: var(--vf-slate-100); color: var(--vf-slate-900); }
.vf-share-item--viber .vf-share-item__icon { background: #ede9fe; color: #6d28d9; }
.vf-share-item--google .vf-share-item__icon { background: #fef3c7; color: #b45309; }
.vf-share-item--email .vf-share-item__icon { background: var(--vf-slate-100); color: var(--vf-slate-700); }
.vf-share-item--copy .vf-share-item__icon { background: var(--vf-teal-50); color: var(--vf-teal-700); }
.vf-share-item--native .vf-share-item__icon { background: var(--vf-teal-50); color: var(--vf-teal-700); }
.vf-share-modal__status {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--vf-teal-700);
  font-weight: 600;
}
@media (min-width: 640px) {
  .vf-share-modal { align-items: center; }
  .vf-share-modal__panel { border-radius: var(--vf-radius-lg); }
}

/* ── Useful links page ── */
.vf-useful-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.vf-useful-card {
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--vf-shadow-sm);
}
.vf-useful-card__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--vf-slate-900);
}
.vf-useful-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vf-useful-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--vf-slate-100);
}
.vf-useful-list li:last-child { border-bottom: none; }
.vf-useful-list a {
  font-weight: 600;
  color: var(--vf-teal-700);
}
.vf-useful-list a:hover { text-decoration: underline; }
.vf-useful-list__desc {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: var(--vf-slate-500);
  font-weight: 400;
}

/* ── Cookie banner ── */
.vf-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vf-slate-900);
  color: #fff;
  padding: 1rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.vf-cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vf-cookie-banner__inner p { margin: 0; font-size: 0.9rem; max-width: 640px; }
.vf-cookie-banner__inner a { color: var(--vf-teal-300); }
.vf-cookie-banner__actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
body.vf-has-cookie-banner { padding-bottom: 5rem; }

/* ── Rule-based chat widget ── */
.vf-chat {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9990;
  font-family: var(--vf-font);
}
body.vf-has-cookie-banner .vf-chat { bottom: 5.75rem; }
.vf-chat__toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: var(--vf-teal-600);
  color: var(--vf-white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.45);
  transition: background 0.15s, transform 0.1s;
}
.vf-chat__toggle:hover { background: var(--vf-teal-700); }
.vf-chat__toggle:active { transform: scale(0.97); }
.vf-chat__toggle-icon { font-size: 1.15rem; line-height: 1; }
.vf-chat.is-open .vf-chat__toggle { display: none; }

.vf-chat__panel {
  width: min(360px, calc(100vw - 2rem));
  max-height: min(520px, calc(100vh - 6rem));
  display: flex;
  flex-direction: column;
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius-lg);
  box-shadow: var(--vf-shadow-lg);
  overflow: hidden;
}
.vf-chat__panel[hidden] { display: none !important; }

.vf-chat__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  background: linear-gradient(135deg, var(--vf-teal-700), var(--vf-teal-600));
  color: var(--vf-white);
}
.vf-chat__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.vf-chat__subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  opacity: 0.9;
}
.vf-chat__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: var(--vf-radius-sm);
  background: rgba(255, 255, 255, 0.15);
  color: var(--vf-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.vf-chat__close:hover { background: rgba(255, 255, 255, 0.25); }

.vf-chat__messages {
  flex: 1;
  min-height: 120px;
  max-height: 280px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--vf-slate-50);
}
.vf-chat__bubble {
  max-width: 92%;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.45;
}
.vf-chat__bubble--bot {
  align-self: flex-start;
  background: var(--vf-white);
  border: 1px solid var(--vf-slate-200);
  color: var(--vf-slate-700);
}
.vf-chat__bubble--user {
  align-self: flex-end;
  background: var(--vf-teal-600);
  color: var(--vf-white);
}
.vf-chat__bubble--note {
  align-self: center;
  max-width: 100%;
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  color: var(--vf-slate-500);
  background: transparent;
  border: none;
  text-align: center;
}

.vf-chat__options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--vf-slate-200);
  background: var(--vf-white);
}
.vf-chat__option,
.vf-chat__action {
  display: block;
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--vf-slate-200);
  border-radius: var(--vf-radius);
  background: var(--vf-white);
  color: var(--vf-slate-700);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.vf-chat__option:hover,
.vf-chat__action:hover {
  background: var(--vf-teal-50);
  border-color: var(--vf-teal-200);
  color: var(--vf-teal-800);
}
.vf-chat__action {
  background: var(--vf-teal-600);
  border-color: var(--vf-teal-600);
  color: var(--vf-white);
  text-align: center;
}
.vf-chat__action:hover {
  background: var(--vf-teal-700);
  border-color: var(--vf-teal-700);
  color: var(--vf-white);
}
.vf-chat__back {
  background: transparent;
  border: none;
  color: var(--vf-slate-500);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0;
  text-align: center;
}
.vf-chat__back:hover { color: var(--vf-teal-700); }

.vf-near-notice {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #fcd34d;
  border-radius: var(--vf-radius-md);
  background: #fffbeb;
  color: #92400e;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.vf-near-notice p { margin: 0; font-size: 0.9rem; }
.vf-near-notice__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.vf-near-notice[hidden] { display: none !important; }
.vf-near-info {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vf-teal-200);
  border-radius: var(--vf-radius-md);
  background: #f0fdfa;
  color: var(--vf-teal-800);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.vf-near-info p { margin: 0; font-size: 0.9rem; }

@media (max-width: 480px) {
  .vf-chat { right: 0.75rem; bottom: 0.75rem; }
  body.vf-has-cookie-banner .vf-chat { bottom: 5.5rem; }
  .vf-chat__toggle-label { display: none; }
  .vf-chat__toggle { padding: 0.85rem; border-radius: 50%; }
}

@media (max-width: 768px) {
  .vf-profile { grid-template-columns: 1fr; }
}

/* ── Pet listings ── */
.vf-pet-listing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.vf-pet-listing-filters .vf-select {
  min-width: 180px;
}
.vf-pet-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.vf-pet-listing-card {
  background: var(--vf-white);
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow-md);
  display: flex;
  flex-direction: column;
}
.vf-pet-listing-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.vf-pet-listing-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.vf-pet-listing-card:hover .vf-pet-listing-card__media img {
  transform: scale(1.04);
}
.vf-pet-listing-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.92);
  color: var(--vf-white);
  font-size: 0.72rem;
  font-weight: 700;
}
.vf-pet-listing-card__body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.vf-pet-listing-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.vf-pet-listing-card__title a {
  color: var(--vf-slate-800);
  text-decoration: none;
}
.vf-pet-listing-card__title a:hover {
  color: var(--vf-teal-700);
}
.vf-pet-listing-card__meta {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--vf-slate-500);
}
.vf-pet-listing-card__desc {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--vf-slate-600);
  line-height: 1.5;
  flex: 1;
}
.vf-pet-listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.vf-pet-listing-card__contact {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--vf-teal-700);
}
.vf-pet-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.vf-pet-detail__media {
  position: relative;
  border-radius: var(--vf-radius-lg);
  overflow: hidden;
  box-shadow: var(--vf-shadow-md);
}
.vf-pet-detail__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.vf-pet-detail__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.vf-pet-detail__meta {
  margin: 0 0 1.25rem;
  color: var(--vf-slate-500);
  font-weight: 600;
}
.vf-pet-detail__desc {
  white-space: pre-line;
  line-height: 1.65;
  color: var(--vf-slate-700);
  margin-bottom: 1.5rem;
}
.vf-pet-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.vf-page-hero--compact {
  padding: 1.25rem 0 0.5rem;
}
@media (max-width: 768px) {
  .vf-pet-detail { grid-template-columns: 1fr; }
}

/* ── Pet listings sidebar promo + sticky share ── */
.vf-right-sidebar {
  min-width: 0;
}

.vf-right-sidebar__sticky {
  position: sticky;
  top: calc(var(--vf-nav-h) + var(--vf-banner-h, 0px) + 12px);
  max-height: calc(100dvh - var(--vf-nav-h) - var(--vf-banner-h, 0px) - 16px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.vf-right-sidebar__sticky .vf-delivery-ads {
  position: static;
  max-height: none;
  overflow: visible;
}

.vf-pet-promo {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-radius: var(--vf-radius-lg);
  background: linear-gradient(145deg, var(--vf-teal-700) 0%, var(--vf-teal-600) 100%);
  color: #fff;
  box-shadow: var(--vf-shadow-sm);
}

.vf-pet-promo__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.vf-pet-promo__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.vf-pet-promo__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.vf-pet-promo__tile {
  position: relative;
  display: block;
  border-radius: var(--vf-radius-md);
  overflow: hidden;
  height: 72px;
  text-decoration: none;
}

.vf-pet-promo__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vf-pet-promo__tile span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.4rem 0.5rem;
  background: linear-gradient(transparent 25%, rgba(15, 23, 42, 0.75));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.vf-pet-promo__cta {
  background: #fff !important;
  color: var(--vf-teal-800) !important;
  border: none !important;
}

.vf-pet-promo__cta:hover {
  background: var(--vf-teal-50) !important;
}

.vf-pet-share-sidebar {
  padding: 0.85rem;
  border-left: 1px solid var(--vf-slate-200);
  background: #fff;
  border-bottom: 1px solid var(--vf-slate-200);
}

.vf-pet-share-sidebar__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--vf-teal-800);
}

.vf-pet-share-sidebar__sub {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.75rem;
  color: var(--vf-slate-500);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vf-pet-share-sidebar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
}

.vf-pet-share-sidebar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  border-radius: var(--vf-radius-md);
  border: 1px solid var(--vf-slate-200);
  background: var(--vf-slate-50);
  color: var(--vf-slate-700);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.vf-pet-share-sidebar__btn:hover {
  background: #fff;
  border-color: var(--vf-teal-300);
}

.vf-pet-share-sidebar__btn--whatsapp:hover { background: #dcfce7; border-color: #86efac; }
.vf-pet-share-sidebar__btn--facebook:hover { background: #dbeafe; border-color: #93c5fd; }
.vf-pet-share-sidebar__btn--x:hover { background: var(--vf-slate-100); }
.vf-pet-share-sidebar__btn--viber:hover { background: #ede9fe; border-color: #c4b5fd; }
.vf-pet-share-sidebar__btn--copy:hover { background: var(--vf-teal-50); border-color: var(--vf-teal-200); }

.vf-pet-listing-card__actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .vf-right-sidebar__sticky {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .vf-pet-share-sidebar {
    border-left: none;
    border-top: 1px solid var(--vf-slate-200);
  }

  .vf-pet-promo__tiles {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .vf-pet-promo {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Inline share strip (page bottom) ── */
.vf-share-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--vf-radius-lg);
  background: #fff;
  border: 1px solid var(--vf-slate-200);
  box-shadow: var(--vf-shadow-sm);
}

.vf-share-strip__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--vf-teal-800);
}

.vf-share-strip__sub {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--vf-slate-500);
}

.vf-share-strip__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vf-share-strip__grid .vf-pet-share-sidebar__btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  gap: 0.35rem;
  width: auto;
}

.vf-share-strip__label {
  font-size: 0.78rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .vf-share-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .vf-share-strip__grid {
    justify-content: center;
  }
}
