:root {
    --color-red: #E5232D;
    --color-red-dark: #E5232D;
    --color-red-light: #FDF2F3;
    
    --color-green: #9BA92E;
    --color-green-dark: #9BA92E;
    --color-green-light: #F7F9E8;
    
    --color-yellow: #FBA814;
    --color-yellow-dark: #FBA814;
    --color-yellow-light: #FFF9EB;

    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;

    --color-bg-page: #F4F6F9;
    --color-card-bg: #FFFFFF;
    --color-border: #E2E8F0;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(229, 35, 45, 0.08);

    --radius-card: 16px;
    --radius-pill: 30px;
    --radius-sm: 8px;
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.8rem;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    vertical-align: middle;
    user-select: none;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-page);
    color: var(--color-text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    padding: 20px 30px 0px 30px;
    position: relative;
    z-index: 10;
}

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

.header-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.logo-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

@media (min-width: 901px) and (hover: hover) {
    .logo-link:hover {
        transform: scale(1.02);
    }
}

.main-logo {
    height: 90px;
    width: auto;
    aspect-ratio: 300 / 80;
    display: block;
    object-fit: contain;
}

.date-time-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-top: 15px;
    width: 100%;
}

.date-time-bar .material-symbols-outlined,
.date-time-bar i {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.date-time-bar .dot-separator {
    color: #CBD5E1;
    font-size: 0.75rem;
    font-weight: 300;
    margin: 0 5px;
    opacity: 0.8;
}

.header-banner-section {
    flex-shrink: 0;
    max-width: 770px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.banner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.hamm-banner-link {
    display: block;
    text-decoration: none;
    width: 100%;
    max-width: 770px;
}

.hamm-banner {
    width: 770px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 770 / 150;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 901px) and (hover: hover) {
    .hamm-banner:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
}

.banner-info {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.main-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 10px;
    flex-grow: 1;
    width: 100%;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}

@media (min-width: 640px) {
    .restaurant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .restaurant-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .restaurant-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.restaurant-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-card);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 360px;
}

@media (min-width: 901px) and (hover: hover) {
    .restaurant-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: #94a3b8;
    }
}

.card-header {
    padding: 30px 20px 15px 20px;
    text-align: center;
}

.restaurant-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: #405475;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.5s;
    overflow: hidden;
    will-change: opacity, transform;
}

.restaurant-title.in-view {
    opacity: 1;
    transform: translateY(0);
}

.restaurant-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
}

.restaurant-title.in-view::after {
    animation: titleShimmer 1.2s ease-in-out 1.1s 1 forwards;
}

@keyframes titleShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.restaurant-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-green);
    border: 1px solid rgba(155, 169, 46, 0.4);
    padding: 3px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-divider {
    height: 2px;
    background: radial-gradient(circle, rgba(226,232,240,1) 0%, rgba(241,245,249,0.5) 100%);
    margin: 0 20px;
}

.card-body {
    padding: 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-item-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.12rem;
    line-height: 1.4;
}

