.category-page {
  min-height: 100vh;
  background: #ffffff;
}

.category-page .site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding-bottom: 20px;
}

.category-hero {
  width: 100%;
  overflow: hidden;
  background: #f8f8f6;
}

.category-hero img {
  width: 100%;
  min-height: clamp(220px, 28.45vw, 626px);
  object-fit: cover;
  object-position: center;
}

.category-catalog {
  padding: 46px 0 40px;
  background:
    radial-gradient(circle at 72% 6%, rgba(255, 122, 0, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.category-layout {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.filter-panel {
  top: 112px;
}

.filter-form {
  overflow: hidden;
  padding: 24px 22px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
  border: 1px solid #e5e9ee;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(17, 19, 23, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-form:hover {
  border-color: rgba(255, 122, 0, 0.15);
  box-shadow: 0 24px 48px rgba(255, 122, 0, 0.04), 0 20px 40px rgba(17, 19, 23, 0.06);
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px dashed #edf2f7;
}

.filter-title strong {
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-title i {
  color: var(--orange);
  background: #fff5eb;
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.filter-form:hover .filter-title i {
  transform: rotate(15deg);
}

.filter-group {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 15px 0;
  border: 0;
  border-bottom: 1.5px solid #edf2f7;
  margin: 15px 0;
}

.filter-group legend {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--black);
  text-transform: uppercase;
  border-left: 3px solid var(--orange);
  padding-left: 10px;
  margin-bottom: 16px;
}

.choice-row,
.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4d5664;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  padding: 4px 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.choice-row:hover,
.check-row:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.choice-row input,
.check-row input,
.color-filter input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #bdc6d1;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}

.choice-row span::after {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.4);
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  content: "";
}

.choice-row input:checked + span {
  border-color: var(--orange);
  box-shadow: 0 3px 8px rgba(255, 122, 0, 0.15);
}

.choice-row input:checked + span::after {
  opacity: 1;
  transform: scale(1);
}

.choice-row:hover span {
  border-color: var(--orange);
  background: #fffbf7;
}

.check-row span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #bdc6d1;
  border-radius: 5px;
  background: #ffffff;
  transition: all 0.2s ease;
  position: relative;
}

.check-row span::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 9px;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
}

.check-row input:checked + span {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 3px 8px rgba(255, 122, 0, 0.2);
}

.check-row input:checked + span::after {
  opacity: 1;
  transform: scale(1);
}

.check-row:hover span {
  border-color: var(--orange);
  background: #fffbf7;
}

.color-filter {
  display: grid;
  grid-template-columns: repeat(4, 30px);
  gap: 10px;
  margin-bottom: 8px;
}

.color-filter label {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.color-filter span {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--swatch);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px #e2e8f0, 0 2px 4px rgba(0,0,0,0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.color-filter label:hover span {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px var(--orange), 0 4px 8px rgba(0,0,0,0.1);
}

.color-filter input:checked + span {
  box-shadow: 0 0 0 2.5px var(--orange), 0 4px 10px rgba(255, 122, 0, 0.25);
  transform: scale(1.1);
}

.color-filter span::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  font-size: 10px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.color-filter input:checked + span::after {
  transform: translate(-50%, -50%) scale(1);
}

.color-filter input[value="white"] + span::after {
  color: #111317;
  text-shadow: none;
}

.size-chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.size-chip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  color: #4d5664;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.size-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-chip:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff8f2;
  transform: translateY(-1px);
}

.size-chip:has(input:checked) {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.25);
}

.size-chip:active {
  transform: translateY(0);
}

.more-filter {
  justify-self: start;
  width: auto;
  padding: 6px 12px;
  color: var(--orange);
  background: #fff8f2;
  border: 1px dashed rgba(255, 122, 0, 0.3);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.more-filter:hover {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  transform: translateY(-1px);
}

.price-filter {
  padding-top: 10px;
}

.price-filter input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  margin: 0;
  background: #e2e8f0;
  border-radius: 5px;
  outline: none;
  pointer-events: none;
  position: relative;
}

.price-filter input[type="range"] + input[type="range"] {
  margin-top: -5px;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
}
.price-filter input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
}

.price-filter input[type="range"]::-webkit-slider-runnable-track {
  background: transparent;
}

.price-filter input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--orange);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.15s ease;
  position: relative;
  z-index: 2;
}

.price-filter input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
  background: #ffffff;
}

.price-filter input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--orange);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.15s ease;
  box-sizing: border-box;
}

