/* ─── WISHLIST ─── */
    .wish-btn {
      position: absolute; top: 10px; right: 10px; z-index: 3;
      background: rgba(255,255,255,0.92); border: none; border-radius: 50%;
      width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem; transition: all 0.2s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    .wish-btn:hover { transform: scale(1.15); }
    .wish-btn.wishlisted { color: #e05353; background: #fff0f0; }
    .wish-btn.wishlisted i::before { content: "\f415"; } /* filled heart */

    .wishlist-empty { text-align: center; padding: 80px 24px; color: var(--ink-muted); }
    .wishlist-empty i { font-size: 3rem; display: block; margin-bottom: 16px; color: var(--border); }

    .wishlist-item {
      display: flex; align-items: center; gap: 16px;
      padding: 16px; background: var(--white); border: 1px solid var(--border);
      border-radius: 3px; margin-bottom: 10px;
      transition: box-shadow 0.2s;
    }
    .wishlist-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .wishlist-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 2px; border: 1px solid var(--border); flex-shrink: 0; }
    .wishlist-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; }
    .wishlist-item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--forest); }
