/**
 * Seeed Wishlist - Styles
 */

/* ── Wishlist Button on Product Cards ───────────────────────── */
.seeed-wl-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    padding: 0;
}

.seeed-wl-btn:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.seeed-wl-btn svg {
    width: 18px;
    height: 18px;
    stroke: #9ca3af;
    fill: none;
    transition: stroke .2s, fill .2s;
}

.seeed-wl-btn.is-active svg {
    stroke: #ef4444;
    fill: #ef4444;
}

.seeed-wl-btn.is-loading {
    pointer-events: none;
    opacity: .6;
}

/* ── Header Wishlist Badge ──────────────────────────────────── */
.header-icon__badge {
    position: absolute;
    top: -4px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
    pointer-events: none;
}

/* ── Wishlist Page ──────────────────────────────────────────── */
.seeed-wishlist-page {
    min-height: 300px;
    padding: 32px 0;
}

.seeed-wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.seeed-wishlist-empty p {
    font-size: 18px;
    margin-bottom: 20px;
}

.seeed-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.seeed-wishlist-item {
    position: relative;
    transition: opacity .3s;
}

.seeed-wishlist-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 5;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(239,68,68,.9);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    padding: 0;
}

.seeed-wishlist-remove:hover {
    background: #dc2626;
    transform: scale(1.15);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .seeed-wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .seeed-wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .seeed-wishlist-grid {
        grid-template-columns: 1fr;
    }
}
