.ats-finder-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  margin: 0 0 10px;
  padding: 0 0 0px;
  font-size: 20px;
  font-weight: 800;
  /* border-bottom: 1px solid #dfdfdf8f; */
  text-transform: capitalize;
  color: #000;
}
.ats-finder-filter-title::after {
  flex: 0 0 auto;
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2048%2048%22%20height%3D%2232px%22%20width%3D%2232px%22%3E%3Cpath%20d%3D%22M24%2030.75%2012%2018.75%2014.15%2016.6%2024%2026.5%2033.85%2016.65%2036%2018.8Z%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
  transition: transform 0.125s ease-out;
  margin-left: 8px;
}
.ats-filter-collapsed .ats-finder-filter-title::after {
  transform: rotate(360deg);
}
.ats-filter-collapsed .ats-filter-options {
  display: none;
}
.ats-search-filters {
  max-height: calc(100vh);
  overflow-y: auto;
}
.ats-filter-group {
  margin-bottom: 2em;
}
.ats-filter-options {
  max-height: 220px;
  overflow: auto;
  padding: 0 15px 0 5px;
}
.ats-filter-options input[type="checkbox"] {
  accent-color: #d0011a;
}
.ats-filter-group[data-filter-key="color"] .ats-filter-option-term-name {
  text-transform: capitalize;
}
.ats-search-results {
  transition: opacity 0.2s ease;
  margin-top: 1em;
}
.ats-search-results.ats-loading {
  opacity: 0.5;
  pointer-events: none;
}
.ats-search-section.have-results .ats-search-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(169px, 1fr));
  gap: 12px;
}
.ats-owl-uninitialized {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.ats-owl-uninitialized::-webkit-scrollbar {
  height: 6px;
}
.ats-owl-uninitialized::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.2);
  border-radius: 999px;
}
.ats-owl-uninitialized .ats-carousel-card {
  flex: 0 0 169px;
}
.ats-recos-placeholder {
  display: grid;
  gap: 28px;
}
.ats-recos-placeholder-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.ats-carousel-placeholder {
  display: flex;
  gap: 12px;
  overflow: hidden;
}
.ats-carousel-placeholder-card {
  flex: 0 0 169px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ats-placeholder-thumb,
.ats-placeholder-line,
.ats-placeholder-badge {
  background: linear-gradient(
    90deg,
    rgba(229, 231, 235, 0.85),
    rgba(209, 213, 219, 0.7),
    rgba(229, 231, 235, 0.85)
  );
  background-size: 200% 100%;
  animation: ats-placeholder-shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
}
.ats-placeholder-thumb {
  height: 110px;
}
.ats-placeholder-line {
  height: 12px;
}
.ats-placeholder-line.short {
  width: 60%;
}
.ats-placeholder-line.tiny {
  width: 40%;
}
.ats-placeholder-badge {
  width: 48px;
  height: 20px;
  align-self: flex-start;
  border-radius: 999px;
}
@keyframes ats-placeholder-shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
.ats-search-external-loading {
  position: relative;
}
.ats-finder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  position: relative;
  z-index: 999999998;
  overflow: hidden;
  background: #ffffff;
  padding: 2em;
}
.ats-finder-logo {
  max-width: 170px;
  height: auto;
}
#ats-finder-close-modal {
  background: unset;
  font-size: 2em;
  padding: 0 10px;
  line-height: 1;
  border-radius: 6px;
}
.ats-finder-search-input {
  position: relative;
  width: 100%;
}
input[name="search-v2"] {
  position: relative;
  border-radius: 7px;
}
input[name="search-v2"]:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
button.ats-finder-close-modal {
  background: unset;
  font-size: 2em;
  padding: 0 10px;
  line-height: 1;
  border-radius: 6px;
}
.ats-search-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0 2em;
}
a.ats-finder-card {
  position: relative;
  display: block;
  text-decoration: none;
}
.ats-search-product-card-inner-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  height: 100%;
  align-self: stretch;
}
.ats-search-product-card-inner-wrap:hover {
  border-color: #a1a1a1;
  box-shadow: 0 0 0 1px #a1a1a1;
}
img.ats-search-product-card-thumbnail {
  aspect-ratio: 4 / 4;
  object-fit: contain !important;
}
.ats-search-product-card-title {
  font-weight: 600;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ats-search-product-card-subtitle {
  font-size: 12px;
  color: #6b7280;
}
.ats-finder-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #d0011b;
  color: #fff;
  padding: 4px 7px;
  border-radius: 0 6px;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}
