/* assets/css/favorite.css */
.houzez-fav-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
    color: #ff5a5f;
    /* default heart color */
}

.houzez-fav-btn[data-fav="1"] {
    color: #e0245e;
    /* active favorite */
}

.houzez-fav-btn:hover {
    transform: scale(1.2);
}

/* Simple modal overlay */
.houzez-fav-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.houzez-fav-modal.active {
    visibility: visible;
    opacity: 1;
}

.houzez-fav-modal .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}