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

/* === TOKENS === */
:root {
    --cream:        #f5f0e4;
    --cream-card:   #faf6ed;
    --ink:          #3d2f1e;
    --ink-mid:      #6b5540;
    --ink-light:    #9a8070;
    --ochre:        #c4832a;
    --terra:        #a04530;
    --sage:         #5a7a4a;
    --sage-light:   #8aaa78;
    --rose:         #b8606e;
    --rose-light:   #dda8ae;
    --lavender:     #8070a8;
    --olive:        #7a8a50;
    --teal:         #4a8878;
    --blue-soft:    #4a7aaa;
    --line:         rgba(150, 130, 90, 0.28);
    --margin:       rgba(180, 80, 60, 0.16);
}

/* === BODY — lined paper === */
body {
    background-color: var(--cream);
    background-image:
        repeating-linear-gradient(
            transparent 0px, transparent 27px,
            var(--line) 27px, var(--line) 28px
        ),
        linear-gradient(
            90deg,
            transparent 0, transparent 68px,
            var(--margin) 68px, var(--margin) 70px,
            transparent 70px
        );
    color: var(--ink);
    font-family: 'Kalam', cursive;
    font-size: 17px;
    min-height: 100vh;
    overflow-x: hidden;
}

/* === LAYOUT === */
.page { max-width: 1100px; margin: 0 auto; padding: 2.5rem 2rem 5rem 5.5rem; position: relative; }

/* === BACK LINK === */
.back {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--ink-mid);
    text-decoration: none;
    opacity: 0.5;
    margin-bottom: 2.2rem;
    transition: opacity 0.2s;
}
.back:hover { opacity: 1; }

/* === BRAND ROW (logo + slogan + search) === */
.brand-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1.2rem 0 0.6rem;
    flex-wrap: wrap;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.brand-row .header-tagline {
    margin: 0;
    font-size: 1.15rem;
}

.brand-row .search-wrap {
    margin: 0;
    width: clamp(180px, 36vw, 380px);
}

/* === SECTION HEADING === */
.section-heading {
    font-family: 'Caveat Brush', cursive;
    font-size: clamp(2rem, 6vw, 3rem);
    color: var(--ink);
    font-weight: normal;
    margin: 1.6rem 0 0.6rem;
    transform: rotate(-0.4deg);
    display: inline-block;
}

/* === HEADER LOGO === */
.header-logo {
    display: block;
    width: clamp(130px, 22vw, 200px);
    mix-blend-mode: multiply;
    transform: rotate(-1.5deg);
    flex-shrink: 0;
}

.header-logo-small {
    display: block;
    width: clamp(80px, 15vw, 110px);
    mix-blend-mode: multiply;
    transform: rotate(-1.2deg);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.botanical-header-rule {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0.8rem 0 0.4rem;
    overflow: visible;
}

.header-tagline {
    margin-top: 0.3rem;
    font-size: 0.98rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-light);
}

/* === CATEGORY PAGE TITLE === */
.category-page-title {
    display: block;
    font-family: 'Caveat Brush', cursive;
    font-size: clamp(2.6rem, 9vw, 4.2rem);
    color: var(--ink);
    line-height: 0.95;
    transform: rotate(-0.6deg);
    margin-bottom: 0.15rem;
}

.category-page-sub {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-light);
    margin-bottom: 2.2rem;
    display: block;
}

/* === UNIFIED FILTER STRIP === */
.filter-strip {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    flex-wrap: wrap;
    background: rgba(90, 122, 74, 0.06);
    border: 1.5px solid rgba(61, 47, 30, 0.15);
    border-radius: 14px 12px 15px 11px / 11px 15px 12px 14px;
    padding: 0.75rem 1rem;
    margin-bottom: 2.4rem;
    transform: rotate(-0.2deg);
}

/* === FLAVOR GROUP === */
.flavor-group { display: flex; gap: 0.45rem; flex-shrink: 0; align-items: center; }
.filter-divider { flex-shrink: 0; align-self: center; }

/* === FLAVOR BUTTONS === */
.flavor-btn {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink-mid);
    background: none;
    border: 2px solid var(--ink-mid);
    border-radius: 40px 38px 42px 36px / 36px 42px 38px 40px;
    padding: 0.35rem 1.3rem;
    cursor: pointer;
    opacity: 0.5;
    transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.flavor-btn:first-child { transform: rotate(-0.9deg); }
