
.blinc-wishlist-container {
    position: relative;
    width: 50%;
}

.blinc-wishlist-container .blinc-wishlist-btn {
    background: #f0f0f0;
    width: 100%;
    border: 0px;
    padding: 4px 16px 5px;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
}

.blinc-wishlist-container .blinc-wishlist-btn:hover {
    border-color: #d5004eff;
    background: none;
}

.blinc-wishlist-container .blinc-wishlist-btn.wishlisted {
    background: #a8a8a8;
    border-color: #006a9eff;
    color: white;
}

.blinc-wishlist-container .blinc-wishlist-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.blinc-wishlist-container .wishlist-login-required {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f0f0;
    border-radius: 25px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: background 0.3s ease;
}

.blinc-wishlist-container .wishlist-login-required:hover {
    background: #e0e0e0;
    text-decoration: none;
}

/* Global popup styles - only define once */
.wishlist-popup {
    position: fixed;
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 9996;
    transform: translateX(-50%)translateY(-50%);
    background: #4a4a4a;
    color: white;
    opacity: 0;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 0px 7px 1px rgb(0 0 0 / 48%);
    /* animation: slideInRight 0.3s ease; */
    display: none;
    transition: opacity 0.4s;
}

@keyframes slideInRight {
    from {/* transform: translateX(100%); */opacity: 0;}
    to { transform: translateX(0); opacity: 1; }
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}