/* ═══════════════════════════════════════════════════════════════════════════
   VindMijnHuisdier.nl — Hoofdstijlblad
   Design: warm amber/orange + deep purple, Nunito + Inter
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Custom properties ─────────────────────────────────────────────────────── */
:root {
  --vmh-orange:        #EA580C;
  --vmh-orange-dark:   #C2410C;
  --vmh-orange-light:  #FED7AA;
  --vmh-orange-pale:   #FFF7ED;
  --vmh-purple:        #7C3AED;
  --vmh-purple-light:  #EDE9FE;
  --vmh-red:           #DC2626;
  --vmh-red-light:     #FEF2F2;
  --vmh-green:         #16A34A;
  --vmh-green-light:   #F0FDF4;
  --vmh-text:          #1C1917;
  --vmh-muted:         #78716C;
  --vmh-border:        #F0E4D4;
  --vmh-bg:            #FFFBF5;
  --vmh-card:          #FFFFFF;
  --vmh-radius:        14px;
  --vmh-radius-sm:     8px;
  --vmh-radius-lg:     20px;
  --vmh-shadow:        0 2px 16px rgba(234,88,12,.08);
  --vmh-shadow-md:     0 4px 32px rgba(234,88,12,.12);
  --vmh-shadow-lg:     0 8px 48px rgba(234,88,12,.16);
  --ff-head:           'Nunito', sans-serif;
  --ff-body:           'Inter', sans-serif;
  --transition:        .2s ease;
}

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

html { scroll-behavior: smooth; }

body.vmh-body {
  background: var(--vmh-bg);
  color: var(--vmh-text);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

h1,h2,h3,h4,h5 {
  font-family: var(--ff-head);
  font-weight: 800;
  line-height: 1.2;
  color: var(--vmh-text);
}

a { color: var(--vmh-orange); text-decoration: none; }
a:hover { color: var(--vmh-orange-dark); }

img { max-width: 100%; height: auto; }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.vmh-nav {
  background: #fff;
  border-bottom: 1px solid var(--vmh-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.vmh-nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 66px;
  flex-wrap: wrap;
}

.vmh-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.vmh-paw-icon { font-size: 1.6rem; line-height: 1; }

.vmh-brand-text {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--vmh-text);
  letter-spacing: -.01em;
}

.vmh-brand-text span { color: var(--vmh-orange); }

.vmh-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.vmh-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vmh-text);
  border-radius: 2px;
  transition: var(--transition);
}

.vmh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.vmh-nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--vmh-radius-sm);
  color: var(--vmh-muted);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.vmh-nav-links a:hover,
.vmh-nav-links a.active {
  background: var(--vmh-orange-pale);
  color: var(--vmh-orange);
}

.vmh-nav-links a.vmh-nav-alert {
  color: var(--vmh-red);
  background: var(--vmh-red-light);
}

.vmh-nav-links a.vmh-nav-alert:hover {
  background: #FEE2E2;
  color: var(--vmh-red);
}

.vmh-nav-badge {
  background: var(--vmh-red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 99px;
  min-width: 20px;
  text-align: center;
}

.vmh-nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── User dropdown menu ─────────────────────────────────────────────────────── */
.vmh-user-menu {
  position: relative;
}
.vmh-user-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--vmh-orange-pale);
  border: 1.5px solid var(--vmh-orange-light);
  border-radius: 50px;
  padding: 5px 12px 5px 5px;
  cursor: pointer;
  transition: all .2s;
  font-size: .88rem;
  font-weight: 600;
  color: var(--vmh-dark);
}
.vmh-user-trigger:hover {
  border-color: var(--vmh-orange);
  background: #FEF3E8;
}
.vmh-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--vmh-orange);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-head);
}
.vmh-user-name {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vmh-user-caret {
  font-size: .7rem;
  color: var(--vmh-muted);
  transition: transform .2s;
}
.vmh-user-menu.open .vmh-user-caret { transform: rotate(180deg); }

.vmh-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--vmh-border);
  border-radius: var(--vmh-radius);
  box-shadow: var(--vmh-shadow-md);
  min-width: 220px;
  z-index: 9999;
  overflow: hidden;
  display: none;
  animation: dropIn .15s ease;
}
@keyframes dropIn {
  from { opacity:0; transform: translateY(-6px); }
  to   { opacity:1; transform: translateY(0); }
}
.vmh-user-menu.open .vmh-user-dropdown { display: block; }

