.wishlistPage { margin-bottom: 40px; }
.wishlistPage__list { display:flex; flex-direction:column; gap:12px; }
.wishlistPage__empty { padding:20px; border:1px dashed #dcdcdc; border-radius:12px; text-align:center; }

.wishlistPage__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.wishlistPage__actions[hidden] { display: none !important; }

.wishlistRow { display:grid; grid-template-columns:80px 1fr auto; gap:12px; align-items:center; padding:14px; border:1px solid #eee; border-radius:12px; background:#fff; }
.wishlistRow__img img { width:80px; height:80px; object-fit:cover; border-radius:10px; background:#f7f7f7; }
.wishlistRow__name { display:block; font-weight:600; color:#111; text-decoration:none; margin-bottom:6px; }
.wishlistRow__price { font-weight:700; color:#242c6e; }
.wishlistRow__remove { width:34px; height:34px; border:1px solid #e0e0e0; border-radius:8px; background:#fafafa; cursor:pointer; position:relative; }
.wishlistRow__remove:before, .wishlistRow__remove:after { content:''; position:absolute; top:50%; left:50%; width:14px; height:2px; background:#888; }
.wishlistRow__remove:before { transform:translate(-50%,-50%) rotate(45deg); }
.wishlistRow__remove:after { transform:translate(-50%,-50%) rotate(-45deg); }

.cbn-mt-new {
    margin-top: 20px;
}
@media (max-width: 767px) {
  .wishlistRow { grid-template-columns:64px 1fr auto; }
  .wishlistRow__img img { width:64px; height:64px; }
}
