.restaurant-pt-style-01 {
    padding-top: 0 !important;
}

.tab-nav-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 100px;
    border-bottom: 1px solid #A0A0A0;

    li {
        padding: 15px 30px;
        border: 1px solid #ddd;
        cursor: pointer;
        background: #f9f9f9;
        transition: background 0.3s;
        border-radius: 5px 5px 0 0;
        font-weight: bold;

        &:hover {
            background: #eee;
        }

        &.active {
            background: #AA8822;
            color: #fff;
            border-bottom: 5px solid #c7ad5f;
        }
    }
}

@media screen and (max-width: 767px) {
    .restaurant-pt-style-02 {
        padding-top: 0 !important;
    }

    .tab-nav-wrap {
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 8%;

        li {
            flex: 1;
            padding: 8px 12px;
            text-align: center;
            font-size: 10px;

            >span {
                display: block;

                >span {
                    display: none;
                }
            }
        }
    }
}

.tab-content-wrap {
    display: none;
    animation: fadeIn ease 0.5s;

    &.active {
        display: block;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}