/* Custom CSS Overrides */
/* Font rendering düzeltmeleri - w ve x harfleri için optimizasyon */

body,
* {
    font-kerning: normal !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    font-feature-settings: "kern" 1, "liga" 1 !important;
    font-variant-ligatures: normal !important;
}

/* Termina font için özel ayarlar */
body {
    font-family: 'termina', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

/* w ve x harfleri için özel karakter spacing düzeltmesi */
.product-detail__title,
h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.01em !important;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1 !important;
}