.price-filter input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
}

.price-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.price-labels span {
  background: #fff8f2;
  color: var(--orange);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  border: 1px dashed rgba(255, 122, 0, 0.25);
}

.apply-filter,
.reset-filter {
  width: 100%;
  min-height: 44px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.apply-filter {
  margin-top: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange) 0%, #ff5100 100%);
  border: none;
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.22);
}

.apply-filter:hover {
  background: linear-gradient(135deg, #ff8c20 0%, var(--orange) 100%);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.36);
  transform: translateY(-2px);
}

.apply-filter:active {
  transform: translateY(0);
}

.reset-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  color: #6c7480;
  background: #f4f6f8;
  border: 1px solid #e1e6ed;
  border-radius: 8px;
  min-height: 44px;
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.reset-filter:hover {
  color: #ff3b30;
  background: #fff5f5;
  border-color: rgba(255, 59, 48, 0.2);
}

.category-results {
  min-width: 0;
}

.category-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  margin-bottom: 28px;
  padding: 0 22px;
  background: #ffffff;
  border: 1px solid #e5e9ee;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.04);
}

.mobile-filter-btn {
  display: none;
}

.close-filter-btn {
  display: none;
}

.result-total,
.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6c7480;
  font-size: 12px;
  font-weight: 800;
}

.result-label {
  white-space: nowrap;
}

.filtered-total {
  color: #8a939f;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.result-select-wrapper {
  min-width: 128px;
}

.result-select-wrapper .custom-options {
  left: 0;
  right: auto;
  min-width: 150px;
  transform-origin: top left;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  min-width: 165px;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 38px;
  padding: 0 16px;
  color: #17202b;
  background: #ffffff;
  border: 1px solid #e5e9ee;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.custom-select-trigger:hover {
  border-color: var(--orange);
  background: #fffbf7;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.05);
}

.custom-select-trigger:focus,
.custom-select-trigger.is-active {
  outline: none;
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15), 0 4px 12px rgba(255, 122, 0, 0.08);
}

.custom-select-trigger .selected-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.custom-select-trigger .selected-text i {
  color: var(--orange);
  font-size: 13px;
  transition: transform 0.2s ease;
}

.custom-select-trigger .arrow {
  color: #8a939f;
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.is-open .custom-select-trigger .arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.custom-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 99999;
  min-width: 190px;
  padding: 6px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 233, 238, 0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(17, 19, 23, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transform-origin: top right;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.25s step-end, 
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.is-open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0s linear, 
              transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin: 2px 0;
  color: #4d5664;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.custom-option i {
  width: 16px;
  text-align: center;
  color: #8a939f;
  font-size: 13px;
  transition: color 0.2s ease;
}

.custom-option:hover,
.custom-option:focus {
  color: var(--orange);
  background: #fff5eb;
}

.custom-option:hover i,
.custom-option:focus i {
  color: var(--orange);
}

.custom-option.selected {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.custom-option.selected i {
  color: #ffffff;
}

.category-product-grid.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.category-page .product-card {
  border-radius: 15px;
  box-shadow: 0 16px 28px rgba(17, 19, 23, 0.08);
}

.category-page .product-card[hidden],
.category-page .empty-products[hidden] {
  display: none !important;
}

.category-page .product-img-wrap {
  height: clamp(250px, 25vw, 330px);
  background: #f3f4f5;
}

.category-page .product-top {
  top: 8px;
  left: 10px;
  right: 10px;
}

.category-page .product-card h3 {
  min-height: 30px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.3;
}

.category-page .swatches {
  margin-top: -2px;
  margin-bottom: 20px;
}

.category-page .swatches span {
  width: 22px;
  height: 22px;
}

.category-page .product-footer {
  min-height: 62px;
  padding: 12px 12px;
}

.category-page .price-amount {
  font-size: 20px;
}

.category-page .add-cart {
  width: 40px;
  height: 40px;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.34);
}

.empty-products {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 260px;
  margin-top: 20px;
  padding: 32px;
  color: #4e5968;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e9ee;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.04);
}

.empty-products i {
  color: var(--orange);
  font-size: 28px;
}

.empty-products strong {
  color: #111317;
  font-size: 18px;
  font-weight: 900;
}

.empty-products p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 40px;
}

.catalog-pagination button,
.catalog-pagination span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  color: #252e3b;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.catalog-pagination button:hover,
.catalog-pagination button.is-active {
  color: var(--orange);
  background: #ffffff;
  border-color: var(--orange);
}

