/* ═══════════════════════════════════════════════════════════════
   PETS MODULE — Editorial Pet Journal
   v44.4 — Hero cards, health rings, personality tags
   ═══════════════════════════════════════════════════════════════ */

/* Per-pet colors are set via inline style:
   --pet-color   (accent)
   --pet-color-light (tint) */

/* ─── Summary Strip ─── */
.pet-summary-strip {
    display: flex;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 0.5px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.pet-stat-cell {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-right: 0.5px solid rgba(0,0,0,0.04);
    position: relative;
}
.pet-stat-cell:last-child { border-right: none; }
.pet-stat-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.pet-stat-icon .material-symbols-outlined {
    font-size: 20px;
    color: rgba(0,0,0,0.55);
}
.pet-stat-info { display: flex; flex-direction: column; }
.pet-stat-value {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.pet-stat-label {
    font-size: 10px; font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 3px;
}
.pet-stat-alert {
    position: absolute; top: 10px; right: 10px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #FF3B30;
    box-shadow: 0 0 6px rgba(255,59,48,0.4);
    animation: hudPulse 2s ease-in-out infinite;
}

/* ─── 3-Column Card Layout ─── */
.pet-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin-bottom: 32px;
}

/* ─── Pet Card ─── */
.pet-card {
    background: var(--surface-1, #fff);
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    corner-shape: squircle;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.25s ease;
}
.pet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.08);
}

/* Hero area */
.pet-card-hero {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.pet-card-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.pet-card:hover .pet-card-hero img {
    transform: scale(1.04);
}
.pet-card-hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--pet-color), var(--pet-color-light));
    display: flex; align-items: center; justify-content: center;
}
.pet-card-hero-placeholder .material-symbols-outlined {
    font-size: 72px;
    color: rgba(255,255,255,0.6);
}
.pet-card-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
    pointer-events: none;
}
.pet-card-hero-content {
    position: absolute;
    bottom: 14px; left: 18px; right: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}
.pet-card-hero-name {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin: 0;
}

/* Status badge */
.pet-status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}
.pet-status-badge.ok { background: rgba(52,199,89,0.9); color: #fff; }
.pet-status-badge.attention { background: rgba(255,149,0,0.9); color: #fff; }
.pet-status-badge.overdue { background: rgba(255,59,48,0.9); color: #fff; }

/* Menu button on hero */
.pet-card-menu-btn {
    position: absolute;
    top: 12px; right: 12px;
    border: none;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    z-index: 2;
}
.pet-card-menu-btn:hover { background: rgba(255,255,255,0.5); }
.pet-card-menu-btn .material-symbols-outlined {
    font-size: 18px; color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Accent bar */
.pet-card-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--pet-color), var(--pet-color-light));
}

/* Card body */
.pet-card-body {
    padding: 18px 20px 16px;
}

/* Meta row */
.pet-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.pet-meta-breed {
    font-size: 13px; font-weight: 700;
    color: var(--text-secondary);
}
.pet-meta-dot {
    width: 3px; height: 3px;
    background: var(--text-quaternary);
    border-radius: 50%;
}
.pet-meta-age {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 600;
}
.pet-meta-weight {
    margin-left: auto;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(0,0,0,0.03);
    color: var(--text-secondary);
}

/* ─── Health Rings ─── */
.health-rings {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}
.ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.ring-wrap {
    position: relative;
    width: 44px; height: 44px;
}
.ring-wrap svg {
    display: block;
}
.ring-bg {
    fill: none;
    stroke: #F3F4F6;
    stroke-width: 4;
}
.ring-fill {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4,0,0.2,1);
}
.ring-icon {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.ring-icon .material-symbols-outlined {
    font-size: 16px;
    color: var(--pet-color);
}
.ring-label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-quaternary);
}
.ring-separator { flex: 1; }
.ring-overall { text-align: right; }
.ring-overall-val {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    color: var(--pet-color);
}
.ring-overall-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ─── Next Care Items ─── */
.next-care {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.care-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(0,0,0,0.02);
}
.care-row-icon {
    width: 20px;
    display: flex; align-items: center; justify-content: center;
}
.care-row-icon .material-symbols-outlined {
    font-size: 15px;
    color: var(--pet-color);
    flex-shrink: 0;
}
.care-row-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
}
.care-row-when {
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}
.care-row.overdue .care-row-when { color: #FF3B30; }
.care-row.soon .care-row-when { color: #FF9500; }
.care-row.ok .care-row-when { color: #34C759; }

/* ─── Photo Strip ─── */
.pet-photo-strip {
    display: flex;
    gap: 6px;
    padding: 12px 20px 14px;
    overflow-x: auto;
    scrollbar-width: none;
    border-top: 0.5px solid rgba(0,0,0,0.04);
}
.pet-photo-strip::-webkit-scrollbar { display: none; }
.pet-photo-thumb {
    width: 52px; height: 52px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid transparent;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
}
.pet-photo-thumb:hover {
    transform: scale(1.06);
    border-color: var(--pet-color);
}
.pet-photo-add-thumb {
    width: 52px; height: 52px;
    border-radius: 12px;
    border: 2px dashed rgba(0,0,0,0.1);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--text-quaternary);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: none;
    font-family: inherit;
}
.pet-photo-add-thumb:hover {
    border-color: var(--pet-color);
    background: rgba(0,0,0,0.02);
    color: var(--text-tertiary);
}

/* ─── Personality Tags ─── */
.pet-mood-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 20px 16px;
}
.ptag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    border: 1.5px solid var(--pet-color);
    color: var(--pet-color);
    background: var(--pet-color-light);
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    font-family: var(--font-system, -apple-system, BlinkMacSystemFont, sans-serif);
}
.ptag:hover { opacity: 0.7; }
.ptag:active { transform: scale(0.95); }
.ptag-add {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    border: 1.5px dashed rgba(0,0,0,0.1);
    color: var(--text-quaternary);
    background: none;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
    font-family: var(--font-system, -apple-system, BlinkMacSystemFont, sans-serif);
}
.ptag-add:hover {
    border-color: var(--pet-color);
    color: var(--pet-color);
}

