#responsive-menu-container {
    padding: 10px 0;
}
.stc-responsive-menu {
    display: flex;
    justify-content: flex-start;
}
.stc-menu-list {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
}
.stc-menu-item {
    position: relative;
}
.stc-menu-item a,
#more-button {
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    background: transparent;
    font-weight: normal;
    box-shadow: unset;
}
.stc-menu-item a:hover,
#more-button:hover {
    background: #333;
    color: #fff;
}

.stc-menu-item a.active {
    background: #333;
    color: #fff;
}
.stc-more-dropdown .stc-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 99;
}
.stc-more-dropdown.open .stc-dropdown-content {
    display: flex;
}
.stc-more-dropdown .stc-dropdown-content li {
    padding: 8px 12px;
    white-space: nowrap;
}
.stc-more-dropdown .stc-menu-item a{
    width: 100%;
}
#more-button.active {
    background: #333;
    color: #fff;
}

.stc-forced-cat-menu-container {
	background: #fff;
	padding: 25px 0px;
	width: 100%;
	box-sizing: border-box;
}
.stc-forced-cat-menu {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
.stc-forced-cat-menu-list {
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	gap: 6px;
	padding: 0;
	margin: 0;
	align-items: center;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	touch-action: pan-x;
}
.stc-forced-cat-menu-list::-webkit-scrollbar {
	display: none;
}
.stc-forced-cat-menu-list .stc-menu-item {
	flex: 0 0 auto;
}
.stc-forced-cat-menu-list .stc-menu-item {
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
	flex: 0 0 auto;
}
.stc-forced-cat-menu-list .stc-menu-item a {
	display: inline-block;
	padding: 7px 12px;
	color: #535760;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	background: transparent;
	border: 0;
	border-radius: 3px;
	text-decoration: none;
	box-shadow: none;
	transition: color 0.15s ease, background 0.15s ease;
	white-space: nowrap;
}
.stc-forced-cat-menu-list .stc-menu-item a:hover,
.stc-forced-cat-menu-list .stc-menu-item a:focus {
	color: #1e1e1e;
	background: transparent;
}
.stc-forced-cat-menu-list .stc-menu-item a.stc-current,
.stc-forced-cat-menu-list .stc-menu-item a.active.stc-current {
	color: #fff;
	background: #492cdd;
	cursor: default;
	pointer-events: none;
}
.stc-forced-cat-menu-list .stc-menu-item a.stc-current:hover {
	color: #fff;
	background: #492cdd;
}

@media (max-width: 1024px) {
	.stc-forced-cat-menu-list {
		gap: 4px;
	}
	.stc-forced-cat-menu-list .stc-menu-item a {
		font-size: 13px;
		padding: 6px 10px;
	}
}

@media (max-width: 768px) {
	.stc-forced-cat-menu-container {
		padding: 15px 12px;
	}
	.stc-forced-cat-menu-list {
		gap: 4px;
	}
}

@media (max-width: 480px) {
	.stc-forced-cat-menu-container {
		padding: 15px 10px;
	}
	.stc-forced-cat-menu-list .stc-menu-item a {
		font-size: 12px;
		padding: 5px 9px;
	}
}
