.container {
	padding: 60px 20px;
	width: 1440px !important;
	max-width: 1440px !important;
}

.product-category-layout {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: start;
}

.product-category-content {
    display: flex;
	flex-direction: row;
    gap: 48px;
	align-items: start;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}
  
.product-card {
    display: flex;
    flex-direction: column;
}

.product-card img {
	background: #f7f8fa;
}

/** Sidebar **/
.product-sidebar {
	width: 350px;
}

.filter-link {
	background: none;
	border: none;
	padding: 6px 0;
	width: 100%;
	text-align: left;
	font-size: 14px;
	font-weight: 400;
	color: #6b6b6b;
	cursor: pointer;
}

.filter-link.level-0 {
	font-weight: 400;
	font-size: 20px !important;
	font-family: "Times New Roman";
	color: #111;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.filter-link.level-1,
.filter-link.level-2,
.filter-link.level-3,
.filter-link.level-4 {
    margin-left: 20px;
	font-size: 16px !important;
	font-weight: 400;
	font-family: manrope_plf !important;
	text-transform: uppercase;
}

.filter-link.level-2 {
    margin-left: 40px !important;
}

.filter-link.level-3 {
    margin-left: 60px !important;
}

.filter-link.level-4 {
    margin-left: 80px !important;
}

.filter-link:hover {
    background: transparent !important;
	color: #cb6829; /* Valtech blue */
}

.filter-link.active {
	color: #cb6829;
	font-weight: 600;
}

.product-sidebar {
	padding-top: 24px;
}

.filter-item.level-0 {
	padding-bottom: 12px;
	border-bottom: 1px solid #eee;
}

.filter-level-0 > .filter-item:not(:last-child) {
	margin-bottom: 24px;
}

.filter-level-1,
.filter-level-2,
.filter-level-3,
.filter-level-4 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.2s ease;
	opacity: 0;
}

.filter-item.is-open > .filter-level-1,
.filter-item.is-open > .filter-level-2,
.filter-item.is-open > .filter-level-3,
.filter-item.is-open > .filter-level-4 {
	max-height: 500px; /* safe large value */
	opacity: 1;
}

/** End Sidebar **/

.product-sidebar,
.product-grid {
	align-self: flex-start;
}

#product-results.loading {
	opacity: 0.4;
	pointer-events: none;
}

.filter-link.active {
	font-weight: 600;
	color: #cb6829;
}

.product-image {
	height: 330px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.product-image img {
	object-fit: contain;
}

.ajax-pagination {
	display: flex;
}

.product-code {
	font-size: 14px !important;
	margin-bottom: 0 !important;
	color: #cb6829;
	font-family: manrope_plf !important;
	font-weight: 300 !important;
	line-height: 1em !important;
}

.product-title {
	font-size: 28px !important;
	margin-bottom: 20px;
	color: #444 !important;
	font-family: "Times New Roman" !important;
	font-weight: 500 !important;
	line-height: 1em !important;
	text-transform: uppercase !important;
}

.ajax-page {
	font-size: 16px !important;
	background: transparent !important;
	color: #444 !important;
	font-family: manrope_plf !important;
	font-weight: 300 !important;
}

.ajax-page.active {
	color: #cb6829 !important;
	font-weight: 500 !important;
}

.breadcrumb {
	font-size: 16px;
	padding: 24px 0;
	max-width: 1440px;
	margin: 20px auto;
	padding: 0 24px;
	font-family: manrope_plf !important;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #666;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.pagelayer-breadcrumb-sep {
	margin: 0 8px;
	color: #999;
}

.contact-btn {
	background-color: #cb6829 !important;
	color: #fff !important;
	font-family: manrope_plf !important;
	display: flex;
	justify-content: center;
	padding: 10px 20px;
}

@media (min-width: 1024px) {
	.product-sidebar {
		position: sticky;
		top: 120px; /* below header */
		height: fit-content;
	}
}

@media (max-width: 1023px) {
	.product-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		width: 85%;
		max-width: 320px;
		height: 100vh;
		background: #fff;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		z-index: 1000;
		padding: 24px;
		overflow-y: auto;
	}

	.product-sidebar.is-open {
		transform: translateX(0);
	}
}
