.restaurant-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.restaurant-menu .tabs-header-container {
    position: sticky;
    top: 0;
    overflow-x: auto;
    min-width: 100vw;
    max-width: 100vw;
    padding: 20px;
    background: white;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.restaurant-menu .tabs-header-container::-webkit-scrollbar {
    display: none;
}

.restaurant-menu .tabs-header {
    display: flex;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: max-content;
    margin: 0 auto;
    gap: 10px;
}

.restaurant-menu .tabs-header .tab-button {
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.restaurant-menu .tabs-header .tab-button::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #e74c3c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.restaurant-menu .tabs-header .tab-button:hover::after {
    width: 80%;
}

.restaurant-menu .tabs-header .tab-button.active::after {
    width: 100%;
    background: #e74c3c;
}

.restaurant-menu .tabs-content {
    padding: 20px;
}

.restaurant-menu .tabs-content .tab-content {
    display: none;
}

.restaurant-menu .tabs-content .tab-content.active {
    display: block;
}

.restaurant-menu .tabs-content .tab-content .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.restaurant-menu .tabs-content .tab-content .grid .item {
    display: flex;
    flex-direction: column;
    width: 300px;
    background: #fff;
    padding: 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    gap: 0;
}

.restaurant-menu .tabs-content .tab-content .grid .item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.restaurant-menu .tabs-content .tab-content .grid .item .image-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.restaurant-menu .tabs-content .tab-content .grid .item .image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.4s ease-in;
}

.restaurant-menu .tabs-content .tab-content .grid .item:hover .image-container img {
    transform: scale(1.08);
}

.restaurant-menu .tabs-content .tab-content .grid .item .content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    gap: 10px;
}

.restaurant-menu .tabs-content .tab-content .grid .item .content-container .name {
    margin: 0;
    font-family: 'Sahel', Tahoma, sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: #333;
}

.restaurant-menu .tabs-content .tab-content .grid .item .content-container .price {
    margin: 0;
    font-family: 'Sahel', Tahoma, sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #666;
}

.restaurant-menu .tabs-content .tab-content .grid .item .content-container .description {
    margin: 0;
    font-family: 'Sahel', Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1200px) {
    .restaurant-menu .tabs-content .tab-content .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .restaurant-menu .tabs-content .tab-content .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .restaurant-menu .tabs-content .tab-content .grid {
        grid-template-columns: 1fr;
    }
}