/* ============================================================
   Demo Pets — Pet chips, form, profile, list, breed autocomplete
   ============================================================ */

/* ============================================================
   PET CHIPS — Selection dans l'input
   ============================================================ */

.pet-chips-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.3rem;
    width: 100%;
    padding: 0.15rem 0.25rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pet-chips-row::-webkit-scrollbar {
    display: none;
}

.pet-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.18rem 0.55rem;
    border-radius: var(--r-full);
    border: 1px solid var(--c-border);
    background: var(--c-bg-card);
    color: var(--c-text-secondary);
    font-size: 0.78rem;
    font-family: var(--f-body);
    cursor: pointer;
    transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
    white-space: nowrap;
    line-height: 1.4;
    flex-shrink: 0;
}

.pet-chip:hover {
    border-color: var(--c-primary);
    color: var(--c-text);
}

.pet-chip-selected {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: #fff;
}

.pet-chip-selected:hover {
    background: var(--c-primary-hover);
    border-color: var(--c-primary-hover);
    color: #fff;
}

.pet-chip-icon {
    font-size: 0.82rem;
    line-height: 1;
}

.pet-chip-check {
    font-size: 0.65rem;
    margin-left: 0.05rem;
}

.pet-chip-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pet-chip-add {
    border-style: dashed;
    background: transparent;
    color: var(--c-text-muted);
    padding: 0.18rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.pet-chip-add:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background: var(--c-bg-warm);
}

/* Puce d'amorce du 1er ajout (connecté sans animaux) — solide et lisible
   (pas dashed/muted), pleine étiquette visible. Défini APRÈS .pet-chip-add
   pour le surcharger (même spécificité). */
.pet-chip-add--primer {
    border-style: solid;
    border-color: var(--c-primary-soft);
    background: var(--c-primary-light);
    color: var(--c-primary);
    font-weight: 600;
}

.pet-chip-add--primer:hover {
    border-color: var(--c-primary);
    background: var(--c-primary-soft);
    color: #fff;
}

.pet-chip-add--primer .pet-chip-name { max-width: none; }

@media (max-width: 767px) {
    .pet-chip {
        font-size: 0.72rem;
    }
}

/* ---- Pet form (light theme) ---- */

.pet-form {
    padding: 0;
}

.pet-form .auth-form-group {
    margin-bottom: 14px;
}

.pet-form .auth-form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.pet-form-required {
    color: var(--c-accent-hover);
    font-weight: 700;
}

.pet-form .auth-error {
    color: var(--c-danger);
}

.pet-notes-input {
    resize: vertical;
    min-height: 50px;
}

.pet-form-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--c-border-light);
}

.pet-form-actions .auth-cancel-btn { flex: 1; }
.pet-form-actions .auth-submit-btn { flex: 1; }

.pet-form-row {
    display: flex;
    gap: 12px;
}

.pet-form-row > .auth-form-group {
    flex: 1;
    min-width: 0;
}

/* Weight input + unit selector (g / kg) */
.pet-weight-field {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.pet-weight-field input.auth-input {
    flex: 1 1 auto;
    min-width: 0;
}

.pet-weight-field .pet-weight-unit {
    flex: 0 0 70px;
    width: 70px;
    padding-left: 10px;
    padding-right: 6px;
}

/* Section dividers in pet form */
.pet-form-section-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 22px 0 10px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border-light);
}

/* Enriched by AI badge */
.pet-enriched-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--c-primary);
    background: var(--c-primary-light);
    padding: 1px 7px;
    border-radius: 9999px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
}

/* Tags for conditions/allergies/medications (read-only) */
.pet-enriched-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 4px;
}

.pet-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--c-text-secondary);
    background: var(--c-bg-warm);
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1px solid var(--c-border-light);
}

.pet-tag-allergy {
    color: #c0392b;
    background: #fdf0ed;
    border-color: #f5c6cb;
}

.pet-tag-med {
    color: #2980b9;
    background: #eaf3fb;
    border-color: #b8daff;
}

/* Bouton « × » de suppression d'un tag santé (allergie/condition/médicament).
   Classe partagée avec les tags du carnet (.health-known-tag, demo-health).
   Toujours visible — règle tactile : pas de révélation au hover uniquement. */
