/* Villa kartı indirim rozeti - yanıp sönme animasyonu */
@keyframes property-card-discount-blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }
    50% {
        opacity: 0.82;
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.15), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    }
}

.property-card-discount-badge {
    animation: property-card-discount-blink 1.5s ease-in-out infinite;
}
