/**
 * Product filtering and grid styles
 */
/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  background-color: #D9D9D9;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 0.875rem;
  animation: fadeIn 0.3s ease-in-out;
}
.active-filter-tag__text {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.active-filter-tag__remove {
  border: none;
  background: none;
  color: #666;
  font-size: 1.25rem;
  cursor: pointer;
  margin-left: 10px;
  padding: 0;
  line-height: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Filter Sidebar */
.product-filters {
  background-color: #ffffff;
  padding: 30px;
  height: fit-content;
  border: 1px solid #D9D9D9;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
@media only screen and (min-width: 992px) {
  .product-filters {
    position: sticky;
    top: 120px;
    margin-top: 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .product-filters {
    padding-bottom: 50px;
  }
}
.product-filters__title, .product-filters__clear-all {
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
}
.product-filters__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.product-filters__clear-all {
  background: none;
  color: #E24A02;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-filters__group {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #D9D9D9;
}
.product-filters__group:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .product-filters__group {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.product-filters__accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 2px 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -0.4px;
}
.product-filters__accordion-toggle::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M12.0248 16.4316C11.7211 16.4316 11.4511 16.3303 11.2486 16.1278L5.84859 10.7278C5.40984 10.3228 5.40984 9.61407 5.84859 9.20907C6.25359 8.77032 6.96234 8.77032 7.36734 9.20907L12.0248 13.8328L16.6486 9.20907C17.0536 8.77032 17.7623 8.77032 18.1673 9.20907C18.6061 9.61407 18.6061 10.3228 18.1673 10.7278L12.7673 16.1278C12.5648 16.3303 12.2948 16.4316 12.0248 16.4316Z' fill='black'/%3e%3c/svg%3e");
  transition: all 0.2s ease-in-out;
}
.product-filters__accordion-toggle[aria-expanded=true]::after {
  transform: rotate(-180deg);
}
.product-filters__accordion-toggle:hover {
  color: #333;
}
.product-filters__group-title {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.product-filters__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  padding-top: 26px;
}
.product-filters__options label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.36px;
  gap: 12px;
}
.product-filters__checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2) inset;
  cursor: pointer;
}
.product-filters__checkbox:checked {
  background: #E24A02;
  border-color: #E24A02;
  box-shadow: none;
}
.product-filters__checkbox:checked::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M15.9399 5.67424C16.3056 6.01174 16.3056 6.60237 15.9399 6.93987L8.73994 14.1399C8.40244 14.5055 7.81182 14.5055 7.47432 14.1399L3.87432 10.5399C3.50869 10.2024 3.50869 9.61174 3.87432 9.27424C4.21182 8.90862 4.80244 8.90862 5.13994 9.27424L8.09307 12.2274L14.6743 5.67424C15.0118 5.30862 15.6024 5.30862 15.9399 5.67424Z' fill='white'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}
.product-filters__checkbox:disabled {
  cursor: not-allowed;
}
.product-filters__count {
  color: #7F7F7F;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

/* Products Grid */
.products-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-top: 20px;
  height: fit-content;
}
@media only screen and (min-width: 576px) {
  .products-grid {
    justify-content: center;
    gap: 10px 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .products-grid {
    justify-content: flex-start;
  }
}
.products-grid.is-loading {
  position: relative;
  opacity: 0.6;
}
.products-grid.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #003060;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Product Card */
.product-card {
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  width: 328px;
  max-width: 100%;
}
@media only screen and (min-width: 576px) {
  .product-card {
    flex-direction: column;
    row-gap: 0;
    width: 360px;
  }
  .product-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 82px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: #F5F5F5;
    transition: all 0.2s ease-in-out;
  }
}
.product-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 133/134;
  width: 133px;
  height: auto;
  flex-shrink: 0;
}
@media only screen and (min-width: 576px) {
  .product-card__image {
    width: 288px;
    height: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease-in-out;
}
.product-card__img--placeholder {
  background: linear-gradient(135deg, #F5F5F5 0%, #D9D9D9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img--placeholder::before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23C1C1C1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3e%3ccircle cx='9' cy='9' r='2'/%3e%3cpath d='m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  flex: 1;
}
@media only screen and (min-width: 576px) {
  .product-card__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px 20px;
    gap: 16px;
  }
}
.product-card__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card__title {
  margin: 0;
  transition: all 0.2s ease-in-out;
  font-size: 20px;
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: transparent;
}
@media only screen and (min-width: 768px) {
  .product-card__title {
    font-size: 24px;
    line-height: 28px;
  }
}
.product-card__brand {
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
}
.product-card__link {
  width: fit-content;
  font-size: 16px;
  border-width: 3px;
  color: #E24A02;
  border-color: #E24A02;
  padding: 2px 7px;
}
.product-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.product-card__link:hover {
  border-color: #000000;
}
.product-card__link:hover::after {
  background-color: #E24A02;
}
.product-card:hover .product-card__img {
  transform: scale(1.074);
}
.product-card:hover .product-card__title {
  color: #E24A02;
  text-decoration-color: #E24A02;
}
.product-card:hover .btn {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.no-products-found {
  grid-column: 1/-1;
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px #eee;
}

body.tax-summit-product-category .main-hero-section {
  aspect-ratio: unset;
}

.product-archive__title {
  padding-top: 15px;
}
@media only screen and (min-width: 576px) {
  .product-archive__title {
    padding-top: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .product-archive__title {
    padding-top: 19px;
  }
}
@media only screen and (min-width: 992px) {
  .product-archive__title {
    padding-top: 23px;
  }
}
@media only screen and (min-width: 1200px) {
  .product-archive__title {
    padding-top: 27px;
  }
}
@media only screen and (min-width: 1400px) {
  .product-archive__title {
    padding-top: 31px;
  }
}
@media only screen and (min-width: 1600px) {
  .product-archive__title {
    padding-top: 36px;
  }
}
@media only screen and (min-width: 1800px) {
  .product-archive__title {
    padding-top: 40px;
  }
}
.product-archive__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 30px;
}
@media only screen and (min-width: 992px) {
  .product-archive__layout {
    grid-template-columns: 360px 1fr;
  }
}

@media only screen and (min-width: 1400px) {
  .taxonomy-hero-banner {
    min-height: 500px;
  }
}

.sock-get-updates {
  margin-top: clamp(40px, 8vw, 150px);
}

.taxonomy-breadcrumbs .breadcrumb_last {
  font-weight: 700;
}

/*# sourceMappingURL=product-archive.css.map */
