.products-catalog {
  padding-top: 90px;
  /* ===== PRODUCTS SECTIONS ===== */
}
.products-catalog .loading-text {
  display: block;
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #c9d2cd;
  text-align: left;
}
.products-catalog .mobile-filter {
  display: none;
  opacity: 0;
  background-color: rgba(201, 210, 205, 0.2);
  border: 1px solid #C9D2CD;
  padding: 9px;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}
@media (max-width: 520px) {
  .products-catalog .mobile-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.products-catalog .mobile-filter span {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.95123 2.99707V11H4.95123V2.99707H6.95123ZM12.9998 2.99707V7.99902H14.955V9.99902H9.04462V7.99902H10.9998V2.99707H12.9998ZM19.0484 2.99707V13.0008H17.0484V2.99707H19.0484ZM12.9998 12.0005V21.0038H10.9998V12.0005H12.9998ZM2.99609 13.0015H8.90643V15.0015H6.95123V21.004H4.95123V15.0015H2.99609V13.0015ZM15.0932 15.002H21.0035V17.002H19.0484V21.0036H17.0484V17.002H15.0932V15.002Z' fill='%23C9D2CD'/%3E%3C/svg%3E%0A");
}
.products-catalog .mobile-filter h3 {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: #C9D2CD;
}
.products-catalog .catalog-categories {
  margin-bottom: 24px;
}
@media (max-width: 1240px) {
  .products-catalog .catalog-categories {
    display: none !important;
    opacity: 0 !important;
  }
}
.products-catalog .catalog-categories.mobile-version {
  display: none;
}
@media (max-width: 1240px) {
  .products-catalog .catalog-categories.mobile-version {
    display: block !important;
    opacity: 1 !important;
    margin-bottom: 32px;
  }
}
@media (max-width: 992px) {
  .products-catalog .catalog-categories.mobile-version {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .products-catalog .catalog-categories.mobile-version .catalog-categories__container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    padding: 0 24px;
  }
  .products-catalog .catalog-categories.mobile-version .categories-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 12px;
  }
  .products-catalog .catalog-categories.mobile-version .category-nav__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    white-space: nowrap;
    min-width: 160px;
  }
}
@media (max-width: 1240px) {
  .products-catalog .catalog-categories .catalog-categories__container {
    padding: 0 24px;
  }
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item {
  background-color: #3E4747;
  position: relative;
  height: 90px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-top: 15px;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #2b3131;
  width: 100px;
  height: 23px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
  z-index: 2;
}
@media (max-width: 1240px) {
  .products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item::before {
    width: 50px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
  }
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item .category-nav__text {
  display: block;
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #c9d2cd;
  text-align: left;
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item .category-nav__desc {
  display: block;
  text-transform: none;
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 40%;
  color: #c9d2cd;
  text-align: left;
  width: 145px;
  white-space: normal;
  word-break: break-word;
}
.products-catalog .catalog-categories .catalog-categories__container .categories-nav .category-nav__item:hover {
  background-color: #4e5b5b;
}
.products-catalog .catalog-products {
  min-height: 500px;
  position: relative;
}
@media (max-width: 1024px) {
  .products-catalog .catalog-header {
    padding-bottom: 24px;
  }
}
.products-catalog .catalog-header .catalog-header__container {
  max-width: 1525px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 576px) {
  .products-catalog .catalog-header .catalog-header__container {
    padding: 0 16px;
  }
}
.products-catalog .catalog-header .catalog-header__container .catalog-header__title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 120px;
  text-transform: uppercase;
  color: #C9D2CD;
}
@media (max-width: 1024px) {
  .products-catalog .catalog-header .catalog-header__container .catalog-header__title {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  .products-catalog .catalog-header .catalog-header__container .catalog-header__title {
    font-size: 40px;
    margin-bottom: 32px;
  }
}
.products-catalog .catalog-header .catalog-header__container .catalog-header__description {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  text-transform: uppercase;
  opacity: 40%;
}
@media (max-width: 1240px) {
  .products-catalog .catalog-content {
    padding-top: 0;
    padding-bottom: 58px;
  }
}
.products-catalog .catalog-content .catalog-content__container {
  max-width: 1525px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 576px) {
  .products-catalog .catalog-content .catalog-content__container {
    padding: 0 16px;
  }
}

/* ===== CATALOG LAYOUT STYLES ===== */
/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background-color: rgba(201, 210, 205, 0.1);
  border: 1px solid rgba(201, 210, 205, 0.2);
  border-radius: 8px;
  color: #C9D2CD;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-filter-toggle:hover {
  background-color: rgba(201, 210, 205, 0.15);
  border-color: rgba(201, 210, 205, 0.3);
}
.mobile-filter-toggle svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mobile-filter-toggle .filter-count {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background-color: #C9D2CD;
  color: #2B3131;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  margin-left: auto;
}

/* Main Catalog Layout */
.catalog-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 255px 1fr;
  grid-template-columns: 255px 1fr;
  gap: 110px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
@media (max-width: 1374px) {
  .catalog-layout {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .catalog-layout {
    -ms-grid-columns: 216px 1fr;
    grid-template-columns: 216px 1fr;
  }
}
@media (max-width: 520px) {
  .catalog-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* ===== FILTERS SIDEBAR ===== */
.catalog-filters {
  position: sticky;
  top: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  height: calc(100vh - 150px);
  scrollbar-width: thin;
  scrollbar-color: #888 #3e4747;
  padding-right: 15px;
}
.catalog-filters::-webkit-scrollbar {
  width: 6px;
}
.catalog-filters::-webkit-scrollbar-track {
  background: #1c1c1c;
}
.catalog-filters::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.catalog-filters::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}
.catalog-filters .close-mobe-filter {
  display: none;
}
@media (max-width: 520px) {
  .catalog-filters .close-mobe-filter {
    position: absolute;
    top: 38px;
    right: 16px;
    display: block;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='21.9424' width='31.0319' height='2.90924' transform='rotate(-45 0 21.9424)' fill='%23C9D2CD'/%3E%3Crect x='21.9424' y='24' width='31.0319' height='2.90924' transform='rotate(-135 21.9424 24)' fill='%23C9D2CD'/%3E%3C/svg%3E%0A");
  }
}
@media (max-width: 520px) {
  .catalog-filters {
    -webkit-transform: translateX(-250%);
        -ms-transform: translateX(-250%);
            transform: translateX(-250%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    background-color: #2B3131;
    padding-top: 86px;
    padding-bottom: 28px;
    height: 2086px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-right: 16px;
  }
}
.catalog-filters.mobile-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.catalog-filters__title {
  font-size: 18px;
  font-weight: 700;
  color: #C9D2CD;
  letter-spacing: 0.5px;
  margin: 0;
}
.catalog-filters .mobile-filter-close {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: #C9D2CD;
  cursor: pointer;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.catalog-filters .mobile-filter-close:hover {
  background-color: rgba(201, 210, 205, 0.1);
}

/* Filter Form */
.filters-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 520px) {
  .filters-form {
    height: 2200px;
  }
}
@media (max-width: 520px) and (min-height: 668px) {
  .filters-form {
    height: 2400px;
  }
}
@media (max-width: 520px) and (min-height: 812px) {
  .filters-form {
    height: 2660px;
  }
}
@media (max-width: 520px) and (min-height: 844px) {
  .filters-form {
    height: 2645px;
  }
}
@media (max-width: 520px) and (min-height: 852px) {
  .filters-form {
    height: 2630px;
  }
}
@media (max-width: 520px) and (min-height: 926px) {
  .filters-form {
    height: 2565px;
  }
}
@media (max-width: 520px) and (min-height: 932px) {
  .filters-form {
    height: 2560px;
  }
}

/* Filter Group */
.filter-group .filter-group__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.filter-group .filter-group__wrapper .filter-item-toggler {
  width: 12px;
  height: 12px;
  background-color: #C9D2CD;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  padding: 0;
  line-height: 0;
}
.filter-group .filter-label {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  color: #C9D2CD;
  opacity: 40%;
}

/* Checkbox Group */
.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.checkbox-item:hover .checkbox-text {
  color: #C9D2CD;
}
.checkbox-item:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.51853 0H8.48147C9.029 0 9.46033 -6.62605e-06 9.8074 0.0283534C10.1615 0.0572867 10.4573 0.117393 10.726 0.25432C11.165 0.47802 11.522 0.83498 11.7457 1.27402C11.8826 1.54275 11.9427 1.83847 11.9717 2.19259C12 2.53969 12 2.97101 12 3.51852V8.48147C12 9.029 12 9.46033 11.9717 9.8074C11.9427 10.1615 11.8826 10.4573 11.7457 10.726C11.522 11.165 11.165 11.522 10.726 11.7457C10.4573 11.8826 10.1615 11.9427 9.8074 11.9717C9.46033 12 9.029 12 8.48147 12H3.51852C2.97101 12 2.53969 12 2.19259 11.9717C1.83847 11.9427 1.54275 11.8826 1.27402 11.7457C0.83498 11.522 0.47802 11.165 0.25432 10.726C0.117393 10.4573 0.0572867 10.1615 0.0283534 9.8074C-6.62605e-06 9.46033 0 9.029 0 8.48147V3.51852C0 2.97101 -6.62605e-06 2.53969 0.0283534 2.19259C0.0572867 1.83847 0.117393 1.54276 0.25432 1.27402C0.47802 0.83498 0.83498 0.47802 1.27402 0.25432C1.54276 0.117393 1.83847 0.0572867 2.19259 0.0283534C2.53969 -6.62605e-06 2.97102 0 3.51853 0ZM8.56687 4.73573C8.69707 4.60553 8.69707 4.39448 8.56687 4.26431C8.43673 4.13413 8.22567 4.13413 8.09547 4.26431L5.3312 7.0286L4.23355 5.931C4.10337 5.8008 3.89231 5.8008 3.76214 5.931C3.63197 6.06113 3.63197 6.2722 3.76214 6.4024L5.09547 7.73573C5.22567 7.86587 5.43673 7.86587 5.56687 7.73573L8.56687 4.73573Z' fill='%23C9D2CD'/%3E%3C/svg%3E");
}
.checkbox-item .filter-checkbox {
  display: none;
}
.checkbox-item .filter-checkbox:checked + .checkbox-custom::after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.51853 0H8.48147C9.029 0 9.46033 -6.62605e-06 9.8074 0.0283534C10.1615 0.0572867 10.4573 0.117393 10.726 0.25432C11.165 0.47802 11.522 0.83498 11.7457 1.27402C11.8826 1.54275 11.9427 1.83847 11.9717 2.19259C12 2.53969 12 2.97101 12 3.51852V8.48147C12 9.029 12 9.46033 11.9717 9.8074C11.9427 10.1615 11.8826 10.4573 11.7457 10.726C11.522 11.165 11.165 11.522 10.726 11.7457C10.4573 11.8826 10.1615 11.9427 9.8074 11.9717C9.46033 12 9.029 12 8.48147 12H3.51852C2.97101 12 2.53969 12 2.19259 11.9717C1.83847 11.9427 1.54275 11.8826 1.27402 11.7457C0.83498 11.522 0.47802 11.165 0.25432 10.726C0.117393 10.4573 0.0572867 10.1615 0.0283534 9.8074C-6.62605e-06 9.46033 0 9.029 0 8.48147V3.51852C0 2.97101 -6.62605e-06 2.53969 0.0283534 2.19259C0.0572867 1.83847 0.117393 1.54276 0.25432 1.27402C0.47802 0.83498 0.83498 0.47802 1.27402 0.25432C1.54276 0.117393 1.83847 0.0572867 2.19259 0.0283534C2.53969 -6.62605e-06 2.97102 0 3.51853 0ZM8.56687 4.73573C8.69707 4.60553 8.69707 4.39448 8.56687 4.26431C8.43673 4.13413 8.22567 4.13413 8.09547 4.26431L5.3312 7.0286L4.23355 5.931C4.10337 5.8008 3.89231 5.8008 3.76214 5.931C3.63197 6.06113 3.63197 6.2722 3.76214 6.4024L5.09547 7.73573C5.22567 7.86587 5.43673 7.86587 5.56687 7.73573L8.56687 4.73573Z' fill='%23C9D2CD'/%3E%3C/svg%3E");
}
.checkbox-item .checkbox-custom {
  position: relative;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkbox-item .checkbox-custom::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.2' fill-rule='evenodd' clip-rule='evenodd' d='M3.51853 0H8.48147C9.029 0 9.46033 -6.62605e-06 9.8074 0.0283534C10.1615 0.0572867 10.4573 0.117393 10.726 0.25432C11.165 0.47802 11.522 0.83498 11.7457 1.27402C11.8826 1.54275 11.9427 1.83847 11.9717 2.19259C12 2.53969 12 2.97101 12 3.51852V8.48147C12 9.029 12 9.46033 11.9717 9.8074C11.9427 10.1615 11.8826 10.4573 11.7457 10.726C11.522 11.165 11.165 11.522 10.726 11.7457C10.4573 11.8826 10.1615 11.9427 9.8074 11.9717C9.46033 12 9.029 12 8.48147 12H3.51852C2.97101 12 2.53969 12 2.19259 11.9717C1.83847 11.9427 1.54275 11.8826 1.27402 11.7457C0.83498 11.522 0.47802 11.165 0.25432 10.726C0.117393 10.4573 0.0572867 10.1615 0.0283534 9.8074C-6.62605e-06 9.46033 0 9.029 0 8.48147V3.51852C0 2.97101 -6.62605e-06 2.53969 0.0283534 2.19259C0.0572867 1.83847 0.117393 1.54276 0.25432 1.27402C0.47802 0.83498 0.83498 0.47802 1.27402 0.25432C1.54276 0.117393 1.83847 0.0572867 2.19259 0.0283534C2.53969 -6.62605e-06 2.97102 0 3.51853 0ZM8.56687 4.73573C8.69707 4.60553 8.69707 4.39448 8.56687 4.26431C8.43673 4.13413 8.22567 4.13413 8.09547 4.26431L5.3312 7.0286L4.23355 5.931C4.10337 5.8008 3.89231 5.8008 3.76214 5.931C3.63197 6.06113 3.63197 6.2722 3.76214 6.4024L5.09547 7.73573C5.22567 7.86587 5.43673 7.86587 5.56687 7.73573L8.56687 4.73573Z' fill='black'/%3E%3C/svg%3E%0A");
}
.checkbox-item .checkbox-text {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  color: #C9D2CD;
}
.checkbox-item .checkbox-text:hover {
  text-decoration: underline;
}

/* Radio Group */
.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.radio-item:hover .radio-text {
  color: #C9D2CD;
}
.radio-item:hover .radio-custom {
  border-color: #C9D2CD;
}
.radio-item .filter-radio {
  display: none;
}
.radio-item .filter-radio:checked + .radio-custom {
  border-color: #C9D2CD;
}
.radio-item .filter-radio:checked + .radio-custom::after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.radio-item .radio-custom {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(201, 210, 205, 0.3);
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.radio-item .radio-custom::after {
  content: "";
  position: absolute;
  top: 22%;
  left: 20%;
  width: 6px;
  height: 6px;
  background-color: #C9D2CD;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio-item .radio-text {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  color: #C9D2CD;
}

/* Filter Actions */
.filter-actions {
  padding-top: 16px;
  border-top: 1px solid rgba(201, 210, 205, 0.1);
}
.filter-actions .btn-reset-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: 1px solid rgba(201, 210, 205, 0.2);
  border-radius: 8px;
  color: rgba(201, 210, 205, 0.8);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-actions .btn-reset-filters:hover {
  border-color: #C9D2CD;
  color: #C9D2CD;
  background-color: rgba(201, 210, 205, 0.05);
}
.filter-actions .btn-reset-filters svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Loading Indicator */
.loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  color: rgba(201, 210, 205, 0.8);
  font-size: 14px;
  z-index: 10;
}
.loading-indicator .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 210, 205, 0.2);
  border-top: 3px solid #C9D2CD;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.products-section {
  margin-bottom: 60px;
  border-top: 1px solid rgba(201, 210, 205, 0.1019607843);
  padding-top: 24px;
  scroll-margin-top: 100px;
}
.products-section:last-child {
  margin-bottom: 0;
}
.products-section .section-header {
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 740px) {
  .products-section .section-header {
    padding-top: 48px;
  }
}
.products-section .section-header .section-title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 47px;
  color: #C9D2CD;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.products-section .section-header .section-subtitle {
  position: absolute;
  right: 0;
  top: 0;
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  color: #C9D2CD;
  opacity: 40%;
}
@media (max-width: 992px) {
  .products-section .section-header .section-subtitle {
    width: 141px;
  }
}
@media (max-width: 740px) {
  .products-section .section-header .section-subtitle {
    left: 0;
    right: unset;
  }
}
@media (max-width: 400px) {
  .products-section .section-header .section-subtitle {
    font-size: 12px;
  }
}
.products-section .section-header .section-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .products-section .section-header .section-types {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px;
  }
}
.products-section .section-header .section-types li {
  padding: 4px;
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  color: #2B3131;
  background-color: #C9D2CD;
}
.products-section .section-header .section-count {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  text-transform: uppercase;
  opacity: 40%;
}