.catalog-pagination button:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.category-benefits {
  padding: 36px 0 58px;
  background: #fbfcfe;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e0e6ed;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(17, 19, 23, 0.04);
}

.benefit-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 22px 32px;
  border-right: 1px solid #e5e9ee;
}

.benefit-strip article:last-child {
  border-right: 0;
}

.benefit-strip i {
  color: #111317;
  font-size: 32px;
}

.benefit-strip strong,
.benefit-strip span {
  display: block;
}

.benefit-strip strong {
  color: #202631;
  font-size: 14px;
  font-weight: 900;
}

.benefit-strip span {
  margin-top: 2px;
  color: #7b8490;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .category-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

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

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

  .benefit-strip article:nth-child(2) {
    border-right: 0;
  }

  .benefit-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid #e5e9ee;
  }
}

@media (max-width: 900px) {
  .category-catalog {
    padding-top: 30px;
  }

  .category-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .filter-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
  }

  .filter-title,
  .price-filter,
  .apply-filter,
  .reset-filter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
.custom-select-wrapper {
    min-width: fit-content;
}
  .sort-label, .result-label {display:none;}
      .result-count, .sort-control .custom-select-wrapper {
          min-width: fit-content;
    }
    .category-page .swatches {
    margin-top: -2px;
    margin-bottom: 10px;
}
  .category-page .site-header {
    padding-top: 8px;
  }

  .category-hero img {
    min-height: 120px;
    object-position: 45% center;
  }

  .category-catalog {
    padding: 24px 0 28px;
  }

  .filter-panel {
    position: fixed;
    top: 0px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(17, 19, 23, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
  }

  .filter-panel.is-active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
  }

  .filter-panel .filter-form {
    display: block;
    width: 100%;
    max-width: 95vw;
    max-height: 85vh;
    overflow-y: auto;
    background: #ffffff;
    border: none;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding: 24px 20px 32px;
    animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .close-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f4f6f8;
    color: #4d5664;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s ease;
  }

  .close-filter-btn:hover {
    background: #e5e9ee;
    color: var(--black);
    transform: rotate(90deg);
  }

  .desktop-filter-icon {
    display: none !important;
  }

  .filter-group {
    padding: 18px 0;
  }

  .category-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 0;
    padding: 12px 16px;
  }

  .result-total,
  .sort-control {
    justify-content: stretch;
    width: 100%;
  }

  .result-count,
  .sort-control .custom-select-wrapper {
    min-width: 0;
    width: 100%;
  }

  .mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: #ffffff;
    background: var(--orange);
    border: none;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 122, 0, 0.22);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-filter-btn:hover {
    background: #ff5100;
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.35);
    transform: translateY(-1px);
  }

  .mobile-filter-btn:active {
    transform: translateY(0);
  }

  .category-product-grid.product-grid {
    /* grid-template-columns: 1fr; */
    /* gap: 22px; */
  }

  .category-page .product-img-wrap {
    height: clamp(280px, 25vw, 330px);
  }

  .category-page .product-card h3 {
    font-size: 15px;
    min-height: 20px;
  }

  .category-page .price-amount {
    font-size: 18px;
  }

  .catalog-pagination {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip article {
    min-height: 84px;
    padding: 20px 22px;
    border-right: 0;
    border-bottom: 1px solid #e5e9ee;
  }

  .benefit-strip article:last-child {
    border-bottom: 0;
  }
  .category-page .product-footer {
    min-height: 32px;
    padding: 10px 10px;
}
  .category-page .add-cart {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
}

@media (max-width: 420px) {
      .category-page .price-amount {
        font-size: 18px;
    }
  .category-page .product-card h3 {
        font-size: 14px;
        min-height: 10px;
        line-height: 1;
        margin-bottom: 6px;
    }
  .category-page .product-img-wrap {
        height: clamp(200px, 25vw, 330px);
    }
  .category-product-grid.product-grid {
    gap: 10px;
}
  .category-hero img {
    /* min-height: 190px; */
    /* object-position: 43% center; */
  }

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

  .color-filter label,
  .color-filter span {
    width: 26px;
    height: 26px;
  }

  .category-page .product-footer {
    min-height: 56px;
    padding: 6px;
  }

  .category-page .add-cart {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

body.filter-open {
  overflow: hidden;
  height: 100vh;
}

body.filter-open main {
  position: relative;
  z-index: 999999 !important;
}

body.filter-open .site-header,
body.filter-open .wa-float {
  z-index: 1 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
