/* B360x Smart Wishlist — Standalone frontend (not used when giftb360x active) */

/* ── Heart button ── */
.bsw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 0;
    transition: border-color .15s, background .15s;
}
.bsw-btn svg { transition: stroke .18s, fill .18s; }
.bsw-btn.in-wishlist svg,
.bsw-btn.added svg { stroke: #e63329; fill: #e63329; }
@media (hover: hover) {
    .bsw-btn:hover svg { stroke: #e63329; fill: #e63329; }
}

/* ── Wishlist page ── */
.bsw-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.bsw-list__item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}
.bsw-list__img-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.bsw-list__no-img {
    aspect-ratio: 3/4;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #d1d5db;
}
.bsw-list__info { padding: 14px; }
.bsw-list__name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    margin-bottom: 6px;
}
.bsw-list__price { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.bsw-list__actions { display: flex; gap: 8px; align-items: center; }
.bsw-atc-btn { flex: 1; text-align: center; font-size: 13px !important; }
.bsw-oos { font-size: 12px; color: #9ca3af; }
.bsw-remove {
    background: none;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s, color .15s;
}
.bsw-remove:hover { border-color: #e63329; color: #e63329; }

.bsw-empty { text-align: center; padding: 80px 20px; }
.bsw-continue { margin-top: 16px; }
.bsw-continue a { color: #6b7280; font-size: 14px; text-decoration: none; }