.ats-search-tags span.ats-chip {
  margin: 0;
  line-height: 1;
  background: white;
  color: #d0011c;
  border: 1px solid #d0011c;
  padding: 6px 14px 7px;
  border-radius: 6.5px;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
span.ats-chip[data-field="color"] span {
  text-transform: capitalize;
}
.ats-search-tags span.ats-chip:hover {
  border: 1px solid #d0011c !important;
  background-color: #d0011c !important;
  color: #fff !important;
}
.ats-search-tags span.ats-chip button {
  padding: 0;
  margin-top: 1px;
  height: 0;
  line-height: 1;
  min-height: unset;
  color: #d0011c !important;
  transition: unset;
}
.ats-search-tags span.ats-chip:hover button {
  color: #fff !important;
  font-weight: bold !important;
}
body.ats-search-external-loading button.searchsubmit:before {
  border: 3px solid #e3e3e3 !important;
  border-radius: 50% !important;
  border-top: 3px solid #d0011a !important;
  width: 24px !important;
  height: 24px !important;
  -webkit-animation: spin 2s linear infinite !important;
  animation: spin 0.3s linear infinite !important;
  right: 63px;
  opacity: 1 !important;
  left: unset !important;
  margin: 0 !important;
  top: 11px !important;
}
.ats-search-section.ats-results-loading .ats-finder-search-input:after {
  content: "";
  border: 3px solid #e3e3e3 !important;
  border-radius: 50% !important;
  border-top: 3px solid #d0011a !important;
  width: 24px !important;
  height: 24px !important;
  -webkit-animation: spin 2s linear infinite !important;
  animation: spin 0.3s linear infinite !important;
  right: 16px;
  opacity: 1 !important;
  left: unset !important;
  margin: 0 !important;
  top: 9px !important;
  display: inline-block;
  position: absolute;
}
button.ats-search-close-mobile-filter {
  display: none !important;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .ats-finder-header,
  .ats-search-body {
    padding: 1em;
  }
  .ats-finder-logo {
    display: none;
  }
  .ats-search-header-inner {
    flex-direction: column-reverse;
  }
  .ats-search-header-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .ats-search-mobile-filter-button {
    display: flex !important;
  }
  .ats-search-tags {
    width: 100%;
  }
  .ats-search-filters-wrap-title,
  .ats-mobile-filter-apply {
    display: block !important;
    margin: 0;
  }
  .ats-mobile-filter-apply:hover {
    opacity: 1 !important;
    background: #dd0513;
    color: #fff;
  }
  button.ats-search-close-mobile-filter {
    background: unset;
    margin: 0;
    padding: 0;
    display: block !important;
    text-transform: unset;
    font-size: 12px;
    font-weight: normal;
  }
  button.ats-search-close-mobile-filter:hover,
  button.ats-search-close-mobile-filter:focus {
    background: unset;
  }
  .ats-search-filters {
    display: none;
    position: fixed !important;
    z-index: 9999;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    top: 68px !important;
    left: 0;
    padding: 10px 20px !important;
  }
  .ats-search-sort-select {
    border: unset !important;
    padding: 0 4px !important;
  }
  .ats-search-sort-wrap svg {
    display: block !important;
  }
  .ats-search-sort-wrap > span {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .ats-search-mobile-filter-button {
    display: none !important;
  }
}
.ats-search-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ats-search-header-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ats-search-mobile-filter-button {
  background: #fff;
  cursor: pointer;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 8px;
  text-transform: unset;
}
button.ats-search-mobile-filter-button:hover,
button.ats-search-mobile-filter-button:focus {
  background: unset;
}
.ats-search-header-buttons svg {
  width: 26px;
  height: auto;
}
.ats-search-sort-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ats-search-sort-wrap svg {
  display: none;
}
.ats-search-sort-select {
  padding: 0 10px;
  background: #fff;
  background-image: unset !important;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 27px;
  border-color: #b0b0b0;
}
.ats-search-sort-select::-ms-expand {
  display: none;
}
.ats-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ats-search-filters {
  width: 280px;
  max-width: 40%;
  padding: 0 10px;
  background: #fff;
  position: sticky;
  top: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ats-search-filters-wrap-title {
  display: none;
}
button.ats-mobile-filter-apply {
  display: none;
  position: fixed;
  bottom: 1em;
  left: 10px;
  width: calc(100% - 20px);
  opacity: 0.4;
  background: #dd0513;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}
.ats-search-section.have-results #search-results-warning {
  display: none !important;
}
div#ats-search-section:not(.have-results) .ats-search-header-inner {
  display: none;
}
.ats-search-popular-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 2em;
}
.ats-search-popular-item {
  cursor: pointer;
  text-align: left;
  margin: 0;
  color: #333;
}
.ats-search-filters-inner.ats-filters-loading {
  pointer-events: none;
  opacity: 0.5;
}
.ats-search-tavsiyeler-wrap {
  position: relative;
}
.ats-search-section .owl-carousel {
  position: unset;
}
.ats-search-section .owl-nav button {
  position: absolute;
  background: #dfdfdf !important;
  height: 30px;
  width: 20px;
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.ats-search-section .owl-nav button.owl-prev {
  top: 50%;
  left: 0;
}
.ats-search-section .owl-nav button.owl-next {
  top: 50%;
  right: 0;
}
.ats-search-section span.ats-owl-nav {
  line-height: 1;
  font-size: 26px;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
  display: block;
  height: 27px;
}
.ats-search-section .owl-nav button:hover {
  background: #a5a5a5 !important;
}
.ats-search-section button.owl-next {
  border-radius: 20px 0 0 20px;
}
.ats-search-section button.owl-next span {
  margin-left: 5px;
}
.ats-search-section button.owl-prev {
  border-radius: 0 20px 20px 0;
}
.ats-search-section button.owl-prev span {
  margin-right: 5px;
}
.ats-search-section .owl-dots {
  display: none !important;
}
.ats-search-sort-wrap {
  display: none;
}
.ats-search-no-results-warning {
  padding: 28px 20px 9px 0;
  text-align: left;
  font-size: 16px;
  color: initial;
  line-height: 25px;
}
.ats-search-filters-inner.ats-filters-loading:after {
  content: "";
  border: 3px solid #e3e3e3 !important;
  border-radius: 50% !important;
  border-top: 3px solid #d0011a !important;
  width: 24px !important;
  height: 24px !important;
  -webkit-animation: spin 2s linear infinite !important;
  animation: spin 0.3s linear infinite !important;
  opacity: 1 !important;
  margin: 0 !important;
  top: 37vh;
  left: 46%;
  display: inline-block;
  position: absolute;
}
#ats-search-section ::-webkit-scrollbar {
  width: 4px;
}
#ats-search-section ::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 6px;
}
#ats-search-section ::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 6px;
}
#ats-search-section ::-webkit-scrollbar {
  /* display: none; */
}
