/* PetID Public Brand — premium marketing + finder surfaces */
:root {
  --pb-night: #07111f;
  --pb-ink: #0c1a2e;
  --pb-paper: #faf8f5;
  --pb-paper-2: #f0ebe3;
  --pb-gold: #c9a227;
  --pb-gold-soft: #d4b44a;
  --pb-gold-dark: #9a7b1a;
  --pb-line: rgba(12, 26, 46, 0.1);
  --pb-muted: #5f6f84;
}

.font-display,
.petid-logo,
.petid-display,
.petid-hero-title,
.petid-page-title,
.petid-finder-name {
  font-family: "Syne", system-ui, sans-serif;
}

body.petid-public-body,
body.petid-auth-body,
body.petid-finder-body {
  font-family: "DM Sans", system-ui, sans-serif;
}

body.petid-public-body.theme-app {
  background: var(--pb-paper);
  color: var(--pb-ink);
}

/* —— Nav —— */
.petid-public-nav {
  background: rgba(250, 248, 245, 0.88) !important;
  border-bottom: 1px solid var(--pb-line) !important;
  box-shadow: none !important;
}
.petid-public-nav-inner {
  max-width: 72rem !important;
  padding: 1rem 1.5rem !important;
}
.petid-public-logo .petid-logo {
  color: var(--pb-ink) !important;
  letter-spacing: -0.03em;
}
.petid-public-links {
  gap: 1.75rem !important;
}
.petid-public-links a {
  color: rgba(12, 26, 46, 0.62) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.01em;
}
.petid-public-links a:hover {
  color: var(--pb-ink) !important;
}
.petid-nav-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(12, 26, 46, 0.7);
  margin-right: 0.35rem;
  white-space: nowrap;
}
.petid-nav-text:hover { color: var(--pb-ink); }
.petid-public-actions .petid-btn-gold {
  white-space: nowrap;
  flex-shrink: 0;
}
.petid-mobile-nav {
  background: var(--pb-paper) !important;
}
.petid-mobile-nav a {
  color: var(--pb-ink) !important;
  font-weight: 600 !important;
  border-bottom-color: var(--pb-line) !important;
}

/* Mobile header: logo | compact CTA | hamburger — no stacked button text */
@media (max-width: 1023px) {
  .petid-public-nav-inner {
    padding: 0.65rem 0.85rem !important;
    gap: 0.5rem !important;
  }
  .petid-public-logo .petid-logo {
    font-size: 1.65rem !important;
    line-height: 1 !important;
    white-space: nowrap;
  }
  .petid-public-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }
  .petid-public-actions .petid-nav-text {
    display: none;
  }
  .petid-public-actions .petid-btn-gold {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.06em;
    line-height: 1.2;
    white-space: nowrap !important;
    min-height: 0 !important;
  }
  .petid-nav-toggle {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
  }
}

@media (max-width: 380px) {
  .petid-public-nav-inner {
    padding: 0.55rem 0.7rem !important;
  }
  .petid-public-logo .petid-logo {
    font-size: 1.45rem !important;
  }
  .petid-public-actions .petid-btn-gold {
    padding: 0.4rem 0.55rem !important;
    font-size: 0.65rem !important;
  }
}

/* —— Hero (home) —— */
.petid-hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.petid-hero-media {
  position: absolute;
  inset: 0;
}
.petid-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.04);
  animation: petidHeroDrift 22s ease-in-out infinite alternate;
}
@keyframes petidHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.2%, -0.8%, 0); }
}
.petid-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.15) 0%, rgba(7, 17, 31, 0.35) 35%, rgba(7, 17, 31, 0.88) 100%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.45) 0%, transparent 55%);
}
.petid-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.75rem;
}
.petid-hero-brand,
.petid-hero-content .petid-logo {
  display: block;
  font-size: clamp(2.35rem, 6vw, 3.75rem) !important;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  color: #fff !important;
  animation: petidRise 0.8s ease both;
}
.petid-hero-title {
  max-width: 16ch;
  font-size: clamp(1.4rem, 3.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
}
.petid-hero-lead {
  margin: 0.75rem 0 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
}
.petid-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@keyframes petidRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.petid-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.petid-btn-ghost:hover {
  border-color: var(--pb-gold);
  color: var(--pb-gold-soft);
  background: rgba(201, 162, 39, 0.08);
}
.petid-btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.35);
}
.petid-public-body .petid-btn-outline {
  border-radius: 0;
  letter-spacing: 0.06em;
}
.petid-public-body .petid-btn-gold {
  border-radius: 0;
  letter-spacing: 0.08em;
}