.vmh-user-dropdown-head {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--vmh-border);
  background: var(--vmh-orange-pale);
}
.vmh-user-dropdown-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--vmh-dark);
}
.vmh-user-dropdown-email {
  font-size: .78rem;
  color: var(--vmh-muted);
  margin-top: 2px;
}
.vmh-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .87rem;
  color: var(--vmh-text);
  text-decoration: none;
  transition: background .12s;
}
.vmh-user-dropdown-item:hover { background: var(--vmh-orange-pale); color: var(--vmh-orange); }
.vmh-user-dropdown-item i { width: 16px; text-align: center; color: var(--vmh-muted); }
.vmh-user-dropdown-item:hover i { color: var(--vmh-orange); }
.vmh-user-dropdown-divider {
  height: 1px;
  background: var(--vmh-border);
  margin: 4px 0;
}
.vmh-user-dropdown-logout { color: var(--vmh-red) !important; }
.vmh-user-dropdown-logout i { color: var(--vmh-red) !important; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.vmh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--vmh-orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--vmh-radius-sm);
  font-weight: 700;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1;
}

.vmh-btn-primary:hover {
  background: var(--vmh-orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(234,88,12,.35);
}

.vmh-btn-primary.large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--vmh-radius);
}

.vmh-btn-primary.xl {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--vmh-radius);
}

.vmh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--vmh-orange);
  border: 2px solid var(--vmh-orange);
  padding: 9px 20px;
  border-radius: var(--vmh-radius-sm);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.vmh-btn-outline:hover {
  background: var(--vmh-orange);
  color: #fff;
}

.vmh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--vmh-muted);
  padding: 9px 16px;
  border-radius: var(--vmh-radius-sm);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.vmh-btn-ghost:hover { background: var(--vmh-orange-pale); color: var(--vmh-orange); }

