/* 1. БАЗОВІ СТИЛІ ТА ФОН */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
            color: #f8fafc;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            padding: 20px 10px;
        }

        /* Контейнер-оболонка під мобільний формат сайту-меню */
        .menu-container {
            width: 100%;
            max-width: 480px; /* Ідеальний мобільний розмір */
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* 2. ШАПКА ПРОФІЛЮ / РЕСТОРАНУ */
        .profile-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .profile-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #6366f1;
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
            margin-bottom: 12px;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .profile-avatar:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
        }

        .profile-title {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .profile-bio {
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.4;
        }

        /* Соціальні кнопки під шапкою */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            color: #f8fafc;
            font-size: 20px;
            transition: transform 0.2s, color 0.2s;
            text-decoration: none;
        }

        .social-icon:hover {
            color: #6366f1;
            transform: scale(1.15);
        }

        /* 3. КАТЕГОРІЇ (НАВІГАЦІЯ) */
        .categories-nav {
            display: flex;
            gap: 10px;
            overflow-x: auto; /* Горизонтальний скрол категорій */
            padding-bottom: 12px;
            margin-bottom: 25px;
            scrollbar-width: none; /* Ховаємо стандартний скролбар Firefox */
        }

        .categories-nav::-webkit-scrollbar {
            display: none; /* Ховаємо скролбар Chrome/Safari */
        }

        .category-badge {
            background: rgba(255, 255, 255, 0.07);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .category-badge.active, .category-badge:hover {
            background: #6366f1;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
            border-color: #6366f1;
        }

        /* 4. БЛОК СТАТИЧНИХ ПОСИЛАНЬ (Кнопки-Лінки) */
        .links-section {
            margin-bottom: 30px;
        }

        .action-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 14px 20px;
            border-radius: 16px;
            margin-bottom: 12px;
            text-decoration: none;
            color: #f8fafc;
            transition: transform 0.2s, background 0.2s;
        }

        .action-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .action-link-content {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .action-link-content i {
            font-size: 18px;
            color: #818cf8;
        }

        /* 5. КАРТКИ ТОВАРІВ / МЕНЮ */
        .section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #cbd5e1;
            border-left: 4px solid #6366f1;
            padding-left: 10px;
        }

        .product-card {
            display: flex;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 15px;
            transition: border-color 0.2s;
        }

        .product-card:hover {
            border-color: rgba(99, 102, 241, 0.4);
        }

        .product-img {
            width: 110px;
            height: auto;
			max-height: 150px;
    object-fit: contain;
    background: #ffffff;
        }

        .product-info {
            flex: 1;
            padding: 12px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-name {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .product-desc {
            font-size: 12px;
            color: #94a3b8;
            display: -webkit-box;
            -webkit-line-clamp: 2; /* Обрізає опис до двох рядків */
            line-clamp: 2; /* Стандартне властивість */
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .product-footer {
            width: 100%;
        }

        .price-wrapper {
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 16px;
            font-weight: 700;
            color: #38bdf8;
        }

        /* Контейнер для кнопок */
        .product-actions {
            display: flex;
            gap: 8px;
        }

        /* Кнопка "Детальніше" */
        .btn-details {
            flex: 1;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: #6366f1;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .btn-details:hover {
            background: rgba(99, 102, 241, 0.2);
            border-color: #6366f1;
        }

        /* Кнопка "Додати" */
        .btn-order {
            flex: 1;
            background: #6366f1;
            border: none;
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .btn-order:hover {
            background: #4f46e5;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
        }

        /* 6. ФУТЕР */
        .menu-footer {
            text-align: center;
            margin-top: 30px;
            font-size: 12px;
            color: #64748b;
        }

        /* 7. СЕКЦІЯ "ПРО ЗАКЛАД" */
        .about-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .about-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #f8fafc;
        }

        .about-item {
            display: flex;
			flex-wrap: wrap;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
		.about-map{
			width: 100%;
			height: 200px;
			border-radius: 12px;
			overflow: hidden;
			margin-top: 15px;
		}

        .about-item:last-child {
            border-bottom: none;
        }

        .about-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: rgba(99, 102, 241, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6366f1;
            font-size: 22px;
        }

        .about-content {
            flex: 1;
        }

        .about-label {
            font-size: 13px;
            color: #94a3b8;
            margin-bottom: 5px;
        }

        .about-value {
            font-size: 16px;
            font-weight: 600;
            color: #f8fafc;
            line-height: 1.5;
        }

        .about-phone {
            color: #6366f1;
            text-decoration: none;
            transition: color 0.2s;
        }

        .about-phone:hover {
            color: #818cf8;
        }

        .about-schedule {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .schedule-row {
            display: flex;
            justify-content: space-between;
            font-size: 15px;
            color: #e2e8f0;
        }

        .schedule-row span:first-child {
            font-weight: 600;
            color: #94a3b8;
            min-width: 30px;
        }

        /* МІНІМІЗОВАНИЙ HEADER */
        .profile-header.minimized {
            margin-bottom: 15px;
        }

        .profile-header.minimized .profile-avatar {
            width: 50px;
            height: 50px;
            margin-bottom: 0;
        }

        .profile-header.minimized .profile-title {
            font-size: 18px;
            margin-bottom: 0;
        }

        .profile-header.minimized .profile-bio,
        .profile-header.minimized .social-links {
            display: none;
        }

        /* ПОШУК ТОВАРІВ */
        .search-container {
            margin-bottom: 20px;
        }

        .search-input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 16px;
            transition: all 0.3s ease;
        }

        .search-input-wrapper:focus-within {
            background: rgba(255, 255, 255, 0.08);
            border-color: #6366f1;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        .search-icon {
            color: #94a3b8;
            font-size: 18px;
            margin-right: 12px;
        }

        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: #f8fafc;
            font-size: 15px;
            font-family: inherit;
        }

        .search-input::placeholder {
            color: #64748b;
        }

        .search-clear {
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 18px;
            cursor: pointer;
            padding: 0;
            margin-left: 8px;
            transition: color 0.2s;
            display: flex;
            align-items: center;
        }

        .search-clear:hover {
            color: #f8fafc;
        }

        .search-results-info {
            margin-top: 12px;
            padding: 8px 12px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 8px;
            font-size: 14px;
            color: #94a3b8;
        }

        .search-results-info.no-results {
            background: rgba(239, 68, 68, 0.1);
            color: #fca5a5;
        }

        /* Кнопка "Показати ще" */
        .btn-load-more {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .btn-load-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
        }

        .btn-load-more:active {
            transform: translateY(0);
        }

        .btn-load-more i {
            font-size: 18px;
        }
