        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f4f6f8;
            color: #333;
            line-height: 1.5;
            padding-bottom: 80px; /* Miejsce na FAB */
        }

        /* Header kompaktowy */
        .header {
            background-size: cover;
            background-position: center;
            color: #ffffff;
            padding: 40px 20px 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6); /* Ciemniejsze tło dla lepszej czytelności */
            z-index: 1;
        }

        .header-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 900px;
            padding-bottom: 10px;
        }

        .restaurant-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            overflow: hidden;
            border: 2px solid rgba(255,255,255,0.8);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .restaurant-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .restaurant-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .menu-title {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 10px;
            letter-spacing: 0.3px;
            font-weight: 400;
            max-width: 800px;
            line-height: 1.5;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px; /* Margines boczny dla tekstu */
        }

        /* Hamburger menu w nagłówku (duży hit-area, kontrast na zdjęciu) */
        .header-hamburger {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(6px);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            -webkit-tap-highlight-color: transparent;
            box-shadow: 0 6px 18px rgba(0,0,0,0.20);
            transition: transform 0.15s ease, background 0.15s ease;
        }
        .header-hamburger:active {
            transform: scale(0.98);
            background: rgba(0, 0, 0, 0.35);
        }
        .header-hamburger__icon {
            width: 26px;
            height: 26px;
            pointer-events: none;
        }

        /* ============================================
         * Hamburger menu (nagłówek) - overlay/drawer
         * ============================================ */
        .header-menu {
            position: fixed;
            inset: 0;
            display: none;
            z-index: 1200; /* nad modal-overlay (1000) */
        }
        .header-menu.is-active {
            display: block;
        }
        .header-menu__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.45);
        }
        .header-menu__drawer {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: min(420px, 92vw);
            background: #fff;
            color: #222;
            display: flex;
            flex-direction: column;
            box-shadow: -12px 0 24px rgba(0,0,0,0.25);
            transform: translateX(12px);
            opacity: 0;
            transition: transform 0.18s ease, opacity 0.18s ease;
        }
        .header-menu.is-active .header-menu__drawer {
            transform: translateX(0);
            opacity: 1;
        }
        .header-menu__top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 16px 12px;
            border-bottom: 1px solid #eee;
        }
        .header-menu__title {
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: 0.2px;
        }
        .header-menu__close {
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 12px;
            background: #f1f3f6;
            color: #222;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .header-menu__body {
            padding: 14px 16px 18px;
            overflow-y: auto;
            flex: 1 1 auto;
        }

        /* --- Sekcja z kartami menu --- */
        .header-menu__section {
            margin-bottom: 18px;
        }
        .header-menu__sectionTitle {
            font-size: 0.8rem;
            font-weight: 800;
            color: #999;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .header-menu__list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* --- Karta menu (z obrazem/gradientem) --- */
        .header-menu__menuCard {
            position: relative;
            width: 100%;
            min-height: 110px;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            background: #2c2c2e;
            transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .header-menu__menuCard:active {
            transform: scale(0.985);
        }
        .header-menu__menuCard.is-active {
            border-color: rgba(102, 126, 234, 0.7);
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.18);
        }
        .header-menu__menuCard-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .header-menu__menuCard-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.05) 0%,
                rgba(0, 0, 0, 0.55) 60%,
                rgba(0, 0, 0, 0.75) 100%
            );
        }
        .header-menu__menuCard-body {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 110px;
            padding: 14px 16px;
        }
        .header-menu__menuCard-name {
            font-size: 1.15rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.25;
        }
        .header-menu__menuCard-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            background: rgba(102, 126, 234, 0.55);
            border-radius: 8px;
            padding: 3px 10px;
            width: fit-content;
            backdrop-filter: blur(4px);
        }

        /* --- Sekcja "O nas" — kompaktowa i wyciszona --- */
        .header-menu__section--about {
            margin-bottom: 8px;
        }
        .header-menu__section--about .header-menu__sectionTitle {
            font-size: 0.72rem;
            color: #aaa;
            margin-bottom: 6px;
        }
        .header-menu__aboutLinks {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .header-menu__aboutLink {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 8px;
            border-radius: 10px;
            font-size: 0.88rem;
            font-weight: 500;
            color: #555;
            text-decoration: none;
            transition: background 0.12s ease, color 0.12s ease;
        }
        .header-menu__aboutLink:hover {
            background: #f3f4f6;
            color: #333;
        }
        .header-menu__aboutLink-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.55;
        }

        .header-menu__error {
            margin-top: 8px;
            font-size: 0.9rem;
            color: #b42318;
            min-height: 1.2em;
        }

        /* Nawigacja kategorii */
        .category-nav {
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 10px 0;
            /* position: sticky tworzy kontekst pozycjonowania dla hamburgera (position: absolute) */
        }

        .category-list {
            display: flex;
            padding: 0 15px;
            gap: 10px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE 10+ */
            max-width: 100%;
            margin: 0 auto;
            /* Centrowanie przez pseudo-elementy - działają gdy jest miejsce, znikają przy overflow/scroll */
        }
        .category-list::before,
        .category-list::after {
            content: '';
            flex: 1 0 auto;
        }
        
        /* Ukryj scrollbar w Webkit (Chrome, Safari) */
        .category-list::-webkit-scrollbar {
            display: none;
        }
        
        /* Logika centrowania: używamy margin: auto na pierwszym i ostatnim elemencie lub na samej liście */
        /* Aby działało centrowanie gdy mało elementów I scrollowanie gdy dużo: */
        /* .category-list musi mieć display: flex */
        
        /* Tag bar - centrowanie przez pseudo-elementy */

        .category-tab {
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: 20px;
            background: #f0f2f5;
            transition: all 0.3s;
            flex-shrink: 0; /* Zapobiega zwijaniu się tabów */
        }

        .category-tab.active {
            background: #333;
            color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        /* ============================================
         * Hamburger button -- widoczny gdy kategorie overflow-ują
         * ============================================ */

        /* Wrapper owijający .category-list + hamburger — tworzy kontekst pozycjonowania */
        .category-list-wrapper {
            position: relative;
        }

        .category-hamburger {
            display: none; /* domyślnie ukryty, JS dodaje .is-visible */
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
            width: 44px;
            height: 44px;
            border: none;
            border-radius: 50%;
            background: #fff;
            color: #333;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            /* Cień po lewej sygnalizuje, że jest więcej treści */
            box-shadow: -8px 0 12px 4px rgba(255,255,255,0.95), 0 1px 4px rgba(0,0,0,0.12);
            transition: opacity 0.2s, box-shadow 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        .category-hamburger.is-visible {
            display: flex;
        }
        .category-hamburger:active {
            background: #f0f2f5;
        }
        .category-hamburger__icon {
            width: 22px;
            height: 22px;
            pointer-events: none;
        }

        /* Padding-right na liście kategorii, żeby ostatni tab nie był zasłonięty */
        .category-list-wrapper.has-hamburger .category-list {
            padding-right: 52px;
        }

        /* ============================================
         * Modal kategorii (fullscreen)
         * ============================================ */

        .category-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1050; /* nad resztą, pod image modal (1100) */
            background: #fff;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            flex-direction: column;
        }
        .category-modal.is-active {
            display: flex;
        }
        .category-modal__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px 12px;
            border-bottom: 1px solid #f0f2f5;
            position: sticky;
            top: 0;
            background: #fff;
            z-index: 2;
        }
        .category-modal__title {
            font-size: 1.15rem;
            font-weight: 700;
            color: #222;
        }
        .category-modal__close {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 50%;
            background: #f0f2f5;
            color: #333;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        .category-modal__close:active {
            background: #e2e4e8;
        }
        /* Wyszukiwarka inline w modalu kategorii */
        .category-modal__search {
            padding: 8px 16px 4px;
            position: sticky;
            top: 53px; /* pod headerem */
            background: #fff;
            z-index: 2;
        }
        .category-modal__search-input {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #e2e4e8;
            border-radius: 10px;
            font-size: 0.95rem;
            color: #333;
            background: #f8f9fa;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }
        .category-modal__search-input:focus {
            border-color: #333;
            box-shadow: 0 0 0 2px rgba(51,51,51,0.08);
            background: #fff;
        }
        .category-modal__search-input::placeholder {
            color: #aaa;
        }
        /* Komunikat "brak wyników" */
        .category-modal__empty {
            text-align: center;
            color: #999;
            font-size: 0.9rem;
            padding: 24px 16px;
            display: none;
        }
        .category-modal__empty.is-visible {
            display: block;
        }

        .category-modal__list {
            padding: 8px 12px 32px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .category-modal__item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-radius: 12px;
            transition: background 0.15s;
            cursor: pointer;
        }
        .category-modal__item:active {
            background: #f0f2f5;
        }
        .category-modal__item.is-active {
            background: #f0f2f5;
        }
        .category-modal__item.is-active .category-modal__link {
            color: #111;
            font-weight: 700;
        }

        /* Miniatura zdjęcia kategorii */
        .category-modal__thumb {
            flex-shrink: 0;
            width: 52px;
            height: 52px;
            border-radius: 10px;
            overflow: hidden;
            cursor: zoom-in;
            background: #f5f5f5;
        }
        .category-modal__thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Link z nazwą kategorii */
        .category-modal__link {
            flex: 1;
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 0;
        }
        .category-modal__count {
            font-size: 0.8rem;
            font-weight: 500;
            color: #999;
            background: #f0f2f5;
            padding: 2px 8px;
            border-radius: 999px;
            min-width: 24px;
            text-align: center;
        }

        /* Podmenu tagów (sticky razem z .category-nav) */
        .tag-nav {
            margin-top: 8px;
        }
        .tag-list {
            display: flex;
            padding: 0 15px;
            gap: 8px;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            max-width: 100%;
            margin: 0 auto;
        }
        .tag-list::before,
        .tag-list::after {
            content: '';
            flex: 1 0 auto;
        }
        .tag-list::-webkit-scrollbar {
            display: none;
        }
        .tag-badge {
            text-decoration: none;
            color: #475569;
            font-weight: 700;
            font-size: 0.86rem;
            padding: 7px 12px;
            border-radius: 999px;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            transition: all 0.2s;
            flex-shrink: 0;
            cursor: pointer;
        }
        .tag-badge.active {
            background: #111827;
            color: #fff;
            border-color: #111827;
        }
        /* Ikona "x" na aktywnym badge -- sygnalizuje możliwość odznaczenia */
        .tag-badge.active::after {
            content: '\00d7';
            margin-left: 6px;
            font-weight: 400;
            opacity: 0.7;
        }

        /* Lista dań */
        .menu-content {
            padding: 20px 15px;
            max-width: 800px;
            margin: 0 auto;
        }

        .category-section {
            margin-bottom: 30px;
            scroll-margin-top: 70px; /* Offset dla sticky header */
        }

        .category-heading {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #222;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 8px;
            display: inline-block;
        }

        .dish-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            margin-bottom: 15px;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            transition: transform 0.12s ease, box-shadow 0.12s ease;
        }
        .dish-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.10);
        }

        .dish-header {
            display: flex;
            padding: 15px;
            gap: 15px;
        }

        .dish-info {
            flex: 1;
        }

        .dish-name-row {
            display: flex;
            align-items: baseline;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 5px;
        }
        .dish-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #111;
            margin: 0;
        }
        .dish-name-tags {
            font-size: 0.9rem;
            letter-spacing: 2px;
            line-height: 1;
        }

        .dish-desc {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .dish-price {
            font-weight: 700;
            color: #e63946;
            font-size: 1.1rem;
        }

        .dish-price--set {
            display: flex;
            align-items: baseline;
            gap: 10px;
            flex-wrap: wrap;
        }

        .dish-price-old {
            color: #8a8a8a;
            text-decoration: line-through;
            font-weight: 700;
            font-size: 1rem;
        }

        .dish-price-new {
            color: #e63946;
            font-weight: 800;
        }

        .dish-image {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            position: relative;
        }

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

        /* Warianty i dodawanie */
        .dish-actions {
            padding: 0 15px 15px;
            border-top: 1px solid #f0f0f0;
            padding-top: 15px;
        }

        .variants-list {
            margin-bottom: 15px;
        }

        .dish-details-body {
            padding: 0;
        }

        .dish-details-footer {
            padding: 14px 16px 16px;
            border-top: 1px solid #e5e7eb;
            display: flex;
            flex-wrap: wrap;
            justify-content: stretch;
            flex-shrink: 0;
            background: #fff;
        }
        .dd-add-row {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .dd-qty {
            display: inline-flex;
            align-items: center;
            height: 44px;
            border: 1px solid rgba(0,0,0,0.12);
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
        }
        .dd-qty-btn {
            width: 44px;
            height: 44px;
            border: none;
            background: transparent;
            font-size: 18px;
            font-weight: 800;
            color: #111;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .dd-qty-btn:disabled {
            opacity: 0.35;
            cursor: default;
        }
        .dd-qty-value {
            min-width: 22px;
            text-align: center;
            font-weight: 800;
            color: #111;
        }
        .dish-details-footer .add-btn {
            flex: 1;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dish-details-image {
            width: 100%;
            height: 220px;
            border-radius: 12px;
            overflow: hidden;
            background: #f0f0f0;
            margin-bottom: 12px;
        }

        .dish-details-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dish-desc--set .dish-desc-line {
            margin-bottom: 4px;
        }
        /* Zestawy: lista punktowana bez dodatkowych marginesów/indentów */
        .dish-desc-list {
            margin: 0;
            padding: 0;
            list-style-type: disc;
            list-style-position: inside;
        }
        .dish-desc-list .dish-desc-line {
            margin: 0 0 4px 0;
            padding: 0;
        }
        .dish-desc-list .dish-desc-line:last-child {
            margin-bottom: 0;
        }

        .option-group {
            border: 1px solid #e5e7eb;
            border-radius: 10px;
            padding: 12px 12px;
            margin-bottom: 10px;
            background: #fafbfc;
        }
        .option-group:last-child {
            margin-bottom: 0;
        }
        .option-group-title {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 10px;
            font-weight: 700;
            color: #222;
            margin-bottom: 10px;
            font-size: 0.92rem;
        }
        .option-group-max {
            font-weight: 600;
            color: #64748b;
            font-size: 0.8rem;
            white-space: nowrap;
        }
        .option-group-items {
            display: grid;
            gap: 4px;
        }

        .variant-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            border-radius: 8px;
            padding: 8px 10px;
            transition: background 0.15s;
            background: #fff;
            border: 1px solid transparent;
        }

        .variant-option:hover {
            background: #f1f5f9;
        }
        
        .variant-option:has(input:checked) {
            background: #f0fdf4;
            border-color: #86efac;
        }
        /* Fallback dla przeglądarek bez :has() */
        .variant-option.is-checked {
            background: #f0fdf4;
            border-color: #86efac;
        }

        .variant-option input {
            margin-right: 10px;
            accent-color: #22c55e;
            transform: scale(1.15);
            flex-shrink: 0;
        }

        .variant-label {
            flex: 1;
            font-size: 0.9rem;
            color: #374151;
            line-height: 1.3;
        }

        .variant-price {
            font-weight: 600;
            color: #e63946;
            font-size: 0.88rem;
            margin-left: 8px;
            white-space: nowrap;
        }

        .add-btn {
            width: 100%;
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: #fff;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .add-btn:hover {
            background: linear-gradient(135deg, #111827 0%, #000 100%);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .add-btn:active {
            transform: translateY(0);
        }

        .add-btn:disabled {
            background: #d1d5db;
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }

        /* Modale */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        /* Modal Obrazka - wyższy z-index żeby był nad innymi modalami */
        #imageModal {
            z-index: 1100;
        }
        .image-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .image-modal-img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.5);
        }

        .image-close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0,0,0,0.6);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }

        /* Modal Informacyjny - Ostylowanie */
        .info-modal-content {
            background: #fff;
            padding: 30px 25px;
            border-radius: 20px;
            max-width: 400px;
            width: 90%;
            text-align: left;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            position: relative;
        }

        /* Modal Szczegóły dania (Modern) – max 500px + hero ze zdjęciem */
        #dishDetailsModal .info-modal-content {
            max-width: 500px;
            width: calc(100% - 24px);
            padding: 0;
            overflow: hidden;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            border-radius: 16px;
        }
        /* Brak osobnego headera – X jest w hero */
        #dishDetailsModal .info-modal-header {
            display: none;
        }
        
        /* Scrollowalna część modala */
        #dishDetailsModal .dish-details-body {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }
        #dishDetailsModal .dish-details-card {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }
        
        /* Scrollowalny content + opcje razem */
        .dd-scrollable-area {
            flex: 1;
            overflow-y: auto;
            min-height: 0;
        }

        .dd-hero {
            position: relative;
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #2b2f36, #111);
            overflow: hidden;
            cursor: pointer;
            flex-shrink: 0;
        }
        .dd-hero--noimg {
            height: auto;
            min-height: 120px;
            padding: 54px 16px 16px;
            cursor: default;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .dd-hero--noimg .dd-hero-gradient {
            display: none;
        }
        .dd-hero--noimg .dd-hero-overlay {
            position: static;
            padding: 0;
            padding-right: 100px;
        }
        .dd-hero--noimg .dd-hero-title {
            font-size: 1.15rem;
            padding-right: 0;
        }
        .dd-hero--noimg .dd-hero-price {
            position: absolute;
            right: 14px;
            bottom: 14px;
            top: auto;
        }
        .dd-hero-media {
            position: absolute;
            inset: 0;
            cursor: pointer;
            z-index: 1;
        }
        .dd-hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .dd-hero-gradient {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.10) 75%, rgba(0,0,0,0) 100%);
            z-index: 2;
            pointer-events: none;
        }
        .dd-hero-close {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 40px;
            height: 40px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(0,0,0,0.40);
            color: #fff;
            font-size: 20px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(6px);
            z-index: 5;
        }
        .dd-hero-controls {
            position: absolute;
            top: 10px;
            right: 10px;
            display: inline-flex;
            gap: 8px;
            z-index: 6;
        }
        .dd-hero-zoom {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.35);
            background: rgba(0,0,0,0.40);
            color: #fff;
            font-size: 16px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(6px);
            transform: scale(0.9);
            transition: transform 0.12s ease;
        }
        .dd-hero:hover .dd-hero-zoom {
            transform: scale(1.15);
        }
        .dd-hero-zoom-icon {
            width: 16px;
            height: 16px;
            display: block;
        }
        .dd-hero-controls .dd-hero-close {
            position: static;
            width: 32px;
            height: 32px;
            font-size: 18px;
        }
        .dd-hero-overlay {
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: 12px;
            color: #fff;
            display: grid;
            gap: 8px;
            z-index: 3;
            pointer-events: none; /* klik ma trafiać w zdjęcie */
        }
        .dd-hero-title {
            font-size: 1.2rem;
            font-weight: 800;
            line-height: 1.15;
            text-shadow: 0 1px 12px rgba(0,0,0,0.55);
            padding-right: 120px; /* miejsce na cenę */
        }
        .dd-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding-right: 120px;
        }
        .dd-tag {
            font-size: 0.72rem;
            font-weight: 700;
            padding: 5px 9px;
            border-radius: 999px;
            background: rgba(0,0,0,0.35);
            border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(6px);
        }
        .dd-hero-desc .dish-desc {
            color: rgba(255,255,255,0.94);
            margin: 0;
            font-size: 0.92rem;
            line-height: 1.35;
            text-shadow: 0 1px 10px rgba(0,0,0,0.5);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .dd-hero-price {
            position: absolute;
            right: 12px;
            bottom: 12px;
            padding: 8px 12px;
            border-radius: 10px;
            background: rgba(0,0,0,0.55);
            border: 1px solid rgba(255,255,255,0.18);
            backdrop-filter: blur(6px);
            text-shadow: 0 1px 12px rgba(0,0,0,0.55);
            z-index: 4;
            pointer-events: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: #fff;
        }
        .dd-hero-price:empty {
            display: none;
        }
        .dd-hero-price.dish-price {
            margin: 0;
        }
        .dd-hero-price.dish-price--set {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }
        .dd-hero-price .dish-price-old {
            color: rgba(255,255,255,0.65);
            font-size: 0.9rem;
            font-weight: 600;
        }
        .dd-hero-price .dish-price-new {
            color: #ff5a67;
        }

        .dd-content {
            padding: 14px 16px 6px;
        }
        .dd-content:empty,
        .dd-content--empty {
            display: none;
            padding: 0;
        }
        .dish-details-options {
            padding: 6px 16px 0px;
        }
        .dish-details-options:empty,
        .dish-details-options--empty {
            display: none;
            padding: 0;
        }
        
        /* Puste sekcje w content */
        .dd-full-desc:empty {
            display: none;
        }
        .dd-hero-tags:empty {
            display: none;
        }
        
        /* Gdy brak content ale są opcje - dopasuj padding */
        .dd-content--empty + .dish-details-options {
            padding-top: 14px;
        }

        .dd-section {
            padding: 10px 0 0 0;
            border-bottom: 1px solid #f1f5f9;
        }
        .dd-section:last-child {
            border-bottom: none;
        }
        .dd-section:first-child {
            padding-top: 6px;
        }
        .dd-section-title {
            font-weight: 800;
            color: #111;
            margin: 0 0 6px 0;
            font-size: 0.95rem;
        }
        .dd-section-body {
            color: #444;
            font-size: 0.92rem;
            line-height: 1.35;
        }
        .dd-section-body.is-collapsed {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .dd-section-toggle {
            margin-top: 6px;
            display: inline-block;
            font-weight: 700;
            color: #e63946;
            cursor: pointer;
            user-select: none;
            font-size: 0.85rem;
        }

        /* Neutralizuj zachowanie "karty" wewnątrz modala (żeby nie było hover/klik UX jak na liście) */
        .dish-details-card {
            cursor: default;
            box-shadow: none;
            margin: 0;
            transform: none !important;
        }
        .dish-details-card:hover {
            transform: none;
            box-shadow: none;
        }

        .dd-full-desc .dish-desc {
            color: #444;
            font-size: 0.95rem;
            line-height: 1.45;
            margin: 0;
        }
        .dd-full-desc .dish-desc--set {
            margin: 0;
        }
        .dd-full-desc .dish-desc-line {
            margin-bottom: 6px;
        }
        .dd-full-desc .dish-desc-line:last-child {
            margin-bottom: 0;
        }
        
        /* Tagi w content (gdy są wyświetlane pod hero) */
        .dd-content .dd-hero-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 12px;
        }
        .dd-content .dd-tag {
            font-size: 0.72rem;
            font-weight: 700;
            padding: 5px 10px;
            border-radius: 999px;
            background: #f1f5f9;
            color: #475569;
            border: none;
        }
        /* Szczegóły: tagi + opisy w jednym akapicie, z łamaniem na kolejne linie */
        .dd-tags-line {
            margin: 0 0 12px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            align-items: center;
            color: #475569;
            font-size: 0.9rem;
            line-height: 1.25;
        }
        .dd-tagline-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }
        .dd-tagline-ico {
            font-size: 1rem;
            line-height: 1;
        }
        .dd-tagline-txt {
            color: #334155;
            font-weight: 600;
        }

        .info-modal-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-modal-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
            flex: 1;
        }

        .info-modal-close {
            background: #f5f5f5;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            font-size: 1.2rem;
            color: #666;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .info-modal-close:hover {
            background: #e0e0e0;
            color: #333;
        }

        .info-item-row {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            gap: 15px;
        }

        /* Opis menu: pełna szerokość + wycentrowany tekst (bez ikonki i nagłówka) */
        .info-item-row--menu-description {
            justify-content: center;
        }
        .info-menu-description {
            width: 100%;
            text-align: center;
        }

        .info-item-row:last-child {
            margin-bottom: 0;
        }

        .info-item-icon {
            width: 40px;
            height: 40px;
            background: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #555;
            flex-shrink: 0;
        }

        .info-item-content {
            flex: 1;
        }

        .info-item-label {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #888;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .info-item-value {
            font-size: 1rem;
            color: #333;
            line-height: 1.5;
        }

        .info-item-value--multiline {
            white-space: pre-wrap;
        }

        .info-item-value a {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
        }

        .info-item-value a:hover {
            text-decoration: underline;
        }

        .hours-list {
            margin-top: 5px;
            font-size: 0.95rem;
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 4px 0;
            border-bottom: 1px dashed #eee;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .hours-day {
            color: #555;
        }

        .hours-time {
            font-weight: 500;
            color: #222;
        }

        .current-day {
            color: #007bff;
            font-weight: 600;
        }

        /* Wyróżnienie: aktualny dzień / specjalne godziny */
        .hours-row.current-day .hours-day {
            color: #007bff;
            font-weight: 700;
        }

        .hours-row.current-day .hours-time {
            font-weight: 600;
        }

        .hours-row.special-day .hours-day {
            /* bez czerwonego – zostawiamy tylko pogrubienie (kolor zostaje domyślny) */
            font-weight: 700;
        }

        .hours-row.special-day .special-date-note {
            color: #888;
            font-weight: 600;
            font-size: 0.9em;
        }

        .hours-week {
            display: block;
        }

        /* Sekcja wyjątków (przyszłe daty) */
        .hours-special-section {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hours-special-group {
            /* bez osobnego tła i ramek – spójnie z listą godzin */
            padding: 0;
            border: none;
            background: none;
        }

        .hours-special-group-title {
            margin-bottom: 6px;
        }

        .hours-special-rows .hours-row:last-child {
            border-bottom: none;
        }

        .hours-row--future {
            /* jak w bazowej liście */
            padding: 4px 0;
        }

        /* Zablokowane przyciski dodawania (gdy dostawa/odbiór nieaktywne) */
        .is-disabled-delivery,
        .is-disabled-delivery:hover {
            opacity: 0.45;
            cursor: not-allowed !important;
            pointer-events: none;
        }

        /* Komunikat o wstrzymaniu zamówień (w modalu szczegółów dania) */
        .delivery-blocked-msg {
            flex: 0 0 100%;
            width: 100%;
            color: #6b7280;
            font-size: 0.8rem;
            text-align: center;
            padding: 8px 0;
            white-space: nowrap;
        }

        /* ============================================
         * Onboarding overlay (podpowiedzi UI)
         * ============================================ */
        .onboarding-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: auto;
            opacity: 0;
            transition: opacity 0.45s ease-out;
        }
        .onboarding-overlay.is-visible {
            opacity: 1;
        }
        .onboarding-overlay.is-fading {
            opacity: 0;
            pointer-events: none;
        }
        .onboarding-overlay__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.62);
        }

        /* Pulsujący pierścień wokół przycisku */
        .onboarding-overlay__ring {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 2;
        }
        .onboarding-overlay__ring::before,
        .onboarding-overlay__ring::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: inherit;
            border: 2px solid rgba(255, 255, 255, 0.55);
            animation: obRingPulse 2s ease-in-out infinite;
        }
        .onboarding-overlay__ring::after {
            inset: -14px;
            border-color: rgba(255, 255, 255, 0.25);
            animation-delay: 0.35s;
        }
        @keyframes obRingPulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.06); opacity: 1; }
        }

        /* Kontener podpowiedzi: etykieta + strzałka w rzędzie */
        .onboarding-overlay__hint {
            position: fixed;
            z-index: 3;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 2px;
            opacity: 0;
            animation: obHintIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .onboarding-overlay__hint--hamburger { animation-delay: 0.35s; }
        .onboarding-overlay__hint--cart { animation-delay: 0.6s; }

        @keyframes obHintIn {
            from { opacity: 0; transform: translateY(8px) scale(0.9); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .onboarding-overlay__arrow {
            display: block;
            flex-shrink: 0;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
        }
        /* Ręczne dopasowanie położenia strzałek względem etykiety (prośba usera) */
        .onboarding-overlay__hint--hamburger .onboarding-overlay__arrow {
            transform: translate(-24px, -15px);
        }
        .onboarding-overlay__hint--cart .onboarding-overlay__arrow {
            transform: translate(-24px, 15px);
        }
        /* Ręczne dopasowanie położenia etykiet (tekstów) względem strzałek */
        .onboarding-overlay__hint--hamburger .onboarding-overlay__label {
            transform: translate(-22px, 7px);
        }
        .onboarding-overlay__hint--cart .onboarding-overlay__label {
            transform: translate(-22px, -8px);
        }
        .onboarding-overlay__label {
            display: inline-block;
            flex-shrink: 0;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.13);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 14px;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 700;
            white-space: nowrap;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
            letter-spacing: 0.15px;
        }

        /* "Dotknij aby kontynuować" */
        .onboarding-overlay__tap {
            position: fixed;
            z-index: 3;
            left: 50%;
            bottom: max(60px, calc(16px + env(safe-area-inset-bottom) + 70px));
            transform: translateX(-50%);
            color: rgba(255,255,255,0.5);
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            opacity: 0;
            animation: obTapIn 0.5s 1.1s ease forwards;
        }
        @keyframes obTapIn {
            from { opacity: 0; transform: translateX(-50%) translateY(5px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
