/* Badge de Personalización */
.personalizacion-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FFB6C1 100%) !important;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5) !important;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 105, 180, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 105, 180, 0.7);
    }
}

.personalizacion-badge:hover {
    animation: none;
    transform: scale(1.1);
}