:root {
  /* warm pet palette pulled from the user reference */
  --bg: #fffdfa;
  --fg: #4a3526;
  --muted: #8a7565;
  --brand: #C49A6C;
  --brand-dark: #8a5a34;
  --brand-light: #E6D3C4;
  --card: #ffffff;
  --border: #efe4da;
  --shadow: rgba(113, 67, 41, 0.12);
  --max: 1200px;
  --font-round: 'Fredoka', 'Quicksand', 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---- Header ---- */
header.site {
  background: linear-gradient(180deg, #fff6ed 0%, #fbe9da 100%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(113, 67, 41, 0.05);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: auto;
  min-height: 72px;
  padding: 10px 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px 7px 12px;
  border-radius: 999px 22px 999px 999px;
  background: linear-gradient(135deg, #fff7f1 0%, #ffe9da 100%);
  border: 2px solid var(--brand-light);
  box-shadow: 0 4px 16px rgba(196, 154, 108, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 154, 108, 0.26);
}

.brand-text {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.4px;
  background: linear-gradient(95deg, var(--brand-dark) 0%, var(--brand) 50%, #d8a878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.brand-paw {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  animation: pawWave 2.6s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes pawWave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(9deg); }
  75% { transform: rotate(-5deg); }
}

.header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 6px;
}

.site-nav a {
  font-family: var(--font-round);
  color: var(--fg);
  font-weight: 600;
  font-size: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--brand-dark);
  background: #fff2e8;
  border-color: var(--brand-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--brand-light);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  margin-left: auto;
  box-shadow: 0 3px 10px rgba(113, 67, 41, 0.1);
}

.menu-toggle .menu-bar {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--brand-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Main ---- */
main.container {
  padding-top: 0;
  padding-bottom: 56px;
  min-height: 60vh;
}

/* ---- Hero (full-bleed) ---- */
.hero-home {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 520px;
  border-radius: 0 0 40px 40px;
  padding: 28px 22px 170px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,250,247,1) 0%, rgba(255,248,244,1) 52%, rgba(255,246,241,0.85) 100%);
}

.hero-backdrop {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  min-height: 240px;
  z-index: 0;
  background-image: url('/images/hero-pets.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 1;
}

@media (min-width: 721px) {
  .hero-home {
    min-height: 720px;
    padding: 52px 22px 260px;
  }
  .hero-backdrop {
    height: 58%;
    min-height: 420px;
    background-position: center 86%;
  }
}

.hero-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* fade the pet strip into the solid hero background above */
    linear-gradient(180deg,
      rgba(255,248,244,1) 0%,
      rgba(255,248,244,0.82) 22%,
      rgba(255,248,244,0.35) 50%,
      transparent 72%),
    /* gentle bottom fade into page */
    linear-gradient(180deg, transparent 70%, rgba(255,253,250,0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-pretitle {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
  font-family: var(--font-round);
}

.hero-title {
  font-size: clamp(48px, 8vw, 84px);
  margin: 0 0 18px;
  line-height: 1.05;
  font-weight: 700;
  font-family: var(--font-round);
  background: linear-gradient(95deg, var(--brand-dark) 0%, var(--brand) 45%, #d8a878 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.4px;
}

.hero-subtitle {
  font-size: 19px;
  color: #5e4634;
  margin: 0 auto 30px;
  max-width: 580px;
  line-height: 1.75;
  font-weight: 600;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-round);
  box-shadow: 0 8px 24px rgba(138, 90, 52, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(113, 67, 41, 0.38);
  color: #fff;
}

.hero-cta::after {
  content: '→';
  font-size: 18px;
}

/* ---- Orbit section wrapper ---- */
.orbit-section {
  padding: 18px 0 28px;
  background:
    linear-gradient(180deg, #fffdfb 0%, #fff6ed 18%, #fbe9da 100%);
}

.section-wide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ---- About (pet house) ---- */
.about-section {
  padding: 36px 0 64px;
}

.about-card {
  position: relative;
  max-width: 720px;
  margin: 54px auto 0;
  padding: 70px 32px 44px;
  border-radius: 34px;
  background: linear-gradient(180deg, #fff8f3 0%, #ffefe4 100%);
  border: 3px solid #e6cfc0;
  box-shadow: 0 18px 42px rgba(113, 67, 41, 0.12);
  text-align: center;
}

.about-house {
  position: absolute;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 110px;
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(113, 67, 41, 0.14));
}

.about-house .house-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-paw {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background: #fff;
  border: 3px solid #e6cfc0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(113, 67, 41, 0.12);
  z-index: 3;
}

.about-paw svg { width: 36px; height: 36px; }

.about-card h2 {
  margin: 8px 0 14px;
  font-size: 30px;
  color: var(--brand-dark);
  font-family: var(--font-round);
}

.about-card .lead {
  font-size: 17px;
  color: var(--fg);
  margin: 0 0 14px;
  line-height: 1.7;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ---- Brands (logo strip) ---- */
.brands-section {
  padding: 28px 0 44px;
  text-align: center;
}

.brands-title {
  font-family: var(--font-round, sans-serif);
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: 0.4px;
}

/* ---- Cards (used by blog/reviews) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  color: var(--fg);
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 8px 22px var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--fg);
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Footer ---- */
footer.site {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

/* ---- Lang switcher ---- */
.lang-switcher {
  flex-shrink: 0;
}

.lang-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding: 9px 34px 9px 36px;
  border-radius: 999px;
  border: 2px solid var(--brand-light);
  background: linear-gradient(180deg, #fff8f3 0%, #ffefe4 100%);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--brand-dark);
  box-shadow: 0 3px 12px rgba(113, 67, 41, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.lang-select-wrap select:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(113, 67, 41, 0.14);
  border-color: #e6c4ae;
}

.lang-select-wrap select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.2);
}

.lang-globe {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: var(--brand-dark);
  pointer-events: none;
}

.lang-arrow {
  position: absolute;
  right: 12px;
  width: 12px;
  height: 12px;
  color: var(--brand-dark);
  pointer-events: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 720px) {
  .header-inner {
    min-height: 62px;
    padding: 8px 0;
    gap: 10px;
  }
  .header-right { display: block; margin-left: 0; }
  .brand-text { font-size: 17px; }
  .brand { padding: 6px 14px 6px 10px; }
  .brand-paw svg { width: 30px; height: 30px; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    background: linear-gradient(180deg, #fff8f3 0%, #ffefe4 100%);
    border: 2px solid var(--brand-light);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(113, 67, 41, 0.14);
    z-index: 99;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    text-align: center;
    padding: 10px 14px;
    font-size: 16px;
  }
  .menu-toggle { display: flex; }
  .lang-select-wrap select {
    padding: 7px 28px 7px 30px;
    font-size: 13px;
  }
  .lang-globe { width: 14px; height: 14px; left: 10px; }
  .lang-arrow { width: 10px; height: 10px; right: 10px; }
  .hero-home { min-height: 420px; padding: 22px 16px 120px; }
  .hero-backdrop { height: 45%; min-height: 180px; }
  .about-card { padding: 62px 20px 32px; }
  .about-house { width: 96px; height: 88px; top: -48px; }
  .about-paw { width: 46px; height: 46px; top: 8px; }
  .about-paw svg { width: 30px; height: 30px; }
}

/* ===== Section pages (blog/reviews/photos/videos/science/lost/faq/contact) ===== */
.section-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0 64px;
}
.page-title {
  font-family: var(--font-round);
  font-size: clamp(30px, 5vw, 46px);
  color: var(--brand-dark);
  margin: 0 0 10px;
}
.page-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 30px;
  line-height: 1.7;
}
/* post / review / video cards */
.post-card, .review-card, .video-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  color: var(--fg);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.post-card:hover, .review-card:hover, .video-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 12px 30px var(--shadow);
}
.post-thumb, .review-thumb, .video-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post-thumb img, .review-thumb img, .video-thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .3s;
}
.post-card:hover .post-thumb img, .review-card:hover .review-thumb img { transform: scale(1.05); }
.post-body, .review-body, .video-body { padding: 16px 18px 20px; }
.post-cat, .review-type, .video-topic {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--brand-dark);
  background: #fff2e8; border: 1px solid var(--brand-light);
  padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}
.post-body h3, .review-body h3, .video-body h3 {
  margin: 4px 0 8px; font-size: 18px; color: var(--fg);
  font-family: var(--font-round);
}
.post-excerpt { color: var(--muted); font-size: 14px; margin: 0 0 10px; line-height: 1.6; }
.post-meta { font-size: 12px; color: var(--muted); }
/* review specifics */
.review-stars { color: #e6a23c; font-weight: 700; font-size: 14px; }
.review-price { color: var(--brand-dark); font-weight: 700; margin-top: 4px; }
.review-stars.big { font-size: 22px; }
.review-price.big { font-size: 20px; }
/* video specifics */
.video-thumb { position: relative; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--brand-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.7); color: #fff; font-size: 12px;
  padding: 2px 8px; border-radius: 8px;
}
/* article detail */
.article { max-width: 760px; }
.back-link { display: inline-block; color: var(--brand-dark); font-weight: 600; margin-bottom: 18px; }
.article-hero { border-radius: 22px; overflow: hidden; margin-bottom: 18px; }
.article-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.article-meta { margin-bottom: 20px; }
.article-body p { font-size: 17px; line-height: 1.85; margin: 0 0 18px; color: #4a3526; }
/* review detail */
.review-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.review-detail-img img { width: 100%; border-radius: 20px; }
.review-best { margin: 14px 0 6px; }
.review-summary { color: var(--muted); line-height: 1.75; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 18px 0; }
.pros h4 { color: #2e8b57; margin: 0 0 8px; }
.cons h4 { color: #c0392b; margin: 0 0 8px; }
.pros ul, .cons ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.7; }
.price-note { font-size: 12px; color: var(--muted); font-style: italic; }
/* photos gallery */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.photo-item { margin: 0; border-radius: 16px; overflow: hidden; background: var(--card); border: 1px solid var(--border); }
.photo-item img { width: 100%; height: 220px; object-fit: cover; }
.photo-item figcaption { padding: 10px 14px; font-size: 13px; color: var(--muted); }
.photo-tag { display: inline-block; margin: 0 14px 12px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: #f3e9e0; color: var(--brand-dark); }
/* lost pets */
.lost-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.lost-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.lost-thumb img { width: 100%; height: 220px; object-fit: cover; }
.lost-body { padding: 18px 20px 22px; }
.lost-tags { display: flex; gap: 8px; margin-bottom: 8px; }
.tag { font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: #f3e9e0; color: var(--brand-dark); }
.tag.status.ok { background: #e3f5ec; color: #2e8b57; }
.tag.status.miss { background: #fde8e8; color: #c0392b; }
.lost-card { position: relative; }
.lost-card-link { position: absolute; inset: 0; z-index: 1; border-radius: 20px; }
.lost-card h3 { margin: 2px 0 6px; font-family: var(--font-round); color: var(--brand-dark); }
.lost-loc { font-size: 13px; color: var(--muted); margin: 0 0 4px; }
.lost-missing { font-size: 13px; color: var(--muted); margin: 0 0 10px; }
.lost-story { font-size: 14px; line-height: 1.7; color: #4a3526; margin: 0 0 12px; }
.lost-source { font-size: 13px; color: var(--brand-dark); font-weight: 600; position: relative; z-index: 2; }
.lost-card .like-btn { position: relative; z-index: 2; }
/* lost detail page */
.lost-facts { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 6px; }
.fact { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 12px 18px; min-width: 180px; }
.fact-label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.fact-value { display: block; font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-top: 4px; }
.article-source { display: inline-block; margin: 18px 0 4px; font-size: 15px; font-weight: 600; color: var(--brand-dark); position: relative; z-index: 2; }
/* faq */
.faq-list { max-width: 800px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 18px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; font-weight: 700; font-family: var(--font-round); color: var(--brand-dark); padding: 14px 0; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0 0 16px; color: var(--muted); line-height: 1.75; }
/* contact */
.contact-box { max-width: 640px; background: linear-gradient(180deg,#fff8f3,#ffefe4); border: 2px dashed var(--brand-light); border-radius: 22px; padding: 40px; text-align: center; }
.coming-soon { display: inline-block; background: var(--brand-dark); color: #fff; font-weight: 700; font-size: 12px; padding: 4px 14px; border-radius: 999px; margin-bottom: 14px; letter-spacing: .5px; }
.contact-message { font-size: 16px; line-height: 1.8; color: #4a3526; margin: 0; }

@media (max-width: 720px) {
  .review-detail { grid-template-columns: 1fr; gap: 20px; }
  .pros-cons { grid-template-columns: 1fr; }
}

/* ===== list toolbar: search + count ===== */
.list-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 22px;
}
.pet-search {
  flex: 1 1 260px;
  max-width: 380px;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-size: 14px;
  color: #4a3526;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.pet-search:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, .18);
}
.list-count {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

/* ===== post stats (views + likes) ===== */
.post-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 600;
}
.post-stats svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; }
.post-views, .like-count { display: inline-flex; align-items: center; }
.article-stats { margin: 14px 0 4px; }

/* ===== like button ===== */
.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  border: 1.5px solid var(--brand-light);
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
}
.like-btn svg { width: 17px; height: 17px; }
.like-btn:hover { border-color: var(--brand); background: #fff6ef; transform: translateY(-1px); }
.like-btn.liked { background: var(--brand); border-color: var(--brand); color: #fff; cursor: default; }
.like-btn.liked svg { fill: #fff; }
.article-like { margin: 26px auto 8px; display: flex; }

/* ===== pagination ===== */
.pet-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 34px 0 8px;
  flex-wrap: wrap;
}
.pet-pagination a {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  background: var(--card);
  color: var(--brand-dark);
  font-weight: 700;
  font-family: var(--font-round);
  text-decoration: none;
  transition: all .15s ease;
}
.pet-pagination a:hover:not(.disabled) { border-color: var(--brand); background: #fff6ef; }
.pet-pagination .current { background: var(--brand); border-color: var(--brand); color: #fff; }
.pet-pagination .disabled { opacity: .4; pointer-events: none; }

/* ===== empty state ===== */
.list-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 40px 0;
}

/* Route announcer */
	.astro-route-announcer {
		position: absolute;
		left: 0;
		top: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		overflow: hidden;
		white-space: nowrap;
		width: 1px;
		height: 1px;
	}