/* —— Editorial bands —— */
.petid-band {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--pb-paper);
}
.petid-band--tint {
  background: var(--pb-paper-2);
}
.petid-band--night {
  background: var(--pb-night);
  color: #fff;
}
.petid-band-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(1.15rem, 4vw, 1.5rem);
}
.petid-band-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 900px) {
  .petid-band-split {
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
  .petid-band-split--flip .petid-band-copy { order: 2; }
  .petid-band-split--flip .petid-band-visual { order: 1; }
}
.petid-band-copy--center {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
}
.petid-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pb-gold);
  margin: 0 0 0.85rem;
}
.petid-kicker--on-dark { color: var(--pb-gold-soft); }
.petid-display {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--pb-ink);
  margin: 0;
}
.petid-display--on-dark { color: #fff; }
.petid-lede {
  margin: 1rem 0 0;
  font-size: clamp(0.98rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: var(--pb-muted);
  max-width: 34rem;
}
.petid-lede--center {
  margin-left: auto;
  margin-right: auto;
}
.petid-lede--on-dark { color: rgba(255, 255, 255, 0.72); }
.petid-band-visual {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e6e1d8;
  min-height: 220px;
}
.petid-band-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.petid-band-visual:hover img {
  transform: scale(1.04);
}
.petid-text-link {
  display: inline-block;
  margin-top: 1.35rem;
  font-weight: 700;
  color: var(--pb-ink);
  border-bottom: 1px solid var(--pb-gold);
  padding-bottom: 0.15rem;
  letter-spacing: 0.02em;
}
.petid-text-link:hover { color: var(--pb-gold-dark); }

.petid-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .petid-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.petid-step {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(12, 26, 46, 0.12);
}
.petid-step-index {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pb-gold);
  margin-bottom: 1rem;
}
.petid-step h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0 0 0.65rem;
}
.petid-step p {
  margin: 0;
  color: var(--pb-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Testimonials — editorial quotes, not cards */
.petid-quotes {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(12, 26, 46, 0.12);
}
@media (min-width: 900px) {
  .petid-quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}
.petid-quote {
  margin: 0;
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(12, 26, 46, 0.1);
}
@media (min-width: 900px) {
  .petid-quote {
    padding: 1.5rem 1.5rem 0.25rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(12, 26, 46, 0.1);
  }
  .petid-quote + .petid-quote {
    padding-left: 1.5rem;
  }
  .petid-quote:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.petid-quote-text {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--pb-ink);
}
.petid-quote-text::before {
  content: "“";
  color: var(--pb-gold);
  margin-right: 0.1em;
}
.petid-quote-foot {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.petid-quote-name {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--pb-ink);
}
.petid-quote-meta {
  font-size: 0.78rem;
  color: var(--pb-muted);
  letter-spacing: 0.02em;
}

.petid-finale {
  text-align: center;
  padding: 2rem 0 1rem;
}
.petid-finale .petid-lede {
  margin-left: auto;
  margin-right: auto;
}
.petid-finale .petid-hero-actions {
  justify-content: center;
}

/* —— Page hero (inner) —— */
.petid-page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 162, 39, 0.1), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--pb-paper) 100%) !important;
  border-bottom: 1px solid var(--pb-line) !important;
  padding: 0 !important;
}
.petid-page-hero-inner {
  max-width: 72rem !important;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.15rem, 4vw, 1.5rem) clamp(1.75rem, 4vw, 2.35rem) !important;
}
.petid-page-hero--center .petid-page-hero-inner {
  text-align: center;
  max-width: 44rem !important;
}
.petid-page-hero--center .petid-page-subtitle {
  margin-left: auto !important;
  margin-right: auto !important;
}
.petid-page-title {
  font-size: clamp(2.1rem, 4.5vw, 3.25rem) !important;
  letter-spacing: -0.035em !important;
  color: var(--pb-ink) !important;
  font-weight: 700 !important;
}
.petid-page-subtitle {
  margin-top: 0.85rem !important;
  max-width: 32rem !important;
  color: var(--pb-muted) !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}

.petid-public-section {
  padding: 4rem 0 5rem !important;
}
.petid-public-section-inner {
  max-width: 72rem !important;
  padding: 0 1.5rem !important;
}
.petid-section-title {
  font-family: "Syne", system-ui, sans-serif !important;
  letter-spacing: -0.03em !important;
  color: var(--pb-ink) !important;
}
.petid-section-sub { color: var(--pb-muted) !important; }
.petid-shell-light {
  border-radius: 0 !important;
  border: 1px solid var(--pb-line) !important;
  box-shadow: none !important;
  background: #fff !important;
}

/* —— Footer —— */
.petid-public-footer {
  background: var(--pb-night) !important;
  border-top: none !important;
}
.petid-public-footer-inner {
  max-width: 72rem !important;
  padding: 4rem 1.5rem 3rem !important;
}
.petid-footer-promise {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pb-gold-soft);
  font-weight: 700;
}
.petid-footer-blurb {
  margin-top: 0.85rem;
  max-width: 18rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.petid-footer-contact {
  margin-top: 1rem;
  max-width: 18rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.petid-footer-contact a {
  color: var(--pb-gold-soft);
  font-weight: 600;
}
.petid-footer-contact a:hover { color: #fff; }
.petid-public-footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.petid-newsletter { margin-top: 1.75rem; }
.petid-public-footer .petid-logo { color: #fff !important; }

/* —— Finder / QR profile —— */
body.petid-finder-body {
  background: var(--pb-paper);
  margin: 0;
  min-height: 100vh;
}
.petid-finder-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.petid-finder-top .petid-logo {
  color: #fff !important;
  font-size: 1.35rem !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.petid-finder-top-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.petid-finder-top-link:hover { color: var(--pb-gold-soft); }

.petid-finder {
  min-height: 100vh;
}
.petid-finder-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.petid-finder-hero.is-lost {
  min-height: min(85vh, 780px);
}
.petid-finder-hero-bg {
  position: absolute;
  inset: 0;
}
.petid-finder-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.petid-finder-hero-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.25), transparent 50%),
    linear-gradient(160deg, #0f1f35 0%, #07111f 100%);
}
.petid-finder-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.2) 0%, rgba(7, 17, 31, 0.55) 45%, rgba(7, 17, 31, 0.94) 100%);
}
.petid-finder-hero.is-lost .petid-finder-hero-veil {
  background:
    linear-gradient(180deg, rgba(80, 20, 10, 0.25) 0%, rgba(40, 12, 8, 0.55) 40%, rgba(12, 8, 6, 0.95) 100%);
}
.petid-finder-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 2.75rem;
}
.petid-finder-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pb-gold-soft);
  margin-bottom: 0.85rem;
}
.petid-finder-status.is-lost {
  color: #ffb4a2;
  animation: petidPulse 1.6s ease-in-out infinite;
}
@keyframes petidPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.petid-finder-name {
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
}
.petid-finder-meta {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.petid-finder-message {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
}
.petid-finder-reward {
  margin-top: 1rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pb-gold-soft);
}
.petid-finder-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
  overflow-x: auto;
}
.petid-finder-thumbs img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  opacity: 0.65;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.petid-finder-thumbs img.active {
  opacity: 1;
  border-color: var(--pb-gold);
}

