.shop-archive {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.shop-archive > aside {
  width: 300px;
  flex-shrink: 0;
}
.shop-archive > aside > .parent {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 22px;
}
.shop-archive > aside > .parent > .dropdown-wrapper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-archive > aside > .parent > .dropdown-wrapper-head > span {
  font-size: 17px;
  font-weight: 700;
}
.shop-archive > aside > .parent > .dropdown-wrapper-head > figure > img {
  margin: 0;
}
.shop-archive > .card-prodact {
  flex: 1;
}

.dropdown-wrapper > .dropdown-toggle {
  width: 100%;
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: none;
  border-bottom: 1px solid #ededed;
  direction: ltr !important;
  padding: 0;
  cursor: pointer;
  color: #202020;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s;
}
.dropdown-wrapper > .dropdown-toggle .dropdown-title {
  order: 2;
}
.dropdown-wrapper > .dropdown-toggle .dropdown-icon {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}
.dropdown-wrapper > .dropdown-toggle .dropdown-icon svg {
  width: 18px;
  height: 18px;
}
.dropdown-wrapper > .dropdown-toggle .dropdown-icon svg path {
  stroke: #3a3a3a;
}
.dropdown-wrapper > .dropdown-toggle:hover {
  color: #ef394e;
}
.dropdown-wrapper.is-open > .dropdown-toggle .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-wrapper > .dropdown-items {
  list-style: none;
  margin: 0;
  padding: 15px 0 5px;
  display: none;
}
.dropdown-wrapper > .dropdown-items > li:not(:last-child) {
  margin-bottom: 4px;
}
.dropdown-wrapper > .dropdown-items > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.25s;
  color: #444;
  font-size: 14px;
}
.dropdown-wrapper > .dropdown-items > li > a .category-name {
  font-weight: 500;
}
.dropdown-wrapper > .dropdown-items > li > a .category-count {
  min-width: 28px;
  height: 28px;
  border-radius: 100px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: #777;
}
.dropdown-wrapper > .dropdown-items > li > a:hover {
  background: #f8f8f8;
}
.dropdown-wrapper > .dropdown-items > li > a:hover .category-name {
  color: #ef394e;
}
.dropdown-wrapper > .dropdown-items > li > a:hover .category-count {
  background: #ef394e;
  color: #fff;
}
.dropdown-wrapper > .dropdown-items > li > a.active {
  background: rgba(239, 57, 78, 0.08);
}
.dropdown-wrapper > .dropdown-items > li > a.active .category-name {
  color: #ef394e;
  font-weight: 700;
}
.dropdown-wrapper > .dropdown-items > li > a.active .category-count {
  background: #ef394e;
  color: #fff;
}

.dropdown-toggle::after {
  display: none;
}

.price-filter {
  padding-top: 28px;
}
.price-filter > .price-tooltip {
  width: 160px;
  height: 44px;
  margin: 0 auto 28px;
  border: 1px solid #dadada;
  border-radius: 10px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}
