/* Min Price Badge for Date Cards */
.date-card {
    position: relative;
}

/* Badge using ::after pseudo-element */
.date-card.has-min-price::after {
    content: 'ارزان‌ترین قیمت';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 10;
    white-space: nowrap;
    animation: fadeInBounce 0.5s ease-out;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(-10px);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* RTL Support */
[dir="rtl"] .date-card.has-min-price::after {
    right: -8px;
    left: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .date-card.has-min-price::after {
        top: -6px;
        right: -6px;
        padding: 3px 10px;
        font-size: 0.7rem;
    }
}
