@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/fa-solid-900.woff2") format("woff2")
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-brands-400.woff2") format("woff2")
}

:root {
    --primary: #10B981;
    --primary-dark: #06D6A0;
    --secondary: #7C3AED;
    --accent: #EF476F;
    --accent-light: #FF9EBC;
    --bg: #0F0F1E;
    --card-bg: #1A1A2E;
    --surface: #252547;
    --text: #F0F0F5;
    --text-secondary: #A0A0C0;
    --border: #36365A;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    --radius: 32px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.08);
    --blur: blur(20px);
    --blur-mobile: blur(8px);
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-light));
    --header-height: 96px;
    /* Типографика */
    --font-hero: clamp(1.75rem, 4vw, 2.75rem);
    --font-hero-lead: 1.05rem;
    --font-section-title: 2rem;
    --font-section-subtitle: 0.95rem;
    --font-insight-label: 0.7rem;
    --font-insight-value: 1.2rem;
    --font-insight-hint: 0.85rem;
    --font-breadcrumb: 0.8rem;
    --font-chip: 0.85rem;
    --font-day-name: 1.15rem;
    --font-day-date: 0.8rem;
    --font-meal-slot: 0.9rem;
    --font-widget-label: 0.9rem;
    --font-widget-value: 1.15rem;
    /* Отступы */
    --space-section: 2rem;
    --space-section-sm: 1.5rem;
    --space-hero: 2rem;
    --space-hero-mobile: 1rem;
    --space-card: 1.2rem;
    --space-card-sm: 1rem;
    --space-insight: 1.1rem;
    --space-insight-sm: 0.9rem;
    --gap-section: 1rem;
    --gap-section-lg: 1.5rem;
    --gap-card: 0.6rem;
    --line-tight: 1.2;
    --line-normal: 1.4;
    --line-relaxed: 1.5
}

.light-theme {
    --bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --surface: #F1F5F9;
    --text: #1E293B;
    --text-secondary: #64748B;
    --border: #E2E8F0;
    --glass: rgba(0, 0, 0, 0.05)
}

.light-theme .hero h1 {
    color: var(--text);
}

.light-theme .hero .hero-lead {
    color: var(--text-secondary);
}

.light-theme .hero .hero-label {
    color: var(--text-secondary);
}

.light-theme .hero-breadcrumb a {
    color: var(--text-secondary);
}

.light-theme .hero-breadcrumb .breadcrumb-current {
    color: var(--text);
}

.light-theme .hero .meta-item {
    color: var(--text);
}

.light-theme .hero .meta-value {
    color: var(--text);
}

.light-theme .hero .meta-label {
    color: var(--text-secondary);
}

.light-theme .hero .hero-chip {
    color: var(--accent);
}

.light-theme .widget-card {
    background: var(--card-bg);
    border-color: var(--border);
    color: var(--text);
}

.light-theme .widget-heading {
    color: var(--text);
}

.light-theme .widget-heading .badge.ghost {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

.light-theme .metric-label {
    color: var(--text-secondary);
}

.light-theme .metric-value {
    color: var(--text);
}

.light-theme .meal-name {
    color: var(--text);
}

.light-theme .meal-info {
    color: var(--text-secondary);
}

.light-theme .widget-progress {
    background: rgba(0, 0, 0, 0.08);
}

.light-theme .timeline-label {
    color: var(--text);
}

.light-theme .timeline-meta {
    color: var(--text-secondary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: auto;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden
}

body {
    font-family: Inter,system-ui,-apple-system,sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    background-image: radial-gradient(at 47% 33%,rgba(139,92,246,.15) 0,transparent 59%),radial-gradient(at 82% 65%,rgba(6,214,160,.15) 0,transparent 55%),radial-gradient(at 25% 75%,rgba(239,71,111,.1) 0,transparent 55%);
    min-height: 100vh;
    padding: 0;
    transition: var(--transition);
    max-width: 100%;
    position: relative
}

header {
    background: rgba(26,26,46,.95);
    backdrop-filter: none;
    padding: 1rem 5.2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border)
}

@media (max-width: 768px) {
    header {
        transition: transform .2s ease-out;
        min-height: 72px
    }

    header.header-hidden {
        transform: translate3d(0, -100%, 0);
        pointer-events: none
    }
}

.light-theme header {
    background: rgba(255,255,255,.7)
}

.header-content {
    max-width: 1354px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition)
}

.logo-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative
}

.logo-gradient::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s ease
}

.logo:hover .logo-gradient::after {
    transform: scaleX(1);
    transform-origin: left
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.search-container {
    position: relative;
    max-width: 500px;
    width: 100%
}

.search-container input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    font-size: .9rem;
    transition: var(--transition);
    backdrop-filter: none
}

.search-container input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.3);
    background: rgba(26,26,46,.9)
}

.light-theme .search-container input:focus {
    background: rgba(255,255,255,.9)
}

.search-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    transition: var(--transition);
    z-index: 2;
    pointer-events: none
}

.search-container:focus-within i {
    color: var(--primary)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

/* Единый размер для всех второстепенных кнопок в хедере */
.header-actions .theme-toggle,
.header-actions .voice-assistant-btn,
.header-actions .btn.btn-secondary,
.header-actions .basket {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.header-actions .theme-toggle i,
.header-actions .voice-assistant-btn i,
.header-actions .btn.btn-secondary i,
.header-actions .basket i {
    font-size: 1.1rem;
    margin: 0
}

.voice-assistant-btn {
    position: relative;
    transition: var(--transition);
    background: 0 0!important;
    border: none!important;
    padding: 0!important;
    box-shadow: none!important;
    color: var(--text)!important
}

.voice-assistant-btn i {
    color: var(--text)!important;
    font-size: 1.2rem;
    transition: var(--transition)
}

.voice-assistant-btn:hover {
    background: 0 0!important;
    transform: scale(1.1)
}

.voice-assistant-btn:hover i {
    color: var(--primary)!important
}

.voice-assistant-btn.listening {
    background: 0 0!important;
    animation: pulse-red 1s infinite
}

.voice-assistant-btn.listening i {
    color: var(--error)!important
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239,71,111,.7)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239,71,111,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,71,111,0)
    }
}

.favorites-link,.my-recipes-link {
    color: var(--text-secondary);
    background: 0 0;
    border: 1px solid transparent;
    display: none!important
}

.favorites-link i,.my-recipes-link i {
    color: inherit
}

.favorites-link:hover {
    color: var(--accent)
}

.my-recipes-link:hover {
    color: var(--text)
}

.recipe-edit-control {
    display: none
}

.recipe-edit-mode .recipe-edit-control {
    display: inline-flex
}

.recipe-edit-mode .hero-actions .edit-toggle,.recipe-edit-mode .recipe-actions .edit-toggle {
    display: none
}

.recipe-edit-mode .hero-actions .recipe-edit-control {
    display: inline-flex
}

.servings-edit-wrapper {
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

.servings-edit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .2s ease;
    font-size: 0.875rem;
    opacity: 0.7;
}

.servings-edit-btn:hover {
    opacity: 1;
    border-color: var(--primary);
    color: var(--primary);
    background: var(--glass);
}

.servings-edit-btn:active {
    transform: scale(0.95);
}

.servings-edit-btn:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139,92,246,.1);
}

.servings-edit-input {
    min-width: 2.5em;
    width: auto;
    max-width: 3em;
    padding: .15rem .4rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
    transition: all .2s ease
}

.servings-edit-input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139,92,246,.1)
}

.ingredient-edit-wrapper {
    display: none;
    align-items: center;
    gap: .3rem;
    margin-top: .2rem;
    flex-wrap: wrap
}

.ingredient-alternative-part {
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

.ingredient-alternative-or {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 .2rem;
    font-size: .9rem
}

.ingredient-edit-input {
    min-width: 2.2em;
    width: auto;
    max-width: 4.5em;
    padding: .15rem .35rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    transition: all .2s ease;
    display: inline-block
}

.ingredient-edit-input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139,92,246,.1);
    color: var(--text)
}

.ingredient-edit-input:disabled {
    opacity: .6;
    cursor: not-allowed
}

.recipe-edit-mode .ingredient-edit-wrapper {
    display: inline-flex;
    align-items: center
}

.recipe-edit-mode .ingredient-amount {
    display: none
}

.ingredient-edit-wrapper span:not(.ingredient-alternative-or) {
    color: var(--text-secondary);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4
}

.servings-volume-label {
    color: var(--text-secondary);
    font-size: .85rem;
    white-space: nowrap;
    line-height: 1.1
}

.recipe-edit-mode .ingredient-item {
    align-items: flex-start
}

.recipe-edit-mode .ingredient-name {
    flex-direction: column;
    align-items: flex-start;
    gap: .2rem
}

.recipe-edit-mode .insight-card {
    align-items: flex-start
}

.recipe-edit-mode .insight-value {
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

.user-recipe-card .recipe-badge.modified {
    background: var(--primary)
}

.theme-toggle,.voice-search {
    background: 0 0;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none;
    /* background: var(--glass); */
}

.theme-toggle:hover,.voice-search:hover {
    background: var(--surface);
    transform: rotate(12deg)
}

.light-theme .theme-toggle,.light-theme .voice-search {
    background: rgba(15,23,42,.08);
    color: var(--text)
}

.light-theme .theme-toggle,.light-theme .voice-search {
    background: rgba(15,23,42,.08);
    color: var(--text)
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary),var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),box-shadow .35s cubic-bezier(.4, 0, .2, 1);
    border: none;
    position: relative;
    isolation: isolate;
    letter-spacing: .02em;
    will-change: transform;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent
}

.user-avatar::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(135deg,rgba(139,92,246,.35),rgba(6,214,160,.35));
    opacity: 0;
    transform: scale(.8);
    transition: opacity .35s ease,transform .35s ease;
    z-index: -1
}

.user-avatar:hover {
    box-shadow: 0 20px 40px rgba(4,6,30,.6),0 8px 20px rgba(139,92,246,.4)
}

.user-avatar:hover::before {
    opacity: 1;
    transform: scale(1)
}

.user-avatar:focus,
.user-avatar:active,
.user-avatar:focus-visible {
    outline: none;
    -webkit-tap-highlight-color: transparent
}

.user-avatar:focus-visible {
    box-shadow: 0 0 0 3px rgba(255,255,255,.35),0 18px 35px rgba(139,92,246,.4)
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem
}

.hero {
    margin-bottom: 3rem;
    padding: var(--space-hero);
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center
}

.hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    gap: clamp(1.5rem,4vw,3rem);
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap
}

.hero-copy {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    text-align: left
}

.hero-label {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--text-secondary);
    font-size: .85rem;
    font-weight: 500
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-secondary);
    font-size: var(--font-breadcrumb);
    font-weight: 500;
    margin-bottom: .1rem
}

.hero-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .2s
}

.hero-breadcrumb a:hover {
    color: var(--accent)
}

.hero-breadcrumb .breadcrumb-sep {
    opacity: .6;
    user-select: none
}

.hero-breadcrumb .breadcrumb-current {
    color: var(--text);
    font-weight: 600
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(6,214,160,.15);
    color: var(--accent);
    font-size: .75rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0
}

.hero h1 {
    font-size: var(--font-hero);
    line-height: var(--line-tight);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-section-sm)
}

.hero h1 span {
    display: block;
    color: inherit;
    font-weight: inherit
}

.hero h1 .hero-h1-mobile,
.hero-lead .hero-lead-mobile {
    display: none
}

.hero h1 .hero-h1-desktop,
.hero-lead .hero-lead-desktop {
    display: block
}

.btn-secondary-cta {
    text-decoration: none;
    font-family: inherit
}

.hero-lead {
    font-size: var(--font-hero-lead);
    line-height: var(--line-relaxed);
    color: var(--text-secondary)
}

.hero-actions {
    display: flex;
    gap: .9rem;
    flex-wrap: wrap
}

.btn {
    padding: 14px 28px;
    border-radius: 40px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s cubic-bezier(.4, 0, .2, 1);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 1rem;
    transform: translateZ(0);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    /* box-shadow: 0 20px 40px -24px var(--primary); */
}

.btn-primary:hover {
    transform: translateY(-3px) translateZ(0)
}

a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active {
    text-decoration: none
}

.hero-meta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start
}

@media (min-width: 769px) {
    .hero-meta {
        justify-content:flex-end;
        max-width: fit-content
    }
     .selected-menu {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 12px;
    padding: 0;
        position: relative;
        overflow: hidden;
    width: 100%;
    }

    .menu-wrapper {
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .selected-menu .remove-menu-btn {
        position: absolute;
        top: .75rem;
        right: .75rem;
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        padding: .4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: var(--transition);
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        z-index: 10;
    }

    .selected-menu .remove-menu-btn:hover {
        background: var(--error);
        border-color: var(--error);
        color: white;
    }

    .menu-content {
        padding: 1rem;
        flex: 1;
    }

    .menu-recipes-list {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin-bottom: .75rem;
    }

    .menu-recipe-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .65rem .85rem;
        background: var(--bg-tertiary);
        border-radius: 8px;
        border: 1px solid var(--border);
        transition: var(--transition);
        gap: .75rem;
        white-space: nowrap;
    }

    .menu-recipe-item:hover {
        background: var(--bg-secondary);
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    }

    .selected-menu a.menu-recipe-name, .selected-menu .menu-recipe-name, .menu-recipe-item a.menu-recipe-name, .menu-recipe-item .menu-recipe-name {
        font-size: .9rem;
        font-weight: 400;
        color: var(--text-primary) !important;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none !important;
        transition: var(--transition);
        display: block;
        min-width: 0;
    }

    .selected-menu a.menu-recipe-name:hover, .selected-menu .menu-recipe-name:hover, .menu-recipe-item a.menu-recipe-name:hover, .menu-recipe-item .menu-recipe-name:hover {
        color: var(--text-primary) !important;
        text-decoration: underline !important;
        opacity: 0.8;
    }

    .selected-menu .remove-recipe-from-menu-btn, .menu-recipe-item .remove-recipe-from-menu-btn, .remove-recipe-from-menu-btn {
        background: var(--bg-tertiary) !important;
        border: 1px solid var(--border) !important;
        color: var(--text-secondary) !important;
        cursor: pointer !important;
        padding: .4rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 4px !important;
        transition: var(--transition);
        flex-shrink: 0;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        opacity: 0.8 !important;
        white-space: nowrap;
    }

    .selected-menu .remove-recipe-from-menu-btn:hover, .menu-recipe-item .remove-recipe-from-menu-btn:hover, .remove-recipe-from-menu-btn:hover {
        background: var(--error) !important;
        border-color: var(--error) !important;
        color: white !important;
        opacity: 1 !important;
    }

    .menu-footer {
        display: flex;
        justify-content: flex-end;
        margin-top: .75rem;
        padding-top: .75rem;
        border-top: 1px solid var(--border);
    }

    .selected-menu .save-menu-btn {
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        color: var(--text-primary);
        cursor: pointer;
        padding: .4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: var(--transition);
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .selected-menu .save-menu-btn:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .selected-menu .save-menu-btn:active {
        opacity: 0.8;
    }

    .selected-menu .save-menu-btn i {
        font-size: .75rem;
    }
}

.meta-item {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    font-size: 1rem;
    color: var(--text)
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 700
}

.meta-label {
    font-size: .95rem;
    color: var(--text-secondary);
    white-space: nowrap
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: var(--gap-section)
}

.recipe-meta-insights {
    grid-template-columns: repeat(6,1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.insight-card {
    padding: var(--space-insight) var(--space-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--glass);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: .6rem;
    min-height: 7.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.recipe-meta-insights .insight-card {
    padding: 0.85rem 0.7rem;
    min-height: auto;
    gap: 0.4rem;
    border-radius: 16px;
}

.meal_plan_metablocks {
    min-height: 10rem
}

.insight-label {
    font-size: var(--font-insight-label);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .4rem
}

.recipe-meta-insights .insight-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    gap: 0.3rem;
}

.insight-label i {
    font-size: .8rem;
    opacity: .7
}

.recipe-meta-insights .insight-label i {
    font-size: 0.65rem;
}

.insight-value {
    font-size: var(--font-insight-value);
    font-weight: 800;
    background: var(--text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1
}

.insight-hint {
    font-size: var(--font-insight-hint);
    line-height: var(--line-normal);
    color: var(--text-secondary);
}

.recipe-meta-insights .insight-hint {
    font-size: 0.65rem;
    line-height: 1.4
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    display: none
}

.chip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    font-size: var(--font-chip);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition)
}

.chip-badge:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.15);
    transform: translateY(-1px)
}

.chip-badge i {
    color: var(--primary)
}

.hero-side-card {
    background: var(--card-bg);
    border-radius: 28px;
    border: 1px solid var(--border);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    box-shadow: var(--shadow);
    transform: translateZ(0);
    will-change: scroll-position
}

.hero-side-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem
}

.hero-side-card-header h3 {
    margin: .15rem 0 0
}

.hero-side-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.widget-list-item {
    display: flex;
    gap: .9rem;
    align-items: center;
    padding: .85rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02)
}

.widget-list-item.placeholder {
    border-style: dashed;
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.01);
    align-items: flex-start
}

.item-pill {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(139,92,246,.18);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem
}

.item-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text)
}

.item-meta {
    margin: .2rem 0 0;
    color: var(--text-secondary);
    font-size: .85rem
}

.item-meta.subtle {
    margin: .3rem 0 0;
    font-size: .8rem
}

.item-badge {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: .85rem
}

.widget-hint {
    font-size: .9rem;
    color: var(--text-secondary)
}

.hero-widget {
    flex: 1 1 320px;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.widget-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    background: rgba(6,214,160,.18);
    color: var(--primary);
    font-size: .9rem
}

.pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 12px rgba(6,214,160,.7);
    display: inline-flex
}

.widget-card {
    background: rgba(15,15,30,.92);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 1.4rem 1.5rem;
    color: #fff
}

.widget-card.overview {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.widget-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-widget-label);
    color: rgba(255,255,255,.8)
}

.badge {
    padding: .3rem .85rem;
    border-radius: 999px;
    background: rgba(139,92,246,.25);
    color: #fff;
    font-size: .8rem;
    font-weight: 600
}

.badge.ghost {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.85)
}

.widget-metrics {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: .8rem
}

.metric-label {
    margin: 0;
    font-size: var(--font-insight-label);
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55)
}

