.nav {
    background-color: #FEFCF5;
    display: flex;
    width: 100%;

    justify-content: space-between;
    align-items: center;

    padding: 43px 60px 38px;
}

.nav .left {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.nav .left .logo {
    width: clamp(160px, 100%, 200px);
    aspect-ratio: auto;
}

.nav .left .tabs {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 76px;
}

.nav .left .tabs .tab {
    display: block;
    color: #fc7044;
    font-family: Noto Sans TC;
    font-size: 24px;
    font-weight: 700;
    line-height: 38.4px;
    letter-spacing: 0.05em;
    text-align: left;
    text-decoration: none;
    position: relative;
}

.nav .left .tabs .tab.active::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0%;
    width: 100%;
    background: #fc7044;
    height: 4px;
    border-radius: 0 10px 10px 0;
}

.nav .right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.nav .right a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 166px;
    padding: 20px;
    gap: 9.42px;
    border-radius: 9999px;
    opacity: 0px;
    box-shadow: 0px 2.49px 5.23px 0.83px #00000026;
    font-family: Noto Sans TC;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
}

.nav .right a.login {
    background-color: #fefcf5;
    color: #fc7044;
}

.nav .right a.register,
.nav .right a.member-center {
    background-color: #fc7044;
    color: #fefcf5;
}

.nav {
    .right_mobile {
        display: none;
    }

    .backdrop-mobile {
        display: none;
    }

    .hamburgeContainer {
        padding: 10px 20px 5px 20px;
        box-shadow: 0px 1px 2px 0px #00000040;
        border-radius: 25px;
        margin-bottom: 10px;
        cursor: pointer;
        display: none;
    }
}


@media screen and (max-width: 1400px) {
    .nav {
        padding: 43px 3dvw 38px;
        .hamburgeContainer {
            display: none;
        }
    }

    .nav .left {
        gap: 80px;

        > .tabs {
            gap: 40px;

            .tab {
                font-size: 20px;
            }
        }
    }

    .nav .right a {
        width: 140px;
        padding: 12px;
        font-size: 20px;
    }
}


@media screen and (max-width: 1000px) {
    .nav {
        z-index: 10;
        position: sticky;
        top: 0;
        padding: 12px 20px;

        .hamburgeContainer {
            display: block;
        }

        .left {
            position: relative;

            .logo {
                width: 114px;

            }

            .tabs {
                z-index: 11;
                display: none;
                position: absolute;
                left: -20px;
                top: 51px;
                width: 100vw;

                a {
                    border-top: 1px solid #eee;
                    padding-left: 20px;
                    display: block;
                    background: #FEFCF5;
                    color: #FC7044 !important;
                    cursor: pointer;
                    font-size: 15px !important;
                    font-weight: 400 !important;
                }

                a:hover {
                    color: #9C7044 !important;
                }
                a:last-child{
                    border-bottom: 1px solid #eee;
                }
            }
        }
    }
}