/* ═══════════════════════════════════════════════════════════════
   Household profile lens — strip + conflict badges + nudge band.
   Shared by the two area catalogs (children-recipes.html /
   dog-recipes.html). Accent comes from the per-area sheet's
   --area-rgb token (kids 139,191,90 · paws 212,121,26); the
   warn-amber on flags/toggle is deliberately the same in both.
   ═══════════════════════════════════════════════════════════════ */
.profile-strip {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 10px; margin: 0 auto 20px; max-width: 900px; padding: 0 1.5rem;
}
.profile-strip[hidden] { display: none !important; }
.profile-strip__label {
    font-family: 'JetBrains Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.profile-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px 6px 6px; border-radius: 100px; cursor: pointer;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.72); font-family: 'Syne', sans-serif;
    font-size: 0.8rem; font-weight: 500;
    transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s;
}
.profile-chip:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.28); }
.profile-chip[aria-pressed="true"] {
    background: rgba(var(--area-rgb), 0.12); border-color: rgba(var(--area-rgb), 0.6); color: #fff;
}
.profile-chip--add { padding: 6px 14px; color: rgba(255,255,255,0.45); text-decoration: none; }
.profile-toggle {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 13px; border-radius: 100px; cursor: pointer;
    background: transparent; border: 1px solid rgba(232,165,90,0.35);
    color: rgba(232,165,90,0.85); font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}
.profile-toggle[aria-pressed="true"] { background: rgba(232,165,90,0.16); color: #F2DDD0; }
.allergen-flag {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.53rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #E8A54A; background: rgba(232,165,90,0.1);
    border: 1px solid rgba(232,165,90,0.35); border-radius: 100px; padding: 3px 9px;
}
.profile-hidden { display: none !important; }
.profile-nudge {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 14px; margin: 0 auto 20px; max-width: 760px; padding: 13px 22px;
    border: 1px solid rgba(var(--area-rgb), 0.26); border-radius: 16px;
    background: linear-gradient(160deg, rgba(var(--area-rgb), 0.07), rgba(var(--area-rgb), 0.015));
}
.profile-nudge[hidden] { display: none !important; }
.profile-nudge__text {
    font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; font-weight: 300;
    color: rgba(255,255,255,0.7);
}
.profile-nudge__text em { font-style: italic; color: rgb(var(--area-rgb)); }
.profile-nudge__cta {
    font-family: 'JetBrains Mono', monospace; font-size: 0.58rem;
    letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
    color: #14100a; background: rgba(var(--area-rgb), 0.9);
    border-radius: 100px; padding: 8px 16px; transition: transform 0.25s, box-shadow 0.25s;
}
.profile-nudge__cta:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(var(--area-rgb), 0.25); }
