.wl-overlay{position:fixed;inset:0;background:rgba(0,0,0,0);z-index:10001;pointer-events:none;transition:background .35s}
.wl-overlay.is-open{background:rgba(0,0,0,.4);pointer-events:auto;backdrop-filter:blur(2px)}
.wl-drawer{position:fixed;top:0;right:0;width:min(400px,92vw);height:100dvh;background:#fff;z-index:10002;display:flex;flex-direction:column;box-shadow:-8px 0 40px rgba(0,0,0,.12);transform:translateX(100%);transition:transform .4s cubic-bezier(.22,1,.36,1)}
.wl-drawer.is-open{transform:translateX(0)}
.wl-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid #f0eeeb}
.wl-title{font-family:'Space Grotesk',system-ui,sans-serif;font-size:1.15rem;font-weight:700}
.wl-count{font-weight:400;color:#888;font-size:.9rem}
.wl-close{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:none;background:#f5f3f0;border-radius:50%;font-size:1.3rem;cursor:pointer;color:#333;transition:background .2s}
.wl-close:hover{background:#ebe8e4}
.wl-items{flex:1;overflow-y:auto;padding:.5rem 1.5rem}
.wl-item{display:flex;gap:.85rem;padding:1rem 0;border-bottom:1px solid #f5f3f0;position:relative;animation:cartIn .3s ease both}
.wl-item-img{flex-shrink:0;width:72px;height:90px;border-radius:10px;overflow:hidden;background:#f8f7f5;display:block}
.wl-item-img img{width:100%;height:100%;object-fit:cover}
.wl-item-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:.3rem}
.wl-item-title{font-size:.85rem;font-weight:600;color:#1a1a1a;text-decoration:none;line-height:1.3;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.wl-item-title:hover{color:#d14a3b}
.wl-item-price{font-size:.8rem;font-weight:700;color:#555}
.wl-add-cart{background:#1a1a1a;color:#fff;border:none;border-radius:8px;padding:.4rem .8rem;font-size:.75rem;font-weight:600;cursor:pointer;transition:background .2s;font-family:inherit;align-self:flex-start}
.wl-add-cart:hover{background:#333}
.wl-item-remove{position:absolute;top:.75rem;right:-.25rem;width:24px;height:24px;display:flex;align-items:center;justify-content:center;border:none;background:transparent;font-size:1.1rem;color:#bbb;cursor:pointer;border-radius:50%;transition:color .2s}
.wl-item-remove:hover{color:#d14a3b;background:#fef2f0}
.wl-empty{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;color:#999}
.wl-btn{display:inline-block;padding:.75rem 1.5rem;background:transparent;border:1.5px solid #ddd;border-radius:12px;font-weight:700;color:#1a1a1a;text-decoration:none;transition:border-color .2s}
.wl-btn:hover{border-color:#1a1a1a}
.favorite-btn{transition:transform .2s,color .2s}
.favorite-btn.active{color:#d14a3b}
.wishlist-badge{display:none}
.wishlist-badge.has-items{display:inline-flex;position:absolute;top:-4px;right:-4px;min-width:16px;height:16px;background:#d14a3b;color:#fff;border-radius:8px;font-size:.6rem;font-weight:700;align-items:center;justify-content:center;padding:0 3px;animation:badgePop .3s}
@media(max-width:480px){.wl-drawer{width:100vw}}