.pet-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: rgba(19, 21, 22, 0.08);
    color: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
    flex-shrink: 0;
}

.pet-tag-remove:hover {
    background: var(--c-danger);
    color: var(--c-text-inverse);
}

/* Breed autocomplete */
.breed-autocomplete-wrap {
    position: relative;
}

.breed-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    max-height: 200px;
    overflow-y: auto;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-primary);
    border-top: none;
    border-radius: 0 0 var(--r-md) var(--r-md);
    box-shadow: var(--shadow-md);
    display: none;
}

.breed-autocomplete-dropdown.open {
    display: block;
}

.breed-autocomplete-item {
    padding: 8px 14px;
    font-size: 0.88rem;
    color: var(--c-text);
    cursor: pointer;
    transition: background var(--dur-fast);
}

.breed-autocomplete-item:hover,
.breed-autocomplete-item.active {
    background: var(--c-bg-warm);
    color: var(--c-primary);
}

.breed-autocomplete-item.active {
    font-weight: 600;
}

.breed-autocomplete-empty {
    padding: 12px 14px;
    font-size: 0.85rem;
    color: var(--c-text-muted);
    text-align: center;
    font-style: italic;
}

.breed-autocomplete-more {
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--c-text-muted);
    text-align: center;
    border-top: 1px solid var(--c-border-light);
}

/* ============================================================
   VIEW CONTAINERS (pet-form)
   ============================================================ */

.view-pet-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--c-bg-chat);
    animation: viewFadeIn 200ms var(--ease-out);
}

.view-pet-form-scroll {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

@keyframes viewFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .view-pet-form { animation: none; }
}

/* ---- Pet form card (in main area) ---- */

.pet-form-card {
    background: var(--c-bg-elevated);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-light);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.pet-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--c-border-light);
}

.pet-form-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pet-form-header-info {
    flex: 1;
    min-width: 0;
}

.pet-form-title {
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--c-text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.pet-form-subtitle {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-top: 3px;
}

.pet-form-cancel-btn {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid var(--c-border);
    border-radius: var(--r-sm);
    font-size: 0.88rem;
    color: var(--c-text-secondary);
    cursor: pointer;
    transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}

.pet-form-cancel-btn:hover {
    background: var(--c-bg-warm);
    border-color: var(--c-text-secondary);
    color: var(--c-text);
}

.pet-form-save-btn {
    flex: 1;
    padding: 11px;
    background: var(--c-text);
    color: var(--c-bg-card);
    border: none;
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast);
}

.pet-form-save-btn:hover {
    background: var(--c-primary);
}

/* ---- Pet profile (read-only detail view) ---- */

.pet-profile-card {
    background: var(--c-bg-elevated);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.pet-profile-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.pet-profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    font-weight: 700;
}

.pet-profile-hero-info {
    flex: 1;
    min-width: 0;
}

.pet-profile-name {
    font-family: var(--f-display);
    font-size: 1.55rem;
    font-weight: 500;
    font-style: italic;
    color: var(--c-text);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
}

.pet-profile-subtitle {
    font-size: 0.84rem;
    color: var(--c-text-secondary);
    margin-top: 4px;
}

.pet-profile-action-bar {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--c-border-light);
}

.pet-profile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border: none;
    background: transparent;
    color: var(--c-text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--dur-fast);
    white-space: nowrap;
    border-right: 1px solid var(--c-border-light);
    min-height: 44px;
}

.pet-profile-action-btn:last-child {
    border-right: none;
}

.pet-profile-action-btn:hover {
    color: var(--c-primary);
    background: var(--c-bg-warm);
}

.pet-profile-delete-btn:hover {
    color: var(--c-danger);
    background: rgba(220, 38, 38, 0.06);
}

.pet-profile-body {
    padding: 20px 24px;
}

.pet-profile-section {
    margin-bottom: 20px;
}

.pet-profile-section:last-child {
    margin-bottom: 0;
}

.pet-profile-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border-light);
}

.pet-profile-section-title svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.pet-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
}

.pet-profile-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pet-profile-field-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pet-profile-field-value {
    font-size: 0.88rem;
    color: var(--c-text);
    font-weight: 500;
}

