@charset "UTF-8";
/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
.product-card {
  display: inline-block;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.product-card:hover .product-card__title {
  color: #b28642;
}
.product-card__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.product-card__body {
  margin-top: 15px;
}
.product-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #041013;
  transition: all 1s;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  min-height: 45px;
}
.product-card__price {
  color: #0E333C;
}
@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  .product-card__price {
    font-size: 14px;
  }
}
.product-card__price .old-price {
  text-decoration: line-through;
  color: #818181;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 767.98px) {
  .product-card__price .old-price {
    font-size: 12px;
  }
}
.product-card__price.unit-price {
  color: #0E333C;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card__price.unit-price:after {
  content: "تومان";
  font-size: 10px;
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 767.98px) {
  .product-card__price.unit-price {
    font-size: 14px;
  }
}
.product-card__price .unit-price {
  color: #0E333C;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card__price .unit-price:after {
  content: "تومان";
  font-size: 10px;
  font-weight: 400;
  color: #333;
}
@media screen and (max-width: 767.98px) {
  .product-card__price .unit-price {
    font-size: 14px;
  }
}
.product-card__price.unavailable {
  border-radius: 10px;
  color: #f31313;
  font-size: 14px;
  font-weight: 600;
}
.product-card .product-card-off-percent {
  background: #f31313 !important;
  border-radius: 150px;
  box-shadow: 0px 2px 6px #f31313;
  width: 40px;
  height: 25px;
  text-align: center;
  color: #fff;
  padding-top: 4px;
  margin-top: 10px;
}
.product-card .product-card-off-percent:before {
  border-left: 5px solid #f31313;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  float: right;
  content: "";
  margin-right: -3px;
  margin-top: 4px;
}
.product-card .product-card-off-percent .text {
  margin-right: 5px;
}
@media screen and (max-width: 767.98px) {
  .product-card .product-card-off-percent .text {
    display: none;
  }
}

.blog-card {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ECF0F7;
  box-shadow: 0px 2px 15px #F2F6FC;
}
@media screen and (max-width: 767.98px) {
  .blog-card {
    padding: 5px;
  }
}
.blog-card__img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
.blog-card__img:before {
  content: "";
  width: 100%;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  background: linear-gradient(to right, transparent, rgba(14, 51, 60, 0.5607843137));
}
.blog-card__img img {
  width: 100%;
  aspect-ratio: 5/2;
  object-fit: cover;
}
.blog-card__img .blog-info {
  position: absolute;
  display: flex;
  z-index: 999;
  bottom: 10px;
  right: 15px;
  gap: 15px;
}
.blog-card__img .blog-info .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.blog-card__img .blog-info .item:first-child {
  padding-left: 15px;
  border-left: 1px solid #949494;
}
.blog-card__img .blog-info .item .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b28642;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.blog-card__img .blog-info .item .icon-wrapper.comments {
  background-color: #fff;
  color: #0E333C;
}
.blog-card__img .blog-info .item .text {
  color: #fff;
  font-size: 14px;
}
.blog-card__content .title {
  padding: 15px 15px 0 15px;
  font-size: 14px;
  font-weight: 600;
  color: #041013;
  transition: all 1s;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  height: 40px;
}

/*# sourceMappingURL=archives.css.map */