.metric-value {
    margin: 0.2rem 0 0;
    font-size: var(--font-widget-value);
    font-weight: 700
}

.widget-meal {
    margin: .3rem 0
}

.meal-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0
}

.meal-info {
    margin: .2rem 0 0;
    color: rgba(255,255,255,.65);
    font-size: .9rem
}

.widget-progress {
    height: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden
}

.widget-progress-bar {
    width: 70%;
    height: 100%;
    background: var(--gradient);
    border-radius: inherit
}

.widget-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.widget-timeline li {
    display: flex;
    flex-direction: column;
    /* gap: .15rem; */
    margin: .5rem 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(255,255,255,.12);
    cursor: pointer;
    transition: border-color .3s ease, transform .2s ease;
    position: relative
}

.light-theme .widget-timeline li {
    border-left: 2px solid rgba(15,23,42,.12)
}

.widget-timeline li.done {
    border-color: var(--secondary);
    color: var(--text-secondary)
}

.widget-timeline li:hover {
    transform: translateX(4px)
}

.widget-timeline li.active {
    border-left-width: 3px;
    border-left-style: solid
}

.timeline-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text)
}

.timeline-meta {
    font-size: 1rem;
    color: var(--text-secondary)
}

.btn-outline {
    background: 0 0;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 14px 24px
}

.btn-outline:hover {
    color: var(--primary);
    border-color: var(--primary)
}

.btn-danger {
    border-color: rgba(239,71,111,.5);
    color: rgba(239,71,111,.9)
}

.btn-danger:hover {
    border-color: rgba(239,71,111,.9);
    color: #fff;
    background: rgba(239,71,111,.2)
}

@media (max-width: 1200px) {
    .hero-grid {
        gap:2rem
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 1.75rem 1.5rem
    }

    .hero-widget {
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .hero {
        min-height:auto;
        max-height: none;
        background: transparent;
        border: none;
        padding: var(--space-hero-mobile) 0.75rem;
        box-shadow: none
    }

    .hero::before {
        display: none
    }

    .hero-grid {
        flex-direction: column
    }

    .hero-widget {
        display: none
    }

    .hero-meta {
        display: none
    }

    .hero h1 .hero-h1-desktop,
    .hero-lead .hero-lead-desktop {
        display: none
    }

    .hero h1 .hero-h1-mobile,
    .hero-lead .hero-lead-mobile {
        display: block
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5vw, 1.9rem);
        line-height: var(--line-tight)
    }

    .hero-lead {
        font-size: 0.95rem;
        line-height: var(--line-relaxed)
    }

    .hero-actions {
        flex-direction: column;
        gap: .6rem
    }

    .hero-actions .btn-primary {
        width: 100%;
        justify-content: center
    }

    .hero-actions .btn-secondary-cta {
        width: 100%;
        justify-content: center;
        opacity: .85;
        font-size: .95rem
    }

    .btn {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 600px) {
    .hero {
        padding: var(--space-hero-mobile) var(--space-card)
    }

    .hero-meta {
        gap: .7rem;
        justify-content: flex-start;
        margin-left: 0
    }
}

.ai-assistant {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    transition: var(--transition)
}

.ai-toggle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(139,92,246,.4);
    border: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden
}

.ai-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,rgba(255,255,255,.3) 0,transparent 70%);
    transform: scale(0);
    transition: transform .5s ease
}

.ai-toggle:hover::before {
    transform: scale(1)
}

.ai-toggle:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(139,92,246,.6)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139,92,246,.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(139,92,246,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139,92,246,0)
    }
}

.ai-panel {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 400px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    backdrop-filter: none;
    transform-origin: bottom right
}

.ai-panel.active {
    display: flex;
    animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1)
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.8) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

.ai-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ai-title {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem
}

.ai-title i {
    color: var(--primary)
}

.ai-conversation {
    height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--glass);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border)
}

.ai-message {
    padding: 12px 18px;
    border-radius: 22px;
    max-width: 85%;
    font-size: .95rem;
    line-height: 1.5;
    animation: messageAppear .3s ease-out;
    position: relative
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.ai-user {
    align-self: flex-end;
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 8px
}

.ai-bot {
    align-self: flex-start;
    background: var(--surface);
    color: var(--text);
    border-bottom-left-radius: 8px
}

.ai-input {
    display: flex;
    gap: 12px
}

.ai-input input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition)
}

.ai-input input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139,92,246,.2)
}

.ai-input button {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition)
}

.ai-mic-button {
    background: var(--accent)!important;
    flex-shrink: 0
}

.ai-mic-button:hover {
    background: var(--accent-light)!important;
    transform: scale(1.1)
}

.ai-mic-button.listening,.ai-toggle.listening {
    background: var(--error)!important;
    animation: pulse-red 1s infinite
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(239,71,111,.7)
    }

    70% {
        box-shadow: 0 0 0 15px rgba(239,71,111,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,71,111,0)
    }
}

.ai-input button:hover {
    background: var(--primary-dark);
    transform: scale(1.05)
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-section);
    margin-bottom: var(--space-section);
    animation: fadeIn .8s ease-out;
    position: relative
}

.filter-wrapper {
    position: relative
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 10px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s cubic-bezier(.4, 0, .2, 1),background .2s ease,border-color .2s ease;
    backdrop-filter: none;
    will-change: transform;
    transform: translateZ(0)
}

.filter-btn:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateY(-2px) translateZ(0)
}

.filter-btn i {
    font-size: 1rem
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 1.5rem;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0,0,0,.3);
    backdrop-filter: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.filter-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.filter-section-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text)
}

.filter-section-title i {
    color: var(--primary)
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: .5rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.filter-checkbox {
    margin-bottom: .75rem
}

.filter-checkbox .checkbox-label {
    display: flex;
    gap: .75rem;
    cursor: pointer;
    user-select: none
}

.filter-checkbox input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0
}

.filter-checkbox .checkbox-label {
    flex-direction: column;
    align-items: flex-start
}

.filter-checkbox .checkbox-label-inline {
    flex-direction: row;
    align-items: center;
    gap: .75rem;
}

.filter-checkbox .checkbox-text {
    font-weight: 600;
    font-size: .9rem;
    display: block
}

.filter-checkbox .checkbox-desc {
    display: block;
    margin-top: .15rem;
    font-size: .8rem;
    color: var(--text-secondary);
    line-height: 1.4
}

.filter-select {
    width: 100%;
    padding: 8px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23A0A0C0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px
}

.filter-select:hover {
    border-color: var(--primary)
}

.filter-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.1)
}

/* Кастомные выпадающие списки (в стиле сайта, не выходят за границы) */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: .95rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    gap: .5rem;
}

.custom-select-trigger:hover {
    border-color: var(--primary);
}

.custom-select-trigger i {
    font-size: .75rem;
    color: var(--text-secondary);
    transition: transform .2s ease;
}

.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-select-wrapper.open {
    z-index: 9999;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,.4);
    max-height: 220px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.custom-select-wrapper.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 10px 14px;
    color: var(--text);
    font-size: .9rem;
    cursor: pointer;
    transition: background .15s ease;
    border-bottom: 1px solid rgba(255,255,255,.04);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(16,185,129,.15);
}

.custom-select-option.active {
    background: rgba(16,185,129,.2);
    color: var(--primary);
}

.custom-select-wrapper .filter-select-native {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.light-theme .custom-select-trigger {
    background: var(--surface);
}

.light-theme .custom-select-dropdown {
    background: var(--card-bg);
    box-shadow: 0 10px 40px rgba(0,0,0,.15);
}

.light-theme .custom-select-option:hover {
    background: rgba(16,185,129,.1);
}

.light-theme .custom-select-option.active {
    background: rgba(16,185,129,.15);
}

.filter-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
    opacity: 0.5;
}

.filter-actions {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border)
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
}

.filter-label i {
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.8;
}

.checkbox-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-text i {
    font-size: 0.9rem;
    color: var(--primary);
    opacity: 0.8;
}

.btn-sm {
    padding: 10px 20px;
    font-size: .9rem;
    flex: 1;
    justify-content: center
}

.light-theme .filter-dropdown {
    background: var(--card-bg);
    box-shadow: 0 10px 40px rgba(0,0,0,.15)
}

.light-theme .filter-btn {
    background: var(--card-bg)
}

.light-theme .filter-option {
    background: var(--card-bg);
    border-color: var(--border);
}

.light-theme .filter-option:hover {
    border-color: var(--border);
    background: var(--surface);
}

.light-theme .filter-option.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
}

.light-theme .filter-icon {
    background: rgba(0, 0, 0, 0.06);
}

.light-theme .filter-option.active .filter-icon {
    background: rgba(139, 92, 246, 0.15);
    color: var(--primary);
}

@media (max-width: 768px) {
    .filter-btn {
        padding:10px 16px;
        width: auto;
        height: auto;
        justify-content: center
    }

    .filter-wrapper {
        width: 100%;
        display: flex;
        justify-content: flex-start
    }

    .filter-dropdown {
        left: 0;
        right: auto;
        min-width: auto;
        width: calc(100vw - 2rem);
        max-width: 420px
    }

    .custom-select-dropdown {
        max-height: 180px;
        z-index: 9999
    }
}

@media (max-width: 480px) {
    .filter-dropdown {
        padding: 1.25rem 1rem;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
        max-height: 90vh
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.section-title {
    font-size: var(--font-section-title);
    font-weight: 800;
    line-height: var(--line-tight);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 50px;
    background: 0 0;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit
}

.view-all:hover {
    background: var(--glass);
    transform: translateX(5px)
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 2rem;
    will-change: contents;
    margin-bottom: 2rem;
    contain: layout
}

.recipe-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1),border-color .3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: none;
    transform: translateZ(0);
    cursor: pointer
}

.recipe-card:hover {
    transform: translateY(-5px) translateZ(0);
    border-color: rgb(255 255 255 / 45%)
}

.recipe-image {
    height: 220px;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.05)
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05) translateZ(0)
}

.recipe-cover-meta {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    pointer-events: none;
    z-index: 2;
}

.recipe-cover-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.recipe-cover-meta-top .recipe-cover-meta-right {
    gap: .6rem;
    flex-direction: column;
    align-items: flex-end;
}

.recipe-cover-meta-top .recipe-cover-meta-right .recipe-badge-cuisine {
    order: -1;
    align-self: flex-end;
}

.recipe-cover-meta-bottom .recipe-cover-meta-right .recipe-badge-cuisine {
    display: flex !important;
}

.recipe-cover-meta-top .recipe-cover-meta-right .recipe-score {
    order: 0;
    align-self: flex-end;
}

.recipe-cover-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}

.recipe-cover-meta-left, .recipe-cover-meta-right {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.recipe-cover-meta-bottom .recipe-cover-meta-right {
    gap: 1rem;
    justify-content: flex-end;
}

.recipe-cover-meta-bottom .recipe-cover-meta-right .recipe-badge {
    margin-bottom: 0;
    margin-top: 0;
}

.recipe-cover-meta-bottom .recipe-cover-meta-right .recipe-badge:not(:last-child) {
    margin-bottom: 1rem;
}

.recipe-cover-meta-left {
    align-items: flex-start;
}

.recipe-cover-meta-right {
    align-items: flex-end;
}

.recipe-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .95rem;
    border-radius: 999px;
    background: rgba(0,0,0,.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #fff;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    width: fit-content;
    flex-shrink: 0;
}

.recipe-pill-book {
    text-transform: none;
    letter-spacing: normal;
}

.recipe-score {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .4rem .85rem;
    border-radius: 999px;
    background: rgba(239,71,111,.5);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 4px 12px rgba(239,71,111,.2);
    width: fit-content;
    flex-shrink: 0;
}

.recipe-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    border-radius: 999px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    text-transform: none;
    letter-spacing: .02em;
    flex-shrink: 0;
    margin: 0;
    width: fit-content;
    position: relative;
}

.recipe-badge i {
    font-size: .75rem;
    opacity: .9
}

.recipe-badge-cuisine {
    background: rgba(6,214,160,.3);
    border-color: rgba(6,214,160,.4);
    box-shadow: 0 4px 12px rgba(6,214,160,.25);
}

.recipe-badge-ekadashi {
    background: rgba(245,158,11,.3);
    border-color: rgba(245,158,11,.4);
    box-shadow: 0 4px 12px rgba(245,158,11,.25)
}

@media (max-width: 768px) {
    .recipe-cover-meta {
        padding:.75rem;
        justify-content: space-between;
        align-items: flex-start
    }

    .recipe-cover-meta-left {
        flex-direction: column;
        gap: .4rem;
        align-items: flex-start
    }

    .recipe-cover-meta-right {
        flex-direction: column;
        gap: .4rem;
        align-items: flex-end;
        margin-left: 0
    }

    .recipe-badge,.recipe-pill,.recipe-score {
        font-size: .75rem;
        padding: .35rem .75rem
    }

    .recipe-badge i {
        font-size: .7rem
    }
}

.recipe-content {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem
}

.recipe-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem
}

.recipe-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.recipe-subtitle {
    margin: .4rem 0 0;
    color: var(--text-secondary);
    font-size: .95rem
}

.recipe-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: .9rem
}

.meta-item i {
    color: var(--text-secondary);
    font-size: .9rem
}

.recipe-stats {
    display: flex;
    gap: 0.6rem;
    justify-content: space-between;
    row-gap: .4rem;
    flex-wrap: wrap;
    align-items: center;
}

.recipe-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    flex: 0 0 auto;
}

.stat-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: .8
}

.stat-label i {
    font-size: 1rem;
}

.stat-value {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap
}

.recipe-card .recipe-description {
    /* color: var(--text-secondary); */
    margin: 0;
    flex: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    font-size: 0.9rem;
    overflow: hidden
}

.recipe-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

.recipe-actions .btn {
    flex-shrink: 0;
    white-space: nowrap;
    min-height: 52px
}

.action-btn {
    background: 0 0;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.2rem 0.3rem;
    border-radius: 6px;
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.action-btn:hover {
    color: var(--primary);
    background: var(--glass);
    transform: translateY(-2px)
}

@media (hover: none) and (pointer:coarse) {
    .action-btn:hover {
        transform:none;
        background: 0 0
    }
}

.favorite-btn.is-favorite {
    background: rgba(239,71,111,.16);
    color: var(--accent)
}

.favorite-btn.is-favorite i {
    color: var(--accent)
}

.plan-btn {
    color: var(--text-secondary);
}

.plan-btn:hover {
    color: var(--primary);
}

.plan-btn i {
    color: inherit;
}

.plan-btn.is-in-plan {
    background: rgba(139, 92, 246, 0.16);
    color: var(--primary);
}

.plan-btn.is-in-plan i {
    color: var(--primary);
}

.menu-btn {
    color: var(--text-secondary);
}

.menu-btn:hover {
    color: var(--secondary);
}

.menu-btn i {
    color: inherit;
}

.menu-btn.is-in-menu {
    background: rgba(6, 214, 160, 0.16);
    color: var(--secondary);
}

.menu-btn.is-in-menu i {
    color: var(--secondary);
}

.favorite-btn.is-favorite span {
    color: var(--accent)
}

.favorite-btn-corner {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,.4);
    color: #fff;
    z-index: 3;
    pointer-events: auto
}

.favorite-btn-corner:hover {
    background: rgba(0,0,0,.55);
    color: #fff
}

.favorite-btn-corner.is-favorite {
    background: rgba(239,71,111,.85);
    color: #fff
}

.favorite-btn-corner.is-favorite:hover {
    background: rgba(239,71,111,.95);
    color: #fff
}

.favorite-btn-corner i {
    font-size: 1rem
}

.delete-btn-icon {
    padding: 8px 10px
}

.delete-btn-icon span,
.delete-btn-icon .btn-text {
    display: none
}

.favorites-link.active {
    background: rgba(239,71,111,.2);
    color: var(--accent);
    border-color: transparent
}

.my-recipes-link.active {
    background: rgba(139,92,246,.2);
    color: var(--primary);
    border-color: transparent
}

.filter-section .section-header,
.week-calendar-section .section-header {
    margin-bottom: var(--space-section-sm)
}

.filter-section {
    /* background: var(--card-bg); */
    border-radius: var(--radius);
    /* padding: 2rem; */
    margin-bottom: 1rem;
    box-shadow: none;
    /* border: 1px solid var(--border); */
    backdrop-filter: none;
    animation: fadeInUp .7s ease-out
}

.filter-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700
}

.filter-options {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    padding: .5rem 0 1rem 0;
    cursor: grab;
    user-select: none;
    scroll-padding: 1rem
}

.filter-options:active {
    cursor: grabbing
}

.filter-options::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0
}

.filter-options::-webkit-scrollbar-track {
    display: none
}

.filter-options::-webkit-scrollbar-thumb {
    display: none
}

.filter-option {
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--text);
    cursor: pointer;
    user-select: none;
    -webkit-user-drag: none;
    transition: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    min-width: 126px;
    max-width: 150px;
    flex-shrink: 0;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform: translateZ(0);
    backface-visibility: hidden;
    text-align: center
}

.filter-option:hover {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.06)
}

.filter-option.active {
    background: rgba(139,92,246,.2);
    border-color: #10b9816e;
    box-shadow: none
}

.filter-icon {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: none;
    flex-shrink: 0
}

.filter-option.active .filter-icon {
    background: rgba(255,255,255,.2);
    color: #fff
}

.filter-info {
    display: flex;
    flex-direction: column;
    /* gap: .15rem; */
}

.filter-name {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-meta {
    margin: 0;
    font-size: .75rem;
    color: var(--text-secondary)
}

.recipes-content {
    position: relative
}

/* Унифицированные empty states */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 24px;
    background: var(--glass);
    border: 1px dashed var(--border);
    gap: 1rem
}

.empty-state .empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 0
}

.empty-state .empty-state-title {
    font-size: 1.35rem;
    margin: 0;
    color: var(--text)
}

.empty-state .empty-state-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 480px
}

.empty-state .empty-state-actions {
    margin-top: 0.5rem
}

.favorites-empty-state .empty-state-icon {
    background: rgba(239,71,111,.15);
    color: var(--accent)
}

.user-recipes-empty-state .empty-state-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: rgba(139,92,246,.15);
    font-size: 2.5rem;
    color: var(--primary)
}

.recipes-empty-state {
    background: transparent;
    border: none
}

