#modalProductPrice del {
  color: #fff !important;
  opacity: .7;
}

.favorite-btn {
  font-size: 20px;
  color: #dc3545;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.favorite-btn:hover {
  transform: scale(1.2);
  color: #b51d1d;
}

.products-page-scope {
  margin-top: 4px;
}

.products-page-scope .product-list-grid {
  margin-left: -8px;
  margin-right: -8px;
}

.products-page-scope .product-box {
  padding: 8px;
}

.products-page-scope .product-item-shell {
  position: relative;
}

.products-page-scope .product-list-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 8px rgba(88, 255, 148, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.products-page-scope .product-list-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(88, 255, 148, 0.48);
}

.products-page-scope .product-list-card__thumb-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
}

.products-page-scope .product-list-card__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.products-page-scope .product-list-card__content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  order: 2;
}

.products-page-scope .product-list-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.products-page-scope .product-list-card__price-wrap {
  min-width: 84px;
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
  direction: rtl;
  margin-inline-start: auto;
  order: 3;
}

.products-page-scope .product-list-card__price,
.products-page-scope .product-list-card__currency {
  font-size: 14px;
  font-weight: 500;
}

.products-page-scope .product-list-card.disabled-product {
  filter: grayscale(1);
  opacity: 0.75;
}

.products-page-scope .product-list-card__unavailable {
  color: #d32f2f;
  font-weight: 700;
  font-size: 13px;
}

.products-page-scope .disabled-label {
  position: absolute;
  top: -8px;
  left: 18px;
  background: #8a8a8a;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  z-index: 3;
}

@media (max-width: 767.98px) {
  .products-page-scope .product-box {
    padding: 7px 0;
  }

  .products-page-scope .product-list-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .products-page-scope .product-list-card {
    min-height: 56px;
    padding: 9px 14px;
    gap: 12px;
  }

  .products-page-scope .product-list-card__price-wrap {
    min-width: 70px;
    font-size: 13px;
  }

  .products-page-scope .product-list-card__price,
  .products-page-scope .product-list-card__currency,
  .products-page-scope .product-list-card__title {
    font-size: 13px;
  }

  .products-page-scope .product-list-card__thumb {
    width: 44px;
    height: 44px;
  }
}
