#category-box {
    display: none;
    position: fixed;
    width: 16rem;
    height: 30rem;
    top: 7rem;
    margin-left: 1rem;
    z-index: 10;
    background-color: #323232;
}
#category-box ul li a {
    text-decoration: none;
    color: inherit;
}
#category-box.active {
    display: block;
}
#category-box ul{
    left: 0;
    top: 0;
    width: 14rem;
    height: auto;
    padding: 0 0 1rem 0;
    margin: 0 0 0 1rem;
    list-style: none;
    border-bottom: 1px solid #474747;
}
#category-box .nav-title {
    font-size: 1.8rem;
    padding: 2.5rem 0 1.3rem;
}
#category-box ul li {
    font-size: 1.4rem;
    padding: 0.7rem 0;
}
.shortcut-box {
    display: flex;
    width: 16rem;
    height: 4.8rem;
    left: 0;
    bottom: 0;
    justify-content: left;
    align-items: center;
    gap: 10px;
    margin-left: 1rem;
    box-sizing: border-box;
}
.shortcut-box a img {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem 0;
    transition: transform 0.3s ease;
}
.shortcut-box a img:hover {
    transform: scale(1.1); /* 아이콘 확대 효과 */
}
@media (min-width: 1024px) {
    #category-box {
        display: block;
        position: fixed;
        width: 16rem;
        height: auto;
        top: 21.2rem;
        left: 76%;
    }
}