.menu-icon {
    font-size: 1.8rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.menu-item-row.soup-row .menu-icon {
    color: var(--color-green);
}
.menu-item-row.soup-row .menu-text {
    color: var(--color-green);
    font-weight: 600;
}

.menu-item-row.main-row .menu-icon {
    color: var(--color-red);
}
.menu-item-row.main-row .menu-text {
    color: var(--color-red);
    font-weight: 600;
}

.menu-item-row.extra-row .menu-icon {
    color: var(--color-yellow);
}
.menu-item-row.extra-row .menu-text {
    color: var(--color-yellow);
    font-weight: 600;
}

@keyframes periodicRotate {
    0%, 75% {
        transform: rotate(0deg);
    }
    88%, 100% {
        transform: rotate(360deg);
    }
}

.empty-menu-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background-color: #FAFAFA;
    border: 1.5px dashed #9ba92e;
    border-radius: 12px;
    color: var(--color-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.empty-menu-box .hourglass-icon {
    font-size: 1.55rem;
    color: var(--color-green);
    display: inline-block;
    animation: periodicRotate 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.empty-menu-box .empty-menu-text {
    display: inline-block;
    animation: textFadeReappear 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes textFadeReappear {
    0%, 75% {
        opacity: 1;
        transform: translateY(0);
    }
    82% {
        opacity: 0;
        transform: translateY(-4px);
    }
    88%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.closed-menu-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background-color: #fafafa;
    border: 1.5px dashed rgba(229, 35, 45, 0.25);
    border-radius: 12px;
    color: var(--color-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.closed-menu-box .material-symbols-outlined,
.closed-menu-box i {
    font-size: 1.55rem;
    color: var(--color-red);
    display: inline-block;
    animation: periodicRotate 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.closed-menu-box .closed-menu-text {
    display: inline-block;
    animation: textFadeReappear 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.card-info-notes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.info-note-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.35;
}

.info-note-item .material-symbols-outlined,
.info-note-item i {
    color: #94A3B8;
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.price-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    justify-content: flex-start;
    align-items: center;
}

.card-info-notes + .price-badges-wrapper {
    margin-top: 0px;
}

.price-pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #F8FAFC;
    border: 1.5px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.price-pill-badge .badge-val {
    font-weight: 800;
}

.price-pill-badge.badge-helyszin {
    color: var(--color-green);
    border-color: var(--color-green);
}
.price-pill-badge.badge-helyszin .badge-val {
    color: var(--color-green);
}

.price-pill-badge.badge-elvitel {
    color: var(--color-yellow);
    border-color: var(--color-yellow);
}
.price-pill-badge.badge-elvitel .badge-val {
    color: var(--color-yellow);
}

.price-pill-badge.badge-kiszallitas {
    color: var(--color-red);
    border-color: var(--color-red);
}
.price-pill-badge.badge-kiszallitas .badge-val {
    color: var(--color-red);
}

.card-footer {
    padding: 15px 20px 20px 20px;
    background-color: #F8FAFC;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.84rem;
}

.footer-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.footer-row .material-symbols-outlined,
.footer-row i,
.footer-row svg {
    color: #64748B;
    font-size: 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-link {
    color: var(--color-text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-red);
    text-decoration: underline;
}

.footer-row.phone-row {
    font-size: 1.05rem;
}

.footer-row.phone-row .material-symbols-outlined,
.footer-row.phone-row i {
    font-size: 1.2rem;
    color: var(--color-red);
    display: inline-block;
    animation: phoneRing 6s infinite ease-in-out;
    transform-origin: center bottom;
}

@keyframes phoneRing {
    0%, 75%, 100% {
        transform: rotate(0deg) scale(1);
    }
    77% {
        transform: rotate(-14deg) scale(1.15);
    }
    79% {
        transform: rotate(14deg) scale(1.15);
    }
    81% {
        transform: rotate(-12deg) scale(1.15);
    }
    83% {
        transform: rotate(12deg) scale(1.15);
    }
    85% {
        transform: rotate(-8deg) scale(1.1);
    }
    87% {
        transform: rotate(8deg) scale(1.1);
    }
    89% {
        transform: rotate(0deg) scale(1);
    }
}

.footer-row.phone-row:hover .material-symbols-outlined,
.footer-row.phone-row:hover i {
    animation: phoneRingHover 0.6s infinite ease-in-out;
}

@keyframes phoneRingHover {
    0%, 100% {
        transform: rotate(0deg) scale(1.15);
    }
    25% {
        transform: rotate(-15deg) scale(1.18);
    }
    75% {
        transform: rotate(15deg) scale(1.18);
    }
}

.footer-link.phone-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-red);
}

.address-text {
    font-weight: 700;
    color: #64748b;
}

.web-link {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    color: var(--color-text-muted);
}

.gynm-box-card {
    background: var(--color-card-bg);
    border-radius: var(--radius-card);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 901px) {
    .restaurant-card {
        order: 1;
    }
    .gynm-box-card {
        order: 2;
    }
}

@media (min-width: 901px) and (hover: hover) {
    .gynm-box-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: #94a3b8;
    }
}

.gynm-box-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gynm-box-img {
    width: 100%;
    transition: opacity 1s ease-in-out;
}

.gynm-box-img:first-child {
    position: relative;
    display: block;
    height: auto;
}

.gynm-box-img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
}

.gynm-box-img.img-active {
    opacity: 1;
    z-index: 2;
}

.gynm-box-img.img-hidden {
    opacity: 0;
    z-index: 1;
}

.site-footer {
    background-color: #FFFFFF;
    border-top: 1px solid var(--color-border);
    padding: 24px 16px 80px 16px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

@media (max-width: 900px) {
    .site-header {
        padding: 16px 16px 8px 16px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .header-brand-section {
        order: 1;
        align-items: center;
        padding: 0;
    }

    .header-banner-section {
        order: 2;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        padding: 0;
    }

    .banner-wrapper {
        align-items: center;
        width: 100%;
    }

    .hamm-banner {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .banner-info {
        text-align: center;
    }

    .date-time-bar {
        justify-content: center;
    }

    .restaurant-card:hover,
    .gynm-box-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
        border-color: var(--color-border);
    }

    .hamm-banner:hover,
    .hamm-banner:focus,
    .hamm-banner:active {
        transform: none !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
    }

    .logo-link:hover {
        transform: none;
    }

    .widget-btn:hover,
    .widget-btn:focus,
    .widget-btn:active {
        transform: none !important;
    }

    .main-content {
        padding: 10px 30px;
    }
}

@media (max-width: 480px) {
    .main-logo {
        height: 80px;
    }

    .restaurant-title {
        font-size: 1.5rem;
    }

    .card-header {
        padding: 30px 20px 15px 20px;
    }

    .card-body {
        padding: 20px 20px;
    }

    .price-pill-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.widget-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.widget-tooltip {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 8px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.widget-tooltip span {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1.15;
}

.widget-tooltip.tooltip-red span {
    color: var(--color-red);
}

.widget-scroll-wrapper .widget-tooltip {
    display: none;
}

.widget-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #FFFFFF;
}

.widget-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    text-decoration: none;
}

.widget-btn:focus,
.widget-btn:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .widget-btn:hover {
        transform: scale(1.12);
    }

    .btn-plus:hover {
        background-color: #8B9A25;
        box-shadow: 0 8px 20px rgba(155, 169, 46, 0.4);
        transform: scale(1.12);
        animation: none;
    }
}

@keyframes widgetPulse {
    0% {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(155, 169, 46, 0.6);
        transform: scale(1);
    }
    12% {
        transform: scale(1.14);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 0 0 16px rgba(155, 169, 46, 0);
    }
    24% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(155, 169, 46, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(155, 169, 46, 0);
    }
}

.btn-plus {
    background-color: var(--color-green);
    animation: widgetPulse 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-facebook {
    background-color: #1877F2;
}

.btn-facebook:hover {
    background-color: #166FE5;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.btn-scroll-top {
    background-color: var(--color-red);
}

.btn-scroll-top:hover {
    background-color: var(--color-red-dark);
    box-shadow: 0 8px 20px rgba(229, 35, 45, 0.4);
}

@media (max-width: 900px) {
    .floating-widgets {
        bottom: 16px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px;
        width: auto;
        z-index: 990;
    }

    .widget-plus-wrapper {
        position: relative;
    }

    .widget-tooltip {
        position: absolute;
        right: calc(100% + 8px);
        top: 50%;
        transform: translateY(-50%);
        margin-bottom: 0;
        margin-right: 0;
    }

    .widget-tooltip::after {
        bottom: auto;
        top: 50%;
        right: -6px;
        left: auto;
        transform: translateY(-50%);
        border-left: 6px solid #FFFFFF;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: none;
    }

    .widget-scroll-wrapper {
        position: relative;
    }

    .widget-scroll-wrapper .widget-tooltip {
        display: flex;
        left: calc(100% + 8px);
        right: auto;
    }

    .widget-scroll-wrapper .widget-tooltip::after {
        left: -6px;
        right: auto;
        border-right: 6px solid #FFFFFF;
        border-left: none;
    }
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.92);
    opacity: 0;
    pointer-events: none;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px 36px 32px 36px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2001;
}

.modal-dialog.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.modal-close-btn {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-red);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(229, 35, 45, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.modal-close-btn:hover {
    transform: scale(1.12);
    background-color: var(--color-red);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 500;
    color: var(--color-green);
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-desc {
    font-size: 1.02rem;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 24px;
}

.modal-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.modal-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-contact-item .material-symbols-outlined,
.modal-contact-item i {
    color: var(--color-text-dark);
    font-size: 1.2rem;
}

.modal-contact-item:hover {
    color: var(--color-red);
}

.cardi-menu-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cardi-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cardi-main-row,
.cardi-salad-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cardi-green-icon {
    color: var(--color-green) !important;
    font-size: 1.55rem;
    width: 26px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cardi-text-wrapper {
    display: flex;
    flex-direction: column;
}

.cardi-main-text {
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.35;
}

.cardi-salad-title {
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
}

.cardi-salad-desc {
    color: var(--color-green);
    font-weight: 500;
    font-size: 0.75rem;
    line-height: 1.25;
}

.cardi-badges-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 0;
    margin-top: 4px;
}
