Comodidad, rendimiento y estilo inigualables

Prepárate con las nuevas colecciones de 3face

collezione icon

Stile e tecnicità per la linea top di gamma Threeface

scopri ICON

SALOPETTE SAT

Il pantalone perfetto per la tua prossima uscita in bici da strada

scopri la salopette SAT

Idee per la tua prossima uscita?

Scopri le nostre tracce .gpx del Veneto scaricabili gratuitamente dal nostro sito

Scopri di più
SPEDIZIONE GRATUITA
Sopra gli 80,00€ di spesa
ECCELLENTE RAPPORTO QUALITA'-PREZZO
Acquista direttamente dal produttore
RESO GRATUTITO
Restituzione e cambio taglia completamente GRATIS!
QUALITA' ITALIANA
Prodotti 100% made in Italy
var shopCurrency = 'CRC'; /* Sometimes merchants change their shop currency, let's tell our JavaScript file */ Currency.money_with_currency_format[shopCurrency] = "₡ {{amount_with_comma_separator}} CRC"; Currency.money_format[shopCurrency] = "₡ {{amount_with_comma_separator}}"; /* Default currency */ var defaultCurrency = 'EUR' || shopCurrency; /* Currency selector */ var $currencySelector = $("[data-currency-converter]"); /* Cookie currency */ var cookieCurrency = Currency.cookie.read(); /* Fix for customer account pages */ $('span.money span.money').each(function() { $(this).parents('span.money').removeClass('money'); }); /* Saving the current price */ $('span.money').each(function() { $(this).attr('data-currency-CRC', $(this).html()); }); // If there's no cookie. if (cookieCurrency == null) { if (shopCurrency !== defaultCurrency) { Currency.convertAll(shopCurrency, defaultCurrency); $('.selected-currency').text(Currency.currentCurrency); } else { Currency.currentCurrency = defaultCurrency; } } // If the cookie value does not correspond to any value in the currency dropdown. else if ($currencySelector.length && $currencySelector.find('option[value=' + cookieCurrency + ']').length === 0) { Currency.currentCurrency = shopCurrency; Currency.cookie.write(shopCurrency); } else if (cookieCurrency === shopCurrency) { Currency.currentCurrency = shopCurrency; } else { Currency.convertAll(shopCurrency, cookieCurrency); $('.selected-currency').text(Currency.currentCurrency); } $currencySelector.val(Currency.currentCurrency).change(function() { var newCurrency = $(this).val(); Currency.convertAll(Currency.currentCurrency, newCurrency); $('.selected-currency').text(Currency.currentCurrency); }); var original_selectCallback = window.selectCallback; var selectCallback = function(variant, selector) { original_selectCallback(variant, selector); Currency.convertAll(shopCurrency, $currencySelector.val()); $('.selected-currency').text(Currency.currentCurrency); }; function convertCurrencies() { if($currencySelector.val() && $currencySelector.val() != $currencySelector.data('default-shop-currency')) { Currency.convertAll($currencySelector.data('default-shop-currency'), $currencySelector.val()); $('.selected-currency').text(Currency.currentCurrency); } }