/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://example.com/
 Description:  Child theme for Hello Elementor
 Author:       Girit Technologies (Ariel Ashri)
 Author URI:   https://www.girit.biz/
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

:root{
	--chiq-gradient: linear-gradient(to right, #00C691, #005DE3);
	--color-white: #ffffff;
	--color-black: #000000;
	--color-border: #DFDFDF;
	--icon-color: #A9A4A4;
	--thumb-height: 180px;
}

ul, ol {
	list-style: none;
	padding: 0;
}

.active-filters-container *:empty{
	display: none;
	height: 0;
}

.page-width{
	display: block !important;
	width: 100% !important;
	max-width: var(--container-max-width, 1600px);
	margin: 0 auto;
}

.elementor-button{
	background: var(--chiq-gradient);
}

ul.e-n-menu-heading li:hover a

#desktopMenu ul li{
	position:  relative !important;
}
#desktopMenu ul li .sub-arrow{
	display: none;
}
#desktopMenu > ul:not(.sub-menu) a{
	color: var(--color-white) !important;
}
ul.e-n-menu-heading li:hover > .e-n-menu-title a,
#desktopMenu ul li a.elementor-item-active,
#desktopMenu ul li:hover a.elementor-item{
  background: var(--chiq-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

#desktopMenu ul li .elementor-nav-menu--dropdown{
	left: 100% !important;
	margin-top: 17px !important;
}

#desktopMenu ul a.elementor-item:after{
	position: absolute;
	bottom: -8px;
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background: var(--chiq-gradient);
}

#search_trigger{
	cursor: pointer;
}
#search_container.active{
	display: flex;
	border-bottom: 1px solid #cccccc;
}

.gradient-text {
  background: var(--chiq-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.newsletter-footer .elementor-form-fields-wrapper{
	position: relative;
	display: grid;
	grid-template-areas:
		"email email submit"
		"agree agree agree";
	grid-template-columns: 1fr 1fr 100px;

}
.newsletter-footer .elementor-field-type-checkbox {
	grid-area: agree;
}
.newsletter-footer .elementor-field-type-submit{
	grid-area: submit;
	position: absolute;
	left: 30px;
}

.newsletter-footer .elementor-field-type-submit .elementor-button{
	border-radius: 39px;
}
.newsletter-footer .elementor-field-type-email {
	grid-area: email;
}

.newsletter-footer .elementor-field-type-email input[type="email"] {
	height: 50px;
	border-top-right-radius: 39px;
	border-bottom-right-radius: 39px;
}

.newsletter-footer .elementor-field-type-email .elementor-field-label{
	display: none;
}
.newsletter-footer .elementor-field-type-checkbox label{
	font-size: 14px !important;
	cursor: pointer;
}
.newsletter-footer .elementor-field-type-checkbox  a{
	font-size: 14px !important;
	text-decoration: underline;
}
.newsletter-footer .elementor-field-type-checkbox .elementor-field-option{
	display: flex;
	align-items:center;
	gap: 0.5rem;
}
.newsletter-footer .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]{
	appearance: none;
	--webkit-appearence: none;
	background: var(--color-white);
	height: 1.2rem;
	width: 1.2rem;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
}

.newsletter-footer .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]::after {
  content: '';
  position: absolute;
	top: 5px;
    left: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4a9abd;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.newsletter-footer .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"]:checked::after {
  opacity: 1;
}

.footer-wrap .footer-columns{
	position: relative !important;
}
@media(min-width: 768px){

	.footer-wrap .footer-columns::before{
		content: "";
		position: absolute;
		top: 43px;
		right:0;
		display: block;
		height: 3px;
		width: 90%;
		background: var(--chiq-gradient);
	}

}

.product-category-archive header{
	padding: 0 15px;
}

