:root {
  --paper: #f6f0e7;
  --surface: #fffdf9;
  --ink: #1e2a23;
  --muted: #687069;
  --line: #ddd3c4;
  --terracotta: #b85c3a;
  --terracotta-dark: #934125;
  --green: #496a55;
  --danger: #a4382c;
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} 

* { box-sizing: border-box; } 
html { min-height: 100%; background: var(--paper); } 
body { margin: 0; min-width: 320px; min-height: 100vh; background: radial-gradient(circle at 95% 0%, #ead7bf 0, transparent 23rem), var(--paper); } 
button, input, textarea, select { font: inherit; } 
button, .button { min-height: 44px; } 
a { color: inherit; } 
h1, h2, h3, p { margin-top: 0; } 
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -0.025em; text-wrap: balance; } 
h1 { margin-bottom: .35rem; font-size: clamp(2.25rem, 5vw, 4.8rem); line-height: .98; } 
h2 { font-size: clamp(1.35rem, 2vw, 2rem); } 
h3 { font-size: 1.18rem; } 
code { padding: .12rem .35rem; border-radius: 5px; background: #eee5d8; } 

.site-shell { min-height: 100vh; } 
.site-header { width: min(1440px, calc(100% - 48px)); margin: 0 auto; min-height: 76px; display: flex; align-items: center; gap: 32px; border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent); } 
.brand { display: inline-flex; align-items: center; min-height: 44px; gap: 10px; font-family: Georgia, serif; font-size: 1.25rem; font-weight: 700; text-decoration: none; white-space: nowrap; } 
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; color: var(--paper); background: var(--ink); border-radius: 9px; font-size: .95rem; } 
.primary-nav { display: flex; align-items: center; gap: 8px; margin-right: auto; } 
.primary-nav a, .mobile-nav a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: .55rem .75rem; color: var(--muted); text-decoration: none; border-radius: 8px; transition: color .16s ease, background-color .16s ease, scale .16s ease; } 
.primary-nav a.active, .primary-nav a:hover { color: var(--ink); background: #eee5d8; } 
.page-content { width: min(1440px, calc(100% - 48px)); margin: 0 auto; padding: 58px 0 90px; } 
.mobile-nav { display: none; } 
.mobile-menu { display: none; } 

.page-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 42px; } 
.compact-heading { margin-bottom: 28px; } 
.eyebrow { margin-bottom: .55rem; color: var(--terracotta); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; } 
.lead { max-width: 630px; color: var(--muted); font-size: 1.06rem; line-height: 1.55; text-wrap: pretty; } 
.muted { color: var(--muted); font-size: .9rem; line-height: 1.45; } 

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: .65rem 1rem; border: 1px solid transparent; border-radius: 9px; cursor: pointer; font-weight: 700; text-decoration: none; transition: color .16s ease, background-color .16s ease, border-color .16s ease, transform .16s ease, scale .16s ease; } 
.button:hover { transform: translateY(-1px); } 
.button:active { scale: .96; } 
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #e5a889; outline-offset: 3px; } 
.button-primary { color: white; background: var(--terracotta); } 
.button-primary:hover { background: var(--terracotta-dark); } 
.button-secondary { color: var(--ink); background: transparent; border-color: var(--line); } 
.button-secondary:hover, .button-quiet:hover { background: #eee5d8; } 
.button-quiet { color: var(--ink); background: transparent; border-color: transparent; } 
.button-danger { color: white; background: var(--danger); } 
.text-button { min-width: 40px; min-height: 40px; padding: 0; color: var(--terracotta-dark); background: transparent; border: 0; cursor: pointer; font-weight: 700; transition: color .16s ease, scale .16s ease; } 
.text-button:active { scale: .96; } 
.button-row { display: flex; flex-wrap: wrap; gap: 10px; } 

.library-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 36px; align-items: start; } 
.filters { position: sticky; top: 16px; padding: 20px; background: rgb(255 253 249 / 66%); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(10px); } 
.filters > summary { display: none; }
.filters:not([open]) > .filter-form { display: grid; }
.filter-form, .stack-form { display: grid; gap: 16px; } 
.filter-title-row, .results-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; } 
.filter-title-row h2 { margin-bottom: 0; font-size: 1.38rem; } 
.filter-primary, .filter-details-content { display: grid; gap: 14px; } 
.filter-details { border-top: 1px solid var(--line); } 
.filter-details summary { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 16px; color: var(--ink); cursor: pointer; font-size: .9rem; font-weight: 800; list-style: none; } 
.filter-details summary::-webkit-details-marker { display: none; } 
.filter-details summary::after { color: var(--terracotta-dark); content: "+"; font-size: 1.25rem; line-height: 1; } 
.filter-details[open] summary { margin-bottom: 16px; } 
.filter-details[open] summary::after { content: "−"; } 
.filter-count { display: grid; place-items: center; min-width: 22px; height: 22px; margin-left: auto; color: var(--terracotta-dark); background: #f3ded1; border-radius: 999px; font-size: .75rem; font-variant-numeric: tabular-nums; } 
label { display: grid; gap: 6px; color: #475047; font-size: .84rem; font-weight: 700; } 
input, textarea, select { width: 100%; padding: .68rem .75rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 8px; transition: border-color .16s ease, box-shadow .16s ease; } 
input:focus, textarea:focus, select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgb(184 92 58 / 16%); } 
textarea { resize: vertical; line-height: 1.45; } 
.meal-filter { display: grid; gap: 9px; margin-bottom: 20px; }
.meal-filter p { margin: 0; font-size: .84rem; font-weight: 800; }
.meal-filter-options, .meal-period-options { display: flex; flex-wrap: wrap; gap: 8px; }
.meal-filter-option, .meal-period-option { min-height: 44px; padding: .55rem .8rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-weight: 800; transition: color .16s ease, background-color .16s ease, border-color .16s ease, scale .16s ease; }
.meal-filter-option:hover, .meal-period-option:hover { background: #eee5d8; }
.meal-filter-option:active, .meal-period-option:active { scale: .96; }
.meal-filter-option.is-active, .meal-period-option.is-active { color: white; background: var(--terracotta); border-color: var(--terracotta); }
.meal-period-field { min-width: 0; padding: 0; margin: 0; border: 0; } .meal-period-field legend { padding: 0; margin-bottom: 6px; color: #475047; font-size: .84rem; font-weight: 700; }
.recipe-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } 
.recipe-card { overflow: hidden; min-width: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgb(60 45 28 / 5%); transition: transform .18s ease, box-shadow .18s ease; } 
.recipe-card:hover { transform: translateY(-3px); box-shadow: 0 18px 35px rgb(60 45 28 / 11%); } 
.recipe-card:focus-within { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgb(184 92 58 / 16%), 0 18px 35px rgb(60 45 28 / 11%); } 
.recipe-card-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; text-decoration: none; background: linear-gradient(135deg, #e9d4b9, #b9cab7); } 
.recipe-card-image img, .recipe-hero-image img, .cover-upload-row img { width: 100%; height: 100%; object-fit: cover; outline: 1px solid rgb(0 0 0 / 10%); outline-offset: -1px; } 
.recipe-placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: #6a5f52; font-family: Georgia, serif; background: linear-gradient(135deg, #e9d4b9, #b9cab7); } 
.recipe-card-body { padding: 17px; } 
.card-kicker { display: flex; min-height: 20px; gap: 7px; margin-bottom: 7px; } 
.status-badge, .favorite-mark { padding: .24rem .42rem; color: var(--green); background: #deeadc; border-radius: 999px; font-size: .68rem; font-weight: 800; } 
.favorite-mark { color: var(--terracotta-dark); background: #f3ded1; } 
.recipe-card h2 { margin-bottom: .6rem; font-size: 1.38rem; line-height: 1.08; } 
.recipe-card h2 a { text-decoration: none; } 
.recipe-card h2 a:hover { text-decoration: underline; text-decoration-color: var(--terracotta); } 
.recipe-meta { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: .78rem; font-variant-numeric: tabular-nums; } 
.recipe-meta span:not(:last-child)::after { margin-left: 7px; content: "·"; } 
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 13px 0 0; list-style: none; } 
.tag-list li { padding: .3rem .48rem; background: #eee5d8; border-radius: 999px; font-size: .75rem; } 
.empty-state { display: grid; justify-items: start; gap: 5px; padding: 42px; background: var(--surface); border: 1px dashed #cbbba8; border-radius: var(--radius); } 
.empty-state h1, .empty-state h2 { margin-bottom: .25rem; } 

.recipe-detail { display: grid; gap: 40px; } 
.recipe-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(310px, .95fr); gap: 40px; align-items: stretch; } 
.recipe-hero-copy { align-self: center; } 
.title-row { display: flex; align-items: start; justify-content: space-between; gap: 18px; } 
.favorite-button { display: grid; min-width: 44px; min-height: 44px; place-items: center; padding: 0; color: var(--terracotta-dark); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1; transition: color .16s ease, background-color .16s ease, border-color .16s ease, scale .16s ease; }
.favorite-button:active { scale: .96; }
.favorite-button.is-active { color: white; background: var(--terracotta); border-color: var(--terracotta); }
.recipe-hero-copy > .button-row { margin-top: 16px; }
.recipe-hero-image { min-height: 330px; overflow: hidden; border-radius: 24px; background: #ded0bb; } 
.recipe-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 430px; margin: 16px 0 10px; }
.recipe-facts div { padding: 12px 0; border-top: 1px solid var(--line); } 
.recipe-facts dt { color: var(--muted); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; } 
.recipe-facts dd { margin: 5px 0 0; font-family: Georgia, serif; font-size: 1.18rem; font-variant-numeric: tabular-nums; } 
.recipe-columns { display: grid; grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr); gap: 50px; } 
.ingredients-panel, .steps-panel, .recipe-footer section { padding: 26px; background: rgb(255 253 249 / 72%); border: 1px solid var(--line); border-radius: var(--radius); } 
.ingredients-list { padding: 0; list-style: none; } 
.ingredients-list li { display: flex; justify-content: space-between; gap: 16px; padding: .7rem 0; border-bottom: 1px solid #e6ddd0; } 
.ingredient-details { display: grid; justify-items: end; gap: 3px; color: var(--muted); text-align: right; }
.ingredient-note { max-width: 100%; }
.steps-list { display: grid; gap: 18px; padding: 0; list-style: none; counter-reset: steps; } 
.steps-list li { position: relative; padding-left: 48px; counter-increment: steps; } 
.steps-list li::before { position: absolute; left: 0; display: grid; place-items: center; width: 30px; height: 30px; color: var(--terracotta-dark); background: #f3ded1; border-radius: 50%; content: counter(steps); font-weight: 800; } 
.steps-list p { margin-bottom: 4px; line-height: 1.55; } 
.step-image { display: block; width: min(100%, 560px); max-height: 440px; margin-bottom: 12px; border-radius: 12px; object-fit: cover; } 
.steps-list span { color: var(--muted); font-size: .82rem; } 
.recipe-footer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } 
.confirmation-backdrop { position: fixed; z-index: 30; inset: 0; display: grid; place-items: center; padding: 24px; background: rgb(30 42 35 / 48%); }
.confirmation-dialog { width: min(100%, 460px); padding: clamp(24px, 5vw, 34px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 70px rgb(30 42 35 / 28%); }
.confirmation-dialog h2 { margin-bottom: .65rem; }
.confirmation-dialog > p:not(.eyebrow) { color: var(--muted); line-height: 1.5; }

.recipe-editor { display: grid; gap: 22px; } 
.editor-section { padding: clamp(20px, 3vw, 34px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); } 
.section-heading { margin-bottom: 20px; } 
.section-heading h2 { margin-bottom: .35rem; } 
.section-heading p { margin: 0; color: var(--muted); } 
.form-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; } 
.editor-main > .field-wide + .field-wide, .editor-main > .field-wide + .form-grid { margin-top: 15px; }
.field-wide { grid-column: 1 / -1; } 
.cover-upload-row { display: flex; align-items: center; gap: 18px; } 
.cover-upload-row > img, .cover-upload-row > .recipe-placeholder { width: 160px; height: 110px; overflow: hidden; border-radius: 10px; } 
.cover-upload-row label input, .settings-card label input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; } 
.repeat-list { display: grid; gap: 9px; margin-bottom: 12px; } 
.repeat-row { display: grid; align-items: start; gap: 8px; } 
.ingredient-row { grid-template-columns: 1fr 1.5fr 1fr 1.2fr auto; } 
.step-row { grid-template-columns: 1fr 2.7fr 90px auto; } 
.icon-button { min-height: 42px; padding: .45rem; color: var(--danger); background: transparent; border: 1px solid #e9c5c0; border-radius: 8px; cursor: pointer; font-size: .78rem; transition: color .16s ease, background-color .16s ease, border-color .16s ease, scale .16s ease; } 
.icon-button:active { scale: .96; } 
.tag-input { display: flex; gap: 8px; margin-bottom: 10px; } 
.editable-tags li { display: inline-flex; align-items: center; gap: 5px; } 
.editable-tags button { display: grid; place-items: center; min-width: 40px; min-height: 40px; margin: -.3rem -.48rem -.3rem 0; padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font-size: 1rem; line-height: 1; transition: color .16s ease, scale .16s ease; } 
.editable-tags button:active { scale: .96; } 
.source-grid { margin-top: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); } 
.editor-actions { display: flex; justify-content: space-between; gap: 12px; } 

.import-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; } 
.import-panel, .import-help, .import-preview, .settings-card { padding: clamp(22px, 4vw, 38px); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); } 
.tab-list { display: flex; gap: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); } 
.tab-list button { min-height: 40px; padding: 0 0 10px; color: var(--muted); background: transparent; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font-weight: 800; transition: color .16s ease, border-color .16s ease, scale .16s ease; } 
.tab-list button:active { scale: .96; } 
.tab-list button.is-active { color: var(--ink); border-color: var(--terracotta); } 
.image-prompt-option { display: flex; align-items: start; gap: 12px; padding: 13px 14px; color: var(--ink); background: #f7f1e8; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; }
.image-prompt-option input { flex: 0 0 auto; width: 18px; min-height: 18px; margin: 2px 0 0; padding: 0; accent-color: var(--terracotta); }
.image-prompt-option span { display: grid; gap: 3px; }
.image-prompt-option strong { font-size: .9rem; }
.image-prompt-option small { color: var(--muted); font-size: .82rem; font-weight: 500; line-height: 1.4; }
.json-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; } 
.json-heading + textarea { font-family: "Cascadia Code", Consolas, monospace; font-size: .85rem; } 
.import-help { align-self: start; background: #e6ece1; border-color: #c5d1be; } 
.import-help li { margin-bottom: 8px; } 
.import-preview { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 25px; } 
.warning-list { margin: 0; padding-left: 20px; color: #795435; } 
.settings-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } 
.settings-card { min-height: 230px; display: flex; flex-direction: column; align-items: start; } 
.settings-card h2 { margin-bottom: .5rem; } 
.settings-card p { color: var(--muted); line-height: 1.5; } 
.settings-card .button { margin-top: auto; } 
.danger-zone { background: #fff8f3; border-color: #e8cbbc; } 

.auth-shell { display: grid; min-height: 100vh; place-items: center; padding: 24px; } 
.auth-card { width: min(100%, 440px); padding: 38px; background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 24px 70px rgb(60 45 28 / 13%); } 
.auth-card h1 { font-size: 3.2rem; } 
.form-error, .form-success { padding: .75rem .9rem; border-radius: 8px; line-height: 1.4; } 
.form-error { color: #7d241d; background: #fae4e1; border: 1px solid #ebc0bb; } 
.form-success { color: #285d34; background: #e0efdf; border: 1px solid #bdd9bb; } 

@media (max-width: 1100px) {
  .recipe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } 
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } 
  .import-layout { grid-template-columns: 1fr; } 
  .import-help { display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; } 
  .import-help h2, .import-help p, .import-help .eyebrow { grid-column: 1; } 
  .import-help ol { grid-column: 2; grid-row: 1 / span 3; } 
} 

@media (max-width: 780px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); } 
  .site-header, .page-content { width: min(100% - 32px, 1440px); } 
  .site-header { min-height: 64px; } 
  .primary-nav, .logout-form { display: none; } 
  .page-content { padding-top: 34px; } 
  .mobile-menu { position: relative; display: block; margin-left: auto; } 
  .mobile-menu summary { display: grid; min-width: 64px; min-height: 44px; place-items: center; color: var(--ink); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-size: .84rem; font-weight: 800; list-style: none; } 
  .mobile-menu summary::-webkit-details-marker { display: none; } 
  .mobile-menu-panel { position: absolute; z-index: 20; top: calc(100% + 8px); right: 0; display: grid; width: min(220px, calc(100vw - 32px)); padding: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 16px 36px rgb(60 45 28 / 18%); } 
  .mobile-menu-panel a, .mobile-menu-panel .button { width: 100%; min-height: 44px; justify-content: flex-start; padding: .65rem .75rem; border-radius: 8px; text-decoration: none; } 
  .mobile-menu-panel a.active { color: var(--terracotta-dark); background: #f3ded1; } 
  .mobile-nav { position: fixed; z-index: 10; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); left: 12px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 6px; background: rgb(30 42 35 / 94%); border: 1px solid rgb(255 255 255 / 15%); border-radius: 14px; backdrop-filter: blur(14px); } 
  .mobile-nav a { min-height: 44px; color: #e5e6df; text-align: center; font-size: .76rem; } 
  .mobile-nav a.active { color: white; background: rgb(255 255 255 / 15%); } 
  input, textarea, select { min-height: 44px; font-size: 1rem; } 
  .filters { position: static; padding: 0; background: transparent; border: 0; backdrop-filter: none; }
  .filters > summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: .55rem .8rem; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 9px; cursor: pointer; font-weight: 800; list-style: none; }
  .filters > summary::-webkit-details-marker { display: none; }
  .filters:not([open]) > .filter-form { display: none; }
  .filters > .filter-form { padding: 16px; margin-top: 10px; background: rgb(255 253 249 / 88%); border: 1px solid var(--line); border-radius: var(--radius); }
  .filter-details summary, .favorite-button, .icon-button, .text-button, .editable-tags button, .tab-list button { min-height: 44px; } 
  .page-heading { align-items: start; flex-direction: column; margin-bottom: 28px; } 
  .title-row { align-items: start; flex-direction: column; gap: 12px; } 
  .library-layout, .recipe-hero, .recipe-columns, .recipe-footer, .settings-grid { grid-template-columns: 1fr; } 
  .meal-filter { margin-top: 2px; }
  .meal-filter p { display: none; }
  .meal-filter-options { flex-wrap: nowrap; gap: 6px; }
  .meal-filter-option { flex: 1; min-width: 0; min-height: 40px; padding: .45rem .3rem; font-size: .78rem; }
  .recipe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .recipe-card-image { aspect-ratio: 4 / 3; }
  .recipe-card-body { padding: 12px; }
  .card-kicker { min-height: 0; margin-bottom: 5px; }
  .recipe-card h2 { margin-bottom: .45rem; font-size: 1.05rem; line-height: 1.12; }
  .recipe-meta { gap: 4px; font-size: .7rem; }
  .recipe-meta span:not(:last-child)::after { margin-left: 4px; }
  .recipe-card .tag-list { display: none; }
  .ingredients-list li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
  .ingredient-details { grid-column: 1 / -1; justify-items: start; text-align: left; }
  .recipe-hero-image { order: -1; min-height: 260px; } 
  .recipe-facts { max-width: none; } 
  .recipe-footer { gap: 12px; } 
  .ingredient-row, .step-row { grid-template-columns: 1fr; } 
  .icon-button { width: 100%; } 
  .form-grid, .source-grid { grid-template-columns: 1fr; } 
  .cover-upload-row { align-items: start; flex-direction: column; } 
  .import-preview { align-items: start; flex-direction: column; } 
  .import-help { display: block; } 
  .import-help ol { margin-top: 18px; } 
  .auth-shell { padding: 16px; } 
  .auth-card { min-width: 0; padding: clamp(24px, 8vw, 38px); } 
  .auth-card h1 { overflow-wrap: anywhere; font-size: clamp(2.25rem, 12vw, 3.2rem); } 
} 

@media (prefers-reduced-motion: reduce) {
  .button, .text-button, .primary-nav a, .mobile-nav a, input, textarea, select, .recipe-card, .favorite-button, .icon-button, .editable-tags button, .tab-list button, .meal-filter-option, .meal-period-option { transition-duration: .01ms; }
}