.recipes-empty-state .empty-state-icon {
    width: auto;
    height: auto;
    font-size: 3rem;
    color: var(--text-secondary);
    opacity: .5
}

.light-theme .empty-state .empty-state-title {
    color: var(--text)
}

.light-theme .empty-state .empty-state-text {
    color: var(--text-secondary)
}

.meal-plan-empty-state .empty-state-icon {
    background: rgba(6,214,160,.15);
    color: var(--primary)
}

.shopping-list-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--card-bg);
    box-shadow: -5px 0 30px rgba(0,0,0,.3);
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    backdrop-filter: none
}

.shopping-list-panel.active {
    right: 0
}

.shopping-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center
}

.shopping-title {
    font-size: 1.3rem;
    font-weight: 700
}

.close-shopping {
    background: 0 0;
    border: none;
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition)
}

.close-shopping:hover {
    background: var(--glass);
    transform: rotate(90deg)
}

.shopping-content {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    scrollbar-width: none
}

.shopping-content::-webkit-scrollbar {
    display: none
}

.shopping-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition)
}

.shopping-item:hover {
    background: var(--glass);
    margin: 0 -1rem;
    padding: 14px 1rem;
    border-radius: 12px
}

.shopping-item input[type=checkbox] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary)
}

.shopping-item label {
    flex: 1;
    cursor: pointer;
    transition: var(--transition)
}

.shopping-item.checked label {
    text-decoration: line-through;
    color: var(--text-secondary)
}

.shopping-actions {
    padding: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: center
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

@media (max-width: 768px) {
    .header-actions>.my-recipes-link {
        display: none
    }

    .user-menu {
        margin-left: auto
    }

    .user-dropdown {
        right: 0
    }
}

.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
    padding: 5px 10px 2px;
    z-index: 100;
    backdrop-filter: none;
    transition: transform .3s ease-in-out;
    transform: translateY(0)
}

.mobile-nav.hidden {
    transform: translateY(100%)
}

.nav-items {
    display: flex;
    justify-content: space-around;
    gap: 0
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: .7rem;
    transition: var(--transition);
    text-decoration: none;
    padding: 10px 10px;
    border-radius: 16px
}

.nav-item.active,.nav-item:hover {
    color: var(--primary);
    background: var(--glass);
    transform: translateY(-5px)
}

.nav-item.listening {
    color: var(--error)!important;
    background: rgba(239,71,111,.2)!important;
    animation: pulse-red-mobile 1s infinite
}

@keyframes pulse-red-mobile {
    0% {
        box-shadow: 0 0 0 0 rgba(239,71,111,.7)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239,71,111,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239,71,111,0)
    }
}

.nav-item i {
    font-size: 1.1rem;
    margin-bottom: 5px
}

@media (max-width: 1200px) {
    .recipe-grid {
        grid-template-columns:repeat(auto-fill,minmax(280px,1fr))
    }

    .shopping-list-panel {
        width: 400px
    }

}

@media (max-width: 992px) {
    .header-content {
        flex-direction:row;
        gap: .9rem
    }

    .nav-container {
        width: 100%
    }

    .search-container {
        max-width: 100%
    }

    .hero p {
        /* font-size: 1rem; */
    }

    .ai-panel {
        width: 350px
    }
}

@media (max-width: 768px) {
    body,html {
        scroll-padding-top:var(--header-height,96px);
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch
    }

    .recipe-card {
        will-change: transform;
        transform: translateZ(0);
        content-visibility: auto;
        contain-intrinsic-size: auto 400px
    }

    .container {
        padding: 1rem;
    }

    .hero {
        padding: var(--space-hero-mobile) 0;
    }

    .filter-section {
        padding: 1rem 0.75rem
    }

    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem
    }

    .mobile-nav {
        display: none!important
    }

    .header-actions>.basket,.header-actions>.btn,.header-actions>.btn.btn-secondary,.header-actions>.theme-toggle {
        display: none
    }

    .header-actions>.voice-assistant-btn {
        display: flex!important
    }

    .header-actions>.favorites-link {
        display: none
    }

    .user-menu {
        margin-left: auto
    }

    .ai-panel {
        width: calc(100vw - 2rem);
        right: -1rem
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }

    .filter-section {
        padding-left: 0;
        padding-right: 0
    }

    .filter-options {
        display: flex!important;
        flex-wrap: nowrap!important;
        gap: .75rem;
        padding: .75rem 1rem;
        margin: 0;
        overflow-x: auto!important;
        overflow-y: hidden!important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .filter-options::-webkit-scrollbar {
        display: none
    }

    .filter-option {
        padding: .85rem .75rem;
        border-radius: 16px;
        min-width: 105px;
        max-width: 105px;
        flex-shrink: 0!important;
        min-height: 95px;
        display: flex!important;
        flex-direction: column!important;
        align-items: center!important;
        justify-content: center!important;
        text-align: center!important;
        gap: .6rem
    }

    .filter-icon {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        border-radius: 12px;
        background: rgba(139,92,246,.12)
    }

    .filter-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px
    }

    .filter-name {
        font-size: .875rem;
        font-weight: 600;
        line-height: 1.2
    }

    .filter-meta {
        font-size: .75rem;
        opacity: .6;
        white-space: nowrap
    }

    .shopping-list-panel {
        width: 100%;
        right: -100%
    }

    .recipe-card .recipe-actions {
        flex-wrap: wrap;
        gap: .5rem;
        justify-content: flex-start
    }

    .recipe-card .action-btn {
        min-width: 0;
        padding: 8px 12px;
        font-size: .7rem !important;
        /* flex: 1 1 auto; */
    }

    .recipe-card .action-btn span {
        white-space: nowrap
    }

    .recipe-card .action-btn i {
        font-size: .9rem;
    }

    .stat-value {
        font-size: .6rem;
    }

    .stat-label i {
        font-size: 1rem;
    }

    .ingredient-variants-selector {
        flex-direction: column;
        gap: .5rem
    }

    .variant-btn {
        width: 100%
    }

    .variant-name {
        font-size: .85rem
    }

    .variant-amount {
        font-size: .75rem
    }

    .ingredient-variants-wrapper {
        gap: 0
    }

    .variant-arrow-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
        z-index: 10!important;
        position: relative!important;
        display: flex!important;
        opacity: 1!important;
        background: none;
        /* border-radius: 8px!important; */
        border: none;
    }

    .ingredient-variants-wrapper {
        gap: .5rem!important;
        /* padding: 0 .5rem; */
    }

    .variant-arrow-left {
        left: auto!important;
        order: -1
    }

    .variant-arrow-right {
        right: auto!important;
        order: 2
    }

    .ingredient-item-with-variants .ingredient-name {
        order: 1;
        flex: 1
    }

    .ingredient-item-with-variants .ingredient-checkbox {
        order: 0
    }

    .variant-arrow-btn i {
        font-size: 1rem
    }

    .variant-arrow-btn:hover, .variant-arrow-btn:active, .variant-arrow-btn:focus {
        color: var(--text-secondary)!important;
        opacity: 0.7!important;
        transform: none!important;
        background: none!important;
        border: none!important;
        box-shadow: none!important;
        -webkit-tap-highlight-color: transparent!important;
    }

    .variant-arrow-btn:hover i, .variant-arrow-btn:active i, .variant-arrow-btn:focus i {
        transform: none!important;
    }

    .spices-controls-wrapper {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
    }

    .spice-control-item {
        flex: 1;
        min-width: 140px
    }

    .spice-control-select {
        font-size: .8rem;
        padding: .55rem 2rem .55rem .7rem
    }
}

@media (max-width: 640px) {
    .filter-section {
        padding:1.25rem;
        border-radius: 28px
    }

    .filter-title {
        font-size: 1.4rem;
        gap: .6rem
    }

    .filter-options {
        display: flex!important;
        flex-wrap: nowrap!important;
        gap: .75rem;
        padding: .5rem 0;
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow-x: auto!important;
        overflow-y: hidden!important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .filter-options::-webkit-scrollbar {
        display: none
    }

    .filter-option {
        padding: .75rem .65rem;
        border-radius: 16px;
        min-width: 100px;
        max-width: 100px;
        flex-shrink: 0!important;
        min-height: 90px;
        gap: .5rem;
        transition: none!important;
        background: #1a1a1a!important;
        /* border: 1px solid #333!important; */
        box-shadow: none!important;
        display: flex!important;
        flex-direction: column!important;
        align-items: center!important;
        justify-content: center!important;
        text-align: center!important
    }

    .filter-option.active {
        background: rgba(139,92,246,.2)!important;
        border-color: #8b5cf6!important
    }

    .filter-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #252525;
        font-size: 1.3rem;
        line-height: 1
    }

    .filter-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px
    }

    .filter-name {
        font-size: .9rem;
        font-weight: 600
    }

    .filter-meta {
        font-size: .8rem;
        opacity: .7
    }

    .filter-icon {
        width: 36px;
        height: 36px;
        font-size: .8rem;
        border-radius: 12px;
        flex-shrink: 0
    }

    .filter-info {
        flex-direction: column;
        gap: .1rem;
        align-items: flex-start;
        flex: 1
    }

    .filter-name {
        font-size: .75rem
    }

    .filter-meta {
        font-size: .65rem
    }
}

@media (max-width: 480px) {
    .filter-options {
        gap: .6rem
    }

    .filter-option {
        min-width: 95px;
        min-height: 85px
    }

    .filter-option {
        padding: 0.6rem;
        min-height: 70px;
        gap: .6rem
    }

    .filter-icon {
        width: 44px;
        height: 33px;
        font-size: 1rem;
        flex-shrink: 0
    }

    .filter-info {
        flex-direction: column;
        gap: 0;
        align-items: center;
        flex: 1
    }

    .filter-name {
        font-size: .7rem
    }

    .filter-meta {
        font-size: .7rem
    }

    .hero-actions {
        flex-direction: column;
        width: 100%
    }

    .btn {
        width: 100%;
        justify-content: center
    }

    .section-title {
        font-size: 1.75rem
    }

    .recipe-content {
        padding: 1rem;
    }

    .ai-toggle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem
    }

    .header-actions .btn-secondary {
        padding: 0
    }

    .logo-gradient {
        font-size: 1rem
    }

    .logo i {
        font-size: 20px
    }

    .logo {
        flex-direction: column;
        gap: .1rem;
        line-height: 1
    }

    .nav-container {
        gap: 0;
        justify-content: right
    }

    .search-container input {
        width: 100%;
        padding: 14px 20px 14px 50px;
        font-size: .9rem
    }

    .search-container i {
        left: 18px!important;
        z-index: 10;
        color: var(--text-secondary)!important;
        opacity: 1!important;
        display: block!important;
        visibility: visible!important
    }

    .scroll-to-top.show {
        bottom: 1.5rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.recipe-card:nth-child(5) {
    animation-delay: .5s
}

.recipe-card:nth-child(6) {
    animation-delay: .6s
}

.loading {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success);
    color: #fff;
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    z-index: 10000;
    min-width: 280px;
    max-width: 480px;
    animation: slideInRight .4s cubic-bezier(.34,1.56,.64,1);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.4;
    backdrop-filter: none
}

.notification i {
    font-size: 1.2rem;
    flex-shrink: 0;
    opacity: .95
}

.notification span {
    flex: 1;
    word-wrap: break-word;
    min-width: 0
}

.notification.error {
    background: var(--error)
}

.notification.warning {
    background: var(--warning)
}

/* Модальное окно подтверждения */
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4,7,18,.9);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
}

.confirm-modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.confirm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.92);
    width: min(380px, 92vw);
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    padding: 1.75rem 1.5rem;
}

.confirm-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1)
}

.confirm-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,158,11,.25) 0%, rgba(239,71,111,.2) 100%);
    border-radius: 16px;
    color: var(--warning);
    font-size: 1.4rem
}

.confirm-modal h3 {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 .5rem;
    color: var(--text)
}

.confirm-modal p {
    text-align: center;
    color: var(--text-secondary);
    font-size: .95rem;
    line-height: 1.45;
    margin: 0 0 1.5rem
}

.confirm-modal-actions {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap
}

.confirm-modal-actions .btn {
    padding: .75rem 1.5rem;
    min-width: 120px
}

.confirm-modal--danger .confirm-modal-icon {
    background: linear-gradient(135deg, rgba(239,71,111,.25) 0%, rgba(239,68,68,.2) 100%);
    color: var(--error)
}

.confirm-modal--danger .confirm-ok-btn {
    background: var(--error);
    border-color: var(--error)
}

.confirm-modal--danger .confirm-ok-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff
}

@media (max-width: 480px) {
    .confirm-modal {
        padding: 1.5rem 1.25rem;
        width: min(360px, 94vw)
    }

    .confirm-modal-actions {
        flex-direction: column;
        width: 100%
    }

    .confirm-modal-actions .btn {
        width: 100%;
        min-width: 0;
        padding: 0.9rem
    }

    .notification {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: min(280px, 85vw);
        max-width: min(480px, 92vw);
        top: auto;
        bottom: 1.5rem;
        padding: 18px 24px;
        animation: slideInBottom .4s cubic-bezier(.34,1.56,.64,1)
    }
}

@keyframes slideInBottom {
    from {
        transform: translate(-50%, 100%);
        opacity: 0
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1
    }

    to {
        transform: translateX(100%);
        opacity: 0
    }
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1
}

.floating-element {
    position: absolute;
    background: var(--glass);
    border-radius: 50%;
    will-change: transform;
    animation: float 20s infinite ease-in-out
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0)
    }
    25% {
        transform: translate3d(40px, -35px, 0)
    }
    50% {
        transform: translate3d(70px, 20px, 0)
    }
    75% {
        transform: translate3d(30px, 50px, 0)
    }
}

.progress-bar {
    height: 3px;
    background: var(--gradient);
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    z-index: 1001;
    transition: width .3s ease;
    opacity: .9
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    transform: scale(0);
    animation: ripple-animation .6s linear;
    pointer-events: none
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(139,92,246,.4);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 100
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible
}

.scroll-to-top:hover {
    box-shadow: 0 15px 40px rgba(139,92,246,.6)
}

.scroll-to-top:active {
    box-shadow: 0 5px 20px rgba(139,92,246,.4)
}

.user-menu {
    position: relative
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,.45);
    border: 1px solid var(--border);
    padding: .5rem 0;
    min-width: 260px;
    max-width: 320px;
    backdrop-filter: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1)
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 8px 20px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    background: 0 0;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: .95rem;
    font-weight: 400
}

.user-dropdown-item:hover {
    background: var(--glass);
    color: var(--primary)
}

.user-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--text-secondary);
    transition: var(--transition)
}

.user-dropdown-item:hover i {
    color: var(--primary)
}

/* Голос ассистента — выпадающее подменю */
.voice-select-wrapper {
    position: relative;
}

.voice-select-trigger {
    display: flex !important;
    align-items: center;
    gap: .3rem;
    width: 100%;
}

.voice-select-trigger span {
    flex: 1;
    text-align: left;
}

.voice-select-chevron {
    font-size: .65rem;
    color: var(--text-secondary);
    margin-left: auto;
    transition: transform .2s ease;
}

.voice-select-wrapper.open .voice-select-chevron {
    transform: rotate(180deg);
}

.voice-select-submenu {
    display: none;
    padding: 4px 0;
    background: rgba(0,0,0,.12);
    border-radius: 0 0 12px 12px;
}

.voice-select-wrapper.open .voice-select-submenu {
    display: block;
}

.voice-select-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    padding: 8px 20px 8px 44px;
    border: none;
    background: 0 0;
    color: var(--text);
    font-size: .9rem;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.voice-select-option:hover {
    background: var(--glass);
    color: var(--primary);
}

.voice-select-option i.fa-check {
    width: 16px;
    visibility: hidden;
    color: var(--primary);
}

.voice-select-option.active i.fa-check {
    visibility: visible;
}

.light-theme .voice-select-submenu {
    background: rgba(0,0,0,.06);
}

.user-dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0
}

.user-dropdown-divider + .user-dropdown-divider {
    margin-top: 0;
    margin-bottom: 0
}

