/* =========================
   WISHLIST PAGE
========================= */

.page-wishlist .wishlist-panel {
  background: linear-gradient(
    180deg,
    rgba(18,18,18,0.96),
    rgba(10,10,10,0.98),
    rgba(6,6,6,0.99)
  );

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.02);
}

/* LIST */
.page-wishlist .wishlist-list {
  display: flex;
  flex-direction: column;
}

/* CATEGORY */
.page-wishlist .wishlist-category {
  margin-top: 25px;
  margin-bottom: 10px;

  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  opacity: 0.5;
}

/* ITEM */
.page-wishlist .wishlist-item {
  padding: 14px 0;

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-wishlist .wishlist-item:last-child {
  border-bottom: none;
}

/* MAIN ROW */
.page-wishlist .wishlist-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAME */
.page-wishlist .wishlist-name {
  font-size: 0.95rem;
}

/* DESCRIPTION */
.page-wishlist .wishlist-desc {
  margin: 6px 0 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* LINK */
.page-wishlist .wishlist-link {
  text-decoration: none;
  font-size: 0.75rem;

  color: rgba(243,211,124,0.9);

  border: 1px solid rgba(243,211,124,0.3);
  padding: 3px 8px;
  border-radius: 6px;

  transition: all 0.2s ease;
}

.page-wishlist .wishlist-link:hover {
  background: rgba(243,211,124,0.1);
  border-color: rgba(243,211,124,0.6);
}

/* =========================
   PRIORITY SYSTEM
========================= */

/* HIGH */
.page-wishlist .priority-high {
  border-left: 3px solid rgba(243,211,124,0.9);
  padding-left: 10px;
}

/* MEDIUM */
.page-wishlist .priority-medium {
  border-left: 3px solid rgba(243,211,124,0.5);
  padding-left: 10px;
}

/* LOW */
.page-wishlist .priority-low {
  border-left: 3px solid rgba(255,255,255,0.15);
  padding-left: 10px;
}

/* spacing between items */
.page-wishlist .wishlist-item + .wishlist-item {
  margin-top: 15px;
}

/* stronger separation after category */
.page-wishlist .wishlist-category + .wishlist-item {
  margin-top: 8px;
}

/* spacing before next category */
.page-wishlist .wishlist-item + .wishlist-category {
  margin-top: 18px;
}

/* smooth transition */
.page-wishlist .wishlist-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* hover effect */
.page-wishlist .wishlist-item:hover {
  transform: translateY(-3px);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.35),
    0 0 6px rgba(243,211,124,0.08); /* subtle gold glow */
}