@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Prata&display=swap");

/*==================================
 global style start
 =================================*/
:root {
  --e-global-color-primary: #425e9b;
  --e-global-color-secondary: #c6c0be;
  --e-global-color-text: #425e9b;
  --e-global-typography-primary-font-family: "Prata";
  --e-global-typography-primary-font-weight: 600;
  --e-global-typography-secondary-font-family: "Prata";
  --e-global-typography-secondary-font-weight: 400;
  --e-global-typography-text-font-family: "Karla";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "Karla";
  --e-global-typography-accent-font-weight: 500;
  color: #425e9b;
  font-family: "Karla", Sans-serif;
}
body {
  margin: 0;
  background-color: #fff;
}

* {
  box-sizing: border-box;
}
.shop .container {
  max-width: 1250px;
  width: 100%;
  display: block;
  margin: auto;
  padding: 0 15px;
}
.shop h1,
.shop h2,
.shop h3,
.shop h4,
.shop h5,
.shop h6 {
  margin: 0;
  font-family: "Prata", sans-serif;
  font-weight: 600;
  color: var(--e-global-color-primary);
  text-align: left;
  margin: 0;
  line-height: normal;
}

.shop h1 {
  font-size: 32px;
}
.shop h2 {
  font-size: 28px;
}
.shop h3 {
  font-size: 26px;
}
.shop h4 {
  font-size: 22px;
}
.shop h5 {
  font-size: 18px;
}
.shop h6 {
  font-size: 16px;
}

.shop p,
.shop a,
.shop label,
select {
  font-family: "Karla", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
  color: #555;
  line-height: 1.5em;
  text-align: left;
  letter-spacing: 0;
}
.shop button {
  border: 1px solid var(--e-global-color-primary);
  padding: 10px 15px;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  box-shadow: none;
  color: #fff;
  background-color: var(--e-global-color-primary);
  transition: all 0.3s;
  margin: 0;
}

.shop button:hover {
  border: 1px solid var(--e-global-color-primary);
  background-color: transparent;
  color: var(--e-global-color-primary);
}

/*==================================
 global style end  
 =================================*/

/*==================================
 hero area style start 
 =================================*/
.hero {
  position: relative;
  height: auto;
  overflow-y: hidden;
  padding: 200px 80px;
}

.hero .banner-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.hero .contents {
  position: relative;
  z-index: 2;
}
.hero .contents ul {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0px 15px;
  flex-wrap: wrap;
  margin: 0;
}
.hero .contents ul li a {
  color: #3c3c3c;
  text-decoration: underline;
}
.hero h1 {
    color: var(--e-global-color-primary);
}
/*==================================
 hero area style end
 =================================*/

/*==================================
 products area style start
 =================================*/
.search input {
    width: 100%;
    font-size: 16px !important;
    padding: 10px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 277px;
    width: 100%;
}

.custom-multi-select {
  position: relative;
  font-family: Arial, sans-serif;
}

.select-field, .filter, .sort-by select {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0px;
    border-radius: 0;
    background-color: white;
    cursor: pointer;
    outline: none;
    width: 160px;
    height: 45px;
	font-size:14px;
}

div#multiSelect-zo-approach-technology .select-field {
    width: 210px;
}

.select-field:hover,
.filter:hover,
.sort-by select:hover {
  border-color: #888;
}

.selected-options {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.chevron {
    font-size: 21px;
    color: #555;
    transform: rotate(-270deg);
    display: inline-block;
    margin-top: 5px;
    height: 15px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' transform='rotate(270)'><text x='0' y='14' font-size='14' fill='%23555'>❮</text></svg>");
  background-repeat: no-repeat;
  background-position: right 0.7em center;
  background-size: 1em 1em;
  padding-right: 2em;
}

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: max-content;
  border: 1px solid #ccc;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  height: auto;
}
.dropdown label {
  display: block;
  padding: 6px 10px;
  cursor: pointer;
}

.dropdown label:hover {
  background-color: #f5f5f5;
  color: var(--e-global-color-primary);
}

.dropdown input {
  margin-right: 6px;
}



.filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

section.products-wrapper {
  padding: 80px 0;
}

.filters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
}

.sort-by {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Selected Filters Styles */
.selected-filters-wrapper {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}

.selected-filters-title {
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
  font-weight: 500;
}

.selected-filters-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--e-global-color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  gap: 6px;
}
.filter-tag p {
  color: #fff;
}