@media (max-width: 768px) {
    .action-btn,.ai-message,.ai-panel,.btn,.filter-option,.floating-elements,.hero-side-card,.ingredients-section,.instructions-section,.notification,.recipe-card,.recipe-hero,.search-container,.shopping-item,.shopping-list-panel,.user-avatar,.user-dropdown,header {
        backdrop-filter:none!important;
        -webkit-backdrop-filter: none!important
    }

    .ingredients-section,.instructions-section {
        box-shadow: 0 2px 8px rgba(0,0,0,.1)!important;
        contain: layout!important
    }

    * {
        transition-duration: .15s!important
    }

    .recipe-card:hover {
        transform: none!important
    }

    .recipe-card:hover,.recipe-card:hover .recipe-image img {
        transform: none!important
    }

    .action-btn:hover,.btn:hover,.filter-option:hover,.social-link:hover,.user-avatar:hover {
        transform: none!important
    }

    * {
        backdrop-filter: none!important;
        -webkit-backdrop-filter: none!important
    }

    .filter-option,.hero-widget,.recipe-card,.widget-card,header {
        background: var(--card-bg)!important
    }

    *:not(.floating-elements):not(.floating-elements *):not(.shopping-list-panel):not(.shopping-list-panel *):not(.user-dropdown):not(.user-dropdown *), ::after, ::before {
        transition: none!important;
        animation: none!important
    }

    .floating-elements .floating-element {
        animation: float 20s infinite ease-in-out!important
    }

    .user-dropdown.active {
        animation: scaleIn .3s cubic-bezier(.34,1.56,.64,1)!important;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease!important
    }

    body,html {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto!important
    }

    .filter-options,.recipe-grid {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: scroll-position
    }

    .recipe-card {
        contain: layout!important
    }

    .recipe-actions {
        justify-content: center!important
    }

    .action-btn {
        padding: 10px 10px!important;
        font-size: .9rem!important
    }

    .action-btn,.ai-panel,.btn,.filter-option,.hero-side-card,.ingredients-section,.instructions-section,.recipe-card,.recipe-hero,.shopping-list-panel {
        /* box-shadow: 0 2px 8px rgba(0,0,0,.15)!important; */
    }

    .favorite-btn.is-favorite,.notification,.pulse-red,.voice-assistant-btn {
        animation: none!important
    }

    .recipe-hero::before {
        display: none
    }

    .hero::before {
        display: none
    }

    body {
        background-image: none!important;
        background: var(--bg)!important
    }

    * {
        will-change: auto!important
    }

    .favorites-grid,.recipe-grid,.user-recipes-grid {
        transform: none!important;
        will-change: auto!important
    }

    .recipe-card {
        contain: layout style paint!important;
        content-visibility: auto!important;
        contain-intrinsic-size: auto 300px!important
    }

    .recipe-image {
        isolation: auto!important;
        transform: none!important;
        contain: layout style paint!important
    }

    .favorites-grid,.recipe-grid,.user-recipes-grid {
        contain: layout style!important
    }

    img {
        image-rendering: auto!important;
        -webkit-optimize-contrast: none!important;
        will-change: auto!important;
        transform: none!important;
        transition: none!important;
        backface-visibility: visible!important;
        -webkit-backface-visibility: visible!important;
        transform-style: flat!important;
        -webkit-transform-style: flat!important;
        -webkit-transform: none!important;
        transform: none!important;
        image-rendering: auto!important
    }

    .menu-recipe-image img,.recipe-card img,.recipe-detail-image,.recipe-hero-image img,.recipe-image img,.recipe-media-frame img,.selected-recipe img {
        will-change: auto!important;
        transform: none!important;
        transition: none!important;
        backface-visibility: visible!important;
        -webkit-backface-visibility: visible!important;
        -webkit-transform: none!important;
        transform: none!important;
        translate: none!important;
        scale: 1!important;
        image-rendering: auto!important
    }

    .recipe-image img {
        transition: none!important;
        will-change: auto!important;
        transform: none!important;
        backface-visibility: visible!important;
        -webkit-backface-visibility: visible!important
    }

    iframe,video {
        transition: none!important
    }

    .recipe-card:hover .recipe-image img,.recipe-card:hover img,.recipe-image:hover img {
        transform: none!important;
        scale: 1!important
    }

    .action-btn,.ai-message,.ai-panel,.btn,.filter-option,.notification,.recipe-card,.search-container,.shopping-item,.shopping-list-panel,.user-dropdown,header {
        -webkit-overflow-scrolling: touch
    }

    header {
        padding: 1rem 1rem;
    }

    @media (max-width: 480px) {
        .search-container,header {
            backdrop-filter:none!important;
            -webkit-backdrop-filter: none!important;
            background: rgba(26,26,46,.95)!important
        }

        .light-theme .search-container,.light-theme header {
            background: rgba(255,255,255,.95)!important
        }
    }

    .user-dropdown {
        right: 0;
        min-width: 260px;
        max-width: min(320px, calc(100vw - 2rem))
    }
}

@media (max-width: 480px) {
    .user-dropdown {
        right: 0;
        min-width: 260px;
        max-width: min(320px, calc(100vw - 2rem))
    }

    .theme-toggle {
        display: none
    }

    .basket {
        display: none
    }

    :not(.shopping-list-panel):not(.shopping-list-panel *):not(.floating-elements):not(.floating-elements *) {
        animation-duration: 0s!important;
        animation-delay: -1ms!important;
        transition-duration: 0s!important;
        transition-delay: -1ms!important;
    }

    .recipe-card:hover {
        transform: none
    }

    .shopping-list-panel {
        transition: var(--transition)!important;
        animation-duration: unset!important;
        animation-delay: unset!important
    }

    .action-btn,.ai-message,.ai-panel,.btn,.filter-option,.notification,.recipe-card,.search-container,.shopping-item,.shopping-list-panel,.user-dropdown,header {
        backdrop-filter: none!important;
        -webkit-backdrop-filter: none!important
    }

    body {
        background-image: radial-gradient(at 47% 33%,rgba(139,92,246,.08) 0,transparent 59%)
    }
}

.smooth-scroll {
    scroll-behavior: smooth
}

.search-highlight {
    animation: searchPulse 2s ease-in-out
}

@keyframes searchPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139,92,246,.7)
    }

    50% {
        box-shadow: 0 0 0 20px rgba(139,92,246,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(139,92,246,0)
    }
}

.recipes-section {
    scroll-margin-top: 100px
}

.search-container {
    position: relative;
    max-width: 500px;
    width: 100%
}

.search-container input {
    width: 100%;
    padding: 14px 45px 14px 50px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: none
}

.search-container input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    background: var(--text-secondary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    cursor: pointer;
    transition: var(--transition)
}

.search-container input::-webkit-search-cancel-button:hover {
    background: var(--accent);
    transform: scale(1.1)
}

.search-container input[type=search] {
    padding-right: 9px
}

@media (max-width: 480px) {
    .search-container input {
        padding:14px 40px 14px 50px;
        font-size: .9rem
    }

    .search-container i {
        left: 18px!important;
        z-index: 10;
        color: var(--text-secondary)!important;
        opacity: 1!important;
        display: block!important;
        visibility: visible!important
    }

    .search-container input::-webkit-search-cancel-button {
        height: 14px;
        width: 14px
    }
}

.watch_all {
    display: flex;
    justify-content: right
}

.recipe-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden
}

.similar-recipes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
    display: block;
    visibility: visible;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--text);
    text-decoration: none;
    padding: .75rem 1.5rem;
    border-radius: 50px;
    background: var(--glass);
    backdrop-filter: none;
    border: 1px solid var(--border);
    transition: var(--transition);
    margin-bottom: 2rem;
    font-weight: 500
}

.back-button:hover {
    background: var(--surface);
    transform: translateX(-5px)
}

.recipe-hero {
    display: grid;
    grid-template-columns: minmax(320px,0.75fr) minmax(0,1.25fr);
    gap: 2rem;
    background: var(--glass);
    padding: 2rem;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.recipe-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0;
    pointer-events: none
}

.recipe-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* gap: 1.54rem; */
    position: relative;
    z-index: 1;
    order: 1;
    min-width: 0;
    align-self: stretch;
}

/* ÃƒÂÃ‚ÂÃƒÂÃ‚Â° ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã…Â½ ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â */
@media (min-width: 769px) {
    .recipe-hero {
        align-items: end;
    }
    
    .recipe-hero-content {
        justify-content: space-between;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* ÃƒÂÃ…Â¾ÃƒÂÃ‚Â³Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â·ÃƒÂÃ‚Â°ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°/ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â */
    .recipe-hero-content .hero-label,
    .recipe-hero-content h1,
    .recipe-hero-content .hero-lead {
        max-height: 8rem;
        overflow: hidden;
    }
    
    .recipe-hero-content h1 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 1.2;
    }
    
    .recipe-hero-content .hero-lead {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        line-height: 1.65;
    }
    
    .recipe-hero-media {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .recipe-media-frame {
        flex: 1;
        min-height: 0;
    }
    
    .recipe-meta-insights {
        margin-top: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    /* ÃƒÂÃ¢â‚¬â„¢Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã¢â‚¬Â ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã†â€™ Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â³ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¸ - ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹ ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¸ */
    .recipe-hero-content .hero-actions {
        display: flex;
        align-items: center;
        margin-top: 1rem;
        flex-shrink: 0;
        justify-content: flex-start;
    }
    
    .recipe-hero-media {
        justify-content: space-between;
    }
    
    .recipe-hero-media .recipe-tags {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-top: auto;
        margin-bottom: 0;
    }
}


.recipe-hero-content h1 {
    font-size: 2.4rem;
    font-weight: 900;
    margin: 0;
    margin-bottom: 0.5rem;
    background: var(--text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.15;
    word-break: break-word;
    overflow-wrap: anywhere;
    letter-spacing: -0.02em;
}

.recipe-hero-content .hero-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 90%;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem
}

.recipe-tags.chip-row {
    display: flex
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--primary);
    transition: var(--transition)
}

.recipe-hero-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    min-width: 0;
    order: 2;
    align-self: start;
}

.recipe-hero-media .recipe-tags {
    margin-top: .5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.recipe-hero-media .recipe-tags .chip-badge {
    font-size: .75rem;
    padding: .35rem .7rem
}

.recipe-tags-mobile {
    display: none
}

.recipe-hero-media.inline-mobile {
    width: 100%
}

.recipe-media-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    max-height: 544px;
    aspect-ratio: 4/3;
    background: var(--card-bg);
    width: 100%;
}

@media (min-width: 769px) {
    .recipe-media-frame {
        max-height: 21.3rem;
        height: 100%;
        aspect-ratio: auto;
    }
}

.recipe-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.recipe-media-overlay {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none
}

.recipe-media-card {
    align-self: flex-start;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    background: rgba(0,0,0,.75);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: none
}

.media-label {
    margin: 0;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75)
}

.media-value {
    margin: .3rem 0 0;
    font-size: 1.2rem;
    font-weight: 700
}

.recipe-media-caption {
    font-size: .9rem;
    color: var(--text-secondary)
}

.recipe-hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1
}

.recipe-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.recipe-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 2rem
}

.recipe-meta-grid .meta-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition)
}

.recipe-meta-grid .meta-item:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateY(-2px)
}

.recipe-meta-grid .meta-item i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 32px;
    text-align: center;
    flex-shrink: 0
}

.meta-label {
    display: block;
    font-size: .85rem;
    color: var(--text-secondary)
}

.meta-value {
    display: block;
    font-weight: 600;
    color: var(--text);
    font-size: 1.2rem
}

.recipe-hero-content .recipe-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 6.5rem
}

.recipe-hero-content .hero-actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-wrap: wrap;
    min-width: 240px;
    margin-top: 1rem;
}

.recipe-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: left
}

.recipe-actions-secondary {
    margin-top: .75rem;
    display: flex;
    justify-content: center
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box
}

.ingredients-section,.instructions-section {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    width: 100%;
    box-sizing: border-box
}

.ingredients-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.1rem;
}

.icon-btn {
    background: 0 0;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s ease,color .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation
}

.icon-btn:hover {
    background: var(--glass);
    color: var(--primary)
}

.icon-btn i {
    font-size: 1.1rem
}

.icon-btn-success {
    color: var(--success);
    background: rgba(16,185,129,.1)
}

.icon-btn-success:hover {
    background: rgba(16,185,129,.2);
    color: var(--success)
}

.icon-btn-danger {
    color: var(--error);
    background: rgba(239,68,68,.1)
}

.icon-btn-danger:hover {
    background: rgba(239,68,68,.2);
    color: var(--error)
}

@media (max-width: 768px) {
    .icon-btn {
        width:40px;
        height: 40px;
        padding: 10px
    }

    .icon-btn i {
        font-size: 1.2rem
    }

    .icon-btn-success {
        background: rgba(16,185,129,.15)
    }

    .icon-btn-danger {
        background: rgba(239,68,68,.15)
    }

    .icon-btn-danger:hover,.icon-btn-success:hover,.icon-btn:hover {
        transform: none
    }
}

.ingredients-section h2,.instructions-section h2 {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.4rem;
    /* margin-bottom: 1.5rem; */
}

.servings-card {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border-radius: 8px;
    background: 0 0;
    color: var(--text-secondary);
    font-size: .875rem
}

.servings-icon {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: .875rem
}

.servings-info {
    display: inline-flex;
    align-items: center;
    gap: .25rem
}

.servings-label {
    font-size: .875rem;
    color: var(--text-secondary);
    font-weight: 400
}

.servings-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text)
}

.ingredients-section h2 i {
    color: var(--primary)
}

.instructions-section h2 i {
    color: var(--secondary)
}

.ingredients-list {
    /* margin-bottom: 1rem; */
}

.ingredients-actions {
    display: flex;
    justify-content: center;
    margin-top: .75rem
}

.ingredients-group {
    margin-top: 1rem;
}

.ingredients-group:first-child {
    margin-top: 0
}

.ingredients-subtitle {
    font-size: .8rem;
    letter-spacing: .08em;
    /* text-transform: uppercase; */
    color: var(--text-secondary);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .35rem
}

.ingredients-subtitle i {
    color: var(--accent);
    font-size: .9rem
}

.spices-subtitle {
    display: flex;
    align-items: center;
    margin-bottom: .75rem
}

.spices-subtitle i {
    color: var(--accent);
    font-size: 1rem
}

.spices-title-text {
    color: var(--text);
    font-weight: 600;
    font-size: 1rem
}

.spices-controls-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    flex-direction: row
}

.spice-control-item {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    min-width: 140px
}

.spice-control-label {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em
}

.spice-control-label i {
    font-size: .7rem;
    color: var(--accent)
}

.spice-control-select {
    width: 100%;
    padding: .6rem 2rem .6rem .75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text);
    font-size: .85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all .3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B5CF6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 10px
}

.spice-control-select:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(139,92,246,.1)
}

.spice-control-select:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.1)
}

.spice-control-select option {
    background: var(--card-bg);
    color: var(--text);
    padding: .5rem
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition)
}

.ingredient-item:last-child {
    border-bottom: none
}

.ingredient-item-with-variants {
    padding: 1rem 0;
    position: relative
}

.ingredient-variants-wrapper {
    display: flex;
    align-items: center;
    gap: .5rem;
    width: 100%;
    position: relative
}

.variant-arrow-btn {
    display: flex!important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border: none;
    border-radius: 0;
    background: 0 0;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    font-size: 1rem;
    position: absolute;
    padding: 0;
    flex-shrink: 0;
    opacity: .6;
    z-index: 2
}

.variant-arrow-left {
    left: -2rem;
}

.variant-arrow-right {
    right: -2rem;
}

.variant-arrow-btn:hover {
    color: var(--text-secondary);
    opacity: 1;
    transform: none
}

.variant-arrow-btn:active {
    transform: none
}

.variant-arrow-btn:focus {
    outline: 0
}

.variant-arrow-btn i {
    display: block;
    font-size: 1rem;
    transition: none
}

.variant-arrow-btn:hover i {
    transform: none
}

.ingredient-item-with-variants .ingredient-name {
    flex: 1;
    margin: 0;
    padding: 0;
    border: none;
    min-width: 0;
}

.ingredient-item-with-variants .ingredient-checkbox {
    flex-shrink: 0
}

.variant-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    padding: .75rem 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    background: 0 0;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden
}

.variant-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0
}

.variant-btn.active::before,.variant-btn:hover::before {
    opacity: .1
}

.variant-btn.active {
    border-color: var(--primary);
    background: var(--glass);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,.1)
}

.variant-btn.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: .1;
    border-radius: 8px;
    z-index: 0
}

.variant-btn:hover:not(.active) {
    border-color: var(--border);
    background: var(--glass);
    color: var(--text)
}

.variant-name {
    font-size: .9rem;
    font-weight: 600;
    z-index: 1;
    position: relative;
    text-align: center
}

.variant-amount {
    font-size: .8rem;
    opacity: .8;
    z-index: 1;
    position: relative;
    text-align: center
}

.variant-btn.active .variant-name {
    color: var(--primary);
    font-weight: 700
}

.variant-btn.active .variant-amount {
    opacity: 1;
    color: var(--text)
}

.ingredient-item:hover {
    background: var(--glass);
}

.ingredient-checkbox {
    width: 20px;
    height: 20px;
    /* accent-color: var(--primary); */
    cursor: pointer;
}

.ingredient-name {
    flex: 1;
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 0;
}

.ingredient-text {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}

.ingredient-amount {
    color: var(--text-secondary);
    font-size: .9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.instruction-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border)
}

.instruction-step:last-child {
    border-bottom: none
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0
}

.step-content {
    flex: 1
}

.step-content p {
    color: var(--text);
    line-height: 1.6;
    margin: 0
}

.similar-recipes h2 {
    font-size: 1.7rem;
    margin: 1.8rem 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.similar-recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 2rem;
    margin-bottom: 5rem
}

@media (min-width: 1101px) {
    .recipe-hero-content {
        order: 2;
    }

    .recipe-hero-media {
        order: 1;
    }

    .recipe-hero-content .hero-label {
        /* margin-bottom: 0.5rem; */
        font-size: 0.8rem;
        font-weight: 500;
    }

    .recipe-hero-content .hero-chip {
        padding: 0.4rem 0.95rem;
        font-size: 0.7rem;
    }

    .recipe-hero-content .hero-actions {
        align-items: center;
        gap: 0.875rem;
    }

    .recipe-hero-content .hero-actions .btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        background: var(--glass);
        border: 1px solid var(--border);
        color: var(--text);
        transition: all 0.2s ease;
    }

    .recipe-hero-content .hero-actions .btn.btn-outline {
        background: var(--glass);
        border: 1px solid var(--border);
        color: var(--text);
    }

    .recipe-hero-content .hero-actions .btn.btn-danger {
        background: var(--glass);
        border: 1px solid rgba(239,71,111,.5);
        color: rgba(239,71,111,.9);
    }

    .recipe-hero-content .hero-actions .btn:hover {
        background: var(--surface);
        transform: translateY(-2px);
    }

    .recipe-hero-content .hero-actions .btn.btn-danger:hover {
        background: rgba(239,71,111,.2);
        border-color: rgba(239,71,111,.9);
    }

    .recipe-hero-content .hero-actions .btn .btn-text {
        display: none;
    }

    .recipe-hero-content .hero-actions .btn i {
        margin: 0;
        font-size: 1.1rem;
    }

    .recipe-media-caption {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 0.5rem;
        color: var(--text-secondary);
    }

    .recipe-hero-media .recipe-tags {
        margin-top: 0.75rem;
        gap: 0.5rem;
    }

    .recipe-meta-insights {
        margin-top: 1rem;
        margin-bottom: 1rem;
        grid-template-columns: repeat(6, 1fr);
        gap: 0.65rem;
    }

    .recipe-meta-insights .insight-card {
        padding: 0.75rem 0.6rem;
        gap: 0.35rem;
    }

    .recipe-meta-insights .insight-label {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }

    .recipe-meta-insights .insight-value {
        font-size: 1rem;
    }

    .recipe-meta-insights .insight-hint {
        font-size: 0.6rem;
    }

    .recipe-hero-content h1 {
        margin-top: 0.25rem;
    }
}

@media (max-width: 1100px) {
    .recipe-hero {
        grid-template-columns:1fr
    }

    .recipe-hero-media {
        order: -1
    }

    .recipe-hero-content {
        order: 1
    }
}

