/* Mega Menu */
.mega-menu {
    left: 0;
    right: 0;
    top: 100%;
    border-radius: 10px;
}

/* Sidebar */
.category-sidebar {
    max-height: 400px;
    overflow-y: auto;
}

.category-item {
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.category-item:hover,
.category-item.active {
    background-color: #f1f1f1;
    font-weight: 500;
}

/* Right content */
.category-content {
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}