.price-filter > .price-tooltip::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-right: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
}
.price-filter > .price-tooltip small {
  font-size: 13px;
  color: #555;
  font-weight: 500;
}
.price-filter > .price-slider {
  position: relative;
  height: 26px;
  margin-bottom: 40px;
  direction: ltr;
}
.price-filter .slider-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  background: #ffe5ec;
  border-radius: 100px;
}
.price-filter .slider-active {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  background: #ff1d25;
  border-radius: 100px;
  direction: rtl;
}
.price-filter input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  background: none;
  pointer-events: none;
}
.price-filter input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff1d25;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}
.price-filter input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #ff1d25;
  cursor: pointer;
}
.price-filter > .price-field {
  margin-bottom: 28px;
}
.price-filter > .price-field > label {
  display: block;
  text-align: center;
  color: #a5a5a5;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}
.price-filter .input-wrapper {
  height: 68px;
  border: 1px solid #dddddd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: #fff;
  transition: 0.25s;
}
.price-filter .input-wrapper:focus-within {
  border-color: #ff1d25;
}
.price-filter .input-wrapper > span {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.price-filter .input-wrapper > input {
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  background: none;
  color: #333;
}
.price-filter .input-wrapper > input::-moz-placeholder {
  color: #bbb;
  font-weight: 400;
  font-size: 15px;
  direction: rtl;
}
.price-filter .input-wrapper > input::placeholder {
  color: #bbb;
  font-weight: 400;
  font-size: 15px;
  direction: rtl;
}
.price-filter .input-wrapper > input:-moz-placeholder {
  font-weight: 400;
  color: #999;
}
.price-filter .input-wrapper > input:placeholder-shown {
  font-weight: 400;
  color: #999;
}

.reset-filter-btn {
  width: 100%;
  height: 44px;
  background: #f5f5f5;
  color: #666;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.reset-filter-btn:hover {
  background: #eeeeee;
  border-color: #ccc;
  color: #333;
}
.reset-filter-btn:active {
  transform: scale(0.98);
}

.product-status-wrapper > .status-item {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding: 0 6px;
}
.product-status-wrapper > .status-item > .status-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.status-switch {
  position: relative;
  width: 58px;
  height: 30px;
  display: inline-block;
  cursor: pointer;
}
.status-switch > input {
  display: none;
}
.status-switch > .status-slider {
  position: absolute;
  inset: 0;
  background: #e2e2e2;
  border-radius: 50px;
  transition: 0.3s;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.status-switch > .status-slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: #fff;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.status-switch > input:checked + .status-slider {
  background: #ff1d25;
}
.status-switch > input:checked + .status-slider::before {
  transform: translateX(28px);
}

.active-filters {
  padding: 22px 0;
  border-bottom: 1px solid #ececec;
}
.active-filters > .active-filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.active-filters > .active-filters-header > .title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
.active-filters > .active-filters-header > .clear-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: #ff2020;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.active-filters > .active-filters-header > .clear-filters svg {
  width: 14px;
  height: 14px;
}
.active-filters > .active-filters-header > .clear-filters:hover {
  color: #d80000;
}
.active-filters > .active-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.active-filters > .active-filter-list > .filter-chip {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: none;
  border-radius: 12px;
  background: #fdeaf1;
  cursor: pointer;
  transition: 0.25s;
}
.active-filters > .active-filter-list > .filter-chip:hover {
  background: #fbdfe9;
}
.active-filters > .active-filter-list > .filter-chip > .filter-name {
  font-size: 15px;
  font-weight: 600;
  color: #2b2b2b;
  line-height: 1.8;
}
.active-filters > .active-filter-list > .filter-chip > .remove-filter {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #222;
  transition: 0.25s;
}
.active-filters > .active-filter-list > .filter-chip > .remove-filter svg {
  width: 18px;
  height: 18px;
}
.active-filters > .active-filter-list > .filter-chip > .remove-filter:hover {
  background: rgba(0, 0, 0, 0.06);
}

.card-prodact {
  border: 1px solid grey;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 22px;
}
.card-prodact .product-card {
  background: #ffffff;
  border: 1px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(128, 128, 128, 0.5);
  padding-left: 18px;
  padding-right: 18px;
  padding-bottom: 15px;
  box-shadow: 0px 2px 4px 2px rgba(48, 48, 48, 0.26);
  background-color: rgba(255, 134, 54, 0.0588235294);
  border-radius: 15px;
  width: 30% !important;
  margin-top: 20px;
}
.card-prodact .product-card .product-thumbnail {
  display: block;
  margin-bottom: 12px;
}
.card-prodact .product-card .product-thumbnail img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-prodact .product-card .product-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  width: 65%;
  color: #001d3b;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.card-prodact .product-card .product-title a {
  text-align: start;
  color: #2c3e50;
  text-decoration: none;
}
.card-prodact .product-card .product-price {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 12px;
  display: flex;
  justify-content: space-between !important;
  width: 100%;
}
.card-prodact .product-card .product-price > .price-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: column-reverse;
}
.card-prodact .product-card .product-price > .price-wrapper > del > span {
  color: #b9b9b9;
  font-size: 10px;
}
.card-prodact .product-card .product-price > .price-wrapper > ins {
  background-color: rgba(255, 255, 255, 0) !important;
  font-size: 14px;
  font-weight: 700;
}
.card-prodact .product-card .product-price > .price-wrapper > ins > span {
  color: #ff0000;
  background-color: none;
}
.card-prodact .product-card .product-price > .discount-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-prodact .product-card .product-price > .discount-wrapper > span {
  color: white;
  padding: 0 5px;
  font-size: 14px;
  background: #FF164C;
  border-radius: 15px;
}

