/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 13 2025 | 06:48:16 */
.food-menu-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.food-menu-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    font-weight: 700;
}

.food-menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 15px 20px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #f5f5f5;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
    position: relative;
    border: 1px solid #e0e0e0;
    justify-content: center;
}

.food-menu-tab.active {
    background-color: #e32929;
    color: #fff;
    border-color: #e32929;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.food-menu-tab.active:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: #e32929;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.food-menu-tab img {
    max-width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.food-menu-tab-content {
    display: none;
    padding: 0; /* remove padding for edge-to-edge image */
    background-color: #f9f9f9;
    border-radius: 0 8px 8px 8px;
    border: 1px solid #e0e0e0;
    margin-top: -1px;
    position: relative;
    z-index: 5;
}

.food-menu-tab-content.active {
    display: block;
}

/* ✅ Full-width image */
.food-menu-tab-content img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.desktop-image,
.mobile-image {
    margin-bottom: 0;
}

.mobile-image {
    display: none;
}

.desktop-image {
    display: block;
}

.big-chicken-combo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ala-carte-section,
.combo-section,
.big-combo-section {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.menu-item {
    margin-bottom: 10px;
}

.menu-item-price {
    font-weight: 700;
    color: #e32929;
}

@media (max-width: 768px) {
    .food-menu-tab {
        width: 80px;
        padding: 10px 10px 15px;
        margin: 5px;
    }

    .food-menu-tab img {
        max-width: 40px;
    }

    .food-menu-tab.active:after {
        bottom: -10px;
        height: 10px;
    }

    .mobile-image {
        display: block;
    }

    .desktop-image {
        display: none;
    }

    .food-menu-tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
        -ms-overflow-style: none;
        padding-bottom: 5px;
    }

    .food-menu-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .food-menu-tab {
        flex: 0 0 auto;
    }

    .food-menu-tab:first-child {
        margin-left: 10px;
    }

    .food-menu-tab:last-child {
        margin-right: 10px;
    }
}
