<script>
document.addEventListener('DOMContentLoaded', function() {
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
/* Изменение шрифта для всех элементов в блоке корзины */
.uc-place {
font-family: 'Inter Tight', sans-serif !important;
font-size: 16px !important;
}
/* Изменение шрифта для заголовков */
.uc-place h2, .uc-place h3, .uc-place h4, .uc-place h5, .uc-place h6 {
font-family: 'Inter Tight', sans-serif !important;
font-size: 20px !important;
}
/* Изменение шрифта для кнопок */
.uc-place button {
font-family: 'Inter Tight', sans-serif !important;
font-size: 18px !important;
}
`;
document.head.appendChild(style);
});
</script>