.petid-finder-panel {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 3.5rem;
}
.petid-finder-actions {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 540px) {
  .petid-finder-actions { grid-template-columns: 1fr 1fr; }
}
.petid-finder-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.15rem 1.2rem;
  text-align: left;
  border: 1px solid var(--pb-line);
  background: #fff;
  transition: border-color 0.2s, transform 0.2s;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font: inherit;
}
.petid-finder-action:hover {
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-1px);
}
.petid-finder-action.is-primary {
  background: linear-gradient(135deg, #e4c76b 0%, #c9a227 55%, #9a7b1a 100%);
  border-color: transparent;
  color: var(--pb-ink);
}
.petid-finder-action strong {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.petid-finder-action span {
  font-size: 0.8rem;
  color: var(--pb-muted);
}
.petid-finder-action.is-primary span {
  color: rgba(10, 22, 40, 0.7);
}

.petid-finder-contacts {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--pb-line);
}
.petid-finder-contacts h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--pb-ink);
}
.petid-finder-contact {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--pb-line);
}
.petid-finder-contact:last-child { border-bottom: 0; }
.petid-finder-contact p {
  margin: 0;
  font-weight: 600;
  color: var(--pb-ink);
}
.petid-finder-contact small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pb-muted);
}
.petid-finder-contact a {
  font-weight: 700;
  color: var(--pb-gold-dark);
  white-space: nowrap;
}

.petid-finder-empty {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}
.petid-finder-empty h1 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pb-ink);
  margin: 1rem 0 0.75rem;
}
.petid-finder-empty p {
  color: var(--pb-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .petid-hero { min-height: min(46vh, 380px); }
  .petid-hero-content { padding: 2.75rem 1.15rem 2.25rem; }
  .petid-band { padding: 4rem 0; }
  .petid-finder-hero { min-height: 70vh; }
}

.petid-form-panel {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.petid-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
.petid-empty-panel {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--pb-line);
  background: #fff;
}
.petid-shop-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .petid-shop-grid:not(.petid-shop-grid--results) { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .petid-shop-grid:not(.petid-shop-grid--results) { grid-template-columns: repeat(3, 1fr); }
}
.petid-shop-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.5rem 1.35rem;
}
.petid-shop-card h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0.35rem 0 0.75rem;
}
.petid-shop-card p {
  margin: 0;
  color: var(--pb-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.petid-shop-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--pb-gold-dark);
}
.petid-scan-stage {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(12, 26, 46, 0.03), rgba(12, 26, 46, 0.06)),
    #fff;
  border: 1px solid var(--pb-line);
  overflow: hidden;
}
.petid-scan-stage video,
.petid-scan-stage canvas,
.petid-scan-stage img {
  display: block;
  width: 100% !important;
}
.petid-scan-hint {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--pb-muted);
}
.petid-scan-divider {
  margin-top: 0.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--pb-line);
}

