/* Discount Badges System */
.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.4);
    z-index: 10;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    border: 2px solid white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
    border-radius: 50px;
    z-index: -1;
    filter: blur(8px);
    opacity: 0.6;
}

/* Service Card Positioning */
.service-card,
.service-item,
.tier-card,
.mod-menu-card,
.payment-card {
    position: relative;
}

/* Variations de couleurs */
.discount-badge.red {
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
}

.discount-badge.orange {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.discount-badge.yellow {
    background: linear-gradient(135deg, #ffd93d, #ffb800);
}

.discount-badge.green {
    background: linear-gradient(135deg, #6bcf7f, #4caf50);
}

.discount-badge.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

/* Responsive */
@media (max-width: 768px) {
    .discount-badge {
        padding: 6px 10px;
        font-size: 0.75rem;
        top: -8px;
        right: -8px;
    }
}
