/* ── WISHLIST ── */
.wishlist-heart{
  position:absolute;
  top:12px;
  right:12px;
  z-index:5;
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,0.92);
  color:var(--red);
  font-size:1.2rem;
  line-height:1;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
}
.wishlist-heart:hover,.wishlist-heart.active{background:var(--red);border-color:var(--red);color:#fff}
html.dark .wishlist-heart,html.aathaar-dark .wishlist-heart{background:rgba(15,15,15,0.88);border-color:rgba(255,255,255,0.16)}
html.dark .wishlist-heart:hover,html.dark .wishlist-heart.active,html.aathaar-dark .wishlist-heart:hover,html.aathaar-dark .wishlist-heart.active{background:var(--red);border-color:var(--red);color:#fff}
.prod-card .wishlist-heart,.aath-card .wishlist-heart{top:12px;right:12px;left:auto}
.wishlist-heart-product{top:18px;right:18px;left:auto}
.wishlist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;align-items:stretch}
.wishlist-item{position:relative;background:var(--card-bg);border:1px solid var(--card-border);overflow:hidden;display:flex;flex-direction:column;min-width:0;min-height:100%}
.wishlist-item>a{display:block;background:var(--surface2);line-height:0}
.wishlist-item img{display:block;width:100%;aspect-ratio:4/3;height:auto;object-fit:cover}
.wishlist-item-body{padding:18px 20px 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.wishlist-item-meta{font-size:0.54rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--red)}
.wishlist-item-title{font-family:var(--serif);font-size:1.12rem;line-height:1.25;color:var(--text)}
.wishlist-actions{display:flex;gap:8px;flex-wrap:wrap;margin-top:auto;padding-top:8px}
.wishlist-actions .btn-order-sm{display:inline-flex;align-items:center;justify-content:center;text-decoration:none}
@media(max-width:640px){
  .wishlist-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .wishlist-item-body{padding:14px 12px 16px}
  .wishlist-heart{top:8px;right:8px;width:40px;height:40px;min-width:40px;min-height:40px;max-width:40px;max-height:40px;aspect-ratio:1/1;border-radius:50%;padding:0;font-size:1rem}
  .wishlist-actions{gap:6px}
  .wishlist-actions .btn-order-sm{padding:7px 10px;font-size:0.5rem}
}