/* —— Finder profile v3 (photo + sheet) —— */
.pf-body {
  margin: 0;
  min-height: 100vh;
  background: #0a1018;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #0c1a2e;
}
.pf {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.pf-stage {
  position: relative;
  flex: 0 0 auto;
  height: min(58vh, 520px);
  overflow: hidden;
  background: #0a1018;
}
@media (min-width: 768px) {
  .pf-stage { height: min(62vh, 580px); }
}
.pf-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  animation: pfKen 18s ease-in-out infinite alternate;
}
.pf-stage-img.is-default {
  filter: saturate(0.92) contrast(1.02);
}
@keyframes pfKen {
  from { transform: scale(1.03); }
  to { transform: scale(1.08) translate3d(-1%, -0.5%, 0); }
}
.pf-stage-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.35) 0%, transparent 28%, transparent 48%, rgba(7, 12, 20, 0.55) 78%, rgba(7, 12, 20, 0.92) 100%);
  pointer-events: none;
}
.pf--lost .pf-stage-veil {
  background:
    linear-gradient(180deg, rgba(60, 18, 10, 0.4) 0%, transparent 30%, rgba(40, 12, 8, 0.45) 70%, rgba(18, 8, 6, 0.95) 100%);
}
.pf-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(1rem, env(safe-area-inset-top)) 1.25rem 0.75rem;
}
.pf-brand .petid-logo {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
.pf-pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0c1a2e;
  background: rgba(228, 199, 107, 0.95);
  padding: 0.4rem 0.7rem;
}
.pf-pill--alert {
  background: #ff6b4a;
  color: #fff;
  animation: pfPulse 1.5s ease-in-out infinite;
}
@keyframes pfPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.pf-thumbs {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
}
.pf-thumb {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.pf-thumb.is-active {
  border-color: #e4c76b;
}
.pf-thumb.is-active img { opacity: 1; }

.pf-photo-hint {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.15rem;
  z-index: 3;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 0.55rem;
  background: rgba(7, 12, 20, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  backdrop-filter: blur(6px);
  text-align: center;
}
@media (min-width: 900px) {
  .pf-photo-hint {
    left: 1.25rem;
    right: auto;
    max-width: 22rem;
    text-align: left;
    bottom: 1.5rem;
  }
}
.pf-photo-note {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: #8a6a12;
  line-height: 1.4;
  font-weight: 600;
}

.pf-sheet {
  position: relative;
  z-index: 4;
  margin-top: -3.25rem;
  background: #faf8f5;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 0.85rem 1.35rem calc(1.75rem + env(safe-area-inset-bottom));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.28);
  flex: 1;
  max-width: 32rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .pf-sheet {
    margin-top: -4rem;
    border-radius: 1.75rem 1.75rem 0 0;
    padding: 1rem 1.75rem 2.25rem;
  }
}
.pf-sheet-handle {
  width: 2.5rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(12, 26, 46, 0.15);
  margin: 0 auto 1.15rem;
}
.pf-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pf-avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #0c1a2e;
  background: linear-gradient(145deg, #e4c76b, #c9a227);
  box-shadow: 0 0 0 3px #faf8f5, 0 0 0 5px rgba(201, 162, 39, 0.45);
}
.pf-name {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2rem, 7vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0;
  color: #0c1a2e;
}
.pf-meta {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  color: #5f6f84;
  font-weight: 500;
  text-transform: capitalize;
}
.pf-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 1.1rem 0 0;
}
.pf-fact {
  padding: 0.7rem 0.8rem;
  background: #f7f4ef;
  border: 1px solid rgba(12, 26, 46, 0.06);
}
.pf-fact dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a8798;
}
.pf-fact dd {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0c1a2e;
}
.pf-note {
  margin: 0.9rem 0 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
}
.pf-note--soft {
  border-color: rgba(12, 26, 46, 0.08);
  background: #faf8f5;
}
.pf-note-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9a7b1a;
}
.pf-note--soft .pf-note-label { color: #6b7c93; }
.pf-note-body {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #0c1a2e;
}
.pf-help,
.pf-lost-msg {
  margin: 1.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #5f6f84;
}
.pf-lost-msg {
  color: #7a2e1a;
  background: rgba(255, 107, 74, 0.1);
  border-left: 3px solid #ff6b4a;
  padding: 0.75rem 0.9rem;
}
.pf-reward {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.95rem 0 0;
  padding: 0.45rem 0.75rem;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #7a6214;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.pf-reward span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7b1a;
}
.pf-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}
.pf-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(12, 26, 46, 0.1);
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.pf-btn:hover {
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 26, 46, 0.06);
}
.pf-btn--gold {
  background: linear-gradient(135deg, #e4c76b 0%, #c9a227 55%, #9a7b1a 100%);
  border-color: transparent;
  color: #0c1a2e;
}
.pf-btn--gold:hover {
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.35);
}
.pf-btn--wa {
  border-color: rgba(18, 140, 126, 0.28);
  background: linear-gradient(180deg, #fff 0%, #f3fbf8 100%);
}
.pf-btn--wa:hover {
  border-color: rgba(18, 140, 126, 0.55);
}
.pf-btn--loc {
  border-style: dashed;
  border-color: rgba(12, 26, 46, 0.18);
  background: #faf8f5;
}
.pf-btn--done {
  cursor: default;
  pointer-events: none;
  border-color: rgba(31, 122, 76, 0.28);
  background: #eef8f2;
  transform: none;
  box-shadow: none;
}
.pf-btn--done:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(31, 122, 76, 0.28);
}
.pf-btn--done .pf-btn-label { color: #1f7a4c; }
.pf-btn--done .pf-btn-sub { color: #3d7a5c; }
.pf-btn.is-busy { opacity: 0.65; }
.pf-btn-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(12, 26, 46, 0.55);
  margin-bottom: 0.1rem;
}
.pf-btn-label {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: #0c1a2e;
}
.pf-btn-sub {
  font-size: 0.8rem;
  color: #5f6f84;
}
.pf-btn--gold .pf-btn-sub { color: rgba(12, 26, 46, 0.68); }
.pf-loc-status {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: #5f6f84;
}
.pf-loc-status.is-ok { color: #1f7a4c; font-weight: 600; }
.pf-loc-status.is-err { color: #c45c26; }

.pf-more {
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(12, 26, 46, 0.08);
}
.pf-more-title {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7b1a;
}
.pf-more-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(12, 26, 46, 0.06);
}
.pf-more-row:last-child { border-bottom: 0; }
.pf-more-row strong {
  display: block;
  font-size: 0.95rem;
  color: #0c1a2e;
}
.pf-more-row small {
  color: #5f6f84;
  font-size: 0.75rem;
}
.pf-more-row a {
  font-weight: 700;
  color: #9a7b1a;
  white-space: nowrap;
}
.pf-foot {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #8a97a8;
}
.pf-foot a {
  color: #0c1a2e;
  font-weight: 700;
}

.pf-empty {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: #faf8f5;
}
.pf-empty-inner {
  text-align: center;
  max-width: 22rem;
}
.pf-empty-inner .petid-logo { color: #0c1a2e !important; }
.pf-empty-inner h1 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1.25rem 0 0.65rem;
  color: #0c1a2e;
}
.pf-empty-inner p {
  color: #5f6f84;
  line-height: 1.55;
  margin: 0 0 1.5rem;
}

/* Finder desktop split + resilient stage */
.pf-stage {
  min-height: 42vh;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.28), transparent 50%),
    linear-gradient(160deg, #1a2a40 0%, #0a1018 100%);
}
.pf-stage-img {
  background: #152033;
}
@media (min-width: 900px) {
  .pf {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
    min-height: 100vh;
  }
  .pf-stage {
    height: 100vh;
    min-height: 100vh;
    position: sticky;
    top: 0;
  }
  .pf-thumbs {
    bottom: 1.5rem;
  }
  .pf-sheet {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.75rem 3rem;
    min-height: 100vh;
  }
  .pf-sheet-handle { display: none; }
  .pf-actions { max-width: 24rem; }
  .pf-identity { margin-bottom: 0.25rem; }
}

/* —— Shared professional page system —— */
.petid-cta-hero {
  position: relative;
  min-height: min(52vh, 420px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.petid-cta-hero-media {
  position: absolute;
  inset: 0;
}
.petid-cta-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.petid-cta-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,.55) 0%, rgba(7,17,31,.78) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(201,162,39,.2), transparent 50%);
}
.petid-cta-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.petid-cta-hero-inner .petid-lede {
  margin-left: auto;
  margin-right: auto;
}
.petid-cta-hero-inner .petid-hero-actions {
  justify-content: center;
}