@media (max-width: 968px) {
    .recipe-hero {
        gap:2rem;
        padding: 2rem
    }

    .recipe-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        overflow-x: hidden
    }

    .recipe-hero-content h1 {
        font-size: 2rem
    }

    .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .85rem
    }

    /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°: ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ 3 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â² ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ */
    .recipe-meta-insights {
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: .75rem
    }

    .insight-card {
        padding: 1rem .9rem;
        min-height: 95px
    }

    .insight-value {
        font-size: 1.4rem
    }

    .insight-label {
        font-size: .7rem
    }

    .meta-meta-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .recipe-detail-container {
        padding:1rem;
        max-width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
        width: 100%;
        box-sizing: border-box
    }

    .recipe-hero {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.8rem;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%
    }

    .recipe-hero-content {
        order: 1
    }

    .recipe-hero-media {
        order: 0
    }

    .ingredients-section,.instructions-section {
        padding: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
        width: 100%;
        overflow: visible;
    }

    .ingredients-section .ingredients-list {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ingredients-section .ingredient-item-with-variants {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .ingredients-list {
        overflow: visible
    }

    .recipe-content-grid {
        max-width: 100%;
        overflow-x: visible;
        overflow-y: visible;
        width: 100%
    }

    .ingredients-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding: 0 !important;
        margin: 0 !important;
    }

    .recipe-hero-content {
        gap: 0.2rem;
    }

    .recipe-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.15
    }

    .recipe-hero-content .hero-label {
        font-size: .85rem
    }

    .recipe-hero-content .hero-lead {
        font-size: .9rem;
        line-height: 1.5;
    }

    .recipe-hero-content .hero-actions {
        width: 100%;
        flex-direction: row;
        gap: .75rem;
        justify-content: center
    }

    .recipe-hero-content .hero-actions .btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        background: var(--glass);
        border: 1px solid var(--border);
        color: var(--text)
    }

    .recipe-hero-content .hero-actions .btn.btn-outline {
        background: var(--glass);
        border: 1px solid var(--border);
        color: var(--text)
    }

    .recipe-hero-content .hero-actions .btn.btn-danger {
        background: var(--glass);
        border: 1px solid rgba(239,71,111,.5);
        color: rgba(239,71,111,.9)
    }

    .recipe-hero-content .hero-actions .btn:hover {
        background: var(--surface);
        transform: translateY(-2px)
    }

    .recipe-hero-content .hero-actions .btn.btn-danger:hover {
        background: rgba(239,71,111,.2);
        border-color: rgba(239,71,111,.9)
    }

    .recipe-hero-content .hero-actions .btn .btn-text {
        display: none
    }

    .recipe-hero-content .hero-actions .btn i {
        margin: 0;
        font-size: 1.1rem
    }

    .recipe-hero-media .recipe-tags {
        display: none
    }

    .recipe-tags-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: .3rem;
        margin-top: .5rem
    }

    .recipe-tags-mobile .chip-badge {
        font-size: .6rem;
        padding: .2rem .4rem
    }

    .recipe-meta-insights {
        /* 3 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â² ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ */
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: .75rem
    }

    .recipe-meta-insights .insight-card {
        padding: .8rem .6rem;
        min-height: auto
    }

    .recipe-meta-insights .insight-label {
        font-size: .65rem
    }

    .recipe-meta-insights .insight-value {
        font-size: 1rem
    }

    .recipe-meta-insights .insight-hint {
        font-size: .6rem
    }

    .recipe-hero-media .recipe-tags {
        grid-template-columns: repeat(3,1fr);
        gap: .3rem
    }

    .recipe-hero-media .recipe-tags .chip-badge {
        font-size: .6rem;
        padding: .2rem .4rem
    }

    .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .85rem
    }

    /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ 3 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â² ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ */
    .recipe-meta-insights {
        grid-template-columns: repeat(3,minmax(0,1fr))
    }

    .insight-card {
        padding: 1.1rem 1rem;
        min-height: 100px
    }

    .insight-value {
        font-size: 1.5rem
    }

    .insight-label {
        font-size: .7rem
    }

    .similar-recipes-container {
        padding: 1.5rem 1rem
    }

    .recipe-actions {
        flex-direction: row;
        gap: .75rem
    }

    .recipe-actions .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px
    }

    .ingredients-section,.instructions-section {
        padding: 1.5rem
    }

    .instruction-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .step-number {
        align-self: center
    }

    .recipe-media-caption {
        display: none
    }
}

@media (max-width: 480px) {
    .recipe-hero {
        padding: 1.2rem;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }

    .recipe-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-top: 0.5rem;
    }

    .recipe-hero-content .hero-label {
        font-size: .8rem
    }

    .recipe-hero-content .hero-lead {
        line-height: 1.3;
        max-width: none;
    }

    .recipe-hero-content .hero-actions {
        gap: .5rem;
    }

    .recipe-hero-content .hero-actions .btn {
        padding: .9rem 1.2rem
    }

    .recipe-hero-content .recipe-tags.chip-row {
        flex-direction: column;
        gap: .4rem
    }

    .recipe-hero-content .recipe-tags .chip-badge {
        width: 100%;
        justify-content: center
    }

    .recipe-tags-mobile {
        gap: .4rem;
    }

    .recipe-tags-mobile .chip-badge {
        font-size: .7rem;
        padding: .1rem .4rem;
    }

    .recipe-meta-insights {
        /* 3 ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â² ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ 480px */
        grid-template-columns: repeat(3,minmax(0,1fr));
        gap: .5rem
    }

    .recipe-meta-insights .insight-card {
        padding: .6rem 0rem;
        min-height: auto;
        text-align: center;
        gap: 0.3rem;
    }

    .recipe-meta-insights .insight-label {
        font-size: .5rem;
        justify-content: center;
    }

    .recipe-meta-insights .insight-value {
        font-size: 0.9rem;
    }

    .recipe-meta-insights .insight-hint {
        font-size: .55rem
    }

    .recipe-hero-media .recipe-tags {
        grid-template-columns: repeat(3,1fr);
        gap: .25rem
    }

    .recipe-hero-media .recipe-tags .chip-badge {
        font-size: .55rem;
        padding: .15rem .35rem
    }

    .similar-recipes-container {
        padding: 0.5rem 1rem;
    }

    .similar-recipes-grid {
        grid-template-columns: 1fr
    }

    .meta-label {
        font-size: .8rem
    }

    .meta-value {
        font-size: .9rem
    }

    .ingredients-section h2,.instructions-section h2 {
        font-size: 1rem;
        line-height: var(--line-tight);
        margin-bottom: 0
    }

    .insight-value {
        font-size: 1.3rem
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.recipe-content-grid,.recipe-hero,.similar-recipes {
    animation: fadeInUp .6s ease-out
}

.recipe-content-grid {
    animation-delay: .2s
}

.similar-recipes {
    animation-delay: .4s
}

.recipe-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius)
}

.ingredients-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border)
}

.ingredient-name {
    font-weight: 500
}

.ingredient-amount {
    color: var(--primary);
    font-weight: 600
}

.instructions-list li {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border)
}

.step-number {
    background: var(--gradient);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0
}

.step-text {
    flex: 1;
    line-height: 1.6
}

.tips-list {
    background: var(--glass);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary)
}

.tips-list li {
    margin-bottom: 10px;
    padding-left: 10px
}

.ingredient-item label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer
}

.ingredient-text {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 400;
}

.ingredient-amount {
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 1rem
}

.tips-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color)
}

.tips-section h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.tips-section h2 i {
    color: #f59e0b
}

.tip-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border-left: 4px solid #f59e0b
}

.tip-number {
    background: #f59e0b;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    flex-shrink: 0
}

.tip-content {
    flex: 1
}

.tip-content p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.5
}

.favorites-page {
    /* padding-top: 2rem; */
    padding-bottom: .5rem
}

.favorites-hero {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,0.75fr);
    gap: 2.5rem;
    background: var(--glass);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem
}

.favorites-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0;
    pointer-events: none
}

.favorites-hero-content,
.favorites-hero .hero-side-card {
    position: relative;
    z-index: 1
}

.favorites-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.favorites-hero-content h1 {
    line-height: 1.3;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1.1rem;
    color: var(--text)
}

.favorites-hero .hero-actions {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 240px
}

.section-subtitle {
    font-size: var(--font-section-subtitle);
    line-height: var(--line-normal);
    color: var(--text-secondary);
    margin-top: 0.35rem
}

.favorites-widget .item-pill {
    background: rgba(239,71,111,.18);
    color: var(--accent)
}

.favorites-hero-content .insight-grid,
.my-recipes-hero-content .insight-grid,
.create-menu-hero-content .insight-grid,
.meal-plan-hero-content .insight-grid {
    grid-template-columns: repeat(2,1fr)
}

.favorites-grid {
    margin-top: 2rem
}

@media (max-width: 1100px) {
    .favorites-hero {
        grid-template-columns:1fr
    }
}

@media (max-width: 768px) {
    .favorites-page {
        /* padding-top:2rem; */
        padding-bottom: 2rem
    }

    .favorites-hero {
        grid-template-columns: 1fr;
        padding: 1rem 0;
        gap: 1.5rem;
        margin-bottom: 4rem;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .favorites-hero::before {
        display: none
    }

    .favorites-hero .hero-side-card {
        display: none
    }

    .favorites-hero-content {
        gap: 1.2rem
    }

    .favorites-hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.15
    }

    .favorites-hero-content .hero-lead {
        font-size: var(--font-hero-lead);
        line-height: var(--line-relaxed)
    }

    .favorites-hero-content .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .75rem
    }

    .favorites-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm);
        min-height: auto
    }

    .favorites-hero-content .insight-label {
        font-size: var(--font-insight-label)
    }

    .favorites-hero-content .insight-value {
        font-size: var(--font-insight-value)
    }

    .favorites-hero-content .insight-hint {
        font-size: var(--font-insight-hint)
    }

    .favorites-hero-content .chip-row {
        gap: .5rem;
        margin-top: .5rem
    }

    .favorites-hero-content .chip-badge {
        font-size: .75rem;
        padding: .4rem .7rem
    }

    .favorites-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: .75rem;
        margin-top: .5rem
    }

    .favorites-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.2rem
    }
}

.my-recipes-page {
    /* padding-top: 2rem; */
    padding-bottom: .5rem
}

.my-recipes-hero {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,0.75fr);
    gap: 2.5rem;
    background: var(--glass);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem
}

.my-recipes-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0;
    pointer-events: none
}

.my-recipes-hero-content {
    position: relative;
    z-index: 1
}

/* Виджет прилипает — кнопки «Добавить рецепт» и «Перейти к моим рецептам» прокручиваются вместе с контентом */
.my-recipes-hero .hero-side-card {
    position: sticky;
    top: calc(var(--header-height, 96px) + 1rem);
    align-self: start;
    z-index: 1
}

.my-recipes-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.my-recipes-hero-content h1 {
    line-height: 1.3;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1.1rem;
    color: var(--text)
}

.my-recipes-hero .hero-actions {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 240px
}

.my-recipes-widget .item-pill {
    background: rgba(6,214,160,.15);
    color: var(--secondary)
}

@media (max-width: 1100px) {
    .my-recipes-hero {
        grid-template-columns:1fr
    }

    .meal-plan-hero {
        grid-template-columns: 1fr
    }

    .create-menu-hero {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .my-recipes-hero {
        grid-template-columns: 1fr;
        padding: 1rem 0;
        gap: 1.5rem;
        margin-bottom: 4rem;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .my-recipes-hero::before {
        display: none
    }

    .my-recipes-hero .hero-side-card {
        display: none
    }

    .my-recipes-hero-content {
        gap: 1.2rem
    }

    .my-recipes-hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.15
    }

    .my-recipes-hero-content .hero-lead {
        font-size: var(--font-hero-lead);
        line-height: var(--line-relaxed)
    }

    .my-recipes-hero-content .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .75rem
    }

    .my-recipes-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm);
        min-height: auto
    }

    .my-recipes-hero-content .insight-label {
        font-size: var(--font-insight-label)
    }

    .my-recipes-hero-content .insight-value {
        font-size: var(--font-insight-value)
    }

    .my-recipes-hero-content .insight-hint {
        font-size: var(--font-insight-hint)
    }

    .my-recipes-hero-content .chip-row {
        gap: .5rem;
        margin-top: .5rem
    }

    .my-recipes-hero-content .chip-badge {
        font-size: .75rem;
        padding: .4rem .7rem
    }

    .my-recipes-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: .75rem;
        margin-top: .5rem
    }

    .my-recipes-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.2rem
    }
}

.user-recipes-empty-state {
    display: none
}

.user-recipe-card .recipe-actions {
    gap: .5rem;
    flex-wrap: wrap
}

.recipe-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.9);
    width: min(900px,90vw);
    max-height: 90vh;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-y: auto;
    padding: 2.5rem;
    scrollbar-width: none
}

.recipe-modal::-webkit-scrollbar {
    display: none
}

.recipe-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1)
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4,7,18,.9);
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible
}

.recipe-modal h3 {
    margin-bottom: .5rem
}

.close-modal {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: 0 0;
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition)
}

.close-modal:hover {
    color: var(--primary)
}

.modal-subtitle {
    color: var(--text-secondary);
    /* margin-bottom: 1.5rem; */
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1rem;
    margin-bottom: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-group label {
    font-size: .9rem;
    color: var(--text-secondary)
}

.form-group input,.form-group select,.form-group textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: .85rem 1rem;
    font-size: .95rem;
    transition: var(--transition);
    font-family: inherit
}

.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2)
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem
}

/* Модальное окно сохранения меню */
.save-menu-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.92);
    width: min(420px, 92vw);
    background: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    overflow: hidden;
}

.save-menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1);
}

.save-menu-modal-content {
    position: relative;
    padding: 2rem 2rem 1.75rem;
}

.save-menu-modal .close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: .4rem;
    border-radius: 10px;
    transition: color .2s, background .2s;
}

.save-menu-modal .close-modal:hover {
    color: var(--primary);
    background: var(--surface);
}

.save-menu-modal-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(139,92,246,.6) 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 1.5rem;
}

.save-menu-modal h3 {
    text-align: center;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 .5rem;
    color: var(--text);
}

.save-menu-modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: .95rem;
    margin: 0 0 1.5rem;
    line-height: 1.45;
}

.save-menu-modal .form-group {
    margin-bottom: 1.5rem;
}

.save-menu-modal .form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
    transition: border-color .2s, box-shadow .2s;
}

.save-menu-modal .form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2);
}

.save-menu-modal .form-group input::placeholder {
    color: var(--text-secondary);
    opacity: .7;
}

.save-menu-modal-actions {
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
    margin-top: 0;
}

.save-menu-modal-actions .btn {
    padding: .75rem 1.25rem;
}

.file-input-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.file-input-wrapper input[type=file] {
    display: none
}

.file-input-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.2rem;
    border-radius: 12px;
    background: var(--glass);
    border: 1px dashed var(--border);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition)
}

.file-input-label:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.file-input-name {
    font-size: .9rem;
    color: var(--text-secondary)
}

@media (max-width: 768px) {
    .my-recipes-page {
        /* padding-top:2rem; */
        padding-bottom: .5rem
    }

    .recipe-modal {
        padding: 1.5rem;
        border-radius: 24px
    }

    .modal-actions {
        flex-direction: column
    }
}

.footer {
    background: rgba(26,26,46,.95);
    backdrop-filter: none;
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0
}

.light-theme .footer {
    background: linear-gradient(180deg,rgba(255,255,255,.95),rgba(244,248,255,.9));
    border-top: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 -20px 35px rgba(15,23,42,.08)
}

.light-theme .footer::before {
    background: linear-gradient(90deg,rgba(139,92,246,.35),rgba(14,165,233,.35));
    opacity: 1
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: .5
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 1.5rem
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--text)
}

.light-theme .footer-logo .logo-gradient,.light-theme .footer-logo i {
    /* color: var(--primary); */
    /* background: 0 0; */
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: .95rem;
    max-width: 300px;
    margin-bottom: 30px;
}

.light-theme .footer-description {
    color: rgba(15,23,42,.7)
}

.footer-social {
    display: none !important;
    gap: 1rem;
    margin-top: .5rem
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: none
}

.social-link:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(139,92,246,.4)
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.light-theme .footer-title {
    /* background: 0 0; */
    /* color: var(--primary); */
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: .95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative
}

.light-theme .footer-links li a {
    color: rgba(15,23,42,.75)
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width .3s ease
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(5px)
}

.footer-links li a:hover::after {
    width: 100%
}

.footer-bottom {
    padding: 2rem 1.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: .9rem;
    margin: 0
}

.light-theme .footer-bottom {
    border-top: 1px solid rgba(15,23,42,.08)
}

.footer-made {
    display: flex;
    align-items: center;
    gap: .5rem
}

.footer-made i {
    animation: heartbeat 1.5s ease-in-out infinite
}