.flavor-btn:last-child  { transform: rotate(0.6deg); }
.flavor-btn[data-flavor="savory"]:hover,
.flavor-btn[data-flavor="savory"].active { background: var(--sage); color: var(--cream); border-color: var(--sage); opacity: 1; }
.flavor-btn[data-flavor="sweet"]:hover,
.flavor-btn[data-flavor="sweet"].active  { background: var(--rose); color: var(--cream); border-color: var(--rose); opacity: 1; }

/* === CATEGORY NAV === */
.cat-nav { display: flex; flex-wrap: wrap; gap: 0.45rem; align-content: flex-start; }

.cat-btn {
    font-family: 'Kalam', cursive;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink-mid);
    background: none;
    border: 2px solid var(--ink-mid);
    border-radius: 40px 38px 42px 36px / 36px 42px 38px 40px;
    padding: 0.2rem 0.85rem;
    cursor: pointer;
    opacity: 0.5;
    transition: background 0.15s, color 0.15s, opacity 0.15s;
}
.cat-btn:nth-child(1) { transform: rotate(-1.2deg); }
.cat-btn:nth-child(2) { transform: rotate(0.7deg); }
.cat-btn:nth-child(3) { transform: rotate(-0.4deg); }
.cat-btn:nth-child(4) { transform: rotate(1.1deg); }
.cat-btn:nth-child(5) { transform: rotate(-0.7deg); }
.cat-btn:nth-child(6) { transform: rotate(0.5deg); }
.cat-btn:nth-child(7) { transform: rotate(-1deg); }

.cat-btn:hover,
.cat-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); opacity: 1; }