.pb-prose {
  color: var(--pb-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.pb-prose p { margin: 0 0 1rem; }
.pb-prose ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}
.pb-prose li { margin: 0.35rem 0; }
.pb-prose h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 1.75rem 0 0.65rem;
}
.pb-prose a {
  color: var(--pb-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pb-prose-panel {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 2rem 1.5rem;
}
@media (min-width: 700px) {
  .pb-prose-panel { padding: 2.5rem 2.25rem; }
}

.petid-band--support {
  padding-top: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}
.petid-support-wrap {
  max-width: 72rem;
}
.petid-support-wrap--narrow {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}
.petid-support-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .petid-support-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 2.75rem;
  }
}
.petid-support-aside-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pb-ink);
  margin: 0;
}
.petid-contact-details {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.petid-contact-details dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pb-muted, #6b7c93);
}
.petid-contact-details dd {
  margin: 0.2rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pb-ink);
}
.petid-contact-details a {
  color: var(--pb-ink);
  font-weight: 600;
  border-bottom: 1px solid var(--pb-gold);
}
.petid-contact-details a:hover { color: var(--pb-gold-dark); }
.petid-support-links {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.petid-support-links a {
  font-weight: 700;
  color: var(--pb-ink);
  border-bottom: 1px solid var(--pb-gold);
  padding-bottom: 0.1rem;
}
.petid-support-links a:hover { color: var(--pb-gold-dark); }
.petid-form-grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .petid-form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.petid-support-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 2.25rem;
}
.petid-support-cta .petid-text-link { margin-top: 0; }

.pb-faq { display: grid; gap: 0.65rem; }
.pb-faq-item {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 0;
  scroll-margin-top: 5rem;
}
.pb-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--pb-ink);
}
.pb-faq-item summary::-webkit-details-marker { display: none; }
.pb-faq-plus {
  color: var(--pb-gold-dark);
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform .2s;
  flex-shrink: 0;
}
.pb-faq-item[open] .pb-faq-plus { transform: rotate(45deg); }
.pb-faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--pb-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pb-help-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .pb-help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pb-help-grid { grid-template-columns: repeat(3, 1fr); }
}
.pb-help-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.35rem 1.25rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, transform .2s;
}
.pb-help-card:hover {
  border-color: rgba(201,162,39,.5);
  transform: translateY(-2px);
}
.pb-help-card h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0 0 0.55rem;
}
.pb-help-card p {
  margin: 0;
  color: var(--pb-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.pb-help-card span {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pb-gold-dark);
}

.pb-banner-ok {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--pb-gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.pb-blog-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .pb-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pb-blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.pb-blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pb-line);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.pb-blog-card:hover {
  border-color: rgba(201,162,39,.5);
  transform: translateY(-2px);
}
.pb-blog-card:hover .pb-blog-cover img {
  transform: scale(1.04);
}
.pb-blog-cover {
  aspect-ratio: 16 / 10;
  background: #e8e2d6;
  overflow: hidden;
}
.pb-blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.pb-blog-cover-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,162,39,.35), transparent 55%),
    linear-gradient(160deg, #1a2a40, #0a1628);
}
.pb-blog-body {
  padding: 1.25rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pb-blog-body h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0.35rem 0 0.55rem;
  line-height: 1.25;
}
.pb-blog-body p {
  margin: 0;
  color: var(--pb-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}
.pb-blog-date {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--pb-gold-dark);
  font-weight: 600;
}
.pb-article-cover {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  display: block;
  margin: 1rem 0 1.5rem;
}