.products-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  /* No Products State */
}
@media (max-width: 875px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 740px) {
  .products-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.products-grid.filtered {
  display: block;
}
.products-grid .no-products {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.products-grid .no-products__icon {
  margin-bottom: 24px;
  color: rgba(201, 210, 205, 0.4);
}
.products-grid .no-products__title {
  font-size: 24px;
  font-weight: 600;
  color: rgba(201, 210, 205, 0.8);
  margin: 0 0 12px 0;
}
.products-grid .no-products__text {
  color: rgba(201, 210, 205, 0.6);
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
  margin: 0;
}
.products-grid .product-card {
  background-color: #3E4747;
  padding: 24px;
  padding-top: 55px;
  position: relative;
}
.products-grid .product-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: #2B3131;
  width: 180px;
  height: 23px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
  z-index: 2;
}
@media (max-width: 992px) {
  .products-grid .product-card::before {
    width: 60px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
  }
}
@media (max-width: 520px) {
  .products-grid .product-card::before {
    width: 180px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 6% 100%);
  }
}
.products-grid .product-card .product-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.products-grid .product-card .product-card__image .product-card__image-link .product-card__img {
  max-width: 235px;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 870px) {
  .products-grid .product-card .product-card__image .product-card__image-link .product-card__img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.products-grid .product-card .product-card__content {
  margin-top: 40px;
}
.products-grid .product-card .product-card__content .product-card__title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #C9D2CD;
  margin-bottom: 15px;
}
.products-grid .product-card .product-card__content .product-card__description {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .products-grid .product-card .product-card__content .product-card__description br {
    display: none;
  }
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mobile-filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

.filtered-category-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(201, 210, 205, 0.1);
  padding-bottom: 24px;
}
.filtered-category-header .filtered-category-title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #C9D2CD;
  text-transform: uppercase;
  margin-bottom: 0;
}
.filtered-category-header .filtered-category-subtitle {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  text-transform: uppercase;
  opacity: 40%;
}
.filtered-category-header .filtered-category-count {
  font-family: "Geist Mono", monospace;
  font-weight: 300;
  font-size: 14px;
  color: #C9D2CD;
  text-transform: uppercase;
  opacity: 40%;
}

.filtered-category-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 16px;
  margin-bottom: 60px;
}
@media (max-width: 875px) {
  .filtered-category-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 740px) {
  .filtered-category-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.no-results .no-results__title {
  font-family: "Ki", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #C9D2CD;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-bottom: 24px;
  opacity: 20%;
}

.no-results__reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 200px;
  padding: 12px 16px;
  background: none;
  border: 1px solid rgba(201, 210, 205, 0.2);
  border-radius: 8px;
  color: rgba(201, 210, 205, 0.8);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.no-results__reset:hover {
  border-color: #C9D2CD;
  color: #C9D2CD;
  background-color: rgba(201, 210, 205, 0.05);
}
.no-results__reset svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}