.product-card-actions--commerce{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 46px;
    gap:10px;
    align-items:center;
    margin-top:14px;
}

.product-card-actions--commerce .product-add-cart-btn{
    min-height:40px;
    border:0;
    border-radius:12px;
    background:#111827;
    color:#fff;
    font-weight:900;
    cursor:pointer;
}

.product-wishlist-btn{
    width:46px;
    min-width:46px;
    height:40px;
    min-height:40px;
    border:1px solid #dbe4ee;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#64748b;
    cursor:pointer;
    transition:transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.product-wishlist-btn svg{
    width:19px;
    height:19px;
    fill:currentColor;
}

.product-wishlist-btn span{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    border:0;
}

.product-wishlist-btn:hover,
.product-wishlist-btn.is-active{
    color:#e11d48;
    border-color:#fecdd3;
    background:#fff1f2;
    box-shadow:0 10px 24px rgba(225,29,72,.13);
}

.product-wishlist-btn:active{
    transform:scale(.96);
}

.product-wishlist-btn.is-loading{
    opacity:.65;
    pointer-events:none;
}

.wishlist-hero-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:30px;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
    margin-bottom:22px;
}

.wishlist-hero-card h1{
    margin:8px 0 8px;
    font-size:clamp(32px,5vw,48px);
    line-height:1;
    letter-spacing:-.05em;
}

.wishlist-hero-card p{
    margin:0;
    color:#64748b;
    font-weight:650;
}

.wishlist-empty-state{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:44px 24px;
    text-align:center;
    box-shadow:0 18px 45px rgba(15,23,42,.06);
}

.wishlist-empty-icon{
    width:70px;
    height:70px;
    margin:0 auto 16px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#fff1f2;
    color:#e11d48;
    font-size:38px;
    line-height:1;
}

.wishlist-empty-state h2{
    margin:0 0 8px;
    font-size:30px;
    letter-spacing:-.04em;
}

.wishlist-empty-state p{
    margin:0 auto 22px;
    max-width:520px;
    color:#64748b;
}

.header-account-menu a[href="/wishlist"]{
    color:#0f766e;
}

@media(max-width:640px){
    .product-card-actions--commerce{
        grid-template-columns:minmax(0, 1fr) 44px;
        gap:8px;
    }

    .product-wishlist-btn{
        width:44px;
        min-width:44px;
    }

    .wishlist-hero-card,
    .wishlist-empty-state{
        border-radius:22px;
        padding:24px 18px;
    }
}

/* Phase 13 Group 30: wishlist self-service and move-to-cart UX */
.cx-wishlist-hero{position:relative;overflow:hidden}.wishlist-self-service-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}.wishlist-self-service-strip span{display:flex;align-items:center;justify-content:center;min-height:42px;padding:10px 12px;border-radius:14px;background:#f8fafc;border:1px solid #e2e8f0;color:#334155;font-size:12px;font-weight:900;text-align:center}.wishlist-product-grid .product-add-cart-btn[data-wishlist-move="1"]{background:#0f766e}.wishlist-product-grid .srp-product-card{position:relative}.wishlist-product-grid .srp-product-card::before{content:'Saved';position:absolute;top:12px;left:12px;z-index:2;padding:6px 9px;border-radius:999px;background:#fff1f2;color:#be123c;font-size:11px;font-weight:950;box-shadow:0 8px 20px rgba(15,23,42,.08)}
@media(max-width:760px){.wishlist-self-service-strip{grid-template-columns:1fr}.wishlist-self-service-strip span{justify-content:flex-start;text-align:left}.wishlist-product-grid .srp-product-card::before{top:10px;left:10px}}