.theme-app .petid-blog-body,
.theme-app .petid-blog-body p { color: var(--pb-muted); }
.theme-app .petid-blog-body h2,
.theme-app .petid-blog-body h3 {
  color: var(--pb-ink);
  font-family: "Syne", system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.75rem;
}
.theme-app .petid-blog-body h2 { font-size: 1.35rem; }
.theme-app .petid-blog-body h3 { font-size: 1.15rem; }
.theme-app .petid-blog-body ul,
.theme-app .petid-blog-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
  color: var(--pb-muted);
}
.theme-app .petid-blog-body li { margin: 0.4rem 0; line-height: 1.55; }
.theme-app .petid-blog-body a {
  color: var(--pb-gold-dark);
  font-weight: 600;
}

/* —— Journal / article —— */
.petid-hero--blog,
.petid-hero--article {
  min-height: min(42vh, 360px);
}
.petid-hero--blog .petid-hero-img { object-position: center 40%; }
.petid-hero--article .petid-hero-img { object-position: center 35%; }
.petid-hero-title--article {
  max-width: 22ch !important;
  font-size: clamp(1.45rem, 3.4vw, 2.35rem) !important;
}
.petid-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.petid-article-meta a {
  color: var(--pb-gold-soft);
  text-decoration: none;
}
.petid-article-meta a:hover { color: #fff; }
#posts {
  scroll-margin-top: 5rem;
}
.petid-article-wrap {
  max-width: 42rem;
}
.petid-article {
  padding: 0;
}
.petid-article-foot {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pb-line);
}
@media (max-width: 640px) {
  .petid-hero--blog,
  .petid-hero--article { min-height: min(40vh, 320px); }
}

/* —— Support / legal pages —— */
.petid-hero--support {
  min-height: min(42vh, 360px);
}
.petid-hero--support .petid-hero-img {
  object-position: center 38%;
}
.petid-hero--support .petid-hero-title {
  max-width: 18ch;
}
.petid-legal {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.75rem 1.35rem 2rem;
}
@media (min-width: 700px) {
  .petid-legal { padding: 2.25rem 2rem; }
}
#faq-list,
#help-topics,
#contact-form {
  scroll-margin-top: 5rem;
}
@media (max-width: 640px) {
  .petid-hero--support { min-height: min(40vh, 320px); }
}

.petid-public-footer-inner {
  gap: 3rem !important;
}
.petid-newsletter-row .petid-input {
  border-radius: 0;
  min-height: 2.6rem;
}

/* —— Care share (sitter / vet link) —— */
.pf-care .pf-sheet {
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
  .pf-care .pf-sheet {
    justify-content: flex-start;
    overflow-y: auto;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .pf-care .pf-actions {
    max-width: none;
  }
}
.pf-care-expiry {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
  color: #7a8798;
  letter-spacing: 0.01em;
}
.pf-care-food {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: #3d4a5c;
  line-height: 1.45;
}
.pf-care-alert {
  border-color: rgba(196, 92, 38, 0.28);
  background: linear-gradient(180deg, #fff8f4 0%, #fff 100%);
}
.pf-care-alert .pf-note-label {
  color: #c45c26;
}
.pf-care-block {
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(12, 26, 46, 0.08);
}
.pf-care-heading {
  margin: 0 0 0.85rem;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0c1a2e;
}
.pf-care-empty {
  margin: 0;
  font-size: 0.9rem;
  color: #7a8798;
}
.pf-care-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.pf-care-rows > li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(12, 26, 46, 0.07);
}
.pf-care-rows > li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.pf-care-row-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.pf-care-row-main strong {
  font-size: 0.95rem;
  color: #0c1a2e;
}
.pf-care-row-main span {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7c93;
  font-variant-numeric: tabular-nums;
}
.pf-care-row-sub {
  margin: 0.3rem 0 0;
  font-size: 0.88rem;
  color: #3d4a5c;
  line-height: 1.45;
}
.pf-care-row-note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: #7a8798;
  line-height: 1.4;
}
.pf-care-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.pf-care-contact-links a {
  color: #9a7b1a;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.pf-care-contact-links a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  .pf-stage-img { animation: none; }
}

/* Legacy care cards (unused on new layout) */
.pb-care-hero {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.5rem 1.35rem;
  margin-bottom: 1rem;
}
.pb-care-photo {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--pb-line);
}
.pb-care-photo--empty {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,162,39,.35), transparent 55%),
    linear-gradient(160deg, #1a2a40, #0a1628);
}
.pb-care-meta {
  margin: 0.35rem 0 0;
  color: var(--pb-muted);
  font-size: 0.92rem;
  text-transform: capitalize;
}
.pb-care-alert {
  margin: 0.65rem 0 0;
  color: var(--pb-gold-dark);
  font-size: 0.9rem;
  font-weight: 600;
}
.pb-care-panel {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.35rem 1.35rem 1.5rem;
  margin-bottom: 1rem;
}
.pb-care-panel h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0 0 0.85rem;
}
.pb-care-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.pb-care-list li {
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--pb-line);
  color: var(--pb-ink);
  font-size: 0.92rem;
  line-height: 1.5;
}
.pb-care-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pb-care-note {
  display: block;
  margin-top: 0.35rem;
  color: var(--pb-muted);
  font-size: 0.8rem;
}
.pb-care-empty {
  margin: 0;
  color: var(--pb-muted);
  font-size: 0.9rem;
}

