.wishlist-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: var(--nav-text, #1a1a2e);
    text-decoration: none;
}

.wishlist-count {
    position: absolute;
    top: 4px;
    right: 2px;
    background: #c9a227;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.wishlist-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: color 0.2s, transform 0.2s;
}

.wishlist-toggle:hover,
.wishlist-toggle.is-wishlisted {
    color: #e74c3c;
}

.wishlist-toggle.is-wishlisted {
    transform: scale(1.05);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
}

.stock-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.stock-badge--in {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-badge--low {
    background: #fff3e0;
    color: #e65100;
}

.stock-badge--out {
    background: #ffebee;
    color: #c62828;
}

.wishlist-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.wishlist-empty {
    text-align: center;
    padding: 48px 24px;
}

.pdp-sticky-bar {
    display: none;
}

@media (max-width: 992px) {
    .pdp-sticky-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 65px;
        z-index: 900;
        background: #fff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 10px 16px;
        gap: 10px;
        align-items: center;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }

    .pdp-sticky-bar .sticky-price {
        flex: 1;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .pdp-sticky-bar .btn {
        flex-shrink: 0;
        padding: 10px 16px;
    }
}
