/* ============================================================
   DASHBOARD WISHLIST PANEL (PHASE 11A-4)
   File: /assets/css/dashboard/wishlist-panel.css

   PURPOSE
   ============================================================
   Dashboard wishlist panel card styling.
   Displays active wishlist count, breakdown, and totals
   in the dashboard overview.

   CRITICAL DISTINCTION
   ============================================================
   This file contains ONLY dashboard panel internals:
   - .gf-wishlist-active (count display)
   - .gf-wishlist-count, .gf-wishlist-count-label
   - .gf-wishlist-breakdown (rows container)
   - .gf-wishlist-row* (row items and icons)
   - .gf-wishlist-total-* (total value display)

   NOT included (remain in active CSS for public use):
   - .gf-wishlist-summary (used by public wishlist)
   - .gf-dashboard-page .gf-wishlist-grid (public-dependent)
   - Base .gf-wishlist-* selectors (public wishlist styling)

   MIGRATION NOTE
   ============================================================
   Extracted from dashboard/panels.css (lines 561-656)
   as part of dashboard CSS cleanup Phase 11A-4.
============================================================ */


/* ============================================================
   WISHLIST PANEL
============================================================ */

.gf-wishlist-active {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 14px;
}

.gf-wishlist-count {
  font-size: 30px;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
}

.gf-wishlist-count-label {
  font-size: 14px;
  color: #6b6f85;
  font-weight: 500;
}

.gf-wishlist-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.gf-wishlist-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}

.gf-wishlist-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
}

.gf-wishlist-row-icon--auto {
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}

.gf-wishlist-row-icon--custom {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.gf-wishlist-row-icon--goal {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.gf-wishlist-row-label {
  flex: 1;
  color: #4f5266;
  font-weight: 500;
}

.gf-wishlist-row-value {
  font-weight: 700;
  color: #2f2f3a;
}

.gf-wishlist-total-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(124, 77, 255, 0.06);
  border: 1px solid rgba(124, 77, 255, 0.14);
  margin-bottom: 6px;
}

.gf-wishlist-total-label {
  font-size: 12.5px;
  color: #6b6f85;
  font-weight: 500;
}

.gf-wishlist-total-amount {
  font-size: 16px;
  font-weight: 800;
  color: #7c3aed;
}