/* Public light pages: leftover Tailwind white text on shells */
body.petid-public-body .petid-band .text-white,
body.petid-public-body .petid-form-panel .text-white,
body.petid-public-body .pb-prose-panel .text-white,
body.petid-public-body .petid-shell .text-white {
  color: var(--pb-ink) !important;
}
body.petid-public-body .petid-band .text-white\/85,
body.petid-public-body .petid-shell .text-white\/85 {
  color: rgba(12, 26, 46, 0.85) !important;
}

/* Tighter footer rhythm */
.petid-public-footer-inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .petid-public-footer-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem 4rem;
    align-items: start;
  }
}
.petid-public-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.5rem !important;
}
.petid-public-footer-bottom p {
  max-width: 72rem;
  margin: 0 auto;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* Auth brand panel: logo readable on photo */
.petid-auth-brand .petid-logo {
  color: #fff !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.petid-auth-panel .petid-logo {
  color: var(--pb-ink) !important;
  text-shadow: none;
}

.pb-care-wrap { max-width: 44rem; }
.pb-care-hero-copy { min-width: 0; flex: 1; }
.pb-care-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.pb-care-name {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--pb-ink);
}
.pb-care-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pb-gold-dark);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.pb-care-pill--lost {
  color: #7a2e1a;
  background: rgba(255, 107, 74, 0.12);
  border-color: rgba(255, 107, 74, 0.35);
}
.pb-care-photo {
  width: 7rem;
  height: 7rem;
}
.pb-care-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}
@media (min-width: 640px) {
  .pb-care-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.pb-care-fact {
  padding: 0.7rem 0.8rem;
  background: #f7f4ef;
  border: 1px solid rgba(12, 26, 46, 0.06);
}
.pb-care-fact dt {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7a8798;
}
.pb-care-fact dd {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pb-ink);
  word-break: break-word;
}
.pb-care-callout {
  margin-top: 0.9rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(201, 162, 39, 0.28);
  background: linear-gradient(180deg, #fffefb 0%, #fff 100%);
}
.pb-care-callout--soft {
  border-color: rgba(12, 26, 46, 0.08);
  background: #faf8f5;
}
.pb-care-callout-label {
  margin: 0 0 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pb-gold-dark);
}
.pb-care-callout--soft .pb-care-callout-label { color: #6b7c93; }
.pb-care-callout p:last-child {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--pb-ink);
}
.pb-care-list a {
  color: var(--pb-gold-dark);
  font-weight: 600;
  text-decoration: none;
}
.pb-care-list a:hover { text-decoration: underline; }

/* —— Request a tag —— */
.petid-hero--request {
  min-height: min(42vh, 360px);
}
.petid-hero--request .petid-hero-img {
  object-position: center 40%;
}
.petid-hero--request .petid-hero-title {
  max-width: 16ch;
}
.petid-request-points {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.petid-request-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pb-muted);
}
.petid-request-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--pb-gold);
}
.petid-request-form-head {
  margin-bottom: 0.35rem;
}
.petid-request-form-head h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0;
}
.petid-request-form-head p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--pb-muted);
  line-height: 1.5;
}
.petid-request-banner {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.petid-request-banner--err {
  background: rgba(180, 50, 40, 0.08);
  border: 1px solid rgba(180, 50, 40, 0.25);
  color: #8a2a22;
}
.petid-request-banner--ok {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--pb-ink);
}
.petid-request-banner--ok strong {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  margin-bottom: 0.15rem;
}
.petid-request-form .petid-btn-gold:disabled {
  opacity: 0.65;
  cursor: wait;
}
#request-form {
  scroll-margin-top: 5rem;
}
.petid-band--split-request .petid-band-visual img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}
@media (max-width: 640px) {
  .petid-hero--request { min-height: min(40vh, 320px); }
}

/* —— How it works —— */
.petid-hero--how {
  min-height: min(42vh, 360px);
}
.petid-hero--how .petid-hero-img {
  object-position: center 35%;
}
.petid-hero--how .petid-hero-title {
  max-width: 14ch;
}
#journey {
  scroll-margin-top: 5rem;
}
.petid-how-points {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.petid-how-points li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pb-muted);
}
.petid-how-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--pb-gold);
}
@media (max-width: 640px) {
  .petid-hero--how { min-height: min(40vh, 320px); }
}

