/**
 * جای دکمه‌ی سبد در هدر، دکمه‌ی اشتراک (کدنیم: dl-header-subs)
 *
 * سبد فقط مخفی می‌شود، نه حذف — پس اگر روزی لازم شد، برگرداندنش یک خط کار
 * است. لینک تازه کلاس `dlh-icon` خودِ هدر را دارد، پس اندازه و قابش دقیقاً
 * مثل بقیه‌ی آیکن‌ها است و این‌جا فقط رنگ و حالت هاور تنظیم می‌شود.
 */

.td-basket-wrapper.dl-subs-swapped {
  display: none !important;
}

.dl-subs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: color 0.18s ease, transform 0.18s ease;
}

.dl-subs-icon__svg {
  width: 20px;
  height: 20px;
  display: block;
}

.dl-subs-icon:hover,
.dl-subs-icon:focus-visible {
  color: #a58bff;
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .dl-subs-icon {
    transition: none;
  }

  .dl-subs-icon:hover {
    transform: none;
  }
}
