/**
 * VIBEHOUSE - Wishlist Styles
 * Version: 1.0.0
 */

/* ═══════════════════════════════
   Header Link (آیکون قلب + شمارنده)
   ═══════════════════════════════ */
.vh-wishlist-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #808088;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vh-wishlist-link:hover {
  color: #F5F5F7;
}

.vh-wishlist-link .vh-wishlist-count {
  position: absolute;
  top: -9px;
  left: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #FF6B6B;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  font-family: 'IRANYekan', 'Tahoma', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.vh-wishlist-link .vh-wishlist-count.empty {
  display: none;
}

/* ═══════════════════════════════
   Single Product Button
   ═══════════════════════════════ */
.vh-single-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  background: transparent;
  border: 1px solid rgba(192, 192, 192, 0.2);
  color: #C0C0C0;
  font-size: 13px;
  font-weight: 500;
  font-family: 'IRANYekan', 'Tahoma', sans-serif;
  border-radius: 50px;
  cursor: pointer;
  line-height: 1.6;
  transition: all 0.4s ease;
  margin: 0 0 10px;
}

.vh-single-wishlist:hover {
  background: rgba(192, 192, 192, 0.06);
  border-color: #C0C0C0;
  color: #F5F5F7;
}

.vh-single-wishlist.wished {
  background: rgba(255, 107, 107, 0.1);
  border-color: #FF6B6B;
  color: #FF6B6B;
}

.vh-single-wishlist.vh-wishlist-busy {
  opacity: 0.6;
  pointer-events: none;
}

/* ═══════════════════════════════
   Wishlist Page
   ═══════════════════════════════ */
.vh-wishlist-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.vh-wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 100px 0 20px;
  border-bottom: 1px solid rgba(192, 192, 192, 0.06);
}

.vh-wishlist-header h1 {
  font-family: 'Space Grotesk', serif;
  font-size: 42px;
  font-weight: 700;
  color: #F5F5F7;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.vh-wishlist-header .vh-wishlist-count-line {
  font-size: 14px;
  color: #6B6B73;
  margin: 0;
}

/* Empty state */
.vh-wishlist-empty {
  text-align: center;
  padding: 100px 20px;
}

.vh-wishlist-empty > i {
  font-size: 52px;
  color: #4A4A52;
  display: block;
  margin-bottom: 18px;
}

.vh-wishlist-empty h2 {
  font-family: 'Space Grotesk', serif;
  font-size: 26px;
  color: #F5F5F7;
  margin-bottom: 10px;
}

.vh-wishlist-empty p {
  color: #6B6B73;
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 30px;
}

.vh-wishlist-empty a {
  display: inline-flex;
  padding: 14px 36px;
  background: #C0C0C0;
  color: #0D0D0F;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.vh-wishlist-empty a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(192, 192, 192, 0.35);
}

/* Button busy state (کارت‌های محصول) */
.vh-product-quick .vh-quick-btn.vh-wishlist-busy {
  opacity: 0.6;
  pointer-events: none;
}

/* ═══════════════════════════════
   Responsive
   ═══════════════════════════════ */
@media (max-width: 768px) {
  .vh-wishlist-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .vh-wishlist-header h1 {
    font-size: 30px;
  }
}
