
        /* Rəng Palitrası və Qaranlıq Rejim Tənzimləmələri */
        :root {
            --primary-color: #cd0256;
            /* İstədiyiniz bordo tonu */
            --bg-color: #fff5e2;
            /* İstədiyiniz krem tonu */
            --text-color: #1a1a1a;
            --card-bg: #ffffff;
            --accent-color: #e6dfd1;
            --hero-bg: #111111;
            /* Üst qara hissə */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-theme="dark"] {
            --primary-color: #cd0256;
            --bg-color: #121212;
            --text-color: #fff5e2;
            --card-bg: #1e1e1e;
            --accent-color: #2d2d2d;
            --hero-bg: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            transition: var(--transition);
            padding-bottom: 85px;
        }

        /* 1. Üst Maili və Dairəvi Loqolu Bölmə (Hero) */
        .hero-section {
            /* Arxa fona həm şəkil, həm də yazıların oxunması üçün qaraltma (overlay) qradiyenti veririk */
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(18, 18, 18, 0.9) 90%),
                url('/assets/web/images/chikiyaki.jpg') center center / contain no-repeat;

            color: #ffffff;
            padding: 20px 20px 35px 20px;
            text-align: center;
            position: relative;

            /* Nümunədəki kimi aşağı hissənin yarım maili / oval kəsilməsi */
            border-bottom-left-radius: 50% 15px;
            border-bottom-right-radius: 50% 15px;

            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        /* Qaranlıq rejimdə (Dark Mode) fonun bir az daha tünd olması üçün */
        [data-theme="dark"] .hero-section {
           background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(18, 18, 18, 0.9) 90%),
                url('/assets/web/images/chikiyaki.jpg') center center / contain no-repeat;
        }

        .header-top-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .burger-menu {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 10;
        }

        .burger-menu span {
            width: 24px;
            height: 3px;
            background-color: #fff5e2;
            border-radius: 2px;
        }

        .theme-toggle {
            background: none;
            border: none;
            color: #fff5e2;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
        }

        /* Dairəvi Logo Dizaynı */
        /* Loqonun yerləşdiyi ana konteyner */
        .logo-container {
            display: flex;
            justify-content: center;
            margin: 15px 0;
        }

        /* Dairəvi karkas */
        .circle-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: #ffffff;
            /* Loqo transparent olarsa arxa fon rəngi */
            border: 3px solid var(--primary-color);
            /* İstədiyiniz bordo rəngli çərçivə */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            /* Şəklin dairənin kənarına daşmasının qarşısını alır */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Dairənin içindəki loqo şəkli */
        .circle-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* Şəkli əymədən və korlamadan dairəyə tam otuzdurur */
            display: block;
        }



        /* Yan-yana 4 Dil Seçimi */
        .lang-selector {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 20px 15px 10px;
        }

        .lang-btn {
            flex: 1;
            max-width: 75px;
            padding: 8px 0;
            border: 1px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.85rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .lang-btn.active,
        .lang-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }

        /* Overflow Kateqoriyalar */
        .category-container {
            overflow-x: auto;
            white-space: nowrap;
            padding: 10px 15px;
            scrollbar-width: none;
        }

        .category-container::-webkit-scrollbar {
            display: none;
        }

        .category-wrapper {
            display: inline-flex;
            gap: 10px;
        }

        .cat-btn {
            padding: 10px 20px;
            border: none;
            background-color: var(--accent-color);
            color: var(--text-color);
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .cat-btn.active {
            background-color: #cd0256;
            color: white;
        }

        /* Məhsullar Bölməsi (2-2 Şaquli Grid) */
        .main-content {
            padding: 20px 15px;
        }

        .section-title {
            margin-bottom: 15px;
            font-size: 1.2rem;
            border-left: 4px solid var(--primary-color);
            padding-left: 10px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .menu-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        /* Şəkil yuxarıda */
        .card-img img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        /* Məlumatlar aşağıda */
        .card-info {
            padding: 12px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            justify-content: space-between;
        }

        .card-info h4 {
            font-size: 0.95rem;
            margin-bottom: 4px;
        }

        .ingredients {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.3;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-weight: bold;
            color: var(--primary-color);
            font-size: 0.95rem;
        }

        .order-direct-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }

        /* Sürüşən Panellər (Side və Bottom Sheets) */
        .side-panel,
        .bottom-sheet {
            position: fixed;
            background-color: var(--card-bg);
            z-index: 1000;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Burger Yan Panel */
        .side-panel {
            top: 0;
            left: 0;
            width: 290px;
            height: 100%;
            transform: translateX(-100%);
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
            padding: 25px 20px;
        }

        .side-panel.open {
            transform: translateX(0);
        }

        /* Aşağıdan yuxarı açılan panel dizaynı */
        .bottom-sheet {
            bottom: 0;
            left: 0;
            width: 100%;
            max-height: 75%;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
            transform: translateY(100%);
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
            padding: 20px;
            overflow-y: auto;
        }

        .bottom-sheet.open {
            transform: translateY(0);
        }

        .drag-handle {
            width: 45px;
            height: 5px;
            background-color: var(--accent-color);
            border-radius: 5px;
            margin: 0 auto 15px;
        }

        .panel-header,
        .sheet-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .close-panel {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text-color);
            cursor: pointer;
        }

        /* Axtarış Bölməsi */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(6px);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding-top: 60px;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .search-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .search-box {
            background-color: var(--card-bg);
            padding: 12px 20px;
            border-radius: 30px;
            display: flex;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .search-box input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 1rem;
            color: var(--text-color);
        }

        #closeSearch {
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
        }

        /* Qalereya Grid-i */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .gallery-item img {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
        }

        /* Əlaqə düymələri */
        .contact-buttons-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 10px 0;
        }

        .contact-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: var(--transition);
        }

        .call-btn {
            background-color: var(--primary-color);
            color: white;
        }

        .whatsapp-btn {
            background-color: #25D366;
            color: white;
        }

        .info-item {
            display: flex;
            gap: 15px;
            align-items: start;
            margin-bottom: 22px;
        }

        .info-item i {
            font-size: 1.4rem;
            color: var(--primary-color);
        }

        /* Alt Naviqasiya Menusu (Tab Bar) */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background-color: var(--card-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
            z-index: 900;
        }

        .nav-item {
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: var(--text-color);
            opacity: 0.55;
            cursor: pointer;
            font-size: 0.75rem;
            flex: 1;
        }

        .nav-item i {
            font-size: 1.2rem;
        }

        .nav-item.active {
            color: var(--primary-color);
            opacity: 1;
            font-weight: bold;
        }






        /* Qalereya şəkilləri üçün kursor effekti */
        .gallery-item img {
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .gallery-item img:hover {
            transform: scale(1.03);
        }

        /* Tam Ekran Lightbox Arxa Fonu */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            /* Arxa fon qaraltması */
            backdrop-filter: blur(8px);
            z-index: 3000;
            /* Hər şeyin üstündə görünməsi üçün */
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        /* Lightbox aktiv olduqda */
        .lightbox.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Şəklin yerləşdiyi konteyner */
        .lightbox-content {
            max-width: 85%;
            max-height: 80%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        /* Naviqasiya və Bağlama Düymələrinin Ümumi Stili */
        .lightbox-close,
        .lightbox-nav {
            position: absolute;
            background: rgba(30, 30, 30, 0.6);
            color: #fff5e2;
            /* Sizin krem rəngi */
            border: none;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 3100;
        }

        .lightbox-close:hover,
        .lightbox-nav:hover {
            background-color: var(--primary-color);
            /* Sizin bordo rəngi */
            color: #ffffff;
        }

        /* Düymələrin Mövqeləri */
        .lightbox-close {
            top: 25px;
            right: 25px;
        }

        .lightbox-nav.prev {
            left: 20px;
        }

        .lightbox-nav.next {
            right: 20px;
        }

        /* Mobil cihazlar üçün düymə ölçülərinin optimallaşdırılması */
        @media (max-width: 576px) {
            .lightbox-nav {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .lightbox-nav.prev {
                left: 10px;
            }

            .lightbox-nav.next {
                right: 10px;
            }
        }










        /* Modalın ümumi fonu (Gizli başlayır) */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            /* Arxa fonu qaraltmaq üçün */
            backdrop-filter: blur(5px);
            /* Arxa fonu bulandırmaq üçün */
            justify-content: center;
            align-items: center;
        }

        /* Modal pəncərəsinin özü */
        .modal-content {
            background-color: #1e1e1e;
            /* Saytınızın tünd dizaynına uyğun */
            color: #fff;
            padding: 20px;
            border-radius: 15px;
            width: 90%;
            max-width: 450px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            animation: fadeIn 0.3s ease-in-out;
        }

        /* Açılış animasiyası */
        @keyframes fadeIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Bağlama (X) düyməsi */
        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            color: #aaa;
            font-size: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
            z-index: 10;
        }

        .close-modal:hover {
            color: #fff;
        }

        /* Modalın daxili elementləri */
        .modal-body img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .modal-body h3 {
            margin: 0 0 10px 0;
            font-size: 22px;
        }

        .modal-ingredients {
            color: #ccc;
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-price {
            font-size: 20px;
            font-weight: bold;
            color: #ffcc00;
            /* Qiymət rəngi */
        }

        .modal-order-btn {
            background-color: #ffcc00;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
   

    .menu-card.hidden {
        display: none !important;
    }
    
        .cat-count {
        font-size: 0.85em;
        color: #888;
        margin-left: 5px;
        font-weight: 400;
    }
    
    /* Əgər düymə içindədirsə, rəngini biraz daha açıq edə bilərsiniz */
    .cat-btn .cat-count {
        color: black;
    }
    /* --- Dark Mode Aktiv Olanda --- */
[data-theme="dark"] .cat-btn .cat-count {
    color: white;
}
    .cat-btn.active .cat-count {
        color: #ffffff;
    }
    /* Kateqoriyaların yuxarıda yapışıb qalması (Apple style sticky) */
    .category-container {
        position: sticky;
        top: 0;
        z-index: 1;
        background: var(--bg-color, #ffffff);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 10px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }
    
    html, body {
        scroll-behavior: smooth !important;
    }

    .menu-cat-section {
        scroll-margin-top: 75px; /* Yapışqan menyu üçün ofset boşluğu */
    }
    
    /* Kateqoriya başlıqlarının dizaynı */
    .cat-section-header {
        font-size: 20px;
        font-weight: 700;
        margin: 30px 0 15px 0;
        padding-bottom: 5px;
        border-bottom: 2px solid var(--primary-color, #cd0256);
        color: var(--text-color, #1a1a1a);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Təsvir mətninin görünməsi və kəsilməsi */
    .ingredients {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
        color: #777777;
        margin: 6px 0 12px 0;
        line-height: 1.4;
    }
    
    [data-theme="dark"] .ingredients {
        color: #b0b0b0;
    }
    

.catalog-modal {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.85);
        z-index: 9999;
        display: none; justify-content: center; align-items: center;
    }
    .catalog-modal.active { display: flex; }
    .catalog-content {
        background: #1a1a1a;
        color: white;
        width: 90%; max-width: 400px;
        padding: 20px; border-radius: 20px;
        max-height: 80vh; overflow-y: auto;
        position: relative;
    }
    .modal-header {
        display: flex; justify-content: space-between; align-items: center;
        margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 10px;
    }
    .close-btn { cursor: pointer; font-size: 24px; color: #888; }
    .cat-item {
        padding: 15px 0;
        border-bottom: 1px solid #333;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .cat-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    /* Kataloq düyməsi (ikon üçün) */
    .catalog-trigger {
        background: var(--primary-color, #cd0256);
        color: white;
        padding: 10px 15px;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        flex-shrink: 0;
    }