.cat-btn[data-cat="soepen"]:hover,      .cat-btn[data-cat="soepen"].active      { background: #8a6240;        border-color: #8a6240; }
.cat-btn[data-cat="pasta"]:hover,       .cat-btn[data-cat="pasta"].active       { background: var(--terra);   border-color: var(--terra); }
.cat-btn[data-cat="zuurdesem"]:hover,   .cat-btn[data-cat="zuurdesem"].active   { background: var(--olive);   border-color: var(--olive); }
.cat-btn[data-cat="ontbijt"]:hover,     .cat-btn[data-cat="ontbijt"].active     { background: var(--ochre);   border-color: var(--ochre); }
.cat-btn[data-cat="vegetarisch"]:hover, .cat-btn[data-cat="vegetarisch"].active { background: var(--sage);    border-color: var(--sage); }
.cat-btn[data-cat="bakken"]:hover,      .cat-btn[data-cat="bakken"].active      { background: var(--rose);    border-color: var(--rose); }
.cat-btn[data-cat="snacks"]:hover,      .cat-btn[data-cat="snacks"].active      { background: var(--teal);    border-color: var(--teal); }

/* === RECIPE LIST === */
#recipe-list { display: flex; flex-direction: column; gap: 2.2rem; }

/* === RECIPE CARD === */
.recipe-card {
    background: var(--cream-card);
    border: 2px solid rgba(61, 47, 30, 0.55);
    border-radius: 18px 22px 20px 16px / 16px 20px 22px 18px;
    padding: 1.4rem 1.6rem 1.4rem 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    box-shadow: 3px 5px 0 rgba(61, 47, 30, 0.09), 0 2px 12px rgba(61, 47, 30, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}

.recipe-card:hover {
    box-shadow: 4px 7px 0 rgba(61, 47, 30, 0.13), 0 4px 18px rgba(61, 47, 30, 0.09);
}

/* Subtle warm background tints per card position */
.recipe-card:nth-child(5n+1) { background: #faf6ed; }
.recipe-card:nth-child(5n+2) { background: #f8f4ec; }
.recipe-card:nth-child(5n+3) { background: #f9f5ee; }
.recipe-card:nth-child(5n+4) { background: #f7f3eb; }
.recipe-card:nth-child(5n+5) { background: #faf5ed; }

/* Flavour accent: left strip replaced with soft top-left wash */
.recipe-card.flavor-savory { border-color: rgba(90, 122, 74, 0.5);  background-image: linear-gradient(135deg, rgba(90,122,74,0.07) 0%, transparent 40%); }
.recipe-card.flavor-sweet  { border-color: rgba(184, 96, 110, 0.5); background-image: linear-gradient(135deg, rgba(184,96,110,0.07) 0%, transparent 40%); }

/* Tape strip */
.recipe-card::before {
    content: '';
    position: absolute;
    top: -8px; left: 24px;
    width: 48px; height: 14px;
    background: rgba(196, 131, 42, 0.22);
    border: 1px solid rgba(196, 131, 42, 0.32);
    border-radius: 2px 3px 2px 3px;
    transform: rotate(-0.6deg);
    z-index: 2;
}
.recipe-card:nth-child(3n)::before { background: rgba(184, 96, 110, 0.22); border-color: rgba(184, 96, 110, 0.32); }
.recipe-card:nth-child(4n)::before { background: rgba(90, 122, 74, 0.22);  border-color: rgba(90, 122, 74, 0.32); }
.recipe-card:nth-child(5n)::before { background: rgba(74, 122, 170, 0.18); border-color: rgba(74, 122, 170, 0.28); left: 34px; transform: rotate(0.5deg); }

.recipe-card:nth-child(odd)  { transform: rotate(-0.5deg); }
.recipe-card:nth-child(even) { transform: rotate(0.45deg); }
.recipe-card:nth-child(3n)   { transform: rotate(-0.3deg); }
.recipe-card:nth-child(4n)   { transform: rotate(0.6deg); }

/* === ILLUSTRATION === */
.recipe-illustration {
    flex: 0 0 150px;
    width: 150px;
    padding: 1rem 0.5rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.recipe-illustration::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 60% 40% 55% 45% / 45% 55% 60% 40%;
    opacity: 0.22;
}
.flavor-savory .recipe-illustration::before { background: var(--sage); }
.flavor-sweet  .recipe-illustration::before { background: var(--rose); }
.recipe-illustration svg { width: 100%; height: auto; position: relative; z-index: 1; }

/* === RECIPE INFO === */
.recipe-info { flex: 1; min-width: 0; padding: 1rem 1.2rem 1rem 0.8rem; }

.recipe-cat-label {
    display: inline-block;
    font-family: 'Kalam', cursive;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
    padding: 0.08rem 0.65rem;
    border-radius: 40px 36px 42px 38px / 36px 42px 38px 40px;
    border: 1.5px solid currentColor;
    opacity: 0.75;
    background: rgba(255,255,255,0.4);
}
.recipe-cat-label.cat-soepen      { color: #8a6240; }
.recipe-cat-label.cat-pasta       { color: var(--terra); }
.recipe-cat-label.cat-zuurdesem   { color: var(--olive); }
.recipe-cat-label.cat-ontbijt     { color: var(--ochre); }
.recipe-cat-label.cat-vegetarisch { color: var(--sage); }
.recipe-cat-label.cat-bakken      { color: var(--rose); }
.recipe-cat-label.cat-snacks      { color: var(--teal); }

.recipe-name {
    font-family: 'Caveat Brush', cursive;
    font-size: 1.9rem;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 0.2rem;
}
.recipe-name-rule { display: block; width: 65%; height: 8px; margin-bottom: 0.5rem; overflow: visible; }

.recipe-note {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 0.9rem;
}

/* === PILLS === */
.recipe-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pill {
    font-family: 'Kalam', cursive;
    font-size: 0.82rem;
    padding: 0.12rem 0.65rem;
    border-radius: 20px 18px 22px 16px / 16px 22px 18px 20px;
    border: 1.5px solid;
}
.pill-time     { color: var(--ink-mid);   border-color: var(--ink-light); }
.pill-freezer  { color: var(--blue-soft); border-color: #a0c0de; background: rgba(74,122,170,0.08); }
.pill-protein  { color: var(--terra);     border-color: #d4907a; background: rgba(160,69,48,0.07); }
.pill-favorite { color: var(--ochre);     border-color: #d4a870; background: rgba(196,131,42,0.08); }
.pill-family   { color: #a0345a;          border-color: #c4607a; background: rgba(160,52,90,0.08);   }

/* === SEARCH === */
.search-wrap { margin-bottom: 0; }
.search-input {
    font-family: 'Kalam', cursive;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--ink-light);
    width: 100%;
    padding: 0.3rem 0.2rem;
    outline: none;
    transform: rotate(-0.3deg);
    display: block;
    transition: border-color 0.2s;
}
.search-input::placeholder { color: var(--ink-light); opacity: 0.7; }
.search-input:focus { border-bottom-color: var(--ink); }

/* === EMPTY STATE === */
.empty { font-style: italic; color: var(--ink-light); padding: 2rem 0; text-align: center; }

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 47, 30, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: #faf6ed;
    border: 2px solid rgba(61, 47, 30, 0.5);
    border-radius: 22px 18px 20px 24px / 18px 24px 18px 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 88vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 5px 8px 0 rgba(61, 47, 30, 0.10), 0 4px 24px rgba(61, 47, 30, 0.08);
    transform: scale(0.96) rotate(-0.3deg);
    transition: transform 0.22s;
}
.modal-overlay.open .modal-card {
    transform: scale(1) rotate(-0.3deg);
}

.modal-card.flavor-savory {
    border-color: rgba(90, 122, 74, 0.55);
    background-image: linear-gradient(135deg, rgba(90,122,74,0.07) 0%, transparent 35%);
}
.modal-card.flavor-sweet {
    border-color: rgba(184, 96, 110, 0.55);
    background-image: linear-gradient(135deg, rgba(184,96,110,0.07) 0%, transparent 35%);
}

/* tape strip */
.modal-card::before {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%) rotate(0.5deg);
    width: 64px;
    height: 14px;
    background: rgba(196, 131, 42, 0.22);
    border: 1px solid rgba(196, 131, 42, 0.32);
    border-radius: 2px 3px 2px 3px;
    z-index: 2;
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    font-family: 'Kalam', cursive;
    font-size: 1.3rem;
    color: var(--ink-light);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    opacity: 0.55;
    transition: opacity 0.15s;
    z-index: 3;
}
.modal-close:hover { opacity: 1; }

.modal-header {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    padding: 1.6rem 2rem 1.2rem;
    border-bottom: 1.5px solid rgba(150, 130, 90, 0.18);
    flex-shrink: 0;
}

/* Quick-ref chips in header */
.modal-quickref {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
}
.modal-quickref-chip {
    font-family: 'Kalam', cursive;
    font-size: 0.82rem;
    color: var(--ink-mid);
    background: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(61,47,30,0.2);
    border-radius: 40px 36px 42px 38px / 36px 42px 38px 40px;
    padding: 0.1rem 0.7rem;
}

.modal-illustration {
    flex: 0 0 110px;
    width: 110px;
    position: relative;
}
.modal-illustration::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 60% 40% 55% 45% / 45% 55% 60% 40%;
    opacity: 0.22;
}
.modal-illustration.flavor-savory::before { background: var(--sage); }
.modal-illustration.flavor-sweet::before  { background: var(--rose); }
.modal-illustration svg { width: 100%; height: auto; position: relative; z-index: 1; }

.modal-meta {
    flex: 1;
    min-width: 0;
    padding-top: 0.3rem;
}

.modal-recipe-name {
    font-family: 'Caveat Brush', cursive;
    font-size: clamp(1.8rem, 6vw, 2.3rem);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* Left: static ingredients column */
.modal-ing-col {
    flex: 0 0 240px;
    padding: 1.6rem 1.4rem 1.6rem 1.8rem;
    border-right: 1.5px solid rgba(150, 130, 90, 0.18);
    overflow-y: auto;
    background: rgba(255,255,255,0.25);
}

/* Right: scrollable steps / tips / variations */
.modal-recipe-col {
    flex: 1;
    padding: 1.6rem 2rem 2rem 1.8rem;
    overflow-y: auto;
}

.modal-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem 0.8rem;
    gap: 0.5rem;
}
.modal-empty-icon {
    font-size: 1.8rem;
    opacity: 0.35;
}
.modal-empty-text {
    font-size: 0.98rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-light);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .modal-body { flex-direction: column; }
    .modal-ing-col { flex: none; border-right: none; border-bottom: 1.5px solid rgba(150,130,90,0.18); }
    .modal-header { flex-direction: column; align-items: center; text-align: center; }
    .modal-illustration { width: 90px; flex: 0 0 90px; }
}

/* === MODAL CONTENT === */
.modal-loading {
    display: flex;
    justify-content: center;
    padding: 2.5rem;
    font-size: 1.6rem;
    opacity: 0.35;
}

.modal-description {
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-mid);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.modal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(150, 130, 90, 0.2);
}
.modal-meta-chip {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ink-mid);
}

.modal-section { margin-bottom: 1.8rem; }

.modal-section-title {
    font-family: 'Caveat Brush', cursive;
    font-size: 1.55rem;
    color: var(--ink);
    display: inline-block;
    transform: rotate(-0.5deg);
    margin-bottom: 0.75rem;
}

/* Ingredients column stacks sections vertically */
.modal-ing-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-ing-section + .modal-ing-section { margin-top: 0.8rem; }

.modal-ing-label {
    font-size: 0.78rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ink-light);
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.modal-ing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}
.modal-ing-list li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.93rem;
    line-height: 1.4;
}
.modal-ing-list li.ing-optional { opacity: 0.55; }
.modal-ing-list li.ing-optional .ing-name::after {
    content: ' (optioneel)';
    font-size: 0.8em;
    font-style: italic;
}

.ing-amount {
    flex: 0 0 5.8rem;
    text-align: right;
    color: var(--ink-light);
    font-size: 0.85rem;
    white-space: nowrap;
    padding-top: 0.05rem;
}
.ing-name { color: var(--ink); }

/* Steps */
.modal-steps { display: flex; flex-direction: column; gap: 1.3rem; }

.modal-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.step-num {
    font-family: 'Caveat Brush', cursive;
    font-size: 2.1rem;
    color: var(--ochre);
    line-height: 0.85;
    flex-shrink: 0;
    width: 1.8rem;
    text-align: right;
    opacity: 0.55;
}
.step-body { flex: 1; }
.step-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink-mid);
    letter-spacing: 0.03em;
    text-transform: lowercase;
    margin-bottom: 0.25rem;
}
.step-text {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.65;
}

/* Tips */
.modal-tips { display: flex; flex-direction: column; gap: 0.7rem; }
.modal-tip {
    padding: 0.6rem 1rem;
    background: rgba(90, 122, 74, 0.07);
    border: 1.5px solid rgba(90, 122, 74, 0.22);
    border-radius: 12px 14px 12px 10px / 10px 12px 14px 12px;
}
.tip-title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sage);
    margin-bottom: 0.18rem;
}
.tip-text {
    font-size: 0.87rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-mid);
    line-height: 1.5;
}

