/* #endregion filter-section */


/* #region product-section */

.product-section {
  width: 100%;
}

@media screen and (max-width : 992px) {
  .loction {
    background-color: #ffffff00 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
}

@media screen and (min-width : 992px) {

  .product-section {
    width: calc(70% - 16px);
  }

}


/* #endregion product-section */



.ordering {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px;
}

.ordering-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  width: 100%;
  height: 40px;
  color: var(--color-neutral-600);
}


.ordering-item.active {
  color: var(--color-primary);
}

.ordering-item.active::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: var(--radius-circle);
}



@media screen and (min-width : 992px) {
  .desktop-noModal {
    position: relative;
    inset: auto;
    width: fit-content;
    height: fit-content;
    z-index: 1;
    opacity: 1;
    pointer-events: all;
  }

  .desktop-noModal .modal-sheet-back {
    display: none;
  }

  .desktop-noModal .modal-sheet-content {
    position: relative;
    opacity: 1;
    animation: none;
    transform: none;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .ordering-item {
    width: auto;
    height: auto;
  }

  .ordering-item.active::after {
    display: none;
  }
}

@media screen and (min-width : 992px) {
  .desktop-filter {
    width: calc(30% - 16px);
    background-color: var(--color-neutral-000);
    box-shadow: var(--shadow-1);
    border-radius: var(--radius-global);
  }
}

/* #region filter-price-input  */


.filter-price-input .field {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--color-neutral-600);
}

.filter-price-input input {
  direction: ltr;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--color-neutral-200);
  color: var(--color-neutral-800);
  -moz-appearance: textfield;
}


.range-slider {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.slider {
  position: absolute;
  background: var(--color-neutral-100);
  border-radius: var(--radius-global);
  height: 6px;
  width: 100%;
}

.slider .progress {
  position: absolute;
  border-radius: var(--radius-global);
  background: var(--color-primary);
  height: 100%;
  right: 0;
  left: 0;
}

.range-input {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6px;
  width: 100%;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 100%;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: grab;
}


.range-input input[type="range"]::-webkit-slider-thumb {
  height: 18px;
  width: 18px;
  border: none;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-1);
  pointer-events: auto;
  -webkit-appearance: none;
}

.range-input input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border: none;
  background: var(--color-primary);
  border-radius: var(--radius-circle);
  box-shadow: var(--shadow-1);
  pointer-events: auto;
  -webkit-appearance: none;
}

/* #endregion filter-price-input  */

/* #region product*/

.product {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 140px;
  padding: 8px;
  background-color: var(--color-neutral-000);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-global);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  margin-bottom: 8px;
}

.product:hover {
  box-shadow: var(--shadow-2);
}

.product-head {
  position: relative;
  width: calc(140px - 16px);
  height: 100%;
  border-radius: var(--radius-global);
  overflow: hidden;
}

.product-head img {
  width: 100% !important;
  height: auto !important;
 
  transition: all 0.5s ease-in-out;
}

.product-like {
  position: absolute;
  top: 8px;
  right: 8px;
}

.product:hover>.product-head img {
  transform: scale(1.1);
}

.product-body {
  display: block;
  position: relative;
  width: calc(100% - 140px);
  height: 100%;
  padding: 8px 0;
  text-align: right;
}

.product-title {
  color: var(--color-neutral-800);
  font-size: 0.8rem;
  line-height: 1.6;
}

.product-price {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: end;
  bottom: 20px;
  left: 0;
  color: var(--color-main2);
}

.product-price p {
  margin: 0;
  padding: 0;
}

.price-now {
  color: var(--color-neutral-700);
  font-size: 0.8rem;
}

.price-now span {
  font-size: 0.7rem;
}

.price-old {
  position: relative;
  color: var(--color-neutral-300);
  font-size: 0.7rem;
}

.price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  width: 100%;
  background-color: var(--color-neutral-400);
  height: 0.5px;
}

.product-body .product-off {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 8px;
  color: var(--color-white);
  background-color: red;
  border-radius: var(--radius-large);
  font-size: 0.7rem;
}


@media screen and (min-width : 375px) {

  .product {
    height: 168px;
    padding: 16px;
  }

  .product-head {
    width: calc(168px - 24px);
  }


  .product-body {
    width: calc(100% - 168px + 8px);
  }

  .product-title {
    font-size: 0.9rem;
  }

  .price-now {
    font-size: 0.9rem;
  }

  .price-now span,
  .price-old {
    font-size: 0.8rem;
  }

  .product-body .product-off {
    font-size: 0.8rem;
  }


}


@media screen and (min-width : 992px) {
  .product {
    display: block;
    width: calc(50% - 8px);
    height: 400px;
    margin-bottom: 4px;
  }

  .product-head {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: var(--radius-global);
    overflow: hidden;
  }


  .product-body {
    position: relative;
    width: 100%;
    height: 45%;
    padding: 24px 8px;
    text-align: right;
  }

}


@media screen and (min-width : 1200px) {
  .product {
    width: calc(32.95% - 8px);
  }
}


/* #endregion product*/