@keyframes heartbeat {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .footer-section:first-child {
        grid-column: 1/-1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding:3rem 1rem 2rem;
        margin-top: 2rem;
        border-top: none
    }

    .footer::before {
        display: none
    }

    .footer-bottom {
        border-top: none;
        flex-direction: column;
        text-align: center;
        gap: .5rem;
        padding-top: 1.5rem
    }

    .footer-content {
        padding: 0 0.5rem;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem
    }

    .footer-section:first-child {
        /* grid-column: 1/-1; */
        /* align-items: center; */
        /* text-align: center; */
    }

    .footer-description {
        /* margin-left: auto; */
        /* margin-right: auto; */
    }

    .footer-section:nth-child(2),.footer-section:nth-child(3),.footer-section:nth-child(4) {
        grid-column: span 1
    }

    .footer-title {
        font-size: .85rem;
        margin-bottom: .4rem
    }

    .footer-links {
        gap: .5rem
    }

    .filter-title {
        font-size: 1.35rem
    }

    .recipes-content {
        position: relative;
        min-height: 200px
    }

    .recipes-empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 1.5rem;
        text-align: center
    }

    .recipes-empty-state .empty-state-icon {
        font-size: 3rem;
        color: var(--text-secondary);
        opacity: .5;
        margin-bottom: 1rem
    }

    .recipes-empty-state .empty-state-title {
        font-size: 1.25rem;
        margin: 0 0 .5rem;
        color: var(--text)
    }

    .recipes-empty-state .empty-state-text {
        font-size: .95rem;
        color: var(--text-secondary);
        margin: 0
    }

    .progress-bar {
        height: 2px;
        opacity: .7
    }

    .search-container {
        max-width: 220px
    }

    .footer-links li a {
        font-size: .75rem
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0.5rem;
    }

    .footer-content {
        padding: 0 1.5rem;
        grid-template-columns: 1fr 1fr 1fr;
        gap: .75rem
    }

    .footer-title {
        font-size: .9rem;
        margin-bottom: .3rem
    }

    .filter-dropdown {
        padding: 1.2rem;
    }

    .footer-links {
        gap: .4rem
    }

    .similar-recipes h2 {
        font-size: 1.6rem;
        color: var(--text);
        background: none;
    }

    .ingredients-section-header {
        margin-bottom: 0;
    }

    .footer-links li a {
        font-size: .7rem
    }

    .footer-bottom {
        padding: 1rem .5rem .5rem
    }

    .my-recipes-hero-content h1 {
        line-height: 1.15;
        font-size: 1.7rem;
        font-weight: 800
    }

    .footer-logo {
        font-size: 2.3rem;
        margin-bottom: 1rem;
    }

    .footer-logo .logo-gradient {
        font-size: 2.3rem
    }

    .footer-logo i {
        font-size: 2rem
    }

    .footer-description {
        font-size: .9rem
    }

    .hero-side-card {
        padding: 1.2rem
    }

    .item-title {
        max-width: 8rem
    }

    .user-recipes-empty-state {
        margin-bottom: 2rem
    }

    .favorites-hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.15
    }

    .meal-plan-hero-content h1,
    .create-menu-hero-content h1 {
        font-size: var(--font-hero);
        line-height: var(--line-tight)
    }

    .create-menu-hero-content .insight-grid,.meal-plan-hero-content .insight-grid {
        grid-template-columns: 1fr;
        gap: .6rem
    }

    .favorites-hero-content .insight-grid,.my-recipes-hero-content .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .5rem
    }

    .favorites-hero-content .insight-card,.my-recipes-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm);
        min-height: auto
    }

    .favorites-hero-content .insight-label,.my-recipes-hero-content .insight-label {
        font-size: var(--font-insight-label)
    }

    .favorites-hero-content .insight-value,.my-recipes-hero-content .insight-value {
        font-size: var(--font-insight-value)
    }

    .favorites-hero-content .insight-hint,.my-recipes-hero-content .insight-hint {
        font-size: var(--font-insight-hint)
    }

    .create-menu-hero-content .insight-card,.meal-plan-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm)
    }

    .create-menu-hero-content .chip-row,.meal-plan-hero-content .chip-row {
        flex-direction: column;
        gap: .4rem
    }

    .create-menu-hero-content .chip-badge,.meal-plan-hero-content .chip-badge {
        width: 100%;
        justify-content: center
    }

    .menu-type-selector-wrapper {
        padding: .8rem;
        margin: .8rem 0
    }

    .current-menu-section .section-header h2 {
        font-size: 1.3rem
    }

    .widget-label {
        font-size: 1.05rem;
        font-weight: 700
    }

    .similar-recipes-grid {
        margin-bottom: 2rem
    }

    .recipe-content-grid {
        margin-bottom: 1rem
    }

    .my-recipes-hero {
        margin-bottom: 3rem
    }

    .favorites-hero {
        margin-bottom: 3rem
    }

    .footer-section {
        gap: .4rem
    }

    .footer-content {
        margin-bottom: 1.5rem;
    }

    .ingredients-list {
        margin-bottom: 0
    }

    .filter-section {
        margin-bottom: 1rem;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .shopping-list-panel {
        height: 93.5vh;
    }
}

.duble {
    min-height: 10rem
}

.meal-plan-page {
    /* padding-top: 2rem; */
    padding-bottom: .5rem
}

.meal-plan-hero {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,0.75fr);
    gap: 2.5rem;
    background: var(--glass);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem
}

.meal-plan-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0;
    pointer-events: none
}

.meal-plan-hero-content,
.meal-plan-hero .hero-side-card {
    position: relative;
    z-index: 1
}

.meal-plan-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.meal-plan-hero-content h1 {
    line-height: 1.3;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1.1rem;
    color: var(--text)
}

.meal-plan-hero .hero-actions {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 240px
}

.meal-plan-widget .item-pill {
    background: rgba(139,92,246,.18);
    color: var(--primary)
}

.week-calendar-section {
    margin-bottom: 3rem
}

.week-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: none
}

.btn-icon:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateY(-2px)
}

.current-week {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    flex: 1;
    text-align: center
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 1.5rem
}

.day-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: var(--space-card);
    box-shadow: var(--shadow);
    backdrop-filter: none;
    transition: var(--transition)
}

.day-card.today {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2)
}

.day-header {
    margin-bottom: var(--space-section-sm);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border)
}

.day-name {
    font-size: var(--font-day-name);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
}

.day-date {
    font-size: var(--font-day-date);
    color: var(--text-secondary)
}

.day-meals {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.meal-slot {
    background: var(--glass);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 1rem;
    transition: var(--transition);
    min-height: 80px
}

.meal-slot:hover {
    border-color: var(--primary);
    background: var(--surface)
}

.meal-slot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    font-size: var(--font-meal-slot);
    font-weight: 600;
    color: var(--text)
}

.meal-slot-header--compact .meal-slot-header-left {
    gap: .35rem;
}

.meal-slot-header--compact .meal-slot-title {
    font-size: .8rem;
    font-weight: 500;
}

.meal-slot-header-left {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
}

.menu-header-inline {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--text-secondary);
    margin-bottom: .5rem;
}

.menu-header-inline i {
    color: var(--primary);
    font-size: .75rem;
}

.menu-header-inline .menu-title-small {
    font-size: .8rem;
    font-weight: 500;
}

.menu-meta-inline {
    font-size: .75rem;
    opacity: .9;
}

.menu-recipes-list--simple {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem 0;
}

.menu-recipe-item--simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .25rem 0;
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.menu-recipe-item--simple:hover {
    background: none;
    border: none;
    box-shadow: none;
}

.menu-recipe-item--simple .menu-recipe-name {
    font-size: .85rem !important;
}

.meal-slot-header i {
    color: var(--primary)
}

.meal-slot-header .remove-menu-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    padding: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.meal-slot-header .remove-menu-btn:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
    transform: scale(1.05);
}

.meal-slot-header .remove-menu-btn:active {
    transform: scale(0.95);
}

.meal-slot-header .remove-menu-btn i {
    font-size: .75rem;
}

.meal-slot-content {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: .65rem;
    width: 100%;
}

.add-recipe-btn {
    width: 100%;
    padding: .75rem;
    border: 2px dashed var(--border);
    border-radius: 12px;
    background: 0 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: .9rem;
    font-weight: 500
}

.add-recipe-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139,92,246,.1)
}

.selected-recipe {
    display: flex;
    align-items: center;
    gap: .75rem;
    position: relative;
    padding: .5rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border)
}

.selected-recipe img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0
}

.recipe-info {
    flex: 1;
    min-width: 0
}

.recipe-title-small {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.recipe-meta-small {
    display: flex;
    gap: .75rem;
    font-size: .8rem;
    color: var(--text-secondary)
}

.recipe-meta-small span {
    display: flex;
    align-items: center;
    gap: .3rem
}

.remove-recipe-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239,71,111,.15);
    border: none;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0
}

.remove-recipe-btn:hover {
    background: rgba(239,71,111,.25);
    transform: scale(1.1)
}

.recipe-select-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(.9);
    width: min(900px,90vw);
    height: 90vh;
    max-height: 90vh;
    overflow: hidden; /* ÃÂ¾ÃÂ±ÃÂ¾ÃÂ»ÃÂ¾Ã‘â€¡ÃÂºÃÂ° Ã‘â€žÃÂ¸ÃÂºÃ‘Â, ÃÂ¿Ã‘â‚¬ÃÂ¾ÃÂºÃ‘â‚¬Ã‘Æ’Ã‘â€šÃÂºÃÂ° ÃÂ²ÃÂ½Ã‘Æ’Ã‘â€šÃ‘â‚¬ÃÂ¸ ÃÂºÃÂ¾ÃÂ½Ã‘â€šÃÂµÃÂ½Ã‘â€šÃÂ° */
    overscroll-behavior: contain;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0,0,0,.55);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto 1fr; /* header, controls (Ã‘â€šÃÂ°ÃÂ±Ã‘â€¹+ÃÂ¿ÃÂ¾ÃÂ¸Ã‘ÂÃÂº), ÃÂºÃÂ¾ÃÂ½Ã‘â€šÃÂµÃÂ½Ã‘â€š */
    backdrop-filter: none
}

.recipe-select-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,-50%) scale(1)
}

/* Ãâ€”ÃÂ°ÃÂ³ÃÂ¾ÃÂ»ÃÂ¾ÃÂ²ÃÂ¾ÃÂº ÃÂ¸ ÃÂ¾ÃÂ¿ÃÂ¸Ã‘ÂÃÂ°ÃÂ½ÃÂ¸ÃÂµ ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ */
.modal-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.modal-title-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.modal-title-compact {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-secondary);
}

.modal-tabs-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-info-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: help;
    font-size: 1rem;
    opacity: 0.7;
    transition: color 0.2s, opacity 0.2s;
    flex-shrink: 0;
}

.modal-info-tooltip:hover {
    color: var(--primary);
    opacity: 1;
}

.modal-subtitle {
    /* color: var(--text-secondary); */
    max-width: 720px;
    line-height: 1.35;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.modal-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.modal-pill-row .pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
}

/* ÃÅ¡ÃÂ¾ÃÂ½Ã‘â€šÃÂµÃÂ¹ÃÂ½ÃÂµÃ‘â‚¬ Ã‘â€šÃÂ°ÃÂ±ÃÂ¾ÃÂ² ÃÂ¸ ÃÂ¿ÃÂ¾ÃÂ¸Ã‘ÂÃÂºÃÂ° */
.modal-header {
    padding: 1rem 1rem 0.5rem;
}

.modal-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem 0;
}

/* ÃÂ¢ÃÂ°ÃÂ±Ã‘â€¹ ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ ÃÂ²Ã‘â€¹ÃÂ±ÃÂ¾Ã‘â‚¬ÃÂ° Ã‘â‚¬ÃÂµÃ‘â€ ÃÂµÃÂ¿Ã‘â€šÃÂ¾ÃÂ²/ÃÂ¼ÃÂµÃÂ½Ã‘Å½ */
.modal-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    flex-shrink: 0;
    border-bottom: 1px solid var(--border);
}

.modal-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    border-radius: 0;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    outline: none;
}

.modal-tab:hover {
    color: var(--text);
}

.modal-tab i {
    color: inherit;
    opacity: 0.8;
}

.modal-tab.active {
    color: var(--primary);
    font-weight: 600;
    border-bottom-color: var(--primary);
}

.modal-tab.active i {
    color: var(--primary);
    opacity: 1;
}

.modal-tab:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(139,92,246,.35);
}

.modal-tab-content {
    display: none;
}

.modal-tab-content.active {
    display: block;
}

/* Ãâ€˜Ã‘â€¹Ã‘ÂÃ‘â€šÃ‘â‚¬Ã‘â€¹ÃÂµ ÃÂºÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂºÃÂ¸ ÃÂ²Ã‘â€¹ÃÂ±ÃÂ¾Ã‘â‚¬ÃÂ° */
.modal-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 0.75rem;
    padding: 1rem 2rem 0;
    flex-shrink: 0;
}

.modal-quick-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--card-bg);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.modal-quick-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.modal-quick-card.link {
    color: var(--text);
}

.modal-quick-card.link .quick-chevron {
    color: var(--text-secondary);
}

.quick-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-icon.primary { background: rgba(139,92,246,.18); color: var(--secondary); }
.quick-icon.accent { background: rgba(239,71,111,.18); color: var(--accent); }
.quick-icon.ghost { background: rgba(255,255,255,.08); color: var(--text); }

.quick-title {
    font-weight: 700;
}

.quick-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quick-chevron {
    margin-left: auto;
    color: var(--text-secondary);
}

/* ÃËœÃÂ½ÃÂ¿Ã‘Æ’Ã‘â€š ÃÂ¿ÃÂ¾ÃÂ¸Ã‘ÂÃÂºÃÂ° ÃÂ¸ Ã‘â€šÃÂµÃÂ»ÃÂ¾ ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ */
.modal-content {
    background: var(--card-bg);
    min-height: 0; /* Ã‘â‚¬ÃÂ°ÃÂ·Ã‘â‚¬ÃÂµÃ‘Ë†ÃÂ°ÃÂµÃÂ¼ Ã‘ÂÃÂ¶ÃÂ¸ÃÂ¼ÃÂ°Ã‘â€šÃ‘Å’Ã‘ÂÃ‘Â ÃÂ²ÃÂ½Ã‘Æ’Ã‘â€šÃ‘â‚¬ÃÂ¸ grid, Ã‘â€¡Ã‘â€šÃÂ¾ÃÂ±Ã‘â€¹ ÃÂ·ÃÂ°Ã‘â‚¬ÃÂ°ÃÂ±ÃÂ¾Ã‘â€šÃÂ°ÃÂ» Ã‘ÂÃÂºÃ‘â‚¬ÃÂ¾ÃÂ»ÃÂ» */
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    height: 100%;
    padding-top: 0.25rem;
}

.recipe-search-modal {
    margin: 0;
    position: relative;
}

.modal-controls .recipe-search-modal--below-tabs {
    flex: 1;
    min-width: 0;
}

.recipe-search-modal input {
    width: 100%;
    background: rgba(255,255,255,0.02);
}

.recipe-search-modal input::placeholder {
    color: var(--text-secondary);
}

.recipe-search-modal.inline input {
    height: 40px;
}

/* ÃÂ¡ÃÂµÃ‘â€šÃÂºÃÂ° ÃÂºÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂµÃÂº ÃÂ² ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂµ */
.recipe-select-grid {
    gap: 1.25rem;
    max-height: none;
    overflow: visible;
}

.recipe-select-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.recipe-select-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.recipe-select-title {
    font-size: 1.05rem;
    line-height: 1.4;
}

.recipe-select-meta {
    color: var(--text-secondary);
}

/* ÃÂ¡Ã‘ÂÃ‘â€¹ÃÂ»ÃÂºÃÂ¸ ÃÂ²ÃÂ½Ã‘Æ’Ã‘â€šÃ‘â‚¬ÃÂ¸ ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ */
.recipe-select-modal a {
    color: var(--text);
    text-decoration: none;
}

.recipe-select-modal a:hover {
    color: var(--primary);
}

.recipe-select-modal a.btn,
.recipe-select-modal a.btn:hover,
.recipe-select-modal a.btn:focus,
.recipe-select-modal a.btn:active {
    color: #fff !important;
    text-decoration: none;
    outline: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    padding-right: 1.5rem; /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° */
    /* border-bottom: 1px solid var(--border); */
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--text)
}

.modal-content {
    background: var(--card-bg);
    min-height: 0; /* ÃÂ½Ã‘Æ’ÃÂ¶ÃÂ½ÃÂ¾ ÃÂ´ÃÂ»Ã‘Â ÃÂºÃÂ¾Ã‘â‚¬Ã‘â‚¬ÃÂµÃÂºÃ‘â€šÃÂ½ÃÂ¾ÃÂ³ÃÂ¾ Ã‘ÂÃÂºÃ‘â‚¬ÃÂ¾ÃÂ»ÃÂ»ÃÂ° ÃÂ²ÃÂ½Ã‘Æ’Ã‘â€šÃ‘â‚¬ÃÂ¸ grid */
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    overflow-y: auto;
    padding: 1rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.recipe-search-modal {
    /* margin-bottom: 1.5rem; */
    position: relative
}

.recipe-search-modal i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 2;
    pointer-events: none
}

.recipe-search-modal input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: none
}

.recipe-search-modal input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.3)
}

.recipe-search-modal:focus-within i {
    color: var(--primary)
}

.recipe-select-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: 60vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recipe-select-grid::-webkit-scrollbar {
    display: none;
}

.recipe-select-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column
}

.recipe-select-card:hover {
    border-color: var(--border);
}

.recipe-select-image {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: var(--gradient)
}

.recipe-select-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.recipe-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem
}

.recipe-select-pill {
    position: absolute;
    top: .5rem;
    left: .5rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    background: rgba(0,0,0,.7);
    backdrop-filter: none;
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase
}

.recipe-select-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem
}

.recipe-select-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: center;
    margin-top: 1rem;
}

.recipe-select-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,92,246,.4);
}

