.products-category-page-main-sec {
  padding: 1vw 0;
  width: 100%;
  min-height: 10vw;
  gap: 1.8vw;
  justify-content: space-between !important;
  align-items: start !important;
  position: relative;
}

.products-category-page-main-container {
  width: 75.5%;
  min-height: 20vw;
  border-radius: 0.9vw;
  position: relative;
  justify-content: start !important;
  gap: 1.5vw;
}

.shop-items-card-container {
  width: 100%;
  min-height: 15vw;
  position: relative;
  justify-content: start !important;
  border-radius: 0.9vw;
  display: grid;
  grid-template-columns: repeat(3, 31.7%);
  column-gap: 1.5vw;
  row-gap: 1.5vw;
}

.product-card {
  padding: 1vw 2vw;
  height: 24.5vw;
  position: relative;
  gap: 0.6vw;
  justify-content: start !important;
  border-radius: 0.85vw;
  border: 0.1vw solid rgba(175, 182, 197, 0.15);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
}

.product-card::before {
  content: "";
  width: 90%;
  height: 0;
  background-color: rgba(163, 171, 165, 0.5);
  border-radius: 0 0 1vw 1vw;
  position: absolute;
  top: 100%;
  transition: all 0.25s ease-in-out;
  /*filter: blur(3px);*/
}

.product-card:hover {
  transform: scale(1.01) !important;
  box-shadow: 0 0 1.25vw rgba(163, 171, 165, 0.5);
}

.product-card:hover::before {
  height: 0.75vw;
}

.product-card .discount-label {
  width: 2.6vw;
  height: 2.6vw;
  position: absolute;
  top: 1.75vw;
  right: 1.5vw;
  z-index: 2;
}

.product-card .discount-label > svg {
  width: 100%;
  fill: var(--green);
}

.product-card .special-offer-label {
  padding: 0;
  width: 5vw;
  height: 1.8vw;
  border-radius: 1vw;
  color: #de3618;
  position: absolute;
  top: 1.75vw;
  left: 1.5vw;
  z-index: 2;
  font-weight: bold;
  font-size: 1vw;
  font-family: Kalameh, sans-serif;
}

.product-card .discount-label span {
  position: absolute;
  font-weight: 500 !important;
  color: var(--light-bg);
  transform: translateY(-0.1vw);
  gap: 0.25vw;
}

.product-card figure {
  padding: 1vw 2vw;
  width: 100%;
  height: 69%;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.product-card figure img {
  width: 100%;
  height: 100%;
}

.product-card .product-card-details {
  padding-top: 1vw;
  width: 100%;
  height: 30%;
  position: relative;
  gap: 0.7vw;
}

.product-card .product-card-details ul.product-colors-pallet {
  position: absolute;
  width: 110%;
  top: -1vw;
  justify-content: start !important;
  direction: ltr !important;
}

.product-card .product-card-details ul.product-colors-pallet li {
  width: 0.85vw;
  height: 0.85vw;
  border-radius: 50%;
  box-shadow: 0 0 0.15vw rgba(0, 0, 0, 0.3);
  color: #142614;
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(2) {
  transform: translateX(-0.2vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(3) {
  transform: translateX(-0.4vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(4) {
  transform: translateX(-0.6vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(5) {
  transform: translateX(-0.8vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(6) {
  transform: translateX(-1vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(7) {
  transform: translateX(-1.2vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(8) {
  transform: translateX(-1.4vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(9) {
  transform: translateX(-1.6vw);
}

.product-card .product-card-details ul.product-colors-pallet li:nth-child(10) {
  transform: translateX(-1.8vw);
}

.product-card .product-card-details h2 {
  width: 100%;
  font-size: 0.95vw;
  font-weight: 600;
  text-align: start;
  height: 2.55vw;
  justify-content: start !important;
}

.product-card-last-div {
  width: 100%;
  position: relative;
  justify-content: space-between !important;
}

.product-card-last-div .score {
  width: 3vw;
  gap: 0.3vw;
  font-size: 0.9vw;
  font-weight: 500;
}

.product-card-last-div .score span {
  margin-top: 0.2vw;
}

.product-card-last-div .score svg {
  width: 1.25vw;
}

.product-card .product-card-details h3 {
  gap: 0.25vw;
  transform: translateX(-0.8vw);
}

.product-card .product-card-details h3 span.price {
  color: var(--green);
  font-size: 1.25vw;
  font-weight: 600;
}

.product-card .product-card-details h3 span.toman svg {
  fill: var(--green);
}

.product-card .product-card-details h3 s {
  font-size: 0.8vw;
  font-weight: 300;
  margin-left: 0.5vw;
  opacity: 0.75;
}

@media (max-width: 450px) {
  .products-category-page-main-sec {
    margin-top: 0vw;
    gap: 1.8vw;
  }
  .products-category-page-main-container {
    width: 100%;
  }
  .shop-items-card-container {
    width: 100%;
    min-height: 15vw;
    position: relative;
    justify-content: space-between !important;
    border-radius: 2vw;
    display: grid !important;
    grid-template-columns: repeat(2, 47.7%) !important;
    column-gap: 3.5vw;
    row-gap: 3.5vw;
  }
  .product-card {
    padding: 1vw 2vw;
    height: 56.5vw;
    position: relative;
    gap: 1.6vw;
    justify-content: start !important;
    border-radius: 2vw;
    border: 0.1vw solid rgba(175, 182, 197, 0.15);
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.2);
  }
  .product-card .product-card-details {
    padding-top: 1vw;
    width: 100%;
    height: 30%;
    position: relative;
    gap: 2.5vw;
  }
  .product-card .discount-label {
    width: 8vw;
    height: 8vw;
    position: absolute;
    top: 1.75vw;
    right: 1.5vw;
    z-index: 2;
  }
  .product-card .discount-label span {
    font-size: 2.8vw;
  }
  .product-card .product-card-details h2 {
    width: 100%;
    font-size: 2.7vw;
    font-weight: 600;
    text-align: start;
    height: 2.55vw;
    justify-content: start !important;
    margin-bottom: 2vw;
  }
  .product-card .product-card-details ul.product-colors-pallet li {
    width: 1.85vw;
    height: 1.85vw;
  }
  .product-card .product-card-details ul.product-colors-pallet {
    position: absolute;
    width: 110%;
    top: -5vw;
    justify-content: start !important;
    direction: ltr !important;
    margin-left: 2vw;
  }
  .product-card-last-div .score {
    width: 10vw;
    gap: 0.3vw;
    font-size: 2.5vw;
    font-weight: 500;
  }
  .product-card-last-div .score svg {
    width: 2.5vw;
  }
  .product-card .product-card-details h3 span.price {
    color: var(--green);
    font-size: 3.45vw;
    font-weight: 600;
  }
  .product-card .product-card-details h3 s {
    font-size: 2.7vw;
    font-weight: 300;
    margin-left: 0.5vw;
    opacity: 0.75;
  }
}
