
/* === Ajustes del label de variaciones === */
.woocommerce div.product form.cart table.variations th.label,
.woocommerce div.product form.cart table.variations th.label label {
    background: #fff !important;   /* fondo blanco */
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #333 !important;        /* texto oscuro */
    font-weight: bold;
    display: block;
    line-height: 1.2;              /* menos alto */
    text-align: left;
}


/* === formato del Precio=== */

.ahorro-texto {
    display:block;
    font-weight:normal;
    color:#00A650; 
    margin-bottom:5px;
}

.moneda {
    color: var(--wp--preset--color--primary, #151884); /* color principal del theme */
    font-weight:normal;
}
.currency-buttons button {
    margin:5px;
    padding:8px 12px;
    border:none;
    cursor:pointer;
    background-color:#f0f0f0;
    border-radius:4px;
}

del {
    color:#999;
}
ins {
    color:#000;
    text-decoration:none;
    font-weight:bold;
}

/* === fin formato del Precio=== */

.currency-links {
    display: flex;
    gap: 14px;
    margin: 17px 0;
}

.currency-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    border-radius: 5px;              /* borde redondeado */
    background-color: #e0e0e0;       /* fondo gris */
    color: #000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.currency-links a:hover {
    background-color: #ccc;
    transform: translateY(-2px);     /* efecto de levantar el botón */
}

.currency-links a.active {
    background-color: #151884;
    color: #fff;
    font-weight: bold;
}

.currency-links .flag {
    font-size: 30px;   /* bandera grande */
    margin-right: 8px;
    line-height: 1;
}

.currency-links .label {
    font-size: 10px;   /* texto más grande */
}