/* Menu Tabs Section Styles */
.skinny-menu-section {
    padding: 80px 0 0;
    background: #fff;
    position: relative;
}

.skinny-menu-section .themesflat-container {
    position: relative;
    z-index: 2;
}

.menu-section-header {
    text-align: center;
    margin-bottom: 24px;
}

.menu-section-header .sub-title {
    color: #d4a574;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.menu-section-header .sub-title::before,
.menu-section-header .sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #d4a574;
}

.menu-section-header .sub-title::before {
    left: -50px;
}

.menu-section-header .sub-title::after {
    right: -50px;
}

.menu-section-header .main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Tabs Navigation */
.menu-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.menu-tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}

.menu-tab-btn:hover {
    color: #d4a574;
}

.menu-tab-btn.active {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.menu-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #f8f9fa;
}

/* Menu Content */
.menu-tab-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.menu-tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-tab-content .menu-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.menu-tab-content .menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.menu-item-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
    line-height: normal;
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #d4a574;
    margin-left: 15px;
}

.menu-item-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.menu-item-badges {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.menu-badge {
    background: #e8f5e8;
    color: #28a745;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-badge.popular {
    background: #fff3cd;
    color: #856404;
}

.menu-badge.dairy-free {
    background: #d1ecf1;
    color: #0c5460;
}

.menu-badge.gluten-free {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-section-header .main-title {
        font-size: 36px;
    }
    
    .menu-section-header .sub-title::before,
    .menu-section-header .sub-title::after {
        width: 20px;
    }
    
    .menu-section-header .sub-title::before {
        left: -30px;
    }
    
    .menu-section-header .sub-title::after {
        right: -30px;
    }
    
    .menu-tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .menu-tab-content .menu-item {
        padding: 20px;
    }
    
    .menu-item-name {
        font-size: 16px;
    }
    
    .menu-item-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .skinny-menu-section {
        padding: 60px 0 0;
    }
    
    .menu-section-header .sub-title {
        line-height: normal;
    }
    
    .menu-section-header {
        margin-bottom: 0px;
    }
    
    .menu-tabs-nav {
        margin-bottom: 0px;
    }
    
    .menu-section-header .sub-title::before,
    .menu-section-header .sub-title::after {
        display: none;
    }
    
    .menu-items-grid {
        gap: 15px;
    }
    
    .menu-tab-content .menu-item {
        padding: 15px;
    }
}
