/* =====================================================================
   Ürün Gezgini — Base / reset / typography (v2)
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: var(--color-link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: var(--lh-tight); color: var(--ink-950); font-weight: var(--fw-bold); }
h1 { font-size: var(--fs-4xl); letter-spacing: -0.03em; font-weight: 800; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-lg); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-md); }

/* Prices — tabular figures so digits align in lists */
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1, "cv01" 1; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: var(--space-16); }
.section--tight { padding-block: var(--space-10); }
.band { background: var(--paper-soft); }
.muted { color: var(--color-text-mute); }
.soft { color: var(--color-text-soft); }
.eyebrow { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: .12em; text-transform: uppercase; color: var(--primary-600); display: inline-flex; align-items: center; gap: .5rem; }
.lead { font-size: var(--fs-md); color: var(--color-text-soft); line-height: 1.5; }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }

:where(a,button,input,select,textarea,[tabindex]):focus-visible {
  outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm);
}
.skip-link { position:absolute; left:-999px; top:0; background:var(--primary-700); color:#fff; padding:.5rem 1rem; z-index:var(--z-toast); border-radius:0 0 8px 0; }
.skip-link:focus { left:0; top:0; }

@keyframes shimmer { 100% { background-position: -200% 0; } }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }
@keyframes tickerUp { 0%{ transform: translateY(0);} 100%{ transform: translateY(-50%);} }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; scroll-behavior: auto; } }
