/* Contenedor de precios MyChango */
.mychango-price-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

/* Precio original tachado */
.mychango-original-price {
    color: #999;
    font-size: 0.9em;
    text-decoration: line-through;
}

/* Precio con descuento (ins) */
.mychango-wholesale-price {
    color: #27ae60;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
}

/* Badge de descuento */
.mychango-discount-badge {
    background-color: #e67e22;
    color: #fff;
    font-size: 0.75em;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Aviso de login */
.mychango-login-notice {
    display: inline-block;
    background: #f8f9fa;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85em;
    color: #555;
}