.product__item {
  background-color: #fff;
  border-radius: 18px;
  border: 1px solid var(--color-neutral-100);
  position: relative;
  height: 100%;
  transition: 0.3s;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
.product__item:hover {
  border-color: var(--color-neutral-300);
}

.shop__row .product__item {
  flex-direction: row;
  gap: 10px;
  padding: 10px;
  @media (width>=768px) {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}

.product__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.shop__row .product__image {
  width: 100px;
  flex: none;
  @media (width>=360px) {
    width: 120px;
  }
  @media (width>=768px) {
    width: auto;
  }
}

.product__image img {
  width: 100%;
  object-fit: contain;
  transition: 0.25s all linear;
}

.product-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 14px 14px;
}

.shop__row .product-item__body {
  padding: 10px 0 5px 10px;
  @media (width>=768px) {
    padding: 0 14px 14px;
  }
}

.product__title {
  overflow: hidden;
  color: var(--color4);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: var(--mid_font);
  font-variation-settings: var(--w-500);
}

.shop__row .product__title {
  text-align: unset;
  margin-top: 0;
  margin-bottom: 14px;
  @media (width>=768px) {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.product__title a {
  color: var(--color4);
  line-height: 1.8;
  display: block;
  font-size: 14px;
  @media (width>=768px) {
    font-size: 15px;
  }
  @media (width<425px) {
    line-height: 28px;
  }
}

.product__title a:hover {
  color: var(--color3) !important;
}

/* .product__item:hover .wp-post-image {
  transform: scale(1.05);
} */

.product__footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.shop__row .product__footer {
  justify-content: end;
  @media (width>=768px) {
    justify-content: center;
  }
}

.product__item .price {
  display: grid;
}

.product__item.sale .price {
  column-gap: 12px;
  grid-template-columns: min-content min-content;
  row-gap: 4px;
  grid-template-areas: "a c" "b c";
}

.shop__row .product__item.sale .price {
  grid-template-areas:
    "c a"
    "c b";
  column-gap: 10px;
  row-gap: 0;
  @media (width>=768px) {
    column-gap: 12px;
    row-gap: 4px;
    grid-template-areas: "a c" "b c";
  }
}

.product__item.product-type-variable .product__footer {
  justify-content: center !important;
}

.product__item .price.loop__variation__price {
  margin-top: 1rem;
}

.product__item .price.loop__variation__price b {
  font-size: 13px;
  position: absolute;
  top: -2rem;
  right: 50%;
  transform: translateX(50%);
}

.product__item:hover .product__more {
  border: 1px solid var(--color1);
  background-color: var(--color1);
}

.product__item:hover .product__more i {
  color: white !important;
}

.product__more {
  transition: 0.2s all linear;
  border-radius: 50%;
  border: 1px solid var(--color3);
  background-color: var(--color3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-left: 1.9rem;
  position: relative;
  transform: translateY(0.6rem);
  @media (width>=576px) {
    width: 44px;
    height: 44px;
    margin-left: 2.5rem;
    transform: translateY(0.625rem);
  }
  @media (width<425px) {
    font-size: 12px;
    background-color: white;
    border: 1px solid #f2f2f2;
    border-radius: 50%;
  }
  @media (width<992px) {
    background-color: var(--color3);
    border: 1px solid var(--color3);
    border-radius: 50%;
  }
}

.product__more .icon-sabad {
  font-size: 20px;
  color: white !important;
  @media (width<425px) {
    color: black !important;
  }
  @media (width<992px) {
    color: #fff !important;
  }
}

.product__more:hover .icon-sabad {
  color: white !important;
}

.product__love:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.product__love {
  display: inline-flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #fff;
  margin-left: auto;
  color: #e1e1e1;
  @media (width>=425px) {
    width: 32px;
    height: 32px;
    font-size: 17px;
    border-radius: 12px;
  }
}

.product__item .price bdi {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 17px;
  @media (width>=768px) {
    font-size: 19px;
  }
}

/* .shop__row .product__item .price bdi {
  @media (width<768px) {
    font-size: 14px;
  }
} */

.product__item .price del bdi .woocommerce-Price-currencySymbol {
  display: none;
}

.product__item .price del bdi {
  font-size: 14px;
  /* @media (width>=768px) {
    font-size: 14px;
  } */
}

.product__item .price > .woocommerce-Price-amount,
.product__item .price ins {
  color: #333333;
  font-family: var(--bold_font);
  font-variation-settings: var(--w-600);
  font-size: 17px;
  line-height: 26px;
  grid-area: b;
  /* @media (width>=340px) {
    font-size: 16px;
  } */
  @media (width>=992px) {
    font-size: 18px;
  }
}

.product__item .price del {
  color: #999999;
  font-size: 12px;
  line-height: 18px;
  font-family: var(--mid_font) !important;
  font-variation-settings: var(--w-500);
  grid-area: a;
  justify-self: end;
  @media (width<992px) {
    text-decoration-color: #99999952 !important;
  }
  @media (width>=992px) {
    font-size: 13px;
  }
}

.card-blog {
  transition: 0.3s all linear;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.card-blog::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(23 23 23 / 98%) 100%
  );
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 36px;
  transition: 0.2s all linear;
  pointer-events: none;
}

.swiper-blog .swiper-slide-active .card-blog .blog__dec {
  opacity: 1;
}

.card-blog__image {
  border-radius: 36px;
  z-index: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 500ms;
  width: 100%;
  display: block;
}

.archive .card-blog__image,
.page-template-template-blog .card-blog__image {
  border-radius: 36px;
  z-index: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 500ms;
  width: 100%;
  height: 100%;
  display: flex;
}

.archive-card {
  object-fit: fill;
  border-radius: 36px;
  width: 100%;
}

.blog-titr-div {
  position: absolute;
  bottom: 20px;
  z-index: 9;
  transition: 0.3s all ease;
}

.blog-titr-div h3,
.blog-titr-div p {
  color: white;
}

.card-blog__image .blog-pic-card {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.card-blog__title {
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #ffff;

  position: relative;
  padding-inline: 21px;
  @media (width<992px) {
    font-size: 14px;
  }
}

.card-blog__title:before {
  content: "";
  display: block;
  background-color: #ffffff;
  width: 27px;
  height: 5px;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 20%;
  right: -0.65rem;
  transform: rotate(90deg) translate(4%, -20%);
}

.card-blog__title h4 {
  display: block;
  font-size: 16px;
  font-family: var(--main_font);
  color: #ffffff;
  font-weight: 600;
}

.card-blog__title a {
  @media (width<992px) {
    font-size: 14px !important;
  }
}

.blog__dec {
  padding-inline: 21px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s all linear;
  font-size: 14px;
  line-height: 28px;
  color: white;
}

.card-blog:hover .blog__dec {
  opacity: 0;
}

.card-blog__more {
  @media (width<992px) {
    width: 104px;
    font-size: 13px;
  }
}

.swiper-discount .swiper-slide:hover .product__more {
  background-color: var(--color1);
  border: 1px solid var(--color1);
}

.sale-countdown-progress {
  position: relative;
  background-color: var(--color3);
  border-radius: 10px;
  transition: 0.25s all linear;
  padding-inline: 1rem;
  display: flex;
  height: 45px;
  justify-content: center;
  margin-top: 10px;
}

.sale-countdown-progress:before {
  background-image: url("../img/back-counter.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.sale-countdown {
  font-size: 16px;
  color: #fff;
  line-height: 24px;
  text-align: center;
  direction: ltr;
  display: flex;
  align-items: center;
  @media (width>=992px) {
    font-size: 20px;
  }
  @media (width>=992px) and (width<1200px) {
    padding-top: 1rem;
  }
}

.product-item__meta {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  position: absolute;
  top: clamp(12px, 2vw, 16px);
  right: 10px;
  left: auto;
  z-index: 9;
  @media (width>=768px) {
    left: clamp(12px, 2vw, 16px);
    right: auto;
  }
}

.product-item__meta .product-new-badge {
  height: 30px;
  width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  gap: 6px;
  padding: 0px;
  position: relative;
  z-index: 9;
  background-color: var(--color1);
  border-radius: 50%;
  border: 3px solid white;
  outline: 2px solid #e76f51;
  font-family: var(--main_font);
  font-variation-settings: var(--w-500);
  @media (width>=768px) {
    height: 42px;
    width: 42px;
    font-size: 12px;
    padding: 5px;
  }
}

.product-best-badge {
  background-color: var(--color1);
}

.product-best-badge,
.product-new-badge {
  color: #fff;
}

.product-item__date i {
  font-size: 13px;
  transform: translateY(-1px);
}

.product-item__date {
  background-color: #fee8d2;
  color: var(--color1);
}

.product__footer .wishlist-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  background: #fff;
  margin-left: auto;
  color: #e1e1e1;
  @media (width>=425px) {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-size: 17px;
  }
}

.product-item__meta span {
  @media (width<992px) {
    font-size: 10px;
  }
}

.swiper-blog .archive-card,
.swiper-blog .card-blog__image {
  object-fit: cover;
  aspect-ratio: 1/1;
}

.swiper-blog p.blog__dec {
  min-height: 5rem;
}

.soon-title {
  font-size: 14px;
  color: var(--color2);
  text-align: center;
  line-height: 28px;
  margin-top: auto;
  @media (width>=576px) {
    font-size: 18px;
  }
}

.page-id-186.page-template-template-blog .blog__dec,
.archive .blog__dec {
  opacity: 1 !important;
}

.page-id-186.page-template-template-blog .card-blog:hover .blog-titr-div,
.archive .card-blog:hover .blog-titr-div {
  bottom: -2rem !important;
  opacity: 0;
}

.page-id-186.page-template-template-blog .card-blog:hover .blog__dec,
.archive .card-blog:hover .blog__dec {
  opacity: 0 !important;
}

.page-id-186.page-template-template-blog .card-blog:hover::before,
.archive .card-blog:hover::before {
  backdrop-filter: blur(10px);
}

.page-id-186.page-template-template-blog .card-blog:after,
.archive .card-blog:after {
  content: "";
  display: block;
  z-index: 9;
  margin: auto;
  background-image: url(../img/blog-logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s all linear;
  pointer-events: none;
}

.page-id-186.page-template-template-blog .card-blog:hover::after,
.archive .card-blog:hover::after {
  opacity: 1;
}

.page-id-186.page-template-template-blog .card-blog__title:before,
.archive .card-blog__title:before {
  width: 16px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  right: -0.35rem;
  top: 0.6rem;
}

.list__wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  @media (width>=992px) {
    gap: 16px;
  }
}

.list__item {
  display: flex;
  gap: 12px;
  align-items: center;
  @media (width>=992px) {
    gap: 16px;
  }
}

.list__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.list__img {
  flex: 0 0 80px;
  width: 80px;
  max-width: 80px;
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
  @media (width>=992px) {
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
  }
}

.list__content {
  min-width: 0;
  flex: 1;
}

.list__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  margin-bottom: 4px;
  @media (width>=992px) {
    font-size: 16px;
    line-height: 1.5;
  }
  @media (width<768px) {
    margin-bottom: 12px !important;
  }
}

.list__item:hover .list__title a {
  color: var(--color1) !important;
}

.list__title a {
  color: #252525;
  display: block;
  font-size: inherit;
  line-height: 1.5;
}

.list__title a:before {
  display: none;
}

.list__excerpt {
  font-size: 12px;
  line-height: 1.7;
  color: #666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 8px;
  @media (width>=992px) {
    font-size: 13px;
    line-height: 1.8;
  }
}

.list__date {
  position: absolute;
  z-index: 1;
}

.list__img:before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
  transition: 0.2s all linear;
  backdrop-filter: blur(0px);
}

.list__item:hover .list__img::before {
  backdrop-filter: blur(11px);
}

.list__img:after {
  content: "";
  display: block;
  z-index: 9;
  margin: auto;
  background-image: url(../img/blog-logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.3s all linear;
  @media (width<425px) {
    background-size: cover;
    height: 62px;
    width: 62px;
  }
}

.list__item:hover .list__img::after {
  opacity: 1;
}

.product__footer b {
  color: var(--color1);
}

.outofstock .product__footer {
  align-items: baseline;
}

.price ins bdi {
  color: var(--color4);
  font-size: 16px;
  font-variation-settings: "wght" 700;
}

.type-product .summary .price ins:before {
  @media (width<425px) {
    font-size: 16px;
  }
}

.price {
  position: relative !important;
  font-family: var(--main_font) !important;
  font-variation-settings: var(--w-500);
}

.price b,
.price strong {
  font-family: var(--main_font) !important;
  font-variation-settings: var(--w-500);
}

.price strong {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  display: block;
}

.price del bdi {
  color: var(--color-neutral-400);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  text-decoration: line-through;
}

.swiper-product .swiper-slide,
.swiper-blog .swiper-slide {
  width: 220px;
  padding: 0 5px;
  height: auto;
  @media (width>=768px) {
    width: 256.8px;
    padding: 0 7.5px;
  }
  @media (width>=1200px) {
    width: 25%;
  }
  @media (width>=1400px) {
    width: 20%;
  }
}

.swiper-button-lock,
.swiper-pagination-lock {
  display: none !important;
}

.psr {
  position: relative;
}

.loop__variation__price b {
  font-size: 11px;
  @media (width>=1200px) {
    font-size: 12px;
  }
}

.price.loop__variation__price {
  gap: 8px;
  flex-direction: row;
}

.loop__variation__price {
  @media (width<1200px) {
    flex-direction: column !important;
  }
}

.woocommerce-Price-currencySymbol {
  font-size: 10px;
  font-family: var(--main_font);
  font-variation-settings: var(--w-500);
  margin-right: 1px;
  @media (width>=768px) {
    font-size: 12px;
  }
}

.btn-sale {
  text-align: center;
  margin-top: 30px;
}

.on-sale {
  color: var(--color1);
  font-size: 18px;
  margin: 0;
  grid-area: c;
  align-self: center;
}

.caticon:hover {
  color: var(--color1);
}

.caticon.active {
  transform: rotateX(180deg);
}

.caticon {
  font-size: 11px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 500ms;
}

.read-wrapper .caticon {
  font-size: 10px;
  width: 24px;
  height: 24px;
  background-color: #ffffff66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 500ms;
}

.swiper-blog a:hover {
  color: white;
}

.sale-progress-bar {
  height: 3px;
  width: 55%;
  max-width: 150px;
  background-color: #eeeeee;
  overflow: hidden;
  border-radius: 12px;
  text-align: left;
  text-align: -webkit-left;
  @media (width>=351px) and (width<400px) {
    width: 135px !important;
  }
  @media (width<351px) {
    width: 85px !important;
  }
}

.sale-progress {
  border-radius: 12px;
  height: 100%;
  width: 0;
  background-color: #233127;
  box-shadow: 1px 0px 4px 0px #ffc54a;
  transition: width 1s ease-in-out;
}

.swiper-pagination-bullet {
  background: var(--color3);
  height: 18px;
  width: 5px;
  border-radius: 61px;
}

.swiper-pagination-bullet-active {
  background-color: #e76f51;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.product-weight-wrapper .item-product:first-child {
  margin-top: 16px;
  @media (width>=992px) {
    margin-top: 10px;
  }
  @media (width>=1200px) {
    margin-top: 20px;
  }
}

.product-weight-wrapper .item-product {
  border-radius: 12px;
  border: 1px solid #f1f1f1;
  background-color: #fff;
  padding: 10px;
  margin-top: 10px;
  width: 100%;
  @media (width>=992px) and (width<1200px) {
    padding: 4px;
  }
}

.product-weight-wrapper .item-product .item-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-weight-wrapper .item-product .product-thumbnail {
  display: flex;
  flex: 0 0 68px;
  max-width: 68px;
  border-radius: 12px;
  background-color: #f7f7f7;
  padding: 8px;
  align-items: center;
  justify-content: center;
  @media (width>=992px) and (width<1400px) {
    flex: 0 0 60px;
    max-width: 60px;
    border-radius: 8px;
  }
}

.product-weight-wrapper .item-product .product-thumbnail img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.product-weight-wrapper .item-product .product-title {
  display: inline-block;
  flex: 1 0 0;
  font-size: 13px;
}

.product-weight-wrapper .item-product .product-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  margin-top: 8px;
}

.product-weight-wrapper .item-product .product-price {
  position: relative;
}

.product-weight-wrapper .item-product .product-price .sale-percent {
  padding: 2px 5px;
  margin: 5px;
  background: #e54444;
  color: #fff;
}

.product-weight-wrapper .item-product .product-price .price {
  display: block;
}

.mob-badge {
  position: fixed;
  bottom: 85px;
  right: 11px;
  background-color: #2a9d8f;
  border-radius: 50%;
  border: 1.5px solid white;
  outline: 1.5px solid #2a9d8f;
  height: 42px;
  width: 42px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  font-size: 20px;
  transition: 0.25s all linear;
  animation: bounce 5s infinite;
}

.mob-badge:hover {
  background-color: white;
  color: #2a9d8f;
  border: 1.5px solid #2a9d8f;
  outline: 1.5px solid white;
}
