/* Theme: Playful Pup — warm copper, centered, animated paw */
body.theme-pet-playful main.body { text-align: center; }

body.theme-pet-playful .card {
  box-shadow: 0 1px 2px rgba(182, 108, 69, 0.06), 0 8px 40px rgba(182, 108, 69, 0.14);
}

body.theme-pet-playful .block-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
body.theme-pet-playful .block-heading::before {
  content: '🐾 ';
  font-size: 0.85em;
  margin-right: 0.2rem;
  display: inline-block;
  animation: paw-bounce 1.4s ease-in-out infinite;
}
@keyframes paw-bounce {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%       { transform: translateY(-3px) rotate(8deg); }
}

body.theme-pet-playful .block-facts dt { color: var(--copper); }
body.theme-pet-playful .block-contact a,
body.theme-pet-playful .block-link a,
body.theme-pet-playful .block-location a {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

@media (prefers-reduced-motion: reduce) {
  body.theme-pet-playful .block-heading::before { animation: none; }
}