.gradient-divder{
	display: block;
	height: 3px;
	width: 100%;
	background: var(--chiq-gradient);
	
}
.product-grid {
	display: grid;
	width: 100%;
	row-gap: 15px;
	column-gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0 15px;
}




.product-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid.cols-5 {
  grid-template-columns: repeat(5, minmax(300px, 1fr));
}
.product-grid-title{
	text-align: center;
}
.product-card{
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color-border);
	
}


#filter_by .elementor-heading-title {
	position: relative;
	/* Optional: Remove default border if any */
	border-bottom: none !important;
  }
  
  #filter_by .elementor-heading-title::after {
	content: "";
	display: block;
	position: absolute;
	right: 0; /* For RTL, use right; for LTR, use left */
	left: 0;
	bottom: -5px;
	height: 3px; /* Adjust thickness as needed */
	background: linear-gradient(90deg, #0e6bff 0%, #00c48d 100%);
	border-radius: 2px;
	z-index: 1;
  }

@media(min-width: 768px) {
	.product-card .woocommerce-loop-product__title{
		min-height: 53px;
	}
}


.product-card:hover {
	border: 1px solid var(--icon-color);
}
.product-card:hover .product-media .media-img{
	transform: scale(1.05);
}

.product-card .product-info {
	padding: 10px;
}
.product-card .product-title{
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 8px;
	
}

@media (min-width: 750px) {
	.product-card .product-title{ 
		min-height: 50px;
	}
}

.product-media {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.product-media .media-img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease-in-out;
}

.product-media .product-badges{
	position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    height: 100%;
    width: 100%;
}

.product-media .product-badges img{
	width: 50px;
	height: 50px;
}

.product-card .sku{
	font-size: 16px;
	color: #9E9E9E;
	text-align: right;
}
.product-attributes{
	padding-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.product-attributes.empty-terms{
	min-height: 54px;
}
.product-attribute-icon{
	display: inline-flex;
}

/* Responsive tweak: stack on small screens */
@media (max-width: 768px) {

.product-attributes{
	flex-wrap: wrap;
}
  .product-grid.cols-3,
  .product-grid.cols-4,
  .product-grid.cols-5 {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
	
  }
  .product-image img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }
  .product-card .product-title{
	min-height: 33px;
	font-size: 14px;
	font-weight: 700;
	text-align: right;
	display: -webkit-box;
  	-webkit-line-clamp: 2;     
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis;

  }

  .product-card .woocommerce-loop-product__title{
	margin-bottom: 5px;
  }

  .product-card .sku{
	font-size: 18px;
	display: -webkit-box;
  	-webkit-line-clamp: 1;     
  	-webkit-box-orient: vertical;
  	overflow: hidden;
  	text-overflow: ellipsis;
  }
  .product-attribute-icon,
  .product-attribute-icon svg{
	width: 25px;
	height: 25px;

  }
  .product-attributes.empty-terms,
  .product-attributes {
	min-height: 35px;
  }
}

.elementor-post{
	position: relative;
	border: 1px solid var(--color-border);
	padding: 10px !important;
}
.elementor-post__meta-data{
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(255,255,255, 0.8);
	font-size: 12px;
	color: var(--color-black) !important;
	padding: 5px;
}
.elementor-post .elementor-post__text{
	display: flex !important;
}

.elementor-post .elementor-post__title{
	margin-bottom: 8px !important;
}