/* ─── Lower Grid (Food + Reminders) ─── */
.pet-lower-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 20px;
    align-items: start;
}

/* ─── Food & Supplies Card ─── */
.food-card {
    background: var(--surface-1, #fff);
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    corner-shape: squircle;
    padding: 24px 28px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
}
.food-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}
.food-card-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
.food-icon {
    width: 38px; height: 38px;
    background: #FEF3C7;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.food-icon .material-symbols-outlined {
    font-size: 20px;
    color: rgba(0,0,0,0.55);
}
.food-amount { text-align: right; }
.food-amount-val {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}
.food-amount-per {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-top: 3px;
}

.food-section {
    margin-bottom: 20px;
}
.food-section:last-child { margin-bottom: 0; }
.food-section-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-quaternary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.food-section-count {
    font-size: 10px; font-weight: 700;
    background: rgba(0,0,0,0.04);
    color: var(--text-tertiary);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 8px;
}
.food-add-btn {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: var(--text-tertiary);
    transition: background 0.15s;
    margin-left: auto;
    font-family: inherit;
}
.food-add-btn:hover { background: rgba(0,0,0,0.06); }

.food-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 6px;
}
.food-item:last-child { border-bottom: none; }
.food-item:hover { background: rgba(0,0,0,0.01); }
.food-item-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.food-item-info { flex: 1; min-width: 0; }
.food-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}
.food-item-meta {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-top: 1px;
}
.food-item-price {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    flex-shrink: 0;
}
.food-item-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.food-item-qty {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 700;
}
.food-status-chip {
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.food-status-chip.ok { background: rgba(52,199,89,0.12); color: #059669; }
.food-status-chip.low { background: rgba(255,149,0,0.12); color: #92400E; }
.food-empty {
    text-align: center;
    padding: 20px 12px;
    font-size: 12px;
    color: var(--text-quaternary);
    line-height: 1.5;
}
.food-inline-link {
    display: inline;
    border: none; background: none;
    color: var(--system-blue);
    font-size: 12px; font-weight: 600;
    cursor: pointer; padding: 0;
    text-decoration: underline;
    font-family: inherit;
}
.food-inline-link:hover { text-decoration: none; }

/* ─── Reminders Card ─── */
.reminders-card {
    background: var(--surface-1, #fff);
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    corner-shape: squircle;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.02);
}
.reminders-card-title {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bell-icon {
    width: 34px; height: 34px;
    background: #EDE9FE;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bell-icon .material-symbols-outlined {
    font-size: 18px;
    color: rgba(0,0,0,0.55);
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.04);
    transition: opacity 0.3s, transform 0.3s;
}
.reminder-item:last-of-type { border-bottom: none; }
.reminder-item.overdue { }

.reminder-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.1s;
    display: flex; align-items: center; justify-content: center;
    background: none;
    padding: 0;
    font-family: inherit;
}
.reminder-check:hover { border-color: #34C759; }
.reminder-check:active { transform: scale(0.9); }
.reminder-item.overdue .reminder-check { border-color: rgba(255,59,48,0.3); }
.reminder-item.overdue .reminder-check:hover { border-color: #FF3B30; }

.reminder-type-icon {
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.reminder-type-icon .material-symbols-outlined {
    font-size: 16px;
    color: rgba(0,0,0,0.55);
}

.reminder-info { flex: 1; min-width: 0; }
.reminder-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}
.reminder-pet {
    font-size: 12px;
    font-weight: 600;
    margin-top: 1px;
    color: var(--pet-color, var(--text-tertiary));
}
.reminder-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-quaternary);
    flex-shrink: 0;
}
.reminder-item.overdue .reminder-date { color: #FF3B30; }
.reminder-item.overdue .reminder-name { color: var(--text-primary); }

.reminder-action-btn {
    border: none; background: none;
    padding: 0; cursor: pointer;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 7px;
    opacity: 0;
    transition: opacity 0.15s, background 0.15s;
    flex-shrink: 0;
}
.reminder-item:hover .reminder-action-btn { opacity: 1; }
.reminder-action-btn:hover { background: rgba(0,0,0,0.05); }
.reminder-action-btn .material-symbols-outlined {
    font-size: 16px; color: var(--text-tertiary);
}

.reminders-add {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 0.5px solid rgba(0,0,0,0.04);
    text-align: center;
}
.reminders-add-btn {
    font-family: var(--font-system, -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 13px;
    font-weight: 800;
    color: var(--system-purple, #7C3AED);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.15s;
}
.reminders-add-btn:hover { background: rgba(124,58,237,0.06); }

.reminders-empty {
    text-align: center;
    padding: 28px 12px;
    font-size: 13px;
    color: var(--text-quaternary);
    line-height: 1.5;
}
.reminders-empty .material-symbols-outlined {
    display: block;
    margin: 0 auto 8px;
    font-size: 28px;
    opacity: 0.25;
}

/* ─── Add Pet Footer ─── */
.pet-add-footer {
    text-align: center;
    padding: 12px 0 24px;
}
.pet-add-link {
    display: inline-flex; align-items: center; gap: 5px;
    border: none; background: none;
    color: var(--text-quaternary);
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 10px;
    font-family: var(--font-system, -apple-system, BlinkMacSystemFont, sans-serif);
    transition: color 0.15s, background 0.15s;
}
.pet-add-link:hover { color: var(--system-blue); background: rgba(0,122,255,0.05); }
.pet-add-link .material-symbols-outlined { font-size: 16px; }

/* ─── Pet Editor Overlay ─── */
.pet-editor-overlay {
    position: fixed; inset: 0; z-index: 6000;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
    padding: 24px;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
}
.pet-editor-overlay.showing {
    display: flex;
}
.pet-editor-overlay.visible {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.pet-editor-panel {
    width: 420px; max-width: calc(100vw - 48px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #F5F5F7;
    border: 0.5px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    corner-shape: squircle;
    box-shadow: 0 24px 80px rgba(0,0,0,0.16), 0 0 0 0.5px rgba(0,0,0,0.04);
    display: flex; flex-direction: column;
    transform: scale(0.94) translateY(8px);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1),
                opacity 0.18s ease-out;
}
.pet-editor-overlay.visible .pet-editor-panel {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.pet-editor-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.pet-editor-header h2 { font-size: 17px; font-weight: 700; margin: 0; }
.pet-editor-close {
    border: none; background: rgba(0,0,0,0.04);
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.15s;
}
.pet-editor-close:hover { background: rgba(0,0,0,0.08); }
.pet-editor-close .material-symbols-outlined { font-size: 16px; }
.pet-editor-body {
    flex: 1; padding: 18px 22px;
    display: flex; flex-direction: column; gap: 12px;
    overflow-y: auto;
}
.pet-editor-photo {
    width: 72px; height: 72px; border-radius: 50%;
    overflow: hidden; margin: 0 auto 6px;
    border: 3px solid rgba(0,0,0,0.06);
    background: #f0f0f0;
    display: flex; align-items: center; justify-content: center;
}
.pet-editor-photo img { width: 100%; height: 100%; object-fit: cover; }
.pet-editor-photo .material-symbols-outlined { font-size: 28px; color: var(--text-quaternary); }
.pet-editor-footer {
    display: flex; justify-content: flex-end; gap: 10px;
    padding: 14px 22px;
    border-top: 0.5px solid rgba(0,0,0,0.06);
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pet-animate .pet-card { animation: fadeUp 0.5s ease both; }
.pet-animate .pet-card:nth-child(1) { animation-delay: 0.05s; }
.pet-animate .pet-card:nth-child(2) { animation-delay: 0.12s; }
.pet-animate .pet-card:nth-child(3) { animation-delay: 0.19s; }
.pet-animate .food-card { animation: fadeUp 0.5s ease 0.28s both; }
.pet-animate .reminders-card { animation: fadeUp 0.5s ease 0.35s both; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
    .pet-cards-row { grid-template-columns: repeat(2, 1fr); }
    .pet-lower-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .pet-cards-row { grid-template-columns: 1fr; }
    .pet-lower-grid { grid-template-columns: 1fr; }
    .pet-summary-strip {
        flex-direction: column;
        border-radius: 14px;
    }
    .pet-stat-cell {
        border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,0.04);
        padding: 12px 16px;
    }
    .pet-stat-cell:last-child { border-bottom: none; }
    .pet-card-hero { height: 180px; }
    .pet-card-hero-name { font-size: 24px; }
    .health-rings { gap: 8px; }
    .ring-overall-val { font-size: 22px; }
    .food-card { padding: 18px 20px; }
    .reminders-card { padding: 18px 20px; }
    .reminder-action-btn { opacity: 0.6; }
    .pet-editor-overlay {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }
    .pet-editor-panel {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
    }
}
