    #menu {
        padding: 60px 0;
        background-color: #f9f9f9;
        font-family: 'PT Sans Narrow', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    h2, .mbr-section-title {
        text-align: center;
        color: #333;
        margin-bottom: 30px;
    }

    .tabs, .sushi-tabs, .drinks-tabs, .wine-tabs, .strong-tabs {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .tab, .sushi-tab, .drinks-tab, .wine-tab, .strong-tab {
        padding: 10px 20px;
        font-size: 1.5rem;
        color: #333;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
        white-space: nowrap;
        max-width: 300px;
        text-align: center;
        box-sizing: border-box;
    }

    .tab:hover, .tab.active {
        background-color: #ff8d33;
        color: #fff;
        border-color: #ff8d33;
    }
	.sushi-tab:hover, .sushi-tab.active, .drinks-tab:hover, .drinks-tab.active {
    background-color: green; /* Цвет фона при наведении и для активной кнопки */
    color: #fff; /* Цвет текста при наведении и для активной кнопки */
    border-color: green; /* Цвет рамки при наведении и для активной кнопки */
}
	.wine-tab:hover, .wine-tab.active, .strong-tab:hover, .strong-tab.active {
    background-color: red; /* Цвет фона при наведении и для активной кнопки */
    color: #fff; /* Цвет текста при наведении и для активной кнопки */
    border-color: red; /* Цвет рамки при наведении и для активной кнопки */
	}
    .category-content, .sushi-category-content, .drinks-category-content, .wine-category-content, .strong-category-content {
        display: none;
    }

    .category-content.active, .sushi-category-content.active, .drinks-category-content.active, .wine-category-content.active, .strong-category-content.active {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .sushi-menu-content, .drinks-menu-content, .wine-menu-content, .strong-menu-content {
        display: none;
        margin-top: 20px;
    }


    .menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        background-color: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        text-align: center;
        max-width: 300px;
        margin: 0 auto;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .mymenu-item-image {
        margin-bottom: 10px;
    }

    .mymenu-item-image img {
        width: 256px;
        height: 150px;
        object-fit: cover;
    }

    .menu-item h4 {
        font-size: 1.5rem;
        color: #333;
        margin: 5px 0;
    }

    .menu-item p {
        font-size: 1rem;
        color: #666;
        margin: 5px 0;
    }

    .menu-item span {
        font-size: 1.2rem;
        color: #ff8b30;
        font-weight: bold;
        margin-top: 5px;
    }
	

    @media (max-width: 768px) {
        h2, .mbr-section-title {
            font-size: 2rem;
        }

        .tabs, .sushi-tabs, .drinks-tabs, .wine-tabs, .strong-tabs {
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding-bottom: 0;
            text-align: center;
        }

        .tabs::-webkit-scrollbar, .sushi-tabs::-webkit-scrollbar, .drinks-tabs::-webkit-scrollbar, .wine-tabs::-webkit-scrollbar, .strong-tabs::-webkit-scrollbar {
            height: 8px;
        }

        .tabs::-webkit-scrollbar-thumb, .sushi-tabs::-webkit-scrollbar-thumb, .drinks-tabs::-webkit-scrollbar-thumb, .wine-tabs::-webkit-scrollbar-thumb, .strong-tabs::-webkit-scrollbar-thumb {
            background: #ff4040;
            border-radius: 4px;
        }

        .tab, .sushi-tab, .drinks-tab, .wine-tab, .strong-tab {
            font-size: 1.3rem;
            padding: 8px 15px;
            max-width: 250px;
        }

        .category-content.active, .sushi-category-content.active, .drinks-category-content.active, .wine-category-content.active, .strong-category-content.active {
            grid-template-columns: 1fr;
        }

        .mymenu-item-image img {
            width: 100%;
            height: auto;
        }

        .menu-item h4 {
            font-size: 1.5rem;
        }

        .menu-item p {
            font-size: 1rem;
        }

        .menu-item span {
            font-size: 1.5rem;
        }
    }

