/* VERO SHOP — 위시리스트 전용 페이지. shop.css(.shop-grid/.shop-card*) 위에 로드.
 * 각 카드를 .wish-card 로 감싸 우상단 제거(×) 버튼을 올린다. */
.wish-card { position: relative; }
.wish-card__link { display: block; color: inherit; text-decoration: none; }
.wish-card__link .shop-card__media img { transition: transform 0.6s var(--ease-out); }
.wish-card__link:hover .shop-card__media img { transform: scale(1.04); }
.wish-card__link:hover .shop-card__name { text-decoration: underline; text-underline-offset: 3px; }

.wish-card__remove {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  width: 30px; height: 30px; display: grid; place-items: center; padding: 0;
  border: 0; border-radius: 50%; cursor: pointer; line-height: 0;
  background: rgba(255, 255, 255, 0.92); color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  transition: background .15s var(--ease), color .15s var(--ease), transform .15s var(--ease);
}
.wish-card__remove:hover { background: var(--wish-pink); color: #fff; transform: scale(1.06); }
.wish-card__remove:disabled { opacity: .5; cursor: default; }
