/* ❤️ 하트 스타일 */
.heart {
    position: absolute;
    font-size: 14px; /* 기본 크기 */
    color: #ff4757; /* 하트 색상 */
    animation: fadeOut 0.8s ease-out forwards;
    pointer-events: none; /* 클릭 방지 */
}

/* ❤️ 하트 반짝임 애니메이션 */
@keyframes fadeOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}
