/* ===== Shop Hero ===== */
.custom-shop-wrapper .custom-shop-products ul.products li.product .price,
.custom-shop-wrapper .custom-shop-products .content-area .woocommerce-breadcrumb,
.custom-shop-wrapper .custom-shop-products .content-area form.woocommerce-ordering,
.custom-shop-wrapper .custom-shop-products .content-area .woocommerce-products-header .woocommerce-products-header__title{
	display:none;
}
.shop-hero {
	position: relative;
	background-image: var(--hero-bg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 70px 20px;
	color: #fff;
}

.shop-hero::before {
	/* overlay for readability */
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(275deg, #00000045 0%, var( --e-global-color-primary ) 100%);
	opacity: 0.7;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.shop-hero__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.shop-hero__title {
	font-family: "Montserrat", Sans-serif;
	font-size: 52px;
	font-weight: 300;
	font-style: normal;
	text-decoration: none;
	margin: 0 0 10px;
	line-height: 1.2;
}

.shop-hero__breadcrumb {
	font-size: 14px;
	opacity: 0.95;
}
.shop-hero__breadcrumb .woocommerce-breadcrumb{
	margin-bottom:0;
}
.shop-hero__breadcrumb .woocommerce-breadcrumb,
.shop-hero__breadcrumb .woocommerce-breadcrumb a,
.shop-hero__breadcrumb .woocommerce-breadcrumb .crumb-sep {
	color: #ffffff;
}

.woocommerce-breadcrumb a:hover {
	text-decoration: underline;
}
.custom-shop-sidebar li.widget_wpc_filters_widget{
	list-style: none;
}
.custom-shop-products .woocommerce-products-header{
	
}
.custom-shop-products .woocommerce-result-count{
	padding-top:10px;
}
.custom-shop-wrapper .custom-shop-products ul.products li.product .woocommerce-loop-product__title{
	text-align: center;
}
.custom-shop-sidebar .wpc-filter-layout-search-field{
	margin-top:10px;
}
/* ===== Two-column shop layout ===== */
.custom-shop-wrapper {
	display: flex;
	gap: 30px;
	max-width:1600px;
	margin: 40px auto;
	padding: 0 2%;
}
.custom-shop-sidebar {
	flex: 0 0 24%;
}
.custom-shop-products {
	flex: 1 1 auto;
}
/* Responsive */
@media (max-width: 992px) {
	.shop-hero {
		padding: 50px 16px;
	}
	.shop-hero__title {
		font-size: 30px;
	}
	.custom-shop-wrapper {
		flex-direction: column;
	}
	.custom-shop-sidebar,
	.custom-shop-products {
		flex: 1 0 100%;
	}
}