.elementor-post__text .elementor-post__read-more{
  align-self: end !important;
  font-weight: 800 !important;	
  background: var(--chiq-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (min-width: 750px) {
	[data-elementor-type="product"] .woocommerce-product-gallery{
		display: grid;
		grid-template-areas: "stage thumbs";
		grid-template-columns: 80% 20%;
		column-gap: 20px;
	}
	[data-elementor-type="product"] .woocommerce-product-gallery .woocommerce-product-gallery__trigger,
	[data-elementor-type="product"] .woocommerce-product-gallery .flex-viewport{
		grid-area: stage;
	}

	[data-elementor-type="product"] .woocommerce-product-gallery .flex-viewport{
		border: 1px solid #e6e6e6;
	}

	[data-elementor-type="product"] .woocommerce-product-gallery .flex-control-thumbs {
		grid-area: thumbs;
		display: flex;
		flex-direction: column;
		justify-content: start;
		align-items: start;
		gap: 20px;
		max-height: calc(4 * var(--thumb-height));
		margin: 0 !important;
		overflow-y: auto;
	}
	.woocommerce div.product div.images .flex-control-thumbs li{
		width: 100%;
		height: 100%;
		max-height: var(--thumb-height);
		float: none;
		padding: 0 !important;
		margin: 0 !important;
		
	}

	.woocommerce div.product div.images .flex-control-thumbs li img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
.product-attributes-detail .attr-title{
	font-size: 20px;
}

.top-attributes{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.top-attributes .product-attributes-group .product-attribute{
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 10px;
	padding-bottom: 15px;
}


@media(min-width: 750px) {
	.top-attributes .product-attributes-group{
		display: grid;
		grid-template-rows: repeat(7, 1fr);
		grid-auto-flow: column;
		gap: 10px 40px;
	}
	.top-attributes .product-attributes-group .product-attribute{

		gap: 10px;
		padding-bottom: 5px;
	}
}


.top-attributes .actions{
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 10px;
	font-size: 20px;
}

@media(min-width: 768px) {
	.top-attributes .actions{
		margin-top: 16vh;
	}
}

.btn{
	display: block;
	color: var(--color-white);
	background: var(--color-black);
	padding: 10px 20px;
	border-radius: 5px;
	transition: all 0.3s ease-in;	
}



.btn.btn-download{
	display: flex;
	gap: 8px;
	color: var(--color-black);
	background: #f6f6f6;
}

.btn:hover{
	background: #282828;
	color: var(--color-white);
}

.product-attributes-table {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.product-attribute-row {
  display: contents; /* let grid columns apply directly to children */
}

.product-attribute-row .attribute-label,
.product-attribute-row .attribute-value {
  padding: 12px 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
	.product-attribute-row .attribute-label{
		font-size: 16px;
	}
}

.product-attribute-row.even .attribute-label,
.product-attribute-row.even .attribute-value {
  background-color: #f9fafb;
}

.product-attribute-row.odd .attribute-label,
.product-attribute-row.odd .attribute-value {
  background-color: #ffffff;
}

.attribute-label {
  font-weight: 500;
  color: #374151;
}
@media (max-width: 767px) {
   .attribute-label{
		font-size: 16px;
	}
}

.attribute-value {
  color: #1f2937;
}


.product-attributes-title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  padding-top: 35px;
}


.product-bottom-description{
	font-size: 20px;
}

/* [scroll_to_banner_grid] shortcode */
.acf-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 1rem;
  border-radius: 12px;
}

.acf-grid-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  padding: 1rem;
}
.acf-grid-cell .title {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 8px;
  }

  .acf-grid-cell .subtitle {
	font-size: 14px;
	color: #444;
	
  }
  
@media(min-width: 750px) {
	.acf-grid-wrapper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 100px 50px ;
	border-radius: 12px;
	}
	.acf-grid-cell {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 1rem;
	}

	.acf-grid-cell .icon img{
		margin: 0 !important;
	}
	.acf-grid-cell .icon{
		flex: 0 0 auto;
	}

	.acf-grid-cell .content{
		flex: 0 0 50%;
	}
	.acf-grid-cell .content > *{
		margin: 0 !important;
	}
	.acf-grid-cell .title {
		font-size: 28px;
		margin-bottom: 4px;
	}
	.acf-grid-cell .subtitle {
		font-size: 18px;
		margin-bottom: 6px;
	}

}

@media (max-width: 767px) {
	.acf-grid-cell{
		padding: 0;
	}
	.acf-grid-cell .content{
		text-align: center;
	}
	.acf-grid-cell .title,
	.acf-grid-cell .subtitle {
		line-height: 1;
		
	}
	 
}






.acf-grid-cell .icon img {
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}




@media (min-width: 768px) {
	.acf-grid-cell .title{
		font-size: 36px;
	}

	.acf-grid-cell .subtitle {
		font-size: 24px;
	}
}

.acf-grid-cell .action a {
  font-size: 16px;
  text-decoration: underline;
  color: #888;
}
.bg-gray {
	background-color: #FBFBFC;
}

h2.banner-heading {
	font-size:  32px;
	font-weight: 800;
	margin-bottom: 15px;
}

.acf-banner{
	padding: 3rem 1.5rem ;	
}

@media (min-width: 768px) {
	h2.banner-heading {
		font-size: 64px !important;
	}
	.banner-text{
		font-size: 24px;
		text-align: center;
	}
	.acf-banner{
		padding: 3rem;	
	}
}



.acf-banner.has-bg-img{
	background: var(--image-url) no-repeat;
	background-size: cover;
}

@media (max-width: 767px) {
	.acf-banner.centered.has-bg-img{
		min-height: 450px;
        background-position: top center;
        background-size: contain;
	}
}

.gradient-border-box {
  display: inline-block;
  padding: 10px 20px;
  border: 3px solid transparent;
  border-radius: 12px;
  font-weight: bold;
  background: 
    linear-gradient(#fff, #fff) padding-box, 
    linear-gradient(to right, #00d084, #006eff) border-box;
  text-align: center;
}
footer .elementor-message{
	color: var(--color-white);
}



.acf-banner.centered {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.acf-banner.centered .banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	max-width: 800px;
    padding: 0 25px;
    margin: 0 auto;
}

@media(min-width: 768px) {
	.acf-banner.centered .banner-content {
		padding: 0 100px 0 100px;
	}
}

.acf-banner.centered .banner-content ul{
	list-style: none;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	justify-content: space-between;
}

.acf-banner.centered .banner-content{
	width: 100%;
	max-width: 1100px;
}
.acf-banner.centered .banner-content .banner-bullets{
	margin-top: 20px;
	width: 100%;
}

.acf-banner.centered .banner-content .banner-bullets li {
	text-decoration: underline;
}

.acf-banner .banner-image{
	grid-area: bannerImage;
	align-self: center;
    justify-self: center;
}
.acf-banner .banner-content{
	grid-area: bannerContent;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 963px;
	margin: 0 auto;
}
@media(min-width: 769px) {
	.acf-banner .banner-content{
		padding: 0 100px 0 100px;
	}
}


.acf-banner.image_left,
.acf-banner.image_right{
	display: grid;
	grid-template-areas: "bannerImage"
						 "bannerContent";
	grid-template-columns: 1fr;
}

@media (min-width: 750px) {
	.acf-banner.has-bg-img{
		min-height: 550px;
	}
	.acf-banner.image_left{
	display: grid;
	grid-template-areas: "bannerContent bannerImage";
	grid-template-columns: 1fr 1fr;
}
.acf-banner.image_right{
	display: grid;
	grid-template-areas: "bannerImage bannerContent";
	grid-template-columns: 1fr 1fr;
}

}


.acf-banner.huge-capacity ul{
  counter-reset: section;
  list-style: none;
  margin: 0;
  padding: 0;
  direction: rtl;
  font-family: inherit;
}

.acf-banner.huge-capacity li{
  position: relative;
  counter-increment: section;
  padding: 1em;
  margin: 4px 0;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background: linear-gradient(to right, transparent, #d2e9f7);
}
.acf-banner.huge-capacity li .bullet-title {
	margin-right: 1rem;
}

.acf-banner.huge-capacity li::before{
  content: counter(section) ".";
  font-weight: bold;
  color: #333;
  margin-left: 10px;
  display: inline-block;
  min-width: 2em;
  direction: rtl;
  position: absolute;
}
.acf-banner.huge-capacity li:nth-child(1) { background: linear-gradient(to right, transparent, #b2ebf2); }
.acf-banner.huge-capacity li:nth-child(2) { background: linear-gradient(to right, transparent, #f8bbd0); }
.acf-banner.huge-capacity li:nth-child(3) { background: linear-gradient(to right, transparent, #d1c4e9); }
.acf-banner.huge-capacity li:nth-child(4) { background: linear-gradient(to right, transparent, #c8e6c9); }
.acf-banner.huge-capacity li:nth-child(5) { background: linear-gradient(to right, transparent, #ffe0b2); }
.acf-banner.huge-capacity li:nth-child(6) { background: linear-gradient(to right, transparent, #bbdefb); }


.image-text-rows li {
	padding: 1.5rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: start;
	gap: 1rem;
	border: 2px solid transparent;
	border-radius: 1.2rem;
	  background: 
    linear-gradient(#fff, #fff) padding-box, 
    linear-gradient(to right, #00d084, #006eff) border-box;
	margin-bottom: 1.5rem;
}

.image-text-rows li .bullet-text h3{
	margin: 0;
}
@media(min-width: 768px) {
	.acf-banner .banner-grid{
		display: grid;
		column-gap: 15px;
		row-gap: 55px;
		max-width: 1700px;
		margin: 0 auto;
	}

	.acf-banner.default{
		padding: 0 15px;
	}
	.acf-banner.default .banner-image{
		display: block;
		justify-self: unset;
	}

	.acf-banner.default .banner-image img{
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	

	.acf-banner .banner-grid .grid-cell{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 560px;
		margin: 0 auto;
		text-align: center;		
	}

	

	.acf-banner .banner-grid.grid__two{
		grid-template-columns: 1fr 1fr;
	}
	.acf-banner .banner-grid.grid__three{
		grid-template-columns: 1fr 1fr 1fr;	
	}
	.acf-banner .banner-grid.grid__four{
		grid-template-columns: 1fr 1fr 1fr 1fr;	
	}
	.acf-banner .banner-grid.grid__five{
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;	
	}
}

/* Product Filters Widget Styles */
.product-filters-widget-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.product-filters-sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filters-actions {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.clear-filters-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.clear-filters-btn:hover {
    background: #c82333;
}

.product-filters-accordion {
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.filter-group-toggle {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 12px 15px;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.filter-group-toggle:hover {
    background: #f8f9fa;
}

.toggle-icon {
    font-weight: bold;
    font-size: 18px;
    color: #666;
}

.filter-group-content {
    background: #ffffff;
    padding: 15px;
    border-top: 1px solid #e9ecef;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-checkbox-label:hover {
    color: #007bff;
}

.filter-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

.filter-checkbox-label span {
    flex: 1;
}

.filters-apply-btn {
    width: 100%;
    background: var(--chiq-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.filters-apply-btn:hover {
    opacity: 0.9;
}

/* Mobile Drawer Styles */
.product-filters-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.product-filters-drawer .product-filters-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    overflow-y: auto;
    margin: 0;
    border-radius: 0;
}

.drawer-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10000;
}

.open-filters-drawer-btn {
    display: none;
    background: var(--chiq-gradient);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-filters-sidebar {
        display: none;
    }
    
    .open-filters-drawer-btn {
        display: block;
    }
    
    .product-filters-drawer {
        display: none;
    }
}

@media (min-width: 769px) {
    .open-filters-drawer-btn {
        display: none;
    }
	.acf-banner.centered{
		padding: 100px 0;
	}
}

/* Loading state for filters */
.filters-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.filters-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--chiq-gradient);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.contact-us-container{
	background-color: #005DE3;
}
.contact-us-container::before{
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	background: red;
}