/* Favorite Button Styles */
.favorite-btn,
.property-favorite {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.favorite-btn:hover,
.property-favorite:hover {
    background: #fee2e2;
    color: #ef4444;
}

.favorite-btn.active,
.property-favorite.active {
    background: #fee2e2;
    color: #ef4444;
}

.favorite-btn i,
.property-favorite i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .favorite-btn,
    .property-favorite {
        width: 32px;
        height: 32px;
    }

    .favorite-btn i,
    .property-favorite i {
        font-size: 16px;
    }
}