@media (max-width: 1200px) {
  .shop-archive {
    gap: 20px;
    padding: 0 15px;
  }
  .shop-archive > aside {
    width: 280px;
    flex-shrink: 0;
  }
  .shop-archive > aside > .parent {
    padding: 18px;
    border-radius: 16px;
  }
}
@media (max-width: 992px) {
  .shop-archive {
    flex-direction: column;
    gap: 24px;
    padding: 0 12px;
  }
  .shop-archive > aside {
    width: 100%;
    flex-shrink: 0;
  }
  .shop-archive > aside > .parent {
    padding: 16px;
    border-radius: 14px;
  }
  .shop-archive > .card-prodact {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
  }
}
@media (max-width: 992px) {
  .shop-archive > aside > .parent .dropdown-wrapper-head > span {
    font-size: 16px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > figure > img {
    width: 20px;
    height: 20px;
  }
  .dropdown-wrapper > .dropdown-toggle {
    height: 50px;
    font-size: 15px;
  }
  .dropdown-wrapper > .dropdown-toggle .dropdown-icon {
    width: 16px;
    height: 16px;
  }
  .dropdown-wrapper > .dropdown-toggle .dropdown-icon svg {
    width: 16px;
    height: 16px;
  }
  .dropdown-wrapper > .dropdown-items {
    padding: 12px 0 4px;
  }
  .dropdown-wrapper > .dropdown-items > li > a {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 10px;
  }
  .dropdown-wrapper > .dropdown-items > li > a .category-count {
    min-width: 24px;
    height: 24px;
    font-size: 11px;
  }
  .price-filter {
    padding-top: 24px;
  }
  .price-filter > .price-tooltip {
    width: 140px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .price-filter > .price-tooltip small {
    font-size: 12px;
  }
  .price-filter > .price-tooltip::after {
    width: 12px;
    height: 12px;
    bottom: -6px;
  }
  .price-filter > .price-slider {
    height: 24px;
    margin-bottom: 32px;
  }
  .price-filter .slider-track,
  .price-filter .slider-active {
    height: 4px;
  }
  .price-filter input[type=range]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
  }
  .price-filter input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
  }
  .price-filter > .price-field {
    margin-bottom: 24px;
  }
  .price-filter > .price-field > label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .price-filter .input-wrapper {
    height: 60px;
    padding: 0 18px;
    border-radius: 14px;
  }
  .price-filter .input-wrapper > span {
    font-size: 14px;
  }
  .price-filter .input-wrapper > input {
    font-size: 16px;
  }
  .price-filter .input-wrapper > input::-moz-placeholder {
    font-size: 14px;
  }
  .price-filter .input-wrapper > input::placeholder {
    font-size: 14px;
  }
  .reset-filter-btn {
    height: 40px;
    font-size: 14px;
    border-radius: 10px;
  }
  .product-status-wrapper > .status-item {
    height: 64px;
    padding: 0 4px;
  }
  .product-status-wrapper > .status-item > .status-title {
    font-size: 15px;
  }
  .status-switch {
    width: 52px;
    height: 28px;
  }
  .status-switch > .status-slider::before {
    width: 22px;
    height: 22px;
    top: 3px;
    left: 3px;
  }
  .status-switch > input:checked + .status-slider::before {
    transform: translateX(24px);
  }
  .active-filters {
    padding: 18px 0;
  }
  .active-filters > .active-filters-header {
    margin-bottom: 14px;
  }
  .active-filters > .active-filters-header > .title {
    font-size: 14px;
  }
  .active-filters > .active-filters-header > .clear-filters {
    font-size: 13px;
  }
  .active-filters > .active-filter-list {
    gap: 8px;
  }
  .active-filters > .active-filter-list > .filter-chip {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
  }
  .active-filters > .active-filter-list > .filter-chip > .filter-name {
    font-size: 14px;
  }
  .active-filters > .active-filter-list > .filter-chip > .remove-filter {
    width: 24px;
    height: 24px;
  }
  .active-filters > .active-filter-list > .filter-chip > .remove-filter svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1200px) {
  .card-prodact {
    padding: 18px;
    gap: 16px;
  }
  .card-prodact .product-card {
    width: calc(33.333% - 16px) !important;
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
  }
  .card-prodact .product-card .product-thumbnail {
    margin-bottom: 10px;
  }
  .card-prodact .product-card .product-thumbnail img {
    height: auto;
    max-height: 180px;
  }
  .card-prodact .product-card .product-title {
    font-size: 15px;
    width: 75%;
  }
  .card-prodact .product-card .product-price {
    padding-top: 10px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > ins {
    font-size: 13px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > del > span {
    font-size: 9px;
  }
  .card-prodact .product-card .product-price > .discount-wrapper > span {
    font-size: 13px;
    padding: 0 5px;
  }
}
@media (max-width: 992px) {
  .card-prodact {
    padding: 14px;
    gap: 14px;
    border-radius: 14px;
  }
  .card-prodact .product-card {
    width: calc(50% - 14px) !important;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
  }
  .card-prodact .product-card .product-thumbnail {
    margin-bottom: 8px;
  }
  .card-prodact .product-card .product-thumbnail img {
    max-height: 160px;
  }
  .card-prodact .product-card .product-title {
    font-size: 14px;
    width: 80%;
    margin-bottom: 6px;
  }
  .card-prodact .product-card .product-title a {
    font-size: 14px;
  }
  .card-prodact .product-card .product-price {
    padding-top: 8px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .card-prodact .product-card .product-price > .price-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > ins {
    font-size: 13px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > del > span {
    font-size: 9px;
  }
  .card-prodact .product-card .product-price > .discount-wrapper > span {
    font-size: 12px;
    padding: 0 6px;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .card-prodact {
    padding: 10px;
    gap: 10px;
    border-radius: 12px;
  }
  .card-prodact .product-card {
    width: calc(50% - 10px) !important;
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 2px rgba(48, 48, 48, 0.15);
  }
  .card-prodact .product-card .product-thumbnail {
    margin-bottom: 6px;
  }
  .card-prodact .product-card .product-thumbnail img {
    max-height: 120px;
  }
  .card-prodact .product-card .product-title {
    font-size: 12px;
    width: 100%;
    margin-bottom: 4px;
  }
  .card-prodact .product-card .product-title a {
    font-size: 12px;
  }
  .card-prodact .product-card .product-price {
    padding-top: 6px;
    flex-wrap: wrap;
    gap: 4px;
  }
  .card-prodact .product-card .product-price > .price-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > ins {
    font-size: 11px;
  }
  .card-prodact .product-card .product-price > .price-wrapper > del > span {
    font-size: 8px;
  }
  .card-prodact .product-card .product-price > .discount-wrapper > span {
    font-size: 10px;
    padding: 0 4px;
    border-radius: 10px;
  }
}
@media (max-width: 992px) {
  .shop-archive > aside > .parent .dropdown-wrapper-head {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    padding: 4px 0;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > span {
    font-size: 16px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > figure {
    transition: transform 0.3s ease;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > figure > img {
    width: 20px;
    height: 20px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head.collapsed > figure {
    transform: rotate(180deg);
  }
  .shop-archive > aside > .parent > .sidebar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .shop-archive > aside > .parent > .sidebar-content.open {
    max-height: 2000px;
    opacity: 1;
  }
  .dropdown-wrapper > .dropdown-toggle {
    height: 44px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    padding: 4px 0;
  }
  .dropdown-wrapper > .dropdown-toggle .dropdown-icon {
    width: 14px;
    height: 14px;
  }
  .dropdown-wrapper > .dropdown-toggle .dropdown-icon svg {
    width: 14px;
    height: 14px;
  }
  .dropdown-wrapper > .dropdown-items {
    padding: 8px 0 4px;
  }
  .dropdown-wrapper > .dropdown-items > li > a {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px;
  }
  .dropdown-wrapper > .dropdown-items > li > a .category-count {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .dropdown-wrapper.is-open > .dropdown-toggle {
    border-bottom-color: #ef394e;
  }
  .price-filter {
    padding-top: 20px;
  }
  .price-filter > .price-tooltip {
    width: 120px;
    height: 36px;
    font-size: 13px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .price-filter > .price-tooltip small {
    font-size: 11px;
  }
  .price-filter > .price-tooltip::after {
    width: 10px;
    height: 10px;
    bottom: -5px;
  }
  .price-filter > .price-slider {
    height: 20px;
    margin-bottom: 28px;
  }
  .price-filter .slider-track,
  .price-filter .slider-active {
    height: 3px;
  }
  .price-filter input[type=range]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
  }
  .price-filter input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
  }
  .price-filter > .price-field {
    margin-bottom: 20px;
  }
  .price-filter > .price-field > label {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .price-filter .input-wrapper {
    height: 52px;
    padding: 0 14px;
    border-radius: 12px;
  }
  .price-filter .input-wrapper > span {
    font-size: 13px;
  }
  .price-filter .input-wrapper > input {
    font-size: 14px;
  }
  .price-filter .input-wrapper > input::-moz-placeholder {
    font-size: 13px;
  }
  .price-filter .input-wrapper > input::placeholder {
    font-size: 13px;
  }
  .reset-filter-btn {
    height: 36px;
    font-size: 13px;
    border-radius: 8px;
    margin-top: 4px;
  }
  .product-status-wrapper > .status-item {
    height: 56px;
    padding: 0 2px;
  }
  .product-status-wrapper > .status-item > .status-title {
    font-size: 14px;
  }
  .status-switch {
    width: 48px;
    height: 26px;
  }
  .status-switch > .status-slider::before {
    width: 20px;
    height: 20px;
    top: 3px;
    left: 3px;
  }
  .status-switch > input:checked + .status-slider::before {
    transform: translateX(22px);
  }
  .active-filters {
    padding: 14px 0;
  }
  .active-filters > .active-filters-header {
    margin-bottom: 12px;
  }
  .active-filters > .active-filters-header > .title {
    font-size: 13px;
  }
  .active-filters > .active-filters-header > .clear-filters {
    font-size: 12px;
  }
  .active-filters > .active-filter-list {
    gap: 6px;
  }
  .active-filters > .active-filter-list > .filter-chip {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
  }
  .active-filters > .active-filter-list > .filter-chip > .filter-name {
    font-size: 13px;
  }
  .active-filters > .active-filter-list > .filter-chip > .remove-filter {
    width: 22px;
    height: 22px;
  }
  .active-filters > .active-filter-list > .filter-chip > .remove-filter svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .shop-archive {
    padding: 0 8px;
    gap: 16px;
  }
  .shop-archive > aside > .parent {
    padding: 12px;
    border-radius: 12px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > span {
    font-size: 14px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper-head > figure > img {
    width: 18px;
    height: 18px;
  }
  .shop-archive > .card-prodact {
    padding: 8px;
    border-radius: 12px;
    gap: 8px;
  }
  .shop-archive > .card-prodact .product-card {
    margin-top: 8px;
    padding: 8px;
    border-radius: 8px;
  }
  .shop-archive > .card-prodact .product-card .product-thumbnail {
    margin-bottom: 4px;
  }
  .shop-archive > .card-prodact .product-card .product-thumbnail img {
    max-height: 100px;
  }
  .shop-archive > .card-prodact .product-card .product-title {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .shop-archive > .card-prodact .product-card .product-title a {
    font-size: 11px;
  }
  .shop-archive > .card-prodact .product-card .product-price {
    padding-top: 4px;
    gap: 2px;
  }
  .shop-archive > .card-prodact .product-card .product-price > .price-wrapper {
    gap: 3px;
  }
  .shop-archive > .card-prodact .product-card .product-price > .price-wrapper > ins {
    font-size: 10px;
  }
  .shop-archive > .card-prodact .product-card .product-price > .price-wrapper > del > span {
    font-size: 7px;
  }
  .shop-archive > .card-prodact .product-card .product-price > .discount-wrapper > span {
    font-size: 9px;
    padding: 0 3px;
    border-radius: 8px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper > .dropdown-toggle {
    height: 40px;
    font-size: 13px;
    padding: 2px 0;
  }
  .shop-archive > aside > .parent .dropdown-wrapper > .dropdown-toggle .dropdown-icon {
    width: 12px;
    height: 12px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper > .dropdown-toggle .dropdown-icon svg {
    width: 12px;
    height: 12px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper > .dropdown-items > li > a {
    padding: 5px 8px;
    font-size: 11px;
    border-radius: 6px;
  }
  .shop-archive > aside > .parent .dropdown-wrapper > .dropdown-items > li > a .category-count {
    min-width: 18px;
    height: 18px;
    font-size: 9px;
  }
  .shop-archive > aside > .parent .price-filter {
    padding-top: 16px;
  }
  .shop-archive > aside > .parent .price-filter > .price-tooltip {
    width: 100px;
    height: 32px;
    font-size: 12px;
    margin-bottom: 16px;
    border-radius: 6px;
  }
  .shop-archive > aside > .parent .price-filter > .price-tooltip small {
    font-size: 10px;
  }
  .shop-archive > aside > .parent .price-filter > .price-tooltip::after {
    width: 8px;
    height: 8px;
    bottom: -4px;
  }
  .shop-archive > aside > .parent .price-filter > .price-slider {
    height: 18px;
    margin-bottom: 24px;
  }
  .shop-archive > aside > .parent .price-filter .slider-track,
  .shop-archive > aside > .parent .price-filter .slider-active {
    height: 2px;
  }
  .shop-archive > aside > .parent .price-filter input[type=range]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }
  .shop-archive > aside > .parent .price-filter input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }
  .shop-archive > aside > .parent .price-filter > .price-field {
    margin-bottom: 16px;
  }
  .shop-archive > aside > .parent .price-filter > .price-field > label {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .shop-archive > aside > .parent .price-filter .input-wrapper {
    height: 46px;
    padding: 0 12px;
    border-radius: 10px;
  }
  .shop-archive > aside > .parent .price-filter .input-wrapper > span {
    font-size: 12px;
  }
  .shop-archive > aside > .parent .price-filter .input-wrapper > input {
    font-size: 13px;
  }
  .shop-archive > aside > .parent .price-filter .input-wrapper > input::-moz-placeholder {
    font-size: 12px;
  }
  .shop-archive > aside > .parent .price-filter .input-wrapper > input::placeholder {
    font-size: 12px;
  }
  .shop-archive > aside > .parent .reset-filter-btn {
    height: 32px;
    font-size: 12px;
    border-radius: 6px;
  }
  .shop-archive > aside > .parent .product-status-wrapper > .status-item {
    height: 48px;
  }
  .shop-archive > aside > .parent .product-status-wrapper > .status-item > .status-title {
    font-size: 13px;
  }
  .shop-archive > aside > .parent .status-switch {
    width: 44px;
    height: 24px;
  }
  .shop-archive > aside > .parent .status-switch > .status-slider::before {
    width: 18px;
    height: 18px;
    top: 3px;
    left: 3px;
  }
  .shop-archive > aside > .parent .status-switch > input:checked + .status-slider::before {
    transform: translateX(20px);
  }
  .shop-archive > aside > .parent .active-filters {
    padding: 12px 0;
  }
  .shop-archive > aside > .parent .active-filters > .active-filters-header {
    margin-bottom: 10px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filters-header > .title {
    font-size: 12px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filters-header > .clear-filters {
    font-size: 11px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filter-list {
    gap: 4px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filter-list > .filter-chip {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 6px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filter-list > .filter-chip > .filter-name {
    font-size: 12px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filter-list > .filter-chip > .remove-filter {
    width: 20px;
    height: 20px;
  }
  .shop-archive > aside > .parent .active-filters > .active-filter-list > .filter-chip > .remove-filter svg {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .card-prodact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .card-prodact .product-card {
    width: 100% !important;
    margin-top: 0 !important;
    padding: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
  }
  .card-prodact .product-card .product-thumbnail {
    flex: 0 0 auto;
    margin-bottom: 6px;
  }
  .card-prodact .product-card .product-title {
    flex: 0 0 auto;
    font-size: 11px;
    height: 32px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .card-prodact .product-card .product-price {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 6px;
  }
}
@media (max-width: 768px) {
  .dropdown-wrapper > .dropdown-items > li > a:hover {
    background: transparent;
  }
  .dropdown-wrapper > .dropdown-items > li > a:hover .category-name {
    color: inherit;
  }
  .dropdown-wrapper > .dropdown-items > li > a:hover .category-count {
    background: #f5f5f5;
    color: #777;
  }
  .dropdown-wrapper > .dropdown-items > li > a.active {
    background: rgba(239, 57, 78, 0.08);
  }
  .dropdown-wrapper > .dropdown-items > li > a.active .category-name {
    color: #ef394e;
  }
  .dropdown-wrapper > .dropdown-items > li > a.active .category-count {
    background: #ef394e;
    color: #fff;
  }
  .dropdown-wrapper-head,
  .dropdown-toggle,
  .filter-chip,
  .reset-filter-btn,
  .status-switch {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .shop-archive > aside > .parent .sidebar-content {
    -webkit-overflow-scrolling: touch;
  }
  .shop-archive > aside > .parent .dropdown-wrapper:last-child .dropdown-toggle {
    border-bottom: none;
  }
}
@media print {
  .shop-archive {
    display: block;
    padding: 0;
  }
  .shop-archive > aside {
    display: none;
  }
  .shop-archive > .card-prodact {
    border: 1px solid #ddd;
    box-shadow: none;
    padding: 10px;
  }
  .shop-archive > .card-prodact .product-card {
    box-shadow: none !important;
    border: 1px solid #eee;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    page-break-inside: avoid;
  }
}
@keyframes slideDown {
  0% {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
}
@media (max-width: 992px) {
  .shop-archive > aside > .parent .sidebar-content.open {
    animation: slideDown 0.4s ease forwards;
  }
  .shop-archive > aside > .parent .sidebar-content:not(.open) {
    animation: slideUp 0.3s ease forwards;
  }
}/*# sourceMappingURL=shop.css.map */