/* —— About / Shops / Scan heroes —— */
.petid-hero--about,
.petid-hero--shops,
.petid-hero--scan {
  min-height: min(42vh, 360px);
}
.petid-hero--about .petid-hero-img { object-position: center 30%; }
.petid-hero--shops .petid-hero-img { object-position: center 42%; }
.petid-hero--scan .petid-hero-img { object-position: center 40%; }
.petid-hero--about .petid-hero-title,
.petid-hero--shops .petid-hero-title {
  max-width: 15ch;
}
.petid-hero--scan .petid-hero-title {
  max-width: 12ch;
}
#shop-list,
#scan-tool {
  scroll-margin-top: 5rem;
}
.petid-shops-filter {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.petid-shops-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}
@media (min-width: 900px) {
  .petid-shops-layout {
    grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
}
.petid-shops-sidebar {
  min-width: 0;
}
@media (min-width: 900px) {
  .petid-shops-sidebar {
    position: sticky;
    top: 5rem;
    align-self: start;
  }
}
.petid-shops-filter-panel {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.35rem 1.25rem 1.4rem;
}
.petid-shops-filter-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
  margin: 0 0 1.15rem;
}
.petid-shops-filter-fields {
  display: grid;
  gap: 1rem;
}
.petid-field--flush {
  margin: 0;
}
.petid-shops-filter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.15rem;
}
.petid-text-link--inline {
  margin-top: 0;
}
.petid-shop-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--pb-line);
}
.petid-shop-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--pb-line);
  background: #fafbfc;
  color: var(--pb-ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.petid-shop-chip:hover {
  border-color: var(--pb-gold);
  color: var(--pb-gold-dark);
}
.petid-shop-chip.is-active {
  background: var(--pb-ink);
  border-color: var(--pb-ink);
  color: #fff;
}
.petid-shops-results {
  min-width: 0;
}
.petid-shops-count {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--pb-muted, #6b7c93);
  font-weight: 600;
}
.petid-shop-grid--results {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .petid-shop-grid--results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.petid-empty-panel--shops {
  text-align: center;
}
.petid-display--compact {
  font-size: 1.75rem;
}
.petid-hero-actions--center {
  justify-content: center;
  margin-top: 1.5rem;
}
.petid-shop-contact {
  margin-top: 0.65rem !important;
  font-size: 0.82rem !important;
  color: var(--pb-muted, #6b7c93) !important;
}
.petid-scan-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .petid-scan-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.75rem;
  }
}
.petid-scan-panel {
  width: 100%;
}
.petid-scan-actions {
  margin-top: 1rem;
}
.petid-btn-ghost--ink {
  color: var(--pb-ink) !important;
  border-color: rgba(12, 26, 46, 0.25) !important;
}
.petid-btn-ghost--ink:hover {
  border-color: var(--pb-gold) !important;
  color: var(--pb-gold-dark) !important;
}
@media (max-width: 640px) {
  .petid-hero--about,
  .petid-hero--shops,
  .petid-hero--scan { min-height: min(40vh, 320px); }
}

/* —— Pricing / products —— */
.petid-pricing-grid,
.petid-product-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2rem;
}
@media (min-width: 720px) {
  .petid-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .petid-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .petid-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.petid-pricing-card,
.petid-product-card {
  background: #fff;
  border: 1px solid var(--pb-line);
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}
.petid-pricing-card--featured {
  border-color: var(--pb-gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
}
.petid-product-card:hover,
.petid-pricing-card:hover {
  border-color: var(--pb-gold);
}
.petid-pricing-badge {
  margin: 0 0 0.75rem;
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pb-gold-dark);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.28rem 0.55rem;
}
.petid-pricing-name {
  margin: 0;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--pb-ink);
}
.petid-pricing-price {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
}
.petid-pricing-amount {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--pb-gold-dark);
  line-height: 1;
}
.petid-pricing-period {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pb-muted, #6b7c93);
}
.petid-pricing-compare {
  font-size: 0.95rem;
  color: var(--pb-muted, #6b7c93);
  text-decoration: line-through;
}
.petid-pricing-features {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}
.petid-pricing-features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(12, 26, 46, 0.82);
}
.petid-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--pb-gold-dark);
  font-weight: 700;
}
.petid-pricing-actions {
  margin-top: 1.5rem;
}
.petid-pricing-actions .petid-btn-gold {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.petid-pricing-note {
  margin: 2rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--pb-muted, #6b7c93);
}
.petid-pricing-note a {
  color: var(--pb-ink);
  font-weight: 600;
  border-bottom: 1px solid var(--pb-gold);
}
.petid-enquiry-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.petid-enquiry-type-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--pb-line);
  background: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pb-ink);
  -webkit-tap-highlight-color: transparent;
}
.petid-enquiry-type-option:has(input:checked) {
  border-color: var(--pb-gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.06);
}
.petid-enquiry-type-option input {
  accent-color: var(--pb-gold-dark);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
[data-enquiry-panel][hidden] {
  display: none !important;
}
#enquiry-form,
#bulk-pricing {
  scroll-margin-top: 5rem;
}
@media (max-width: 420px) {
  .petid-enquiry-type {
    grid-template-columns: 1fr;
  }
  .petid-form-panel {
    padding: 1.35rem 1.1rem 1.65rem;
  }
  .petid-newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .petid-newsletter-row .petid-btn-gold {
    width: 100%;
    justify-content: center;
  }
}
body.petid-public-body {
  overflow-x: clip;
}
.petid-public-nav-inner,
.petid-band-inner,
.petid-hero-content,
.petid-cta-hero-inner,
.petid-public-footer-inner {
  max-width: 100%;
}
main .petid-btn-gold,
main .petid-btn-ghost,
.petid-form-panel .petid-btn-gold,
.petid-newsletter-row .petid-btn-gold {
  min-height: 2.75rem;
  touch-action: manipulation;
}
