/* ========================================
   WISHLIST ICON – Standalone & Reusable
   ======================================== */

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #FAFAFA;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.wishlist-icon::before {
    content: '\2661'; /* Empty heart */
    font-size: 30px;
    color: #36B4A3;
    transition: color 0.3s ease;
}

.wishlist-icon.wishlisted::before {
    content: '\2665'; /* Filled heart */
    color: #029FAE;
}

.wishlist-icon.wishlisted {
    background: #D9F8FA;
}

.wishlist-icon:hover {
    background: #B7F0F3;
}

.wishlist-icon.wishlisted:hover {
    background: #B7F0F3;
}

/* Optional: Add smooth scale on hover */
.wishlist-icon:hover::before {
    transform: scale(1.1);
}