.shop-filters-show {
  bottom: 30px;
  border-radius: 10px !important;
  background-color: var(--ns-primary);
  box-shadow: var(--ns-primary) 0 0 3px !important;
}

.woocommerce-products-header {
  padding: 0 !important;
  background-color: transparent !important;
  z-index: 999;

  .woocommerce-products-header__title {
    display: none !important;
  }

  .products-archive-header{
    padding: 20px;
    margin-left: -10px;
    margin-right: -10px;
    border-bottom: #ddd 1px solid;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
    backdrop-filter: blur(2px);

    .products-archive-tabs-wrapper{
      min-width: 50%;
      max-width: 50%;
      margin-bottom: 0;

      form{
        margin-bottom: 0 !important;
      }
    }
  }
}


.product-card{
  padding: 5px;
  background-color: #f5f5f5;

  .card-footer {
    .card-title{
      line-height: 25px;
      text-align: right;
    }

    .card-price {
      text-align: left;
      span {
        font-size: 18px;
      }

      .unavailable{
        font-size: 13px;
      }
    }
  }
}

.woocommerce-tabs.wc-tabs-wrapper ul.wc-tabs {
  padding: 0;
  margin: 10px;
  list-style: none;
  border-radius: var(--ns-radius) ;
  text-align: center;
}


.archive-product-categories{
  margin-bottom: 0 !important;
  margin-top: 0;


  .product-category--list{
    border-bottom: #ddd 1px solid;
    border-radius: 0 !important;
    background: #fff;
    margin: 0 -10px;

    &>a{
      display: flex;
      align-items: center;
      gap: 10px;
      border-radius: 0 !important;
      padding: 5px 10px;
      color: #444;
      background: #f9f9f9;

      &::before{
        display: none;
      }

      &:after{
        content: "\f104";
        font-family: "Font Awesome 5 Pro", sans-serif;
        font-weight: 300;
        font-size: 22px;
        margin-left: 10px;
        color: #888;
      }

      &:hover{
        background-color: #f5f5f5;
        color: #222;
      }
    }
    img{
      position: static;
      transform: none;
      width: 50px !important;
      border-radius: 10px;
    }
    .woocommerce-loop-category__title{
      position: static;
      display: block;
      color: inherit;
      flex: 1;
      padding-bottom: 0 !important;

      .count {
        background: transparent;
        color: #888;
        padding: 0;
        border-radius: var(--ns-radius) ;
        float: left;
      }
    }
  }
}