.pet-profile-tags-group {
    margin-bottom: 12px;
}

.pet-profile-tags-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.pet-profile-notes {
    font-size: 0.85rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
    white-space: pre-wrap;
    background: var(--c-bg);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-border-light);
}

/* ---- Pet list (cards grid view) ---- */

.pet-list-view {
    /* wrapper */
}

.pet-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pet-list-title {
    font-family: var(--f-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--c-text);
    letter-spacing: -0.01em;
    margin: 0;
}
/* Sous v2-skin (mobile/app), le grand titre iOS #petViewLargeTitle [V2.6] affiche déjà
   « Mes animaux » au-dessus du scroll → le titre interne ferait doublon. On le masque et on
   pousse le bouton « Ajouter » à droite. Desktop (pas de grand titre) garde le h2. */
body.v2-skin .pet-list-title { display: none; }
body.v2-skin .pet-list-header { justify-content: flex-end; }

.pet-list-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    border: 1px solid var(--c-text);
    background: var(--c-text);
    color: var(--c-bg-card);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast), border-color var(--dur-fast);
}

.pet-list-add-btn:hover {
    background: var(--c-primary);
    border-color: var(--c-primary);
    color: var(--c-bg-card);
}

.pet-list-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pet-list-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--c-bg-elevated);
    border: 1px solid var(--c-border-light);
    border-radius: var(--r-md);
    cursor: pointer;
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.pet-list-card:hover {
    border-color: var(--c-primary);
    box-shadow: var(--shadow-sm);
}

/* [V2-SKIN] Cartes liste « Atelier-iOS » : hairline + élévation douce (l'arrondi vient déjà
   du token --r-md surchargé sous v2-skin). Restyle CSS pur, aucun changement DOM/JS. Le
   regroupement en sections inset (en-têtes Chiens/Chats + rows fusionnées comme la maquette)
   nécessite du JS → différé, proposé à la revue V2→V3. [V2.7 partiel] */
body.v2-skin .pet-list-card {
    border: var(--v2-hairline);
    box-shadow: var(--v2-shadow-card);
}

/* [V2.7] Sections par espèce — en-têtes masqués par défaut (desktop = liste plate, visuel
   inchangé), révélés + listes inset (cartes fusionnées + hairlines internes) sous v2-skin. */
.pet-list-section-label { display: none; }
.pet-list-group { display: flex; flex-direction: column; gap: 8px; }

body.v2-skin .pet-list-grid { gap: 18px; }
body.v2-skin .pet-list-section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    padding: 0 4px 6px;
}
body.v2-skin .pet-list-group {
    gap: 0;
    background: var(--c-bg-card);
    border: var(--v2-hairline);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--v2-shadow-card);
}
body.v2-skin .pet-list-group .pet-list-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: var(--v2-hairline);
}
body.v2-skin .pet-list-group .pet-list-card:last-child { border-bottom: none; }

.pet-list-card-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.pet-list-card-info {
    flex: 1;
    min-width: 0;
}

.pet-list-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
}

.pet-list-card-details {
    font-size: 0.78rem;
    color: var(--c-text-muted);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pet-list-card-chevron {
    color: var(--c-text-muted);
    flex-shrink: 0;
    transition: transform var(--dur-fast);
}

.pet-list-card:hover .pet-list-card-chevron {
    color: var(--c-primary);
    transform: translateX(2px);
}

.pet-list-empty {
    text-align: center;
    padding: 48px 20px;
}

.pet-list-empty-icon {
    color: var(--c-text-muted);
    margin-bottom: 12px;
    opacity: 0.3;
}

.pet-list-empty-text {
    font-family: var(--f-display);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--c-text);
    letter-spacing: -0.005em;
    margin-bottom: 6px;
}

.pet-list-empty-sub {
    font-size: 0.82rem;
    color: var(--c-text-muted);
}

/* ============================================================
   RESPONSIVE — Pets
   ============================================================ */