.recipe-select-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .05rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.recipe-select-description {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-select-tags-line {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.recipe-select-meta {
    display: flex;
    gap: .75rem;
    font-size: .8rem;
    color: var(--text-secondary)
}

.recipe-select-meta span {
    display: flex;
    align-items: center;
    gap: .3rem
}

@media (max-width: 768px) {
    .meal-plan-hero {
        grid-template-columns:1fr;
        padding: 1rem 0;
        gap: 1.5rem;
        margin-bottom: 4rem;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .meal-plan-hero::before {
        display: none
    }

    .meal-plan-hero .hero-side-card {
        display: none
    }

    .meal-plan-hero-content {
        gap: 1.2rem
    }

    .meal-plan-hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.15
    }

    .meal-plan-hero-content .hero-label {
        font-size: .85rem
    }

    .meal-plan-hero-content .hero-lead {
        font-size: var(--font-hero-lead);
        line-height: var(--line-relaxed)
    }

    .meal-plan-hero-content .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .75rem
    }

    .meal-plan-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm);
        min-height: auto
    }

    .meal-plan-hero-content .insight-label {
        font-size: var(--font-insight-label)
    }

    .meal-plan-hero-content .insight-value {
        font-size: var(--font-insight-value)
    }

    .meal-plan-hero-content .insight-hint {
        font-size: var(--font-insight-hint)
    }

    .meal-plan-hero-content .chip-row {
        gap: .5rem;
        margin-top: .5rem
    }

    .meal-plan-hero-content .chip-badge {
        font-size: .75rem;
        padding: .4rem .7rem
    }

    .meal-plan-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: .75rem;
        margin-top: .5rem
    }

    .meal-plan-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.2rem
    }

    .week-grid {
        grid-template-columns: 1fr
    }

    .week-navigation {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        flex-wrap: nowrap
    }

    .week-navigation .btn-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        font-size: .85rem
    }

    .week-navigation .current-week {
        flex: 1;
        text-align: center;
        font-size: .85rem;
        font-weight: 600;
        min-width: 0;
        padding: 0 .3rem;
    }

    .week-navigation #current-week-btn {
        display: none
    }

    .current-week {
        text-align: center
    }

    .recipe-select-modal {
        width: 95vw;
        max-height: 90vh;
        border-radius: 24px
    }

    .modal-content,.modal-header {
        padding: 1rem;
    }

    .recipe-select-grid {
        grid-template-columns: 1fr;
        gap: .75rem
    }

    .day-card {
        padding: 1.2rem;
    }

    .day-card .day-header {
        margin-bottom: var(--space-card)
    }

    .day-card .day-name {
        font-size: var(--font-day-name)
    }

    .day-card .day-date {
        font-size: var(--font-day-date)
    }

    .meal-slot {
        margin-bottom: .75rem
    }

    .meal-slot-header {
        font-size: var(--font-meal-slot);
        padding: 0.5rem
    }

    .meal-slot {
        padding: 0.75rem;
        min-height: auto
    }

    .meal-slot-header {
        font-size: var(--font-meal-slot);
        margin-bottom: 0.5rem;
        padding: 0
    }

    .meal-slot-header i {
        font-size: .85rem
    }

    .selected-menu {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 0;
        position: relative;
        overflow: hidden;
    }

    .menu-wrapper {
        display: flex;
        align-items: stretch;
        gap: 0;
        position: relative;
    width: 100%;
    }

    .selected-menu .remove-menu-btn {
        background: var(--bg-tertiary);
        border: none;
        border-right: 1px solid var(--border);
        color: var(--text-secondary);
        cursor: pointer;
        padding: 1rem .75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        flex-shrink: 0;
        width: 40px;
    }

    .selected-menu .remove-menu-btn:hover {
        background: var(--error);
        color: white;
    }

    .selected-menu .remove-menu-btn:active {
        background: var(--error);
        opacity: 0.8;
    }

    .selected-menu .remove-menu-btn i {
        font-size: .9rem;
    }

    .menu-content {
        padding: 1rem;
        flex: 1;
    }

    .selected-menu .save-menu-btn {
        position: absolute;
        top: .75rem;
        right: .75rem;
        background: var(--bg-tertiary);
        border: 1px solid var(--border);
        color: var(--text-primary);
        cursor: pointer;
        padding: .4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: var(--transition);
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        z-index: 10;
    }

    .selected-menu .save-menu-btn:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

    .selected-menu .save-menu-btn:active {
        opacity: 0.8;
    }

    .selected-menu .save-menu-btn i {
        font-size: .75rem;
    }

    .menu-header {
        display: flex;
        align-items: center;
        margin-bottom: .5rem;
    }

    .menu-title-small {
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        cursor: default;
        flex: 1;
        color: var(--text-primary);
    }

    .menu-title-small[contenteditable="true"] {
        cursor: text;
        padding: .3rem .5rem;
        border-radius: 8px;
        border: 1px solid transparent;
        transition: var(--transition);
        outline: none;
        margin: -.3rem -.5rem;
    }

    .menu-title-small[contenteditable="true"]:hover {
        background: var(--bg-tertiary);
        border-color: var(--border);
    }

    .menu-title-small[contenteditable="true"]:focus {
        background: var(--bg-tertiary);
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.15);
    }

    .menu-meta-small {
        font-size: .75rem;
        color: var(--text-secondary);
        margin-bottom: .75rem;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    .menu-meta-small span {
        font-size: .75rem;
        display: flex;
        align-items: center;
        gap: .4rem;
    }

    .menu-meta-small i {
        font-size: .7rem;
        color: var(--primary);
    }

    .menu-recipes-list {
        display: flex;
        flex-direction: column;
        gap: .5rem;
        margin-bottom: .75rem;
    }

    .menu-recipe-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: .65rem .85rem;
        background: var(--bg-tertiary);
        border-radius: 8px;
        border: 1px solid var(--border);
        transition: var(--transition);
        gap: .75rem;
    width: 100%;
    }

    .menu-recipe-item:hover {
        background: var(--bg-secondary);
        border-color: var(--primary);
        box-shadow: 0 2px 8px rgba(139, 92, 246, 0.1);
    }

    .selected-menu a.menu-recipe-name, .selected-menu .menu-recipe-name, .menu-recipe-item a.menu-recipe-name, .menu-recipe-item .menu-recipe-name {
        font-size: .9rem;
        font-weight: 400;
        color: var(--text-primary) !important;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-decoration: none !important;
        transition: var(--transition);
        display: block;
    }

    .selected-menu a.menu-recipe-name:hover, .selected-menu .menu-recipe-name:hover, .menu-recipe-item a.menu-recipe-name:hover, .menu-recipe-item .menu-recipe-name:hover {
        color: var(--text-primary) !important;
        text-decoration: underline !important;
        opacity: 0.8;
    }

    .selected-menu a.menu-recipe-name:visited, .selected-menu .menu-recipe-name:visited, .menu-recipe-item a.menu-recipe-name:visited, .menu-recipe-item .menu-recipe-name:visited {
        color: var(--text-primary) !important;
    }

    .selected-menu a.menu-recipe-name:link, .selected-menu .menu-recipe-name:link, .menu-recipe-item a.menu-recipe-name:link, .menu-recipe-item .menu-recipe-name:link {
        color: var(--text-primary) !important;
    }

    .selected-menu .remove-recipe-from-menu-btn, .menu-recipe-item .remove-recipe-from-menu-btn, .remove-recipe-from-menu-btn {
        background: var(--bg-tertiary) !important;
        border: 1px solid var(--border) !important;
        color: var(--text-secondary) !important;
        cursor: pointer !important;
        padding: .4rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 4px !important;
        transition: var(--transition);
        flex-shrink: 0;
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        opacity: 0.8 !important;
        margin: 0 !important;
    }

    .selected-menu .remove-recipe-from-menu-btn:hover, .menu-recipe-item .remove-recipe-from-menu-btn:hover, .remove-recipe-from-menu-btn:hover {
        background: var(--error) !important;
        border-color: var(--error) !important;
        color: white !important;
        opacity: 1 !important;
    }

    .selected-menu .remove-recipe-from-menu-btn:active, .menu-recipe-item .remove-recipe-from-menu-btn:active, .remove-recipe-from-menu-btn:active {
        opacity: 0.9 !important;
    }

    .selected-menu .remove-recipe-from-menu-btn i, .menu-recipe-item .remove-recipe-from-menu-btn i, .remove-recipe-from-menu-btn i {
        font-size: .7rem !important;
    }

    .selected-menu .save-menu-btn:active, .menu-save-container .save-menu-btn:active, .save-menu-btn:active {
        opacity: 0.8 !important;
    }

    .selected-menu .save-menu-btn i, .menu-save-container .save-menu-btn i, .save-menu-btn i {
        font-size: .85rem !important;
    }

    .menu-actions {
        display: flex;
        align-items: center;
        gap: .5rem;
        flex-shrink: 0
    }

    .edit-menu-btn,.remove-menu-btn {
        width: 32px;
        height: 32px;
        font-size: .75rem;
        flex-shrink: 0
    }

    .add-menu-btn {
        padding: .75rem;
        font-size: .85rem;
        min-height: 60px
    }
}

.create-menu-page {
    /* padding-top: 2rem; */
    padding-bottom: .5rem
}

.create-menu-hero {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(280px,0.75fr);
    gap: 2.5rem;
    background: var(--glass);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-bottom: 5rem
}

.create-menu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,rgba(139,92,246,.15),transparent 45%),radial-gradient(circle at 80% 0,rgba(6,214,160,.15),transparent 50%);
    z-index: 0;
    pointer-events: none
}

.create-menu-hero-content,
.create-menu-hero .hero-side-card {
    position: relative;
    z-index: 1
}

.create-menu-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.create-menu-hero-content h1 {
    /* line-height: 1.3; */
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1.1rem;
    color: var(--text)
}

.create-menu-hero .hero-actions {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 240px
}

.create-menu-widget .item-pill {
    background: rgba(245,158,11,.18);
    color: #f59e0b
}

.menu-type-selector {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    position: relative
}

.menu-type-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--primary);
    background: linear-gradient(135deg,rgba(139,92,246,.2),rgba(6,214,160,.2));
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    box-shadow: 0 4px 12px rgba(139,92,246,.3)
}

.menu-type-trigger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139,92,246,.4)
}

.menu-type-trigger .trigger-chevron {
    font-size: .8rem;
    opacity: .8;
    transition: transform .25s ease
}

.menu-type-selector-wrapper.expanded .menu-type-trigger .trigger-chevron {
    transform: rotate(180deg)
}

.menu-type-dropdown {
    display: none;
    flex-direction: column;
    gap: .5rem
}

.menu-type-selector-wrapper.expanded .menu-type-dropdown {
    display: flex
}

.menu-type-selector-wrapper {
    width: 100%;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 20px;
    border: 1px solid var(--border)
}

.menu-type-btn {
    flex: 1;
    min-width: 0;
    padding: .9rem 1.2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: var(--card-bg);
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    backdrop-filter: none
}

.menu-type-btn:hover {
    border-color: var(--primary);
    background: var(--surface);
    transform: translateY(-2px)
}

.menu-type-btn.active {
    border-color: var(--primary);
    background: linear-gradient(135deg,rgba(139,92,246,.2),rgba(6,214,160,.2));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(139,92,246,.3)
}

.menu-helper-text {
    margin-top: 1rem;
    font-size: .95rem;
    color: var(--text-secondary)
}

.current-menu-section {
    margin-bottom: 3rem
}

.current-menu-section .section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.menu-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.menu-actions-round {
    flex-wrap: nowrap;
    gap: .75rem;
    justify-content: center;
    width: 100%;
    align-self: center
}

.current-menu-section > .menu-actions-round {
    margin-top: 1.5rem
}

.menu-actions-round .btn-round {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.menu-actions-round .btn-round i {
    font-size: 1.1rem;
    margin: 0
}

.current-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    gap: 1rem;
    margin-top: 1.5rem
}

@media (min-width: 768px) {
    .current-menu-grid {
        grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
        gap: 1.25rem
    }
}

.empty-menu-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary)
}

.empty-menu-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: .5
}

.menu-recipe-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    transition: var(--transition);
    backdrop-filter: none
}

.menu-recipe-card:hover {
    border-color: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139,92,246,.2)
}

.menu-recipe-image {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gradient)
}

.menu-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.recipe-placeholder-small {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem
}

.menu-recipe-info {
    flex: 1;
    min-width: 0
}

.menu-recipe-title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 .35rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3
}

.menu-recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: .8rem;
    color: var(--text-secondary);
    flex-wrap: nowrap;
    align-items: center
}

.menu-recipe-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    white-space: nowrap;
    flex-shrink: 0
}

.remove-recipe-from-menu {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239,71,111,.15);
    border: none;
    color: var(--accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: .75rem
}

.remove-recipe-from-menu:hover {
    background: rgba(239,71,111,.25);
    transform: scale(1.1)
}

.available-recipes-section {
    margin-bottom: 3rem
}

.available-recipes-section--hidden {
    display: none !important
}

.available-recipes-section.highlight,
.current-menu-section.highlight {
    box-shadow: 0 0 0 2px rgba(139,92,246,.3);
    border-radius: var(--radius);
    transition: box-shadow .4s ease
}

.recipe-search-wrapper {
    display: flex;
    gap: 1rem
}

.recipe-search {
    position: relative;
    flex: 1;
    max-width: 400px
}

.recipe-search i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    z-index: 2
}

.recipe-search input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: none
}

.recipe-search input:focus {
    outline: 0;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139,92,246,.3)
}

.recipe-card.in-menu {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(139,92,246,.2)
}

.menu-recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
    gap: 2rem;
    margin-bottom: 0
}

.menu-selection-card .recipe-actions {
    justify-content: flex-start
}

.menu-toggle-btn.is-selected {
    background: rgba(139,92,246,.15);
    color: var(--primary)
}

.in-menu-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    box-shadow: 0 2px 8px rgba(139,92,246,.4)
}

.selected-menu a.menu-recipe-name, .selected-menu .menu-recipe-name, .menu-recipe-item a.menu-recipe-name, .menu-recipe-item .menu-recipe-name {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text-primary) !important;
    text-decoration: none !important;
}

.selected-menu a.menu-recipe-name:hover, .selected-menu .menu-recipe-name:hover, .menu-recipe-item a.menu-recipe-name:hover, .menu-recipe-item .menu-recipe-name:hover {
    color: var(--text-primary) !important;
    text-decoration: underline !important;
}

.selected-menu .remove-recipe-from-menu-btn, .menu-recipe-item .remove-recipe-from-menu-btn, .remove-recipe-from-menu-btn {
    background: var(--bg-tertiary) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-secondary) !important;
    padding: .4rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 4px !important;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
}

.selected-menu .remove-recipe-from-menu-btn:hover, .menu-recipe-item .remove-recipe-from-menu-btn:hover, .remove-recipe-from-menu-btn:hover {
    background: var(--error) !important;
    border-color: var(--error) !important;
    color: white !important;
}

.selected-menu .save-menu-btn, .menu-save-container .save-menu-btn, .save-menu-btn {
    background: var(--bg-tertiary) !important;
    border: 1px solid var(--border) !important;
    color: var(--text-primary) !important;
    padding: .5rem .65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    min-width: 36px !important;
    height: 36px !important;
}

.selected-menu .save-menu-btn:hover, .menu-save-container .save-menu-btn:hover, .save-menu-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.menu-meta-small {
    display: flex;
    gap: .75rem;
    font-size: .8rem;
    color: var(--text-secondary)
}

.menu-meta-small span {
    display: flex;
    align-items: center;
    gap: .3rem
}

.edit-menu-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139,92,246,.15);
    border: none;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: .85rem
}

.edit-menu-btn:hover {
    background: rgba(139,92,246,.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(139,92,246,.3)
}

.meal-slot-actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
}

.add-menu-btn, .add-recipe-btn {
    width: 100%;
    padding: .75rem;
    border: 2px dashed var(--border);
    border-radius: 12px;
    background: 0 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: .9rem;
    font-weight: 500;
}

.add-menu-btn:hover, .add-recipe-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(139,92,246,.1);
}

.add-recipe-btn {
    border-style: solid;
    border-width: 1px;
    background: rgba(139,92,246,.05);
}

.add-recipe-btn:hover {
    background: rgba(139,92,246,.15);
}

/* ÃÅ¡Ã‘â‚¬ÃÂ°Ã‘ÂÃÂ¸ÃÂ²Ã‘â€¹ÃÂ¹ ÃÂ¿ÃÂ»Ã‘Å½Ã‘ÂÃÂ¸ÃÂº ÃÂ´ÃÂ»Ã‘Â ÃÂ´ÃÂ¾ÃÂ±ÃÂ°ÃÂ²ÃÂ»ÃÂµÃÂ½ÃÂ¸Ã‘Â "ÃÂ¿Ã‘â‚¬ÃÂ°ÃÂ·ÃÂ´ÃÂ½ÃÂ¸Ã‘â€¡ÃÂ½ÃÂ¾ÃÂ³ÃÂ¾ ÃÂ¿ÃÂ¸Ã‘â‚¬ÃÂ°" */
.add-feast-container {
    margin-top: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.add-feast-btn {
    width: 100%;
    padding: .65rem .9rem;
    border: 2px dashed rgba(239, 71, 111, 0.4);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.1), rgba(239, 71, 111, 0.05));
    color: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.add-feast-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.add-feast-btn:hover::before {
    left: 100%;
}

.add-feast-btn:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.2), rgba(239, 71, 111, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 71, 111, 0.3);
}

.add-feast-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(239, 71, 111, 0.2);
}

.feast-plus-icon {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.2), rgba(239, 71, 111, 0.3));
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-feast-btn:hover .feast-plus-icon {
    transform: scale(1.1) rotate(90deg);
    background: linear-gradient(135deg, rgba(239, 71, 111, 0.3), rgba(239, 71, 111, 0.4));
    box-shadow: 0 4px 16px rgba(239, 71, 111, 0.4);
}

.feast-plus-icon .fa-crown {
    position: absolute;
    font-size: 1.1rem;
    color: var(--accent);
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(239, 71, 111, 0.5));
}

.feast-plus-icon .fa-plus {
    position: absolute;
    font-size: 0.75rem;
    color: #fff;
    z-index: 3;
    font-weight: 700;
    background: var(--accent);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -2px;
    right: -2px;
    box-shadow: 0 2px 8px rgba(239, 71, 111, 0.6);
}

.feast-plus-text {
    display: none;
}

.add-feast-btn:hover .feast-plus-text {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(239, 71, 111, 0.5);
}

/* ÃÅ¡ÃÂ½ÃÂ¾ÃÂ¿ÃÂºÃÂ° Ã‘Æ’ÃÂ´ÃÂ°ÃÂ»ÃÂµÃÂ½ÃÂ¸Ã‘Â ÃÂ±ÃÂ»ÃÂ¾ÃÂºÃÂ° "ÃÂ¿Ã‘â‚¬ÃÂ°ÃÂ·ÃÂ´ÃÂ½ÃÂ¸Ã‘â€¡ÃÂ½Ã‘â€¹ÃÂ¹ ÃÂ¿ÃÂ¸Ã‘â‚¬" */
.remove-feast-btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(239, 71, 111, 0.3);
    border-radius: 12px;
    background: rgba(239, 71, 111, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.remove-feast-btn:hover {
    background: rgba(239, 71, 111, 0.2);
    border-color: var(--accent);
    transform: translateY(-1px);
}

.remove-feast-btn:active {
    transform: translateY(0);
}

.menu-select-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: var(--transition);
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.menu-select-card.current-menu {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg,rgba(139,92,246,.1),rgba(14,165,233,.1));
    box-shadow: 0 4px 15px rgba(139,92,246,.2)
}

.menu-select-card.current-menu:hover {
    box-shadow: 0 10px 25px rgba(139,92,246,.3)
}

.menu-select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem
}

.menu-select-header--compact {
    gap: .4rem;
    margin-bottom: .5rem;
}

.menu-select-header-left {
    display: flex;
    align-items: flex-start;
    gap: .35rem;
}

.menu-select-header-left i {
    font-size: 1rem !important;
    color: var(--primary);
    margin-top: .15rem;
}

.menu-select-header-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.menu-select-header--compact .menu-select-title-small {
    font-size: .85rem;
    font-weight: 600;
}

.menu-select-meta-below {
    font-size: .75rem;
    color: var(--text-secondary);
}

