/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 13 2026 | 03:08:25 */
/* ==================================
Start - Dropdown filter product
======================================= */
.hn-custom-filter-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9vw;
	align-items: center;
	padding-left: 1vw;
	background: #fff;
}

.hn-dropdown {
	position: relative;
}

.hn-dropdown-header {
	padding: 0.8em 1.6em;
	border: 1px solid #ddd;
	cursor: pointer;
	background: #fff;
	display: flex;
	align-items: center;
	font-size: 0.625vw;
	text-transform: uppercase;
	color: #090C2C;
	letter-spacing: 1px;
	font-family: "Inter";
	font-weight: 600;
	gap: 1em;
}

.hn-dropdown-header:after {
	content: "▼";
	font-size: 10px;
	color: #888;
}

.hn-dropdown-content {
	display: none;
	position: absolute;
	top: 105%;
	left: 0;
	z-index: 999;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	min-width: 220px;
	max-height: 250px;
	overflow-y: auto;
	padding: 10px;
}

.hn-dropdown.is-open .hn-dropdown-content {
	display: block;
}

.hn-item {
	display: flex;
	align-items: center;
	padding: 5px 0;
	cursor: pointer;
	font-size: 13px;
	transition: 0.2s;
}

.hn-item:hover { 
	color: #ff6600; 
}

.hn-item input { 
	margin-right: 10px; 
}

#hn-apply-div-filter {
	background: #333;
	color: #fff;
	border: none;
	padding: 10px 25px;
	border-radius: 5px;
	cursor: pointer;
}

#hn-apply-div-filter:hover { 
	background: #ff6600; 
}

.hn-reset-link { 
	font-size: 13px; 
	color: #999; 
	text-decoration: none; 
}
@media (max-width: 1280px) {
	.hn-dropdown-header {
		font-size: 9px;
	}
}
/* ==================================
End - Dropdown filter product
======================================= */



/* ==================================
Start - Dropdown order product
======================================= */
.homenest-product-order-wrapper .woocommerce-ordering {
	margin: 0 !important;
	font-family: 'Inter';
}
.homenest-product-order-wrapper .woocommerce-ordering select {
	font-size: 0.625vw !important;
	text-transform: uppercase;
	color: #090C2C;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 1em 1.6em;
	border: 1px solid #E8E9F2;
	border-radius: 0;
}
.homenest-product-order-wrapper select.orderby { display: none !important; }


.hn-dropdown-header { 
	background: #fff; border: 1px solid #ddd; padding: 10px 15px; 
	cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.hn-dropdown-header::after { content: "▼"; font-size: 10px; color: #666; }

.hn-dropdown-content { 
	position: absolute; top: 100%; left: 0; right: 0; background: #fff; 
	border: 1px solid #ddd; border-top: none; z-index: 100; display: none;
}
.hn-dropdown-content.show { display: block; }

.hn-item { 
	display: flex; align-items: center; padding: 10px 15px; 
	cursor: pointer; margin: 0; transition: background 0.2s;
}
.hn-item:hover { background: #f9f9f9; }
.hn-item input[type="checkbox"] { margin-right: 10px; pointer-events: none; }
@media (max-width: 1280px) {
	.homenest-product-order-wrapper .woocommerce-ordering select {
		font-size: 9px !important;
	}
}
/* ==================================
End - Dropdown order product
======================================= */





/* ==================================
Start - Loop grid product
======================================= */
.hn__custom_product-archive {

}
.hn__custom_product-archive .woocommerce-result-count {
	font-family: Inter;
	font-weight: 600;
	font-size: 0.625vw;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #9CA3AF;
	margin-bottom: 2vw;
}
.hn__custom_product-archive  .woocommerce-ordering {
	display: none;
}
@media (max-width: 1280px) {
	.hn__custom_product-archive .woocommerce-result-count {
		font-size: 10px;
		margin-bottom: 20px;
	}
	.hn__custom_product-archive .products.elementor-grid {
		grid-template-columns: repeat(4, 1fr) !important;
	}
}
@media (max-width: 992px) {
	.hn__custom_product-archive .products.elementor-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}
@media (max-width: 768px) {
	.hn__custom_product-archive .products.elementor-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
/* ==================================
End - Loop grid product
======================================= */






/* ==================================
Start - Dropdown filter product by mobile
======================================= */
.hn__popup-filter_mobile {
	
}
.hn__popup-filter_mobile .hn-custom-filter-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    gap: 0;
}
.hn__popup-filter_mobile .hn-dropdown-header {
    font-size: 14px;
    border: 0;
    padding: 1.2em 16px;
    justify-content: space-between;
}
.hn__popup-filter_mobile .hn-dropdown {
    width: 100%;
    border-bottom: 1px solid #ddd;
}
.hn__popup-filter_mobile .hn-dropdown-content {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0;
    font-family: 'Inter';
}
.hn__popup-filter_mobile .hn-dropdown-content label.hn-item {
    padding: 10px 16px;
    font-size: 14px;
}
.hn__popup-filter_mobile .hn-dropdown-content input[type="checkbox"] {
    accent-color: #1a237e;
    width: 1.2em;
    height: 1.2em;
    border-radius: 0;
    outline: 0;
}
/* ==================================
End - Dropdown filter product by mobile
======================================= */


/* ==================================
Start - Dropdown order product by mobile
======================================= */
.hn__popup-order_mobile {
	
}
.hn__popup-order_mobile .hn-dropdown-header {
    display: none;
}
.hn__popup-order_mobile .hn-dropdown-content {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0;
    max-height: unset !important;
}
.hn__popup-order_mobile .hn-dropdown-content label.hn-item {
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'Inter';
}
.hn__popup-order_mobile .hn-dropdown-content label.hn-item input[type="checkbox"] {
    accent-color: #1a237e;
    width: 1.2em;
    height: 1.2em;
    border-radius: 0;
    outline: 0;
}
/* ==================================
Start - Dropdown order product by mobile
======================================= */