/* Mobile (< 768px) */
@media (max-width: 767px) {
    /* Pet form: stack rows on mobile */
    .pet-form-row { flex-direction: column; gap: 0; }

    /* Views: reduce padding on mobile */
    .view-pet-form-scroll { padding: 16px 14px 32px; }
    .pet-form-card { padding: 16px; }
    .pet-form-header { gap: 10px; margin-bottom: 16px; padding-bottom: 12px; }
    .pet-profile-hero { padding: 16px; gap: 12px; }
    .pet-profile-avatar { width: 48px; height: 48px; font-size: 1.3rem; }
    .pet-profile-name { font-size: 1.1rem; }
    .pet-profile-body { padding: 16px; }
    .pet-profile-grid { grid-template-columns: 1fr; }
    .pet-profile-action-btn span { display: none; }
    .pet-profile-action-btn { gap: 0; }
}

/* ============================================================
   Refonte profil animal (2026, raffinée) — pile transparente, surfaces
   BLANCHES, teal en signal (zéro dégradé lourd), icônes SVG, ombres douces.
   ============================================================ */
.pet-profile-card {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hero — carte blanche épurée (l'avatar coloré = la seule touche de couleur) */
.pet-profile-hero {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-light);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(19, 21, 22, 0.04);
}
.pet-profile-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.85rem;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.pet-profile-name { color: var(--c-text); }
.pet-profile-subtitle { color: var(--c-text-muted); }
.pet-vital-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.pet-vital-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 8px;
    border-radius: 9px;
    background: var(--c-primary-light);
    color: var(--c-primary-hover);
    font-size: 0.76rem;
    font-weight: 600;
}
.pet-vital-ico { display: inline-flex; }
.pet-vital-ico svg { width: 14px; height: 14px; }

/* CTA « Carnet de Vie » — UNE seule surface teal pleine (plat, sans dégradé) = point focal */
.pet-carnet-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    background: var(--c-primary);
    box-shadow: 0 6px 18px rgba(27, 85, 92, 0.18);
    transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
    -webkit-tap-highlight-color: transparent;
}
.pet-carnet-cta:hover { background: var(--c-primary-hover); box-shadow: 0 8px 22px rgba(27, 85, 92, 0.24); }
.pet-carnet-cta:active { transform: scale(0.992); }
.pet-carnet-cta-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
}
.pet-carnet-cta-ico svg { width: 22px; height: 22px; }
.pet-carnet-cta-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pet-carnet-cta-eyebrow {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.15;
}
.pet-carnet-cta-sub { font-size: 0.78rem; color: rgba(255, 255, 255, 0.75); }
.pet-carnet-cta-sub.has-reminder { color: #fff; font-weight: 600; }
.pet-carnet-cta-chevron { flex-shrink: 0; opacity: 0.7; }

/* Actions rapides — cartes blanches, icône teal (danger = rouge) */
.pet-quick-actions { display: flex; gap: 8px; }
.pet-quick-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 13px 6px;
    border: 1px solid var(--c-border-light);
    border-radius: 14px;
    background: var(--c-bg-card);
    color: var(--c-text-secondary);
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
    -webkit-tap-highlight-color: transparent;
}
.pet-quick-action:hover { background: var(--c-bg-warm); border-color: var(--c-border); color: var(--c-primary); }
.pet-quick-ico { display: flex; align-items: center; color: var(--c-primary); }
.pet-quick-ico svg { width: 19px; height: 19px; }
.pet-quick-action.pet-quick-danger { color: var(--c-text-secondary); }
.pet-quick-action.pet-quick-danger .pet-quick-ico { color: var(--c-danger); }
.pet-quick-action.pet-quick-danger:hover { border-color: var(--c-danger); color: var(--c-danger); background: #fef2f2; }

/* Corps infos + santé — carte blanche douce */
.pet-profile-body {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border-light);
    border-radius: 18px;
    box-shadow: 0 1px 2px rgba(19, 21, 22, 0.04);
}

/* Chips de la carte liste */
.pet-list-card-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 7px; }
.pet-list-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px 2px 6px;
    border-radius: 8px;
    background: var(--c-bg-warm);
    color: var(--c-primary-hover);
    font-size: 0.7rem;
    font-weight: 600;
}
.pet-list-chip-ico { display: inline-flex; }
.pet-list-chip-ico svg { width: 12px; height: 12px; }
