.sold-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff0844 0%, #ff3d3d 100%);
    color: white;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 8, 68, 0.4);
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: soldBadgePulse 2s infinite;
    transform: none;
    backdrop-filter: blur(4px);
}

@keyframes soldBadgePulse {
    0% {
        box-shadow: 0 2px 15px rgba(255, 8, 68, 0.3);
    }
    50% {
        box-shadow: 0 2px 25px rgba(255, 8, 68, 0.5);
    }
    100% {
        box-shadow: 0 2px 15px rgba(255, 8, 68, 0.3);
    }
}

/* Ajuste para asegurar que el contenedor de la imagen tenga position relative */
.car-image-container {
    position: relative;
    overflow: hidden;
}