.menu-select-recipes-list {
    list-style: none;
    padding: 0;
    margin: 0 0 .5rem 0;
}

.menu-select-recipe-item {
    padding: .15rem 0;
    padding-left: 1rem;
    font-size: .85rem;
    color: var(--text);
    position: relative;
}

.menu-select-recipe-item::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
}

.current-menu-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(139,92,246,.15);
    padding: .3rem .6rem;
    border-radius: 12px;
    white-space: nowrap
}

.current-menu-badge i {
    font-size: .7rem
}

.menu-select-header i {
    font-size: 1.5rem;
    color: var(--primary)
}

.menu-select-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0
}

.menu-select-meta {
    margin-bottom: .75rem;
    font-size: .9rem;
    color: var(--text-secondary)
}

.menu-select-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: none;
    background: var(--gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: .5rem;
    align-self: center;
}

.menu-select-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,92,246,.4);
}

.menu-select-recipes {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.menu-recipe-tag {
    padding: .25rem .6rem;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text)
}

.empty-menus-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary)
}

.empty-menus-state i:first-child {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: .5
}

.empty-menus-state .btn {
    text-decoration: none;
    margin-top: 1rem;
}

.empty-menus-state .btn i {
    font-size: inherit;
    margin: 0;
    opacity: 1;
}

@media (max-width: 768px) {
    .create-menu-hero {
        grid-template-columns:1fr;
        padding: 1rem 0rem;
        gap: 1.5rem;
        margin-bottom: 4rem;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .create-menu-hero::before {
        display: none
    }

    .create-menu-hero .hero-side-card {
        display: none
    }

    .create-menu-hero-content {
        gap: 1.2rem
    }

    .ingredient-item-with-variants {
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center;
        box-sizing: border-box;
        position: relative;
    }

    .ingredient-variants-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 0.5rem;
        display: flex !important;
        align-items: center;
        box-sizing: border-box;
    }

    .variant-arrow-btn {
        position: absolute !important;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
        opacity: 0.7;
        flex-shrink: 0;
        top: 50%;
        transform: translateY(-50%) !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .variant-arrow-btn:active, .variant-arrow-btn:focus, .variant-arrow-btn:hover {
        transform: translateY(-50%) !important;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 0.7 !important;
        position: absolute !important;
        top: 50% !important;
    }

    .variant-arrow-left {
        left: -1.8rem !important;
        right: auto !important;
    }

    .variant-arrow-left:active, .variant-arrow-left:focus, .variant-arrow-left:hover {
        left: -1.8rem !important;
        right: auto !important;
    }

    .ingredient-item-with-variants .ingredient-checkbox {
        flex-shrink: 0;
        margin: 0;
    }

    .ingredient-item-with-variants .ingredient-name {
        flex: 1;
        min-width: 0;
        margin: 0;
    }

    .variant-arrow-right {
        right: -1.8rem !important;
        left: auto !important;
    }

    .variant-arrow-right:active, .variant-arrow-right:focus, .variant-arrow-right:hover {
        right: -1.8rem !important;
        left: auto !important;
    }

    .variant-arrow-btn i {
        transform: none !important;
    }

    .variant-arrow-btn:active i, .variant-arrow-btn:focus i, .variant-arrow-btn:hover i {
        transform: none !important;
    }

    .ingredient-item {
        font-size: .9rem
    }

    .create-menu-hero-content h1 {
        font-size: 1.7rem;
        /* line-height: 1.15; */
    }

    .create-menu-hero-content .hero-label {
        font-size: .85rem
    }

    .create-menu-hero-content .hero-lead {
        font-size: var(--font-hero-lead);
        line-height: var(--line-relaxed)
    }

    .create-menu-hero-content .insight-grid {
        grid-template-columns: repeat(2,1fr);
        gap: .75rem
    }

    .create-menu-hero-content .insight-card {
        padding: var(--space-insight-sm) var(--space-card-sm);
        min-height: auto
    }

    .create-menu-hero-content .insight-label {
        font-size: var(--font-insight-label)
    }

    .create-menu-hero-content .insight-value {
        font-size: var(--font-insight-value)
    }

    .create-menu-hero-content .insight-hint {
        font-size: var(--font-insight-hint)
    }

    .create-menu-hero-content .chip-row {
        gap: .5rem;
        margin-top: .5rem
    }

    .create-menu-hero-content .chip-badge {
        font-size: .75rem;
        padding: .4rem .7rem
    }

    .create-menu-hero .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: .75rem;
        margin-top: .5rem
    }

    .create-menu-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.2rem
    }

    .create-menu-hero .hero-side-card {
        padding: 1.2rem
    }

    .current-menu-section {
        margin-bottom: 2rem
    }

    .current-menu-section .section-header {
        gap: var(--gap-section);
        margin-bottom: var(--space-section-sm)
    }

    .current-menu-section .section-header h2 {
        font-size: 1.5rem
    }

    .menu-type-selector-wrapper {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 16px
    }

    .menu-type-btn {
        width: 100%;
        padding: .9rem 1.2rem;
        font-size: .95rem
    }

    .current-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .menu-actions:not(.menu-actions-round) .btn {
        width: 100%;
        justify-content: center;
        padding: .9rem 1.2rem
    }
}

.action-btn,.btn,.filter-btn,.theme-toggle,.user-avatar {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges
}

@media (max-width: 768px) {
    img {
        image-rendering:auto!important;
        -webkit-optimize-contrast: none!important
    }

    .servings-edit-btn {
        display: flex !important;
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 1rem;
    }
}

.favorites-grid,.recipe-grid,.user-recipes-grid {
    transform: translateZ(0);
    will-change: scroll-position
}

.recipe-card {
    animation-fill-mode: both
}

@media (max-width: 768px) {
    .recipe-card {
        backdrop-filter: none!important;
        -webkit-backdrop-filter: none!important
    }

    .hero-widget {
        background: none !important;
    }

    .recipe-image img {
        image-rendering: auto
    }

    .timeline-meta {
        font-size: .8rem;
    }

    .hero-side-card {
        gap: 0.5rem;
    }

    .spices-title-text {
        font-size: .9rem;
    }

    .ingredient-text {
        max-width: 16rem
    }

    .footer-bottom p {
        color: var(--text-secondary);
        font-size: .7rem;
        margin: 0
    }
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    display: none
}

.blog-empty .empty-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: .5
}

.blog-empty h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
    color: var(--text)
}

.blog-empty p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.blog-article-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary)
}

.article-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem
}

.article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .8rem;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border)
}

.article-category-badge.category-idea {
    background: rgba(239, 71, 111, .1);
    border-color: var(--accent);
    color: var(--accent)
}

.article-category-badge.category-experiment {
    background: rgba(124, 58, 237, .1);
    border-color: var(--secondary);
    color: var(--secondary)
}

.article-category-badge.category-note {
    background: rgba(16, 185, 129, .1);
    border-color: var(--primary);
    color: var(--primary)
}

.article-category-badge.category-development {
    background: rgba(245, 158, 11, .1);
    border-color: var(--warning);
    color: var(--warning)
}

.article-category-badge.category-recipe-idea {
    background: rgba(239, 71, 111, .1);
    border-color: var(--accent-light);
    color: var(--accent-light)
}

.article-date-small {
    font-size: .75rem;
    color: var(--text-secondary);
    white-space: nowrap
}

.article-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.4
}

.article-card-preview {
    color: var(--text-secondary);
    font-size: .9rem;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1
}

.article-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: auto
}

.tag-badge {
    display: inline-block;
    padding: .25rem .6rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: .7rem;
    color: var(--text-secondary)
}

.article-actions {
    display: flex;
    gap: .5rem;
    margin-top: .5rem;
    justify-content: flex-end
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0
}

.btn-icon:hover {
    background: var(--surface);
    color: var(--text);
    border-color: var(--primary)
}

.btn-icon-danger:hover {
    background: rgba(239, 68, 68, .1);
    border-color: var(--error);
    color: var(--error)
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.article-date {
    font-size: .9rem;
    color: var(--text-secondary)
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem
}

.article-content-view {
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word
}

.section-actions {
    display: flex;
    gap: .5rem
}

.section-actions .btn {
    padding: .5rem 1rem;
    font-size: .875rem
}

.section-actions .btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary)
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° - ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ */
.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex !important;
    opacity: 1;
}

.modal-large {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ Edge */
}

.modal-body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-left: 1rem;
    margin-right: 0;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--surface);
    color: var(--text);
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âº ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â² ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â´ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â±ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â»ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â³ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° */
.modal-large .modal-actions {
    padding: 1.5rem 2rem;
    margin: 0;
    border-top: 1px solid var(--border);
    gap: 1rem;
    display: flex;
    justify-content: flex-end;
}

.modal-large .modal-header {
    padding: 2rem;
    padding-right: 1rem; /* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¹ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â²ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¼ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¾ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¿ ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂµÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¹Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂºÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â° */
}

@media (max-width: 768px) {
    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .blog-article-card {
        padding: 1.25rem
    }

    .article-card-title {
        font-size: 1.1rem
    }

    .section-actions {
        margin-top: 1rem
    }

    .modal-large {
        width: 95%;
        max-height: 95vh;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

.menu-content {
    width: 0;
}

/* ===== Планшет и десктоп = мобильная версия (узкая вертикальная как большой телефон) ===== */
@media (min-width: 769px) {
    body {
        max-width: 480px;
        margin: 0 auto;
        min-height: 100vh;
        box-shadow: 0 0 60px rgba(0,0,0,.3);
    }

    .mobile-nav {
        display: none!important
    }

    .shopping-list-panel {
        width: 480px;
        max-width: 100%;
        right: -480px
    }

    .shopping-list-panel.active {
        right: calc(50% - 240px)
    }

    header {
        padding: 1rem;
        width: 100%
    }

    .header-content {
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem
    }

    .nav-container {
        flex: 1;
        min-width: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem
    }

    .search-container {
        flex: 1;
        min-width: 0;
        max-width: 260px
    }

    .header-actions {
        flex-shrink: 0
    }

    .header-content .logo {
        flex-shrink: 0;
        font-size: 1.2rem;
        flex-direction: column!important;
        gap: 0.1rem;
        align-items: center;
        line-height: 1
    }

    .header-content .logo i {
        font-size: 1.1rem
    }

    .header-content .logo-gradient {
        font-size: 1.1rem
    }

    .header-actions>.my-recipes-link,
    .header-actions>.basket,
    .header-actions>.btn:not(.voice-assistant-btn),
    .header-actions>.btn-secondary:not(.voice-assistant-btn),
    .header-actions>.theme-toggle,
    .header-actions>.favorites-link {
        display: none!important
    }

    .header-actions>.voice-assistant-btn {
        display: flex!important
    }

    .user-menu {
        margin-left: auto
    }

    .hero-widget,
    .hero-meta,
    .hero::before,
    .favorites-hero .hero-side-card,
    .my-recipes-hero .hero-side-card,
    .meal-plan-hero .hero-side-card,
    .create-menu-hero .hero-side-card,
    .favorites-hero::before,
    .my-recipes-hero::before,
    .meal-plan-hero::before,
    .create-menu-hero::before {
        display: none!important
    }

    .hero h1 .hero-h1-desktop,
    .hero-lead .hero-lead-desktop {
        display: none!important
    }

    .hero h1 .hero-h1-mobile,
    .hero-lead .hero-lead-mobile {
        display: block!important
    }

    .hero-grid {
        flex-direction: column
    }

    .hero {
        padding: var(--space-hero-mobile) 0;
        max-width: 100%;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem
    }

    .hero-actions .btn,
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary-cta,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem
    }

    .favorites-hero .hero-actions,
    .my-recipes-hero .hero-actions,
    .meal-plan-hero .hero-actions,
    .create-menu-hero .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.6rem
    }

    .favorites-hero .hero-actions .btn,
    .my-recipes-hero .hero-actions .btn,
    .meal-plan-hero .hero-actions .btn,
    .create-menu-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem
    }

    .favorites-hero,
    .my-recipes-hero,
    .meal-plan-hero,
    .create-menu-hero {
        grid-template-columns: 1fr;
        padding: 1rem 0;
        background: transparent;
        border: none;
        box-shadow: none
    }

    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1rem
    }

    .container {
        padding: 1rem
    }

    .recipe-hero {
        display: flex!important;
        flex-direction: column!important;
        align-items: stretch!important;
        background: var(--glass)!important;
        border: 1px solid var(--border)!important;
        border-radius: var(--radius)!important;
        box-shadow: var(--shadow)!important;
        padding: 1.5rem 1rem!important;
        margin-top: 1.5rem!important;
        margin-bottom: 1.5rem!important;
        gap: 1.5rem
    }

    .recipe-hero::before {
        display: none!important
    }

    .recipe-hero-media {
        order: 0!important;
        height: auto!important;
        justify-content: flex-start!important;
        flex-shrink: 0
    }

    .recipe-hero-content {
        order: 1!important;
        height: auto!important;
        justify-content: flex-start!important;
        display: flex!important;
        flex-direction: column!important;
        gap: 0.5rem;
        min-height: 0
    }

    .recipe-hero-content .hero-label,
    .recipe-hero-content h1,
    .recipe-hero-content .hero-lead {
        max-height: none!important;
        overflow: visible!important
    }

    .recipe-hero-content .hero-lead {
        font-size: 0.95rem;
        line-height: 1.5;
        display: block!important;
        -webkit-line-clamp: unset!important;
        -webkit-box-orient: unset!important
    }

    .recipe-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-top: 0.25rem;
        -webkit-line-clamp: unset!important;
        display: block!important;
        visibility: visible!important;
        opacity: 1
    }

    .recipe-meta-insights {
        grid-template-columns: repeat(3, minmax(0, 1fr))!important;
        gap: 0.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem
    }

    .recipe-meta-insights .insight-card {
        padding: 0.6rem 0.5rem;
        min-height: auto;
        gap: 0.25rem
    }

    .recipe-meta-insights .insight-label {
        font-size: 0.6rem
    }

    .recipe-meta-insights .insight-value {
        font-size: 1rem
    }

    .recipe-meta-insights .insight-hint {
        font-size: 0.55rem
    }

    .recipe-hero-content .hero-actions {
        flex-direction: row!important;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
        justify-content: center
    }

    .recipe-hero-content .hero-actions .btn {
        width: 50px!important;
        min-width: 50px!important;
        height: 50px!important;
        padding: 0!important;
        border-radius: 50%!important;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        background: var(--glass);
        border: 1px solid var(--border);
        color: var(--text)
    }

    .recipe-hero-content .hero-actions .btn .btn-text {
        display: none!important
    }

    .recipe-hero-content .hero-actions .btn i {
        margin: 0;
        font-size: 1.1rem
    }

    .recipe-hero-media .recipe-tags {
        display: none!important
    }

    .recipe-tags-mobile {
        display: flex!important;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-top: 0.5rem
    }

    .recipe-media-caption {
        display: block!important
    }

    .recipe-detail-container {
        padding: 1rem 1rem 0
    }

    .recipe-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }

    .ingredients-section,
    .instructions-section {
        padding: 1.5rem
    }

    .similar-recipes-grid {
        grid-template-columns: 1fr
    }

    .footer {
        width: 100%!important;
        max-width: 480px!important;
        margin-left: auto!important;
        margin-right: auto!important;
        left: auto!important;
        right: auto!important;
        padding: 2rem 1rem 1rem!important;
        box-sizing: border-box
    }

    .footer-container {
        max-width: 100%!important;
        width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        box-sizing: border-box
    }

    .footer-content {
        display: flex!important;
        flex-direction: column!important;
        grid-template-columns: none!important;
        gap: 1.5rem!important;
        margin-bottom: 1.5rem!important;
        text-align: center;
        padding: 0
    }

    .footer-section {
        align-items: center;
        gap: 0.5rem
    }

    .footer-section:first-child {
        grid-column: unset!important
    }

    .footer-logo {
        font-size: 1.5rem!important;
        flex-direction: column;
        gap: 0.25rem
    }

    .footer-logo i {
        font-size: 1.4rem!important
    }

    .footer-logo .logo-gradient {
        font-size: 1.5rem!important
    }

    .footer-description {
        font-size: 0.85rem!important;
        max-width: none!important;
        margin-bottom: 0!important;
        line-height: 1.5
    }

    .footer-title {
        font-size: 0.85rem!important;
        margin-bottom: 0.3rem
    }

    .footer-links {
        align-items: center;
        gap: 0.35rem
    }

    .footer-links li a {
        font-size: 0.8rem!important
    }

    .footer-bottom {
        padding: 1rem 0 0.5rem!important;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem
    }

    .footer-bottom p {
        font-size: 0.75rem!important
    }

    .footer-social {
        display: none!important
    }

    .current-menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .week-navigation #current-week-btn {
        display: none!important
    }

    .filter-options {
        display: flex!important;
        flex-wrap: nowrap!important;
        gap: 0.5rem;
        padding: 0.5rem 0 1rem;
        overflow-x: auto!important;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab
    }

    .filter-options::-webkit-scrollbar {
        display: none
    }

    .filter-option {
        min-width: 96px;
        max-width: 96px;
        flex-shrink: 0;
        min-height: 96px;
        display: flex!important;
        flex-direction: column!important;
        align-items: center!important;
        justify-content: center!important;
        text-align: center!important;
        padding: 0.6rem 0.5rem;
        border-radius: 14px;
        gap: 0.25rem
    }

    .filter-option .filter-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .filter-option .filter-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.1rem
    }

    .filter-option .filter-name {
        font-size: 0.8rem;
        line-height: 1.2
    }

    .filter-option .filter-meta {
        font-size: 0.7rem;
        opacity: 0.8
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }

    .blog-articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .insight-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .favorites-hero-content .insight-grid,
    .my-recipes-hero-content .insight-grid,
    .create-menu-hero-content .insight-grid,
    .meal-plan-hero-content .insight-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .recipe-detail-container,
    .similar-recipes-container {
        max-width: 100%
    }

    .ai-panel {
        width: calc(480px - 2rem);
        max-width: calc(100vw - 2rem);
        right: 1rem
    }

    .notification {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: auto;
        bottom: 1.5rem;
        animation: slideInBottom .4s cubic-bezier(.34,1.56,.64,1)
    }

    .scroll-to-top {
        right: calc(50% - 240px + 1rem);
        bottom: 2rem
    }
}
