/* ============================================
   PAWWIZ — MAIN STYLESHEET
   Mobile-first, single file, no frameworks
   ============================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --color-primary: #1B6CA8;
  --color-primary-dark: #154F7A;
  --color-accent: #FF6B6B;
  --color-accent-dark: #E55555;
  --color-bg: #FAFAF8;
  --color-bg-card: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --font-family: 'Inter', sans-serif;
  --transition: all 0.2s ease;
}

/* ── RESET + BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1080px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-icon {
  font-size: 22px;
  line-height: 1;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.main-nav {
  display: none;
}

.main-nav.open {
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 16px;
  z-index: 99;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--color-primary);
  background: rgba(27, 108, 168, 0.06);
  text-decoration: none;
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 48px 0 40px;
  text-align: center;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto;
}

/* ── TOOL SECTION ── */
.tool-section {
  background: var(--color-bg);
  padding: 32px 0 48px;
}

.pet-form {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px 20px;
  margin-top: -24px;
  position: relative;
}

/* ── FORM STEPS ── */
.form-step {
  margin-bottom: 24px;
}

.form-step:last-child {
  margin-bottom: 0;
}

.step-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ── TOGGLE BUTTON GROUPS ── */
.toggle-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.toggle-btn {
  flex: 1;
  min-width: 80px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.toggle-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(27, 108, 168, 0.05);
}

.toggle-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27, 108, 168, 0.30);
}

.toggle-btn.active:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

/* ── BREED SEARCH ── */
.breed-search-wrap {
  position: relative;
}

.breed-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg-card);
  transition: var(--transition);
  outline: none;
}

.breed-input::placeholder {
  color: var(--color-text-muted);
}

.breed-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.15);
}

.breed-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
  z-index: 50;
}

.dropdown-item {
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--color-primary);
  color: #fff;
  outline: none;
}

/* ── AGE SLIDER ── */
.age-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-border);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  margin: 12px 0 10px;
  accent-color: var(--color-primary);
}

.age-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(27, 108, 168, 0.35);
  transition: var(--transition);
}

.age-slider::-webkit-slider-thumb:hover {
  background: var(--color-primary-dark);
  transform: scale(1.1);
}

.age-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(27, 108, 168, 0.35);
}

/* Life stage badge */
.life-stage-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(27, 108, 168, 0.10);
  color: var(--color-primary);
}

