/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 11 2026 | 09:53:31 */
/* =====================================
Start - Dropdown filter product category
========================================= */
.custom-dropdown {
    position: relative;
    cursor: pointer;
    font-family: 'Inter';
    text-transform: uppercase;
    font-size: 0.75vw;
    color: #090C2C;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.5em !important;
}
.dropdown-selected {
    border: 1px solid #DDDEEC;
    padding: 0.9em 1.8em;
    display: flex;
    align-items: center;
}
.dropdown-selected:after {
	content: '▼';
	margin-left: 10px;
}
.dropdown-list {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-top: none;
	display: none;
	z-index: 1;
	overflow-y: auto;
}
.custom-dropdown.active .dropdown-list {
	display: block;
}
.dropdown-item {
    padding: 0.9em 1.8em;
}
.dropdown-item:hover {
	background-color: #f0f0f0;
}
@media (max-width: 1280px) {
	.custom-dropdown {
    font-size: 11px;
}
}
@media (max-width: 768px) {
	.dropdown-list {
		left: unset;
		right: 0;
	}
}
/* =====================================
End - Dropdown filter product category
========================================= */