.filter-tag .remove-tag {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 20px;
  padding: 0px;
  margin: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  vertical-align: middle;
  line-height: 0;
}
.filter-tag .remove-tag:hover {
  background-color: #fff;
}

/* Hide the selected filters section when no filters are selected */
.selected-filters-wrapper.hidden {
  display: none !important;
}

.clear-filters-button {
  padding: 10px 0;
  cursor: pointer;
  color: #000;
  font-weight: 600;
  display: inline-block;
}
.select-field p, .filter option, .sort-by select p {
    font-size: 14px;
}

.dropdown label {
    font-size: 14px;
}

p.filter-title {
    font-size: 14px;
}

/* products style started  */
.products-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 25px;
}
.products-wrapper .product {
  width: calc(33.33% - 10px);
  display: flex;
  flex-direction: column;
  position:relative;
}
.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1;
    display: block;
    animation-name:fade-in-out;
    animation-duration:2s;
    animation-iteration-count:infinite;
    
}

@keyframes fade-in-out {
    0% {
        opacity:0.8;
    }
    50%{
        opacity:0.2;
    }
     100%{
        opacity:0.8;
    }
}
.products-wrapper .product img {
  width: 100%;
  background-color: #f7f7f8;
}

.products-wrapper .product a:not(.reviews-wrapper) img {
    height: 500px;
    object-fit: cover;
}

.products-wrapper .product .product-name {
  font-size: 16px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  height: 40px;
  text-align: center;
  margin-top: 10px;
}
.product .product-price {
  text-align: center;
  margin-bottom: 10px;
  color: #1e1e1e;
  font-weight: 500;
}

.product .add-to-cart {
  width: 100%;
}
.product .tags {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
  row-gap: 8px;
}
.product .tags .tag {
  padding: 0 5px;
  border-right: 1px solid #a7a7a7;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  line-height: 1em;
  color: #313131;
}
.product .tags .tag:last-child {
  border: none;
}
.paginations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 10px 20px;
  gap: 15px;
  position:relative;
}

.paginations p {
  text-align: center;
}

.progress-bar {
  width: 100%;
  max-width: 300px;
  height: 3px;
  background: #f7f7f8;
  position: relative;
}

.progress-bar::after {
  content: "";
  width: var(--after-width);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--e-global-color-primary);
}
.shop a.added_to_cart.wc-forward {
    text-align: center;
}


.reviews-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop .reviews-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  width: fit-content;
  flex-wrap: wrap;
}
.reviews-wrapper .reviews {
  display: flex;
  align-items: center;
  gap: 5px;
}
.products-wrapper .product .reviews-wrapper img {
  width: 12px;
  background-color: transparent;
}
.reviews-wrapper p {
  font-size: 14px;
  color: #000;
}
/*==================================
 products area style end
 =================================*/

/*==================================
 Customer Favorites area style start
 =================================*/
.customers-fevorites-section {
  padding: 0 0 80px 0;
}
.customers-fevorites-section h2 {
  text-align: center;
  font-size: 28px;
}
/*==================================
 Customer Favorites area style end
 =================================*/
.select-product-count {
    text-align: left; 
    color: #555;
}
@media screen and (max-width: 768px) {
  .filter,
  .custom-multi-select,
  .select-field {
    width: 100%;
  }
	
	div#multiSelect-zo-approach-technology .select-field{
		width:100%;
	}
	
	.dropdown {
		width: 100%;
		max-height:300px;
	}

  .sort-by {
    flex-direction: column;
    width: 100%;
    align-items: self-start;
    margin-top: 20px;
  }
	
  .products-wrapper .product a:not(.reviews-wrapper) img {
    height: 300px;
    object-fit: contain;
  }
	
  .sort-by select {
    width: 100%;
  }
  .products-wrapper {
    gap: 10px;
  }
  .products-wrapper .product {
    width: calc(50% - 5px);
  }
  .hero {
    padding: 50px 15px;
  }
  section.products-wrapper {
    padding: 50px 0;
  }
  .chevron {
    height: 12px;
  }
	.search-wrapper{
        flex-direction:column;
        align-items: start;
        width: 100%;
        gap:10px;
    }
    .search {
        max-width: 100%;
        width: 100%;
    }

}