/* Estilos para precios en todas las vistas */
.pwnedcon-regular-price {
    text-decoration: line-through;
    color: #777;
    margin-right: 8px;
}

.pwnedcon-sale-price {
    color: #ff0000;
    font-weight: bold;
}

.pwnedcon-offer-badge {
    background: #ff0000;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
    margin-left: 8px;
    display: inline-block;
}

/* Badge para identificar combos */
.pwnedcon-combo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #96588a;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8em;
    font-weight: bold;
    z-index: 10;
}

/* Estilos específicos para la página de producto */
.single-product .pwnedcon-offer-badge {
    font-size: 1em;
    padding: 3px 10px;
}

/* Estilos para el selector de talleres */
.pwnedcon-taller-seleccion {
    margin: 20px 0;
}

.pwnedcon-taller-seleccion label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.taller-seleccionado {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #96588a;
    margin: 15px 0;
}

/* Estilos para el botón de agregar al carrito */
.pwnedcon-add-to-cart {
    margin-top: 20px;
}