/* Step bullet list (zuurdesem format) */
.step-list {
    margin-top: 0.3rem;
    padding-left: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.step-list li {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.55;
}

/* Ingredient note */
.ing-note {
    font-size: 0.82em;
    color: var(--ink-light);
    font-style: italic;
}

/* Variations */
.modal-variations { display: flex; flex-direction: column; gap: 1.2rem; }
.modal-variation {
    padding: 0.65rem 0.9rem;
    background: rgba(196, 131, 42, 0.05);
    border-left: 2px solid rgba(196, 131, 42, 0.35);
    border-radius: 0 3px 3px 0;
}
.variation-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ochre);
    margin-bottom: 0.35rem;
}

/* Freezer note */
.modal-freezer-note {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    padding: 0.65rem 0.9rem;
    background: rgba(74, 122, 170, 0.07);
    border-radius: 3px;
    margin-top: 0.5rem;
    font-size: 0.87rem;
    color: var(--blue-soft);
}
.modal-freezer-note p { font-weight: 300; line-height: 1.5; }

/* === FOOTER === */
.footer-botanical { display: block; margin: 0 auto 0.6rem; opacity: 0.45; }
.site-footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-light);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .page { padding-left: 1.5rem; }
    .recipe-card { flex-direction: column; }
    .recipe-illustration { width: 110px; flex: 0 0 110px; align-self: center; }
}

@media (max-width: 520px) {
    .filter-strip { flex-direction: column; gap: 0.6rem; }
    .filter-divider { display: none; }
    .flavor-group { order: 1; }
    .cat-nav { order: 2; }
}