.life-stage-badge[data-stage="Puppy"],
.life-stage-badge[data-stage="Kitten"] {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.life-stage-badge[data-stage="Young Adult"] {
  background: rgba(27, 108, 168, 0.10);
  color: var(--color-primary-dark);
}

.life-stage-badge[data-stage="Adult"] {
  background: rgba(27, 108, 168, 0.10);
  color: var(--color-primary);
}

.life-stage-badge[data-stage="Mature"] {
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
}

.life-stage-badge[data-stage="Senior"] {
  background: rgba(255, 107, 107, 0.12);
  color: #991b1b;
}

/* ── BODY CONDITION ── */
.body-condition-group {
  display: flex;
  gap: 8px;
}

.condition-btn {
  flex: 1;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  transition: var(--transition);
}

.condition-btn:hover {
  border-color: var(--color-primary);
  background: rgba(27, 108, 168, 0.04);
}

.condition-btn.active {
  border-color: var(--color-primary);
  background: rgba(27, 108, 168, 0.07);
  color: var(--color-primary);
}

.condition-icon {
  font-size: 22px;
  line-height: 1;
}

.condition-label {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

/* ── SYMPTOMS SECTION ── */
.symptoms-toggle {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg-card);
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-align: left;
}

.symptoms-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.toggle-arrow {
  font-size: 12px;
  color: var(--color-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.symptoms-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.symptoms-list {
  margin-top: 12px;
  padding: 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
}

.symptoms-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  border-bottom: 1px solid var(--color-border);
  min-height: 44px;
}

.checkbox-item:last-child {
  border-bottom: none;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--color-primary);
  cursor: pointer;
  border-radius: 4px;
}

/* ── SUBMIT BUTTON ── */
.form-submit-wrap {
  margin-top: 8px;
}

.submit-btn {
  width: 100%;
  min-height: 56px;
  background: var(--color-primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(27, 108, 168, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.submit-btn:hover:not(:disabled) {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(27, 108, 168, 0.45);
  transform: translateY(-1px);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-loading[hidden] {
  display: none;
}

.btn-loading::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.submit-note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 10px;
}

/* ── REPORT SECTION ── */
.report-section {
  background: #F3F4F6;
  padding: 40px 0;
}

.report-placeholder {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 24px;
  text-align: center;
}

.report-placeholder h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.report-placeholder p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.coming-soon {
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
  color: var(--color-primary);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 0 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-credit {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.footer-credit a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 8px;
}

/* ── RESPONSIVE: 768px+ ── */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* Header: show nav, hide hamburger */
  .site-header .container {
    max-width: 1080px;
  }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 4px;
  }

  .main-nav a {
    padding: 8px 12px;
  }

  .nav-toggle {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 80px 0 72px;
  }

  .hero h1 {
    font-size: 40px;
  }

  /* Form card */
  .pet-form {
    padding: 40px 40px;
    margin-top: -32px;
  }

  /* Body condition: 3 columns */
  .body-condition-group {
    gap: 12px;
  }

  .condition-btn {
    min-height: 80px;
  }

  /* Footer: horizontal layout */
  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ── FOCUS STYLES (Accessibility) ── */
*:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

input:focus-visible {
  outline: none;
}

/* ── REPORT: SUMMARY CARD ── */
.report-summary-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin-bottom: 24px;
}

.report-pet-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.pet-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.pet-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.pet-details {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}

.watch-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.watch-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

.watch-chip--watch_now {
  background: #FFF0F0;
  color: var(--color-accent-dark);
}

.watch-chip--coming_up {
  background: #FFFBEB;
  color: #92400E;
}

.watch-chip--monitor {
  background: #EFF6FF;
  color: var(--color-primary-dark);
}

.watch-chip--noted {
  background: #F0FDF4;
  color: #166534;
}

.report-intro-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.report-vet-badge {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}

/* ── REPORT: SECTION BLOCKS ── */
.report-section-block {
  margin-bottom: 40px;
}

.report-section-heading {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.section-intro {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.no-risks-text {
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  padding: 24px 0;
}

/* ── REPORT: FORECAST CARDS ── */
.forecast-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.forecast-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-left: 4px solid var(--color-border);
}

.forecast-card--watch_now  { border-left-color: var(--color-accent); }
.forecast-card--coming_up  { border-left-color: var(--color-warning); }
.forecast-card--monitor    { border-left-color: var(--color-primary); }
.forecast-card--noted      { border-left-color: var(--color-success); }

.forecast-card-top {
  padding: 20px 20px 0;
}

.forecast-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.forecast-condition {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.watch-badge {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.watch-level-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 8px;
  font-style: italic;
}

.symptom-match-note {
  background: #FFFBEB;
  border: 1px solid var(--color-warning);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 13px;
  color: #92400E;
  margin-bottom: 8px;
}

.forecast-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 16px;
}

.age-window-badge {
  font-size: 11px;
  background: var(--color-primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 20px;
}

.onset-range-text {
  font-size: 11px;
  color: var(--color-text-muted);
}

.forecast-card-body {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--color-border);
}

.condition-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.breed-risk-note {
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ── REPORT: PROBABILITY BAR ── */
.prevalence-row {
  margin-bottom: 12px;
}

.prevalence-label {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.prob-bar-wrap {
  height: 6px;
  background: var(--color-border);
  border-radius: 3px;
  overflow: hidden;
}

.prob-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

/* ── REPORT: AGE TIMELINE BAR ── */
.age-timeline-row {
  margin-top: 12px;
}

.timeline-label-text {
  display: block;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.timeline-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.timeline-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot--age {
  background: var(--color-text);
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--color-text);
  width: 10px;
  height: 10px;
}

.timeline-track {
  height: 8px;
  background: var(--color-border);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}

.timeline-age-marker {
  position: absolute;
  top: -3px;
  width: 3px;
  height: 14px;
  background: var(--color-text);
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-fill {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 4px;
  transition: all 0.8s ease;
}

.timeline-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--color-text-muted);
  margin-top: 3px;
}

/* ── REPORT: SOURCES ── */
.sources-section {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.sources-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent, #0066cc);
  cursor: pointer;
  margin-top: 12px;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sources-toggle:hover {
  color: var(--color-accent-dark, #004999);
}

.sources-toggle:focus-visible {
  outline: 2px solid var(--color-accent, #0066cc);
  outline-offset: 3px;
  border-radius: 2px;
}

.sources-arrow {
  font-size: 10px;
  transition: var(--transition);
}

.sources-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.sources-panel.is-open {
  max-height: 600px;
}

.sources-panel[hidden] {
  display: none;
}

.sources-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.source-link {
  font-size: 12px;
  color: var(--color-primary);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.source-link:hover {
  text-decoration: underline;
}

/* ── REPORT: SYMPTOM WATCH LIST ── */
.symptom-watch-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.symptom-watch-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 44px;
}

.symptom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.symptom-description {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 2px;
}

.symptom-condition-ref {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

/* ── REPORT: VET CHECKLIST ── */
.vet-checklist-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.vet-checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 44px;
}

.vet-item-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.vet-action-text {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 2px;
}

.vet-condition-ref {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.print-btn-wrap {
  text-align: center;
  margin-top: 16px;
}

.print-report-btn {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: var(--color-bg-card);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}

.print-report-btn:hover {
  background: var(--color-primary);
  color: #fff;
}


/* ── REPORT: UNDERWEIGHT NOTICE ── */
.underweight-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: #5d4037;
  line-height: 1.6;
}
.underweight-notice::before {
  content: "⚠️";
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── REPORT: BREED PROFILE ── */
.breed-profile-content {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.breed-loading-text {
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

.breed-profile-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.breed-photo {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.breed-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.breed-fact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.breed-fact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.breed-fact-value {
  font-size: 14px;
  color: var(--color-text);
}

/* ── REPORT: DISCLAIMER ── */
.report-disclaimer-block {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── PRINT STYLES ── */
@media print {
  .site-header,
  .hero,
  #tool,
  .print-report-btn,
  .print-btn-wrap,
  .site-footer { display: none !important; }

  #report { display: block !important; }
  body { background: #fff; }
  .forecast-card { break-inside: avoid; }
  .report-section-block { break-inside: avoid; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-loading::before {
    animation: none;
  }
}

/* ── REPORT: PHASE BADGES ── */
.phase-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.phase-developmental {
  background-color: var(--color-warning-light, #fff3cd);
  color: var(--color-warning-dark, #856404);
}

.phase-arthritic {
  background-color: var(--color-info-light, #d1ecf1);
  color: var(--color-info-dark, #0c5460);
}

/* ── REPORT: SOURCE ITEMS ── */
.source-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
}

.source-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.source-summary {
  font-size: 0.875rem;
  color: var(--color-text-primary, #333);
  margin: 0 0 4px 0;
}

.source-citation {
  font-size: 0.775rem;
  color: var(--color-text-secondary, #666);
  font-style: italic;
  margin: 0;
}

.source-citation a {
  color: var(--color-accent, #0066cc);
  text-decoration: none;
}

.source-citation a:hover {
  text-decoration: underline;
}

/* ── BREED PAGES: CONDITION CITATIONS ── */
.condition-citation {
  font-size: 0.8rem;
  color: var(--color-text-secondary, #666);
  font-style: italic;
  margin: 8px 0 24px 0;
  padding-left: 12px;
  border-left: 3px solid var(--color-accent, #0066cc);
}

.citation-label {
  font-weight: 600;
  font-style: normal;
}

/* ── BREED PAGES: RESEARCH SOURCES ── */
.research-sources {
  background: var(--color-surface-alt, #f8f9fa);
  padding: 24px;
  border-radius: 8px;
  margin: 32px 0;
}

.sources-list {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ── BREED PAGES: CTA BLOCK ── */
.breed-cta {
  background: var(--color-primary-light, #e8f4fd);
  border: 1px solid var(--color-primary, #0066cc);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin: 32px 0;
}

/* ── BREED PAGES: GENERAL LAYOUT ── */
.breed-article {
  padding: 32px 0 48px;
  max-width: 740px;
  margin: 0 auto;
}

.breed-intro {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--color-text);
}

.breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 4px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ── BREED PAGES: AGE TABLE ── */
.age-table-wrap {
  overflow-x: auto;
  margin: 16px 0 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.age-risk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  background: var(--color-bg-card);
}

.age-risk-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.age-risk-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.55;
}

.age-risk-table tr:last-child td {
  border-bottom: none;
}

.age-risk-table tr:nth-child(even) td {
  background: var(--color-bg);
}

/* ── BREED PAGES: SYMPTOM LIST ── */
.symptom-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
}

.symptom-list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  line-height: 1.65;
  position: relative;
}

.symptom-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.symptom-list li:last-child {
  border-bottom: none;
}

/* ── BREED PAGES: FAQ LIST ── */
.faq-list {
  margin: 16px 0 32px;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--color-text);
}

.faq-answer {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* ── BREED PAGES: RELATED BREEDS NAV ── */
.related-breeds {
  margin: 32px 0 24px;
  padding: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.related-breeds h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 14px;
}

.related-breeds ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-breeds li a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-primary);
}

.related-breeds li a:hover {
  text-decoration: underline;
}

/* ── BREED PAGES: AUTHOR BYLINE ── */
.author-byline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 24px 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.author-byline a {
  color: var(--color-primary);
  text-decoration: none;
  font-style: normal;
}

.author-byline a:hover {
  text-decoration: underline;
}

/* ── BREED PAGES: PRIMARY BUTTON ── */
.btn-primary {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  min-height: 44px;
  line-height: 1.25;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* ── ABOUT PAGE: CREDENTIALS CARD ── */
.credentials-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--color-surface-alt, #f8f9fa);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 12px;
  padding: 32px;
  margin: 24px 0 40px;
}

.credential-photo-placeholder {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  background: var(--color-primary-light, #e8f4fd);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-initials {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary, #0066cc);
  letter-spacing: 0.05em;
}

.credentials-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text-primary, #111);
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.credentials-list li {
  font-size: 0.9rem;
  color: var(--color-text-primary, #333);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.credential-label {
  font-weight: 600;
  color: var(--color-text-secondary, #666);
  min-width: 110px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.credential-verify-link {
  font-size: 0.8rem;
  color: var(--color-accent, #0066cc);
  margin-left: 8px;
  text-decoration: none;
}

.credential-verify-link:hover {
  text-decoration: underline;
}

.credential-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

/* ── ABOUT PAGE: REVIEWED CONTENT LIST ── */
.reviewed-content-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
  margin: 16px 0 32px;
}

.reviewed-content-list li a {
  display: block;
  padding: 10px 14px;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 6px;
  color: var(--color-accent, #0066cc);
  text-decoration: none;
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s;
}

.reviewed-content-list li a:hover {
  border-color: var(--color-primary, #0066cc);
  background: var(--color-primary-light, #e8f4fd);
}

/* Responsive: stack credentials card on mobile */
@media (max-width: 600px) {
  .credentials-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  .credentials-list li {
    flex-direction: column;
    gap: 2px;
  }
  .credential-label {
    min-width: unset;
  }
}

/* ── PRIVACY POLICY PAGE ── */
.policy-meta {
  background: var(--color-surface-alt, #f8f9fa);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.policy-meta p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-primary, #333);
}
.policy-content h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border, #e0e0e0);
  font-size: 1.15rem;
}
.policy-content h3 {
  font-size: 1rem;
  margin-top: 24px;
  color: var(--color-text-primary, #333);
}
.policy-content p {
  line-height: 1.75;
  color: var(--color-text-primary, #444);
}
.policy-content ul {
  line-height: 1.75;
  color: var(--color-text-primary, #444);
  padding-left: 24px;
}
.policy-content ul li {
  margin-bottom: 8px;
}
.policy-content a {
  color: var(--color-accent, #0066cc);
}
.policy-content a:hover {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .policy-meta {
    grid-template-columns: 1fr;
  }
}

/* ── BREED PROFILE CARD (report) ── */
.breed-profile-card {
  margin: 40px 0 24px;
  padding: 28px;
  background: var(--color-surface-alt, #f8f9fa);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 12px;
}
.breed-profile-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--color-text-primary, #111);
}
.breed-profile-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.breed-profile-photo-wrap {
  flex-shrink: 0;
}
.breed-profile-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}
.breed-profile-facts {
  flex: 1;
  min-width: 0;
}
.breed-facts-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 0 0 20px;
  padding: 0;
}
.breed-fact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.breed-facts-list dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary, #666);
}
.breed-facts-list dd {
  font-size: 0.9rem;
  color: var(--color-text-primary, #333);
  margin: 0;
}
.unit-secondary {
  font-size: 0.8rem;
  color: var(--color-text-secondary, #888);
}
.temperament-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary, #666);
  margin: 0 0 8px;
}
.temperament-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.temperament-tag {
  display: inline-block;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--color-primary-light, #e8f4fd);
  color: var(--color-primary, #0066cc);
  font-weight: 500;
}
@media (max-width: 600px) {
  .breed-profile-inner {
    flex-direction: column;
    align-items: center;
  }
  .breed-profile-photo {
    width: 160px;
    height: 160px;
  }
  .breed-facts-list {
    grid-template-columns: 1fr;
  }
}

/* ── BREED SELECT ── */
.breed-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text-primary, #333);
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 8px;
  cursor: pointer;
  appearance: auto;
  min-height: 44px;
}
.breed-select:focus {
  outline: 2px solid var(--color-accent, #0066cc);
  outline-offset: 2px;
  border-color: var(--color-accent, #0066cc);
}
.breed-select:hover {
  border-color: var(--color-accent, #0066cc);
}

/* ── CAT COMING SOON NOTICE ── */
.coming-soon-notice {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-surface-alt, #f8f9fa);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 10px;
  padding: 20px;
  margin: 16px 0;
}
.coming-soon-notice[hidden] {
  display: none;
}
.coming-soon-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.coming-soon-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-text-primary, #111);
}
.coming-soon-text p {
  font-size: 0.875rem;
  color: var(--color-text-secondary, #555);
  margin: 0;
  line-height: 1.6;
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 16px;
}
.lang-option {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary, #333);
  cursor: default;
  white-space: nowrap;
}
.lang-active {
  font-weight: 700;
  color: var(--color-accent, #0066cc);
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-active::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3CclipPath id='a'%3E%3Cpath d='M0 0v30h60V0z'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M0 0v30h60V0z' fill='%23012169'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30m0-30L0 30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  border-radius: 2px;
}
.lang-disabled {
  color: var(--color-text-secondary, #999);
  cursor: not-allowed;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-disabled::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'%3E%3Crect width='20' height='14' fill='%23009c3b'/%3E%3Cellipse cx='10' cy='7' rx='5.5' ry='4' fill='%23FEDD00'/%3E%3Cellipse cx='10' cy='7' rx='3.5' ry='2.5' fill='%23002776'/%3E%3C/svg%3E");
  background-size: cover;
  border-radius: 2px;
  opacity: 0.6;
}
.lang-divider {
  color: var(--color-border, #ccc);
  font-size: 0.75rem;
}

/* ── BREED DIRECTORY ── */
.breed-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0 32px;
}
.breed-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: var(--color-surface, #fff);
}
.breed-card:hover {
  border-color: var(--color-accent, #0066cc);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.breed-card:focus-visible {
  outline: 2px solid var(--color-accent, #0066cc);
  outline-offset: 2px;
}
.breed-card-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface-alt, #f8f9fa);
}
.breed-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.2s ease;
}
.breed-card:hover .breed-card-img-wrap img {
  transform: scale(1.04);
}
.breed-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.breed-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text-primary, #111);
}
.breed-card-meta {
  font-size: 0.78rem;
  color: var(--color-text-secondary, #666);
  margin: 0;
}
.breed-card-link {
  font-size: 0.82rem;
  color: var(--color-accent, #0066cc);
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
}
.breed-directory-note {
  font-size: 0.85rem;
  color: var(--color-text-secondary, #666);
  margin: 8px 0 32px;
}

@media (max-width: 480px) {
  .breed-directory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
