.wishlist-toggle {
    cursor: pointer;
}

.wishlist-toggle:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.wishlist-toggle.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.wishlist-toggle.is-active {
    background: #c7a867 !important;
    border-color: #c7a867 !important;
}

.wishlist-toggle.is-active img {
    filter: brightness(0) invert(1);
}

.wishlist-toggle--text {
    appearance: none;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: inherit;
}

.wishlist-toggle--text.is-active {
    background: transparent !important;
    color: #c7a867;
}

.wishlist-toggle--text.is-active img {
    filter: none;
}

.tab-product-actions .wishlist-toggle {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wishlist-toast {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    min-width: 220px;
    max-width: calc(100vw - 48px);
    padding: 12px 16px;
    border: 1px solid rgba(199, 168, 103, 0.45);
    background: rgba(18, 18, 18, 0.96);
    color: #fff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    font-size: 14px;
    line-height: 1.8;
    text-align: right;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.wishlist-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .wishlist-toast {
        right: 16px;
        left: 16px;
        bottom: 18px;
        max-width: none;
    }
}

.wishlist-swal-toast {
    direction: rtl;
    text-align: right;
    font-family: inherit;
}
