/* Floating Wishlist Button on Product Page */
.wishlist-floating-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}

.wishlist-floating-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: #fff;
    color: #e74c3c;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.wishlist-floating-btn:active {
    transform: translateY(0) scale(0.95);
}

/* RTL Adjustment - Keep consistent with LTR to avoid badge overlap */
html[dir="rtl"] .wishlist-floating-btn {
    right: 15px;
    /* Stay on the right */
    left: auto;
}