.vmh-btn-danger {
  background: var(--vmh-red);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--vmh-radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vmh-btn-danger:hover { background: #B91C1C; color: #fff; }

.vmh-btn-green {
  background: var(--vmh-green);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--vmh-radius-sm);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vmh-btn-green:hover { background: #15803D; color: #fff; }

/* ── Cards ──────────────────────────────────────────────────────────────────── */
.vmh-card {
  background: var(--vmh-card);
  border-radius: var(--vmh-radius);
  box-shadow: var(--vmh-shadow);
  border: 1px solid var(--vmh-border);
  overflow: hidden;
}

.vmh-card-body { padding: 28px; }
.vmh-card-body.compact { padding: 20px; }
.vmh-card-body.large { padding: 40px; }

/* ── Alerts ─────────────────────────────────────────────────────────────────── */
.vmh-alert {
  padding: 14px 18px;
  border-radius: var(--vmh-radius-sm);
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 500;
}

.vmh-alert-success { background: var(--vmh-green-light); color: #14532D; border-left: 4px solid var(--vmh-green); }
.vmh-alert-danger  { background: var(--vmh-red-light);   color: #7F1D1D; border-left: 4px solid var(--vmh-red); }
.vmh-alert-warning { background: #FFFBEB; color: #78350F;  border-left: 4px solid #F59E0B; }
.vmh-alert-info    { background: #EFF6FF; color: #1E3A5F;  border-left: 4px solid #3B82F6; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.vmh-hero {
  background: linear-gradient(135deg, #7C3AED 0%, #EA580C 50%, #F97316 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.vmh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.vmh-hero-content { position: relative; z-index: 2; }

.vmh-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.vmh-hero p {
  color: rgba(255,255,255,.9);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 40px;
}

.vmh-search-bar {
  background: #fff;
  border-radius: var(--vmh-radius-lg);
  display: flex;
  gap: 0;
  overflow: hidden;
  box-shadow: var(--vmh-shadow-lg);
  max-width: 640px;
  margin: 0 auto;
}

.vmh-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: 1rem;
  font-family: var(--ff-body);
  background: transparent;
  color: var(--vmh-text);
}

.vmh-search-bar input::placeholder { color: #A8A29E; }

.vmh-search-bar button {
  background: var(--vmh-orange);
  color: #fff;
  border: none;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.vmh-search-bar button:hover { background: var(--vmh-orange-dark); }

.vmh-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.vmh-hero-stat {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 600;
}

/* ── Wave divider ───────────────────────────────────────────────────────────── */
.vmh-wave {
  display: block;
  margin-top: -2px;
  fill: var(--vmh-bg);
}

/* ── Section ────────────────────────────────────────────────────────────────── */
.vmh-section { padding: 64px 0; }
.vmh-section.tight { padding: 40px 0; }
.vmh-section.white { background: #fff; }

.vmh-section-label {
  display: inline-block;
  background: var(--vmh-orange-pale);
  color: var(--vmh-orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
  border: 1px solid var(--vmh-orange-light);
}

.vmh-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.vmh-section-sub {
  color: var(--vmh-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── Pet Cards (vermist grid) ───────────────────────────────────────────────── */
.vmh-pet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.vmh-pet-card {
  background: var(--vmh-card);
  border-radius: var(--vmh-radius);
  overflow: hidden;
  box-shadow: var(--vmh-shadow);
  border: 1px solid var(--vmh-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--vmh-text);
}

.vmh-pet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vmh-shadow-md);
  color: var(--vmh-text);
}

.vmh-pet-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--vmh-orange-pale);
}

.vmh-pet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.vmh-pet-card:hover .vmh-pet-card-img img { transform: scale(1.04); }

.vmh-pet-card-img .vmh-pet-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--vmh-orange-light);
}

.vmh-pet-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(10px);
}

.status-vermist  { background: rgba(220,38,38,.9); color: #fff; }
.status-gevonden { background: rgba(22,163,74,.9); color: #fff; }
.status-gezien   { background: rgba(245,158,11,.9); color: #fff; }

.vmh-pet-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vmh-pet-card-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.vmh-pet-card-meta {
  font-size: .82rem;
  color: var(--vmh-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.vmh-pet-card-meta i { color: var(--vmh-orange); }

.vmh-pet-card-desc {
  font-size: .85rem;
  color: var(--vmh-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vmh-pet-card-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--vmh-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--vmh-muted);
}

.vmh-pet-card-footer .btn-sm {
  background: var(--vmh-orange-pale);
  color: var(--vmh-orange);
  border: 1px solid var(--vmh-orange-light);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
}

.vmh-pet-card-footer .btn-sm:hover { background: var(--vmh-orange); color: #fff; }

/* ── Filter bar ─────────────────────────────────────────────────────────────── */
.vmh-filter-bar {
  background: #fff;
  border: 1px solid var(--vmh-border);
  border-radius: var(--vmh-radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.vmh-filter-bar select,
.vmh-filter-bar input {
  border: 1.5px solid var(--vmh-border);
  border-radius: var(--vmh-radius-sm);
  padding: 10px 14px;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--vmh-text);
  background: var(--vmh-bg);
  outline: none;
  transition: border-color var(--transition);
  flex: 1;
  min-width: 150px;
}

.vmh-filter-bar select:focus,
.vmh-filter-bar input:focus { border-color: var(--vmh-orange); }

/* ── Form styles ────────────────────────────────────────────────────────────── */
.vmh-form-group { margin-bottom: 20px; }

.vmh-label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--vmh-text);
  margin-bottom: 6px;
}

.vmh-label .required { color: var(--vmh-red); margin-left: 2px; }

.vmh-input,
.vmh-select,
.vmh-textarea {
  width: 100%;
  border: 1.5px solid var(--vmh-border);
  border-radius: var(--vmh-radius-sm);
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--vmh-text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.vmh-input:focus,
.vmh-select:focus,
.vmh-textarea:focus {
  border-color: var(--vmh-orange);
  box-shadow: 0 0 0 3px rgba(234,88,12,.12);
}

.vmh-textarea { resize: vertical; min-height: 110px; }

.vmh-input.error,
.vmh-select.error,
.vmh-textarea.error { border-color: var(--vmh-red); }

.vmh-form-help {
  font-size: .8rem;
  color: var(--vmh-muted);
  margin-top: 5px;
}

/* File upload zone */
.vmh-upload-zone {
  border: 2px dashed var(--vmh-orange-light);
  border-radius: var(--vmh-radius);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--vmh-orange-pale);
  position: relative;
}

.vmh-upload-zone:hover,
.vmh-upload-zone.dragover {
  border-color: var(--vmh-orange);
  background: #FFF0E6;
}

.vmh-upload-zone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.vmh-upload-icon { font-size: 2.5rem; color: var(--vmh-orange); margin-bottom: 12px; }
.vmh-upload-zone p { color: var(--vmh-muted); font-size: .9rem; margin: 0; }
.vmh-upload-zone strong { color: var(--vmh-orange); }

/* ── ChipReaders CTA (na vermist-melding) ───────────────────────────────────── */
.vmh-chip-cta {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: var(--vmh-radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 32px 0;
}

.vmh-chip-cta-icon { font-size: 3rem; flex-shrink: 0; }

.vmh-chip-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.vmh-chip-cta p  { color: rgba(255,255,255,.8); font-size: .95rem; margin: 0 0 20px; }

.vmh-chip-cta .btn-cr {
  background: #fff;
  color: #312e81;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--vmh-radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .95rem;
  transition: var(--transition);
}

.vmh-chip-cta .btn-cr:hover { background: #EDE9FE; }

/* ── Detail page ────────────────────────────────────────────────────────────── */
.vmh-detail-hero {
  position: relative;
  background: #1C1917;
  max-height: 420px;
  overflow: hidden;
  border-radius: 0 0 var(--vmh-radius-lg) var(--vmh-radius-lg);
}

.vmh-detail-hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  opacity: .85;
}

.vmh-detail-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 40px 40px 32px;
  color: #fff;
}

.vmh-detail-overlay h1 { color: #fff; font-size: 2.2rem; }

.vmh-info-table { width: 100%; border-collapse: collapse; }
.vmh-info-table tr td {
  padding: 10px 0;
  border-bottom: 1px solid var(--vmh-border);
  font-size: .92rem;
  vertical-align: top;
}

.vmh-info-table tr:last-child td { border-bottom: none; }
.vmh-info-table td:first-child {
  font-weight: 600;
  color: var(--vmh-muted);
  width: 130px;
  flex-shrink: 0;
}

/* Sightings timeline */
.vmh-sighting {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--vmh-border);
}

.vmh-sighting:last-child { border-bottom: none; }

.vmh-sighting-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vmh-orange-pale);
  color: var(--vmh-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Stats bar ──────────────────────────────────────────────────────────────── */
.vmh-stats-bar {
  background: linear-gradient(90deg, var(--vmh-orange) 0%, #F97316 100%);
  padding: 32px 0;
}

.vmh-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.vmh-stat {
  text-align: center;
  color: #fff;
}

.vmh-stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.vmh-stat-label {
  font-size: .88rem;
  opacity: .85;
}

/* ── How it works ───────────────────────────────────────────────────────────── */
.vmh-step {
  text-align: center;
  padding: 24px;
}

.vmh-step-num {
  width: 52px;
  height: 52px;
  background: var(--vmh-orange);
  color: #fff;
  border-radius: 50%;
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(234,88,12,.4);
}

.vmh-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.vmh-step p  { color: var(--vmh-muted); font-size: .9rem; margin: 0; }

/* ── Page header ────────────────────────────────────────────────────────────── */
.vmh-page-head {
  background: linear-gradient(135deg, var(--vmh-orange-dark) 0%, var(--vmh-orange) 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.vmh-page-head::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--vmh-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.vmh-page-head h1 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 8px; }
.vmh-page-head p  { color: rgba(255,255,255,.85); margin: 0; font-size: 1rem; }

/* ── Donor page ─────────────────────────────────────────────────────────────── */
.vmh-donation-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.vmh-tier {
  border: 2px solid var(--vmh-border);
  border-radius: var(--vmh-radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
}

.vmh-tier:hover,
.vmh-tier.selected {
  border-color: var(--vmh-orange);
  background: var(--vmh-orange-pale);
}

.vmh-tier .tier-emoji { font-size: 2rem; display: block; margin-bottom: 8px; }
.vmh-tier .tier-amt  { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 900; color: var(--vmh-orange); display: block; }
.vmh-tier .tier-name { font-size: .82rem; color: var(--vmh-muted); margin-top: 4px; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.vmh-footer {
  background: #1C1917;
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
  margin-top: 80px;
}

.vmh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 900; color: #fff; }
.footer-brand-name span { color: var(--vmh-orange); }
.footer-tagline { font-size: .8rem; color: rgba(255,255,255,.5); }

.vmh-footer-brand p { font-size: .88rem; line-height: 1.7; margin: 0 0 16px; }

.footer-powered { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-powered a { color: var(--vmh-orange); text-decoration: none; }

.vmh-footer-links h4 { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.vmh-footer-links ul { list-style: none; padding: 0; margin: 0; }
.vmh-footer-links li { margin-bottom: 10px; }
.vmh-footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; text-decoration: none; transition: color var(--transition); }
.vmh-footer-links a:hover { color: var(--vmh-orange); }

.vmh-footer-cta h4 { color: #fff; font-size: .95rem; margin-bottom: 8px; }
.vmh-footer-cta p  { font-size: .85rem; margin-bottom: 16px; }

.footer-stats { display: flex; gap: 16px; margin-top: 16px; font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-stats span { display: block; font-family: var(--ff-head); font-size: 1.3rem; font-weight: 800; color: var(--vmh-orange); }

.vmh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.vmh-footer-bottom a { color: rgba(255,255,255,.5); }

/* ── Map container ──────────────────────────────────────────────────────────── */
.vmh-map { border-radius: var(--vmh-radius); overflow: hidden; height: 380px; }

/* ── Badge pill ─────────────────────────────────────────────────────────────── */
.vmh-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
}

.vmh-pill-orange { background: var(--vmh-orange-pale); color: var(--vmh-orange); border: 1px solid var(--vmh-orange-light); }
.vmh-pill-red    { background: var(--vmh-red-light);   color: var(--vmh-red); }
.vmh-pill-green  { background: var(--vmh-green-light); color: var(--vmh-green); }
.vmh-pill-gray   { background: #F5F5F4; color: var(--vmh-muted); }

/* ── Breadcrumb ─────────────────────────────────────────────────────────────── */
.vmh-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: var(--vmh-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.vmh-breadcrumb a { color: var(--vmh-orange); }
.vmh-breadcrumb .sep { color: #D6D3D1; }

/* ── Chip lookup result ─────────────────────────────────────────────────────── */
.vmh-chip-result {
  background: linear-gradient(135deg, #ECFDF5, #F0FFF4);
  border: 2px solid var(--vmh-green);
  border-radius: var(--vmh-radius);
  padding: 28px 32px;
}

.vmh-chip-result.not-found {
  background: #FFFBEB;
  border-color: #F59E0B;
}

.vmh-chip-result.lost {
  background: var(--vmh-red-light);
  border-color: var(--vmh-red);
}

/* ── Account page ───────────────────────────────────────────────────────────── */
.vmh-melding-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--vmh-border);
}

.vmh-melding-row:last-child { border-bottom: none; }

.vmh-melding-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--vmh-radius-sm);
  object-fit: cover;
  background: var(--vmh-orange-pale);
  flex-shrink: 0;
}

/* ── Utility ────────────────────────────────────────────────────────────────── */
.text-orange  { color: var(--vmh-orange) !important; }
.text-vmh-red { color: var(--vmh-red) !important; }
.text-green   { color: var(--vmh-green) !important; }
.text-muted   { color: var(--vmh-muted) !important; }
.bg-orange-pale { background: var(--vmh-orange-pale) !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.ff-head { font-family: var(--ff-head) !important; }

.gap-3 { gap: 12px; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .vmh-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Desktop: navbar altijd zichtbaar (Bootstrap collapse override) */
@media (min-width: 768px) {
  .vmh-nav .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex: 1;
  }
}

@media (max-width: 767px) {
  .vmh-nav .container { height: auto; padding: 12px 16px; flex-wrap: wrap; }
  .vmh-nav-toggle { display: flex; }
  .vmh-nav-links { flex-direction: column; padding: 8px 0 12px; width: 100%; }
  .vmh-nav-auth { flex-direction: column; width: 100%; padding-bottom: 12px; }
  .vmh-nav-auth a { width: 100%; text-align: center; justify-content: center; }
  .vmh-hero { padding: 48px 0 64px; }
  .vmh-search-bar { flex-direction: column; border-radius: var(--vmh-radius); }
  .vmh-search-bar input { border-bottom: 1px solid var(--vmh-border); }
  .vmh-search-bar button { border-radius: 0 0 var(--vmh-radius) var(--vmh-radius); }
  .vmh-chip-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
  .vmh-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .vmh-footer { margin-top: 48px; }
  .vmh-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .vmh-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vmh-detail-overlay h1 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .vmh-pet-grid { grid-template-columns: 1fr; }
  .vmh-donation-tiers { grid-template-columns: repeat(2, 1fr); }
  .vmh-card-body.large { padding: 24px; }
}
