/* ==========================================================================
   Teknomak 2000 — site.css
   Kaynak: DESIGN.md "Precision Editorial" (mutlak otorite)
   #CC0000 sadece CTA / aktif nav / red-dash. Canvas #FFFFFF, bant #F5F5F5,
   footer #111111, kart borderı #E5E5E5, radius 0, Inter.
   ========================================================================== */

:root {
  --canon-red: #CC0000;
  --canon-red-dark: #A80000;
  --ink: #1A1A1A;
  --body-grey: #6B6B6B;
  --band: #F5F5F5;
  --footer-ink: #111111;
  --card-line: #E5E5E5;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: #ffffff;
  color: var(--body-grey);
  font-family: Inter, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; }

/* --------------------------------------------------------------------------
   DESIGN.md Layout ritmi
   Container: 1280px + 32px gutter (480px altında 16px)
   Bölüm: 120px dikey (768px ve altında 64px)
   -------------------------------------------------------------------------- */
.container-max {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 32px;
}
.section { padding-block: 120px; }
@media (max-width: 768px) {
  .section { padding-block: 64px; }
}
@media (max-width: 480px) {
  .container-max { padding-inline: 16px; }
}

/* İmza aksanı: 40×4 Canon Red dash, başlığın 16px altında (DESIGN.md) */
.red-dash {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--canon-red);
  margin-top: 16px;
}
.red-dash--sm { width: 24px; height: 3px; margin-top: 12px; }
.red-dash--center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Butonlar (DESIGN.md: uppercase, geniş tracking, 0 radius)
   -------------------------------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  border-radius: 0;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn-primary { background: var(--canon-red); color: #fff; }
.btn-primary:hover { background: var(--canon-red-dark); }
.btn-secondary { background: transparent; border: 2px solid var(--ink); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
/* Koyu zemin üzeri ikincil buton */
.btn-ghost { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.site-header .btn-primary { padding: 12px 24px; }

/* --------------------------------------------------------------------------
   Kart (DESIGN.md: gölge yok — 1px #E5E5E5; hover: 0 4px 20px rgba(0,0,0,.05))
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 0;
  transition: box-shadow .3s ease;
}
.card:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); }

/* --------------------------------------------------------------------------
   Floating header: şeffaf → blur(12px) + %90 beyaz (DESIGN.md)
   -------------------------------------------------------------------------- */
.site-header { transition: background-color .3s ease, box-shadow .3s ease; }
.nav-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.nav-brand__teknomak { display: block; width: auto; height: 36px; }
.nav-brand__canon { display: block; width: auto; height: 18px; }
.nav-brand__divider { width: 1px; height: 28px; background: rgba(255, 255, 255, 0.45); }
.site-header.is-solid .nav-brand__divider { background: var(--card-line); }
.footer-brand { margin-bottom: 16px; }
.footer-brand__teknomak { display: block; width: auto; height: 34px; }
.footer-brand__canon { display: block; width: auto; height: 18px; }
.footer-brand__divider { width: 1px; height: 26px; background: rgba(255, 255, 255, 0.2); }
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color .3s ease, box-shadow .3s ease;
}
.site-header .nav-link:hover { color: #fff; }
.site-header .nav-link.is-active { color: #fff; box-shadow: inset 0 -2px 0 var(--canon-red); }

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 var(--card-line);
}
.site-header.is-solid .nav-link { color: var(--ink); }
.site-header.is-solid .nav-link:hover { color: var(--canon-red); }
.site-header.is-solid .nav-link.is-active { color: var(--canon-red); }

@media (max-width: 480px) {
  .nav-brand,
  .footer-brand { gap: 8px; }
  .nav-brand__teknomak { height: 28px; }
  .nav-brand__canon { height: 14px; }
  .nav-brand__divider { height: 22px; }
}

/* --------------------------------------------------------------------------
   Mega menü — hover'da full-width beyaz panel (DESIGN.md), ARIA + klavye
   -------------------------------------------------------------------------- */
.mega { position: static; }
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--card-line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s .25s;
  z-index: 40;
}
.mega.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}
.mega-item {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  border-bottom: 1px solid var(--card-line);
  transition: color .2s ease, padding-left .2s ease;
}
.mega-item:hover { color: var(--canon-red); padding-left: 8px; }

.footer-link { color: rgba(255, 255, 255, 0.6); transition: color .2s ease; }
.footer-link:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--canon-red); text-underline-offset: 4px; }

/* --------------------------------------------------------------------------
   Hero — Swiper + Ken Burns + segmentli Canon Red progress (DESIGN.md:
   "thin horizontal lines at the bottom, filling with Canon Red")
   -------------------------------------------------------------------------- */
.hero-swiper { width: 100%; height: 92vh; min-height: 560px; max-height: 900px; }
.hero-swiper .swiper-slide { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: -1px;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg--office-systems { background-image: url('../img/editorial/hero/office-systems.webp'); }
.hero-bg--authorized-service { background-image: url('../img/editorial/hero/authorized-service.webp'); }
.hero-bg--managed-print { background-image: url('../img/editorial/hero/managed-print.webp'); }
.hero-bg--supplies { background-image: url('../img/editorial/hero/supplies.webp'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 40%, rgba(255, 255, 255, 0.22) 61%, transparent 76%);
}

/* Canon product bands: native-size cutouts replace unrelated stock hardware. */
.product-band {
  position: relative;
  overflow: hidden;
  background-color: var(--band);
  background-image:
    radial-gradient(circle at 78% 50%, #fff 0 17%, rgba(255, 255, 255, 0.62) 34%, transparent 52%),
    linear-gradient(105deg, #F5F5F5 0 50%, #EEEEEE 50% 100%);
  background-size: 100% 100%, 100% 100%;
  background-position: center, center;
  background-repeat: no-repeat;
}
.product-band--left {
  background-image:
    radial-gradient(circle at 22% 50%, #fff 0 17%, rgba(255, 255, 255, 0.62) 34%, transparent 52%),
    linear-gradient(75deg, #EEEEEE 0 50%, #F5F5F5 50% 100%);
  background-position: center, center;
}
.product-band__image {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 7%;
  width: min(42vw, 520px);
  height: 78%;
  object-fit: contain;
  transform: translateY(-50%);
}
.product-band--left .product-band__image {
  right: auto;
  left: 7%;
}
.product-band > .container-max {
  position: relative;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Ürün detay sunumu — Canon yaklaşımı: büyük ürün, kısa değer önerisi,
   kullanım bağlamı ve resmi teknik sayfaya net geçiş.
   -------------------------------------------------------------------------- */
.product-detail-hero { padding-block: 72px 104px; }
.product-detail-hero > .grid > div:first-child { grid-column: span 7 / span 7; }
.product-detail-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, #fff 0 24%, rgba(255,255,255,.72) 46%, transparent 67%),
    linear-gradient(145deg, #f8f6f5 0%, #ece9e8 100%);
  border: 1px solid var(--card-line);
}
.product-detail-stage::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 13%;
  height: 7%;
  border-radius: 50%;
  background: rgba(26,26,26,.10);
  filter: blur(18px);
}
.product-detail-stage img {
  position: relative;
  z-index: 1;
  width: min(78%, 520px);
  height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(26,26,26,.10));
}
.product-detail-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  background: var(--canon-red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-detail-model {
  display: inline-flex;
  margin-top: 24px;
  padding: 9px 12px;
  border: 1px solid var(--card-line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-detail-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--canon-red);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-detail-text-link .material-symbols-outlined { font-size: 18px; }
.product-benefits-section { padding-block: 96px; }
.product-section-heading { max-width: 720px; }
.product-section-heading h2,
.product-context-copy h2,
.product-official-section h2 {
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 56px;
}
.product-benefit {
  min-height: 260px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--card-line);
}
.product-benefit__icon { color: var(--canon-red); font-size: 38px; }
.product-benefit h3 { margin-top: 28px; color: var(--ink); font-size: 24px; line-height: 1.35; }
.product-benefit p { margin-top: 14px; font-size: 16px; line-height: 1.65; }
.product-context-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: #fff;
}
.product-context-media { min-height: 520px; overflow: hidden; }
.product-context-media img { width: 100%; height: 100%; object-fit: cover; }
.product-context-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(56px, 8vw, 120px);
}
.product-context-copy > p:not(:first-child) { margin-top: 28px; max-width: 620px; font-size: 18px; line-height: 1.7; }
.product-context-copy .btn-primary { margin-top: 40px; }
.product-official-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .6fr);
  gap: 64px;
  align-items: center;
  padding-block: 104px;
}
.product-official-section > div:first-child > p:last-child { margin-top: 24px; max-width: 760px; font-size: 18px; line-height: 1.7; }
.product-official-actions { display: flex; flex-direction: column; gap: 16px; align-items: stretch; }

@media (max-width: 1023px) {
  .product-detail-hero > .grid > div:first-child { grid-column: auto; }
  .product-detail-stage { min-height: 480px; }
  .product-benefits-grid { grid-template-columns: 1fr; }
  .product-benefit { min-height: 0; }
  .product-context-band { grid-template-columns: 1fr; }
  .product-context-media { min-height: 420px; }
  .product-official-section { grid-template-columns: 1fr; }
  .product-official-actions { max-width: 420px; }
}

@media (max-width: 640px) {
  .product-detail-hero { padding-block: 40px 64px; }
  .product-detail-stage { min-height: 360px; }
  .product-detail-stage img { width: 86%; height: 300px; }
  .product-benefits-section { padding-block: 64px; }
  .product-benefits-grid { margin-top: 40px; gap: 20px; }
  .product-benefit { padding: 28px; }
  .product-context-media { min-height: 320px; }
  .product-context-copy { padding: 56px 24px; }
  .product-official-section { padding-block: 72px; gap: 40px; }
}

@media (max-width: 767px) {
  .hero-bg { background-position: 72% center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 48%, rgba(255, 255, 255, 0.46) 72%, rgba(255, 255, 255, 0.12) 100%);
  }
  .product-band,
  .product-band--left {
    padding-top: 320px;
  }
  .product-band__image,
  .product-band--left .product-band__image {
    top: 32px;
    left: 12%;
    right: 12%;
    width: 76%;
    height: 260px;
    transform: none;
  }
}
/* Ken Burns: yalnızca aktif slide */
.hero-swiper .swiper-slide-active .hero-bg { animation: kenburns 8s ease-out both; }
@keyframes kenburns {
  from { transform: scale(1.1) translate(1.5%, -1%); }
  to   { transform: scale(1) translate(0, 0); }
}

/* Segmentli progress çizgileri */
.hero-lines { display: flex; gap: 8px; align-items: center; }
.hero-line {
  position: relative;
  width: 48px;
  height: 3px;
  background: rgba(26, 26, 26, 0.18);
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hero-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--canon-red);
  transform: scaleX(var(--fill, 0));
  transform-origin: left;
}

/* Karusel ok butonları */
.swiper-nav-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.swiper-nav-btn:hover { border-color: #fff; }
.swiper-nav-btn--dark { border-color: var(--card-line); color: var(--ink); }
.swiper-nav-btn--dark:hover { border-color: var(--canon-red); color: var(--canon-red); }
.swiper-nav-btn.swiper-button-disabled { opacity: 0.35; cursor: default; }
.swiper-nav-btn.swiper-button-lock { display: none; }

/* --------------------------------------------------------------------------
   Öne çıkan ürünler — fraction pagination (1 / 3)
   -------------------------------------------------------------------------- */
.featured-swiper .swiper-pagination {
  position: static;
  margin-top: 32px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--body-grey);
}
.featured-swiper .swiper-pagination-current { color: var(--canon-red); }

/* --------------------------------------------------------------------------
   Scroll-reveal (IntersectionObserver — bir kerelik)
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal="delay-1"] { transition-delay: .12s; }
.reveal[data-reveal="delay-2"] { transition-delay: .24s; }
.reveal[data-reveal="delay-3"] { transition-delay: .36s; }

/* --------------------------------------------------------------------------
   Sayfa geçişleri — imza kırmızı dash'in hareket dili
   Native cross-document View Transitions + JS fallback (site.js) + kırmızı süpürme
   -------------------------------------------------------------------------- */
@view-transition { navigation: auto; }

/* Header kendi geçiş grubunda kalır → sayfalar arası sabit/akıcı hisseder */
#site-header { view-transition-name: site-header; }

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-leave 200ms cubic-bezier(.4, 0, .2, 1) both; }
  ::view-transition-new(root) { animation: vt-enter 340ms cubic-bezier(.16, 1, .3, 1) 60ms both; }

  /* Fallback (View Transitions desteklemeyen tarayıcılar — site.js .no-vt ekler) */
  .no-vt body { animation: vt-enter 320ms cubic-bezier(.16, 1, .3, 1) both; }
  body.page-leave { opacity: 0; transform: translateY(-10px); transition: opacity .18s ease, transform .18s ease; }

  .page-sweep.run { animation: page-sweep 700ms cubic-bezier(.22, 1, .36, 1) both; }
}

@keyframes vt-leave { to { opacity: 0; transform: translateY(-10px); } }
@keyframes vt-enter { from { opacity: 0; transform: translateY(14px); } }

/* Kırmızı süpürme çizgisi: her sayfa girişinde soldan sağa dolar, sonra söner */
.page-sweep {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--canon-red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  opacity: 0;
  z-index: 90;
  pointer-events: none;
}
@keyframes page-sweep {
  0%   { transform: scaleX(0); opacity: 1; }
  70%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-swiper .swiper-slide-active .hero-bg { animation: none; }
  .page-sweep { display: none; }
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  user-select: none;
}

/* Form alanları — 0 radius, ink odak */
.form-field {
  width: 100%;
  border: 1px solid var(--card-line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  padding: 14px 16px;
}
.form-field:focus { outline: none; border-color: var(--ink); box-shadow: none; --tw-ring-color: transparent; }
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ========================================================================== 
   2026 VISUAL REFRESH — Canon authority × local precision
   ========================================================================== */
:root {
  --warm-white: #f7f5f2;
  --warm-stone: #ece8e2;
  --charcoal: #161616;
  --charcoal-soft: #252525;
  --muted-ink: #77736e;
  --header-height: 112px;
  --ease-editorial: cubic-bezier(.16, 1, .3, 1);
}

body {
  padding-top: var(--header-height) !important;
  background: var(--warm-white);
}

body[data-page="index"] { background: #fff; }
::selection { background: var(--canon-red); color: #fff; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--canon-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow--light { color: rgba(255,255,255,.66); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link .material-symbols-outlined { font-size: 18px; transition: transform .3s var(--ease-editorial); }
.text-link:hover { color: var(--canon-red); }
.text-link:hover .material-symbols-outlined { transform: translate(3px,-3px); }

/* Header */
.site-header {
  height: var(--header-height);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: var(--ink);
  transition: transform .4s var(--ease-editorial), box-shadow .3s ease, background-color .3s ease;
}
.site-header.is-solid { background: rgba(255,255,255,.98); box-shadow: 0 14px 40px rgba(0,0,0,.055); backdrop-filter: none; }
.site-header.is-compact .utility-bar { height: 0; opacity: 0; overflow: hidden; }
.site-header.is-compact { height: 80px; }
.site-header.is-compact .mega-panel, .site-header.is-compact .mobile-menu { top: 80px; }
.utility-bar {
  height: 32px;
  background: var(--charcoal);
  color: #fff;
  transition: height .35s var(--ease-editorial), opacity .2s ease;
}
.utility-bar__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.utility-bar__status { display: flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.utility-bar__pulse { width: 6px; height: 6px; background: var(--canon-red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(204,0,0,.16); }
.utility-bar__links { display: flex; align-items: center; height: 100%; }
.utility-bar__links a { display: flex; align-items: center; gap: 4px; height: 100%; padding: 0 16px; border-left: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .05em; }
.utility-bar__links a:last-child { padding-right: 0; }
.utility-bar__links a:hover { color: #fff; }
.utility-bar__links .material-symbols-outlined { font-size: 13px; }
.primary-nav { height: 80px; background: #fff; }
.primary-nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.nav-brand { flex: 0 0 auto; gap: 13px; }
.nav-brand__teknomak { height: 34px; }
.nav-brand__canon { height: 17px; }
.nav-brand__divider, .site-header.is-solid .nav-brand__divider { height: 28px; background: var(--card-line); }
.primary-nav__links { display: flex; align-items: stretch; align-self: stretch; gap: 30px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.primary-nav__links > li { display: flex; align-items: stretch; }
.site-header .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  height: 100%;
  color: #373737;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  box-shadow: none;
}
.site-header .nav-link::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--canon-red); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-editorial); }
.site-header .nav-link:hover, .site-header.is-solid .nav-link:hover { color: var(--ink); }
.site-header .nav-link:hover::after, .site-header .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-header .nav-link.is-active, .site-header.is-solid .nav-link.is-active { color: var(--canon-red); box-shadow: none; }
.site-header .nav-link .material-symbols-outlined { font-size: 17px; transition: transform .25s ease; }
.mega.is-open .nav-link .material-symbols-outlined { transform: rotate(180deg); }
.primary-nav__actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 17px; background: var(--canon-red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nav-cta:hover { background: var(--canon-red-dark); }
.nav-cta .material-symbols-outlined { font-size: 17px; }
.mobile-toggle { display: none; width: 44px; height: 44px; padding: 12px 9px; border: 1px solid var(--card-line); background: #fff; }
.mobile-toggle__line { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .3s ease; }
.mobile-toggle[aria-expanded="true"] .mobile-toggle__line:first-child { transform: translateY(3px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .mobile-toggle__line:last-child { transform: translateY(-3px) rotate(-45deg); }

.mega-panel {
  top: var(--header-height);
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .45s var(--ease-editorial);
}
.mega.is-open .mega-panel { transform: translateY(0); }
.mega-panel__layout { display: grid; grid-template-columns: 4fr 8fr; gap: 72px; padding-block: 54px 58px; }
.mega-panel__intro { padding-right: 48px; border-right: 1px solid var(--card-line); }
.mega-panel__intro h2 { max-width: 340px; font-size: 32px; line-height: 1.1; letter-spacing: -.035em; }
.mega-panel__intro > p:not(.eyebrow) { max-width: 360px; margin-top: 18px; font-size: 14px; line-height: 1.65; }
.mega-panel__intro .text-link { margin-top: 26px; }
.mega-panel__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); align-content: center; }
.mega-item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; min-height: 70px; padding: 15px 18px; border-bottom: 1px solid var(--card-line); color: var(--ink); font-size: 13px; font-weight: 600; }
.mega-item:nth-last-child(-n+2) { border-bottom: 0; }
.mega-item span { color: #aaa49e; font-size: 10px; letter-spacing: .1em; }
.mega-item:hover { padding-left: 25px; background: var(--warm-white); color: var(--canon-red); }

.mobile-menu { position: fixed; inset: var(--header-height) 0 0; height: calc(100vh - var(--header-height)); background: #fff; overflow-y: auto; }
.mobile-menu__inner { display: flex; flex-direction: column; padding-top: 36px; padding-bottom: 36px; }
.mobile-menu__inner > a { display: grid; grid-template-columns: 42px 1fr; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--card-line); color: var(--ink); font-size: clamp(24px,8vw,36px); font-weight: 700; letter-spacing: -.03em; }
.mobile-menu__inner > a span { color: #aaa49e; font-size: 10px; letter-spacing: .1em; }
.mobile-menu__inner > a.is-active { color: var(--canon-red); }
.mobile-menu__footer { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; padding-top: 28px; }
.mobile-menu__footer a { color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .06em; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-ghost, .btn-outline-dark {
  position: relative;
  min-height: 52px;
  padding: 0 24px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: .11em;
  transition: transform .3s var(--ease-editorial), background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn-primary:hover, .btn-secondary:hover, .btn-ghost:hover, .btn-outline-dark:hover { transform: translateY(-2px); }
.btn-primary .material-symbols-outlined, .btn-outline-dark .material-symbols-outlined { font-size: 18px; }
.btn-primary--light { background: #fff; color: var(--ink); }
.btn-primary--light:hover { background: var(--canon-red); color: #fff; }
.btn-quiet { display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 4px; border-bottom: 1px solid rgba(255,255,255,.45); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.btn-quiet:hover { border-color: #fff; }
.btn-quiet .material-symbols-outlined { font-size: 18px; transition: transform .3s ease; }
.btn-quiet:hover .material-symbols-outlined { transform: translateX(4px); }
.btn-outline-dark { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid rgba(255,255,255,.4); color: #fff; font-weight: 700; text-transform: uppercase; }
.btn-outline-dark:hover { border-color: #fff; background: #fff; color: var(--ink); }

/* Cinematic homepage hero */
.cinematic-hero { position: relative; min-height: calc(100svh - var(--header-height)); height: min(800px, calc(100svh - var(--header-height))); background: #191817; color: #fff; isolation: isolate; overflow: hidden; }
.cinematic-hero__media, .cinematic-hero__media video, .cinematic-hero__veil, .cinematic-hero__grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinematic-hero__media { z-index: -2; transform: scale(1.015); transition: transform 8s linear; }
.cinematic-hero__media video { object-fit: cover; object-position: center; }
.cinematic-hero__veil { background: linear-gradient(90deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.69) 35%, rgba(13,13,13,.14) 72%, rgba(13,13,13,.28) 100%); }
.cinematic-hero__grain { opacity: .12; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; pointer-events: none; }
.cinematic-hero__layout { display: grid; grid-template-columns: minmax(0,8fr) minmax(220px,4fr); align-items: center; gap: 72px; height: calc(100% - 96px); padding-top: 28px; }
.cinematic-hero__copy { max-width: 850px; }
.hero-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker span { width: 34px; height: 2px; background: var(--canon-red); transform-origin: left; animation: dash-in .8s .3s var(--ease-editorial) both; }
.cinematic-hero h2 { color: #fff; font-size: clamp(52px,6vw,88px); font-weight: 700; line-height: .98; letter-spacing: -.055em; }
.cinematic-hero h2 em { color: rgba(255,255,255,.48); font-style: normal; }
.hero-summary { max-width: 610px; margin-top: 28px; color: rgba(255,255,255,.74); font-size: clamp(16px,1.4vw,19px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 38px; }
.hero-proof { align-self: end; justify-self: end; width: 220px; margin-bottom: 42px; padding: 22px; border: 1px solid rgba(255,255,255,.24); background: rgba(10,10,10,.28); backdrop-filter: blur(8px); }
.hero-proof__index { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .12em; }
.hero-proof__rule { height: 1px; margin: 18px 0 20px; background: rgba(255,255,255,.25); }
.hero-proof strong { display: block; color: #fff; font-size: 72px; line-height: .8; letter-spacing: -.07em; }
.hero-proof p { margin-top: 16px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 600; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.hero-proof > a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin-top: 22px; border: 1px solid rgba(255,255,255,.28); color: #fff; }
.hero-proof > a:hover { background: #fff; color: var(--ink); }
.cinematic-hero__footer { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; height: 96px; border-top: 1px solid rgba(255,255,255,.18); }
.film-toggle { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.film-toggle .material-symbols-outlined { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.3); font-size: 16px; }
.hero-capabilities { display: flex; align-items: center; height: 100%; }
.hero-capabilities span { display: flex; align-items: center; height: 100%; padding: 0 25px; border-left: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.74); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.authority-strip { overflow: hidden; background: var(--canon-red); color: #fff; }
.authority-strip__track { display: flex; align-items: center; width: max-content; min-width: 200%; height: 60px; animation: marquee 28s linear infinite; }
.authority-strip__track span { padding: 0 32px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.authority-strip__track i { width: 5px; height: 5px; background: rgba(255,255,255,.6); border-radius: 50%; }

.experience-section { background: var(--warm-white); }
.section-heading { margin-bottom: 58px; }
.section-heading h2 { max-width: 860px; color: var(--ink); font-size: clamp(38px,4.3vw,62px); line-height: 1.04; letter-spacing: -.045em; }
.section-heading--split { display: grid; grid-template-columns: 8fr 4fr; gap: 64px; align-items: end; }
.section-heading--split > p { max-width: 430px; padding-bottom: 5px; color: var(--muted-ink); font-size: 16px; line-height: 1.7; }
.section-heading--controls { display: flex; align-items: end; justify-content: space-between; gap: 36px; }
.slider-controls { display: flex; align-items: center; gap: 8px; }
.slider-controls .text-link { margin-right: 18px; }
.arrow-button { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid #ccc7c0; color: var(--ink); }
.arrow-button:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.arrow-button .material-symbols-outlined { font-size: 20px; }

.experience-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, minmax(280px, 1fr)); gap: 14px; min-height: 690px; }
.experience-card { position: relative; min-height: 0; overflow: hidden; background: #242424; isolation: isolate; }
.experience-card--large { grid-row: 1 / 3; }
.experience-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-editorial), filter .5s ease; }
.experience-card__wash { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.76)); transition: background .45s ease; }
.experience-card:hover img { transform: scale(1.045); filter: saturate(.82); }
.experience-card:hover .experience-card__wash { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.86)); }
.experience-card__number { position: absolute; top: 24px; right: 25px; color: rgba(255,255,255,.64); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.experience-card__copy { position: absolute; right: 0; bottom: 0; left: 0; padding: 32px; color: #fff; }
.experience-card__copy p { margin-bottom: 12px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.experience-card__copy h3 { color: #fff; font-size: clamp(26px,2.6vw,42px); line-height: 1.06; letter-spacing: -.04em; }
.experience-card__copy > span { display: inline-flex; gap: 10px; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.82); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.experience-card__copy b { color: #fff; }

.featured-products-section { background: #fff; }
.featured-products-section .section { overflow: hidden; }
.featured-products-section .card { border: 0; background: var(--warm-white); box-shadow: none; }
.featured-products-section .card:hover { border-color: transparent; box-shadow: none; transform: none; }
.featured-products-section .swiper-slide { height: auto; }
.featured-products-section .swiper-pagination { position: static; width: auto; margin-top: 34px; text-align: left; }

.service-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 850px; background: var(--charcoal); }
.service-story__media { position: relative; min-height: 680px; overflow: hidden; }
.service-story__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.04); }
.service-story__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }
.service-story__media-label { position: absolute; z-index: 2; right: 28px; bottom: 24px; left: 28px; display: flex; justify-content: space-between; color: rgba(255,255,255,.8); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-story__content { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(40px,7vw,110px); color: rgba(255,255,255,.65); }
.service-story__intro { max-width: 620px; }
.service-story__intro h2 { color: #fff; font-size: clamp(44px,4.5vw,68px); line-height: 1.02; letter-spacing: -.05em; }
.service-story__intro h2 em { color: rgba(255,255,255,.38); font-style: normal; }
.service-story__intro > p:last-child { max-width: 560px; margin-top: 25px; font-size: 16px; line-height: 1.75; }
.service-steps { max-width: 620px; margin: 46px 0 38px; padding: 0; list-style: none; }
.service-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 22px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.15); }
.service-steps li > span { padding-top: 4px; color: var(--canon-red); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.service-steps h3 { color: #fff; font-size: 19px; letter-spacing: -.02em; }
.service-steps p { margin-top: 5px; font-size: 13px; line-height: 1.6; }
.service-story .btn-outline-dark { align-self: flex-start; }

.numbers-section { position: relative; overflow: hidden; background: var(--canon-red); color: #fff; }
.numbers-section::before { content: "25"; position: absolute; top: 50%; right: -2vw; color: rgba(255,255,255,.055); font-size: 38vw; font-weight: 700; line-height: .7; letter-spacing: -.1em; transform: translateY(-50%); pointer-events: none; }
.numbers-section__heading { position: relative; z-index: 1; display: grid; grid-template-columns: 4fr 8fr; gap: 40px; align-items: end; }
.numbers-section__heading h2 { color: #fff; font-size: clamp(38px,5vw,66px); line-height: 1.02; letter-spacing: -.05em; }
.numbers-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,1fr); margin-top: 78px; border-top: 1px solid rgba(255,255,255,.35); }
.numbers-grid > div { padding: 35px 24px 0 0; border-right: 1px solid rgba(255,255,255,.25); }
.numbers-grid > div:not(:first-child) { padding-left: 24px; }
.numbers-grid > div:last-child { border-right: 0; }
.numbers-grid strong { display: block; color: #fff; font-size: clamp(46px,5vw,72px); line-height: 1; letter-spacing: -.065em; }
.numbers-grid span { display: block; margin-top: 12px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.canon-bridge { background: var(--warm-white); }
.canon-bridge__layout { display: grid; grid-template-columns: 4fr 8fr; min-height: 570px; }
.canon-bridge__mark { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 60px 56px 60px 0; border-right: 1px solid #d7d2cb; }
.canon-bridge__mark img { width: min(240px,80%); height: auto; }
.canon-bridge__mark span { margin-top: 22px; color: var(--muted-ink); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.canon-bridge__copy { display: flex; flex-direction: column; justify-content: center; padding: 76px 0 76px clamp(50px,7vw,110px); }
.canon-bridge__copy h2 { max-width: 800px; font-size: clamp(42px,4.7vw,66px); line-height: 1.03; letter-spacing: -.05em; }
.canon-bridge__copy > p:not(.eyebrow) { max-width: 710px; margin-top: 26px; font-size: 17px; line-height: 1.75; }
.canon-bridge__copy > div { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 38px; }

/* Product cards and catalog */
.card { border-color: #ddd8d2; background: #fff; transition: transform .45s var(--ease-editorial), border-color .3s ease, box-shadow .4s ease; }
.card:hover { transform: translateY(-7px); border-color: #bbb5ae; box-shadow: 0 24px 55px rgba(25,25,25,.09); }
#product-grid { gap: 16px; }
#product-grid .card, .featured-products-section .card { position: relative; }
#product-grid .card > div:first-child, .featured-products-section .card > div:first-child { min-height: 320px; background: #f7f5f2 !important; }
#product-grid .card img, .featured-products-section .card img { mix-blend-mode: multiply; transition: transform .7s var(--ease-editorial); }
#product-grid .card:hover img, .featured-products-section .card:hover img { transform: scale(1.06); }
#product-grid .card > div:last-child, .featured-products-section .card > div:last-child { display: flex; align-items: center; justify-content: space-between; background: #fff; border-top: 1px solid #e4dfd9; }
#product-grid .card > div:last-child::after, .featured-products-section .card > div:last-child::after { content: "↗"; color: var(--canon-red); font-size: 17px; }
.filter-chip { border-radius: 999px !important; padding-inline: 22px !important; }
.product-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid #ded9d3; background: #fff; color: var(--ink); transition: transform .5s var(--ease-editorial), border-color .3s ease, box-shadow .5s ease; }
.product-card:hover { transform: translateY(-6px); border-color: #bcb6af; box-shadow: 0 28px 55px rgba(20,20,20,.08); }
.product-card__media { position: relative; display: flex; align-items: center; justify-content: center; min-height: 330px; padding: 40px; overflow: hidden; background: var(--warm-white); }
.product-card__media::after { content: ""; position: absolute; right: -80px; bottom: -80px; width: 190px; height: 190px; border: 1px solid #ded9d3; border-radius: 50%; transition: transform .7s var(--ease-editorial); }
.product-card:hover .product-card__media::after { transform: scale(1.25); }
.product-card__media img { position: relative; z-index: 1; width: 100%; height: 235px; object-fit: contain; mix-blend-mode: multiply; transition: transform .75s var(--ease-editorial); }
.product-card:hover .product-card__media img { transform: scale(1.055) translateY(-4px); }
.product-card__badge { position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 10px; background: var(--canon-red); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card__index { position: absolute; top: 22px; right: 20px; color: #aaa59f; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 26px 26px 23px; }
.product-card__body > p { color: var(--canon-red); font-size: 9px; font-weight: 700; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }
.product-card__body h3 { margin-top: 10px; font-size: 20px; line-height: 1.3; letter-spacing: -.025em; }
.product-card__body > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 24px; color: var(--muted-ink); font-size: 11px; font-weight: 600; }
.product-card__body .material-symbols-outlined { color: var(--ink); font-size: 20px; transition: transform .3s var(--ease-editorial), color .3s ease; }
.product-card:hover .product-card__body .material-symbols-outlined { color: var(--canon-red); transform: translate(3px,-3px); }

/* Shared secondary-page composition */
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child {
  position: relative;
  overflow: hidden;
  background: var(--charcoal) !important;
  border: 0 !important;
}
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child::after { content: ""; position: absolute; top: -45%; right: -7%; width: 42vw; height: 42vw; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(255,255,255,.025), 0 0 0 14vw rgba(255,255,255,.018); }
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child > .container-max { position: relative; z-index: 1; min-height: 370px; padding-top: 96px !important; padding-bottom: 72px !important; }
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child h1 { max-width: 780px; color: #fff; font-size: clamp(46px,5.2vw,76px) !important; line-height: 1.01; letter-spacing: -.055em; }
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child p:not(:first-child), body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child > .container-max > p { color: rgba(255,255,255,.62) !important; }
body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child .red-dash { width: 60px; height: 3px; }
body:not([data-page="index"]) main > section:nth-child(2) { background-color: var(--warm-white) !important; }
body:not([data-page="index"]) .section { padding-block: 104px; }
body[data-page="hizmetler"] .product-band { min-height: 650px; background-color: var(--warm-white); }
body[data-page="hizmetler"] .product-band:nth-of-type(odd) { background-color: #fff; }
body[data-page="hizmetler"] .product-band > .container-max > div { border: 1px solid #ded9d3; box-shadow: 0 24px 70px rgba(0,0,0,.08); }
body[data-page="kurumsal"] main > section:nth-child(2) { min-height: 650px !important; background-position: center 30%; }
body[data-page="iletisim"] .form-field { min-height: 54px; background: #fff; border-color: #d7d2cc; }
body[data-page="iletisim"] .card { box-shadow: none; }
body[data-page="destek"] #driver-list { border-color: #d8d3cd; }
.driver-row { transition: background-color .2s ease, padding-left .3s var(--ease-editorial); }
.driver-row:hover { padding-left: 30px; background: #faf8f5; }
body[data-page="urun-detay"] main > section:first-child { background: var(--warm-white) !important; border-color: #ddd8d2 !important; }
body[data-page="urun-detay"] .product-detail-hero { padding-block: 86px 112px; }
body[data-page="urun-detay"] .product-detail-stage { min-height: 610px; border: 0; background: var(--warm-white); }
body[data-page="urun-detay"] .product-detail-stage::before { content: ""; position: absolute; top: 50%; left: 50%; width: 76%; aspect-ratio: 1; border: 1px solid #ded9d3; border-radius: 50%; transform: translate(-50%,-50%); }
body[data-page="urun-detay"] .product-detail-stage::after { background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.04)); }
body[data-page="urun-detay"] .product-detail-stage img { position: relative; z-index: 1; max-width: 92%; mix-blend-mode: multiply; }
body[data-page="urun-detay"] .product-detail-hero h1 { font-size: clamp(44px,4.5vw,68px) !important; line-height: 1.02; letter-spacing: -.05em; }
body[data-page="urun-detay"] .product-benefits-section { padding-block: 110px; }
body[data-page="urun-detay"] .product-benefit { background: #fff; }
body[data-page="urun-detay"] .product-context-copy { background: var(--charcoal); color: rgba(255,255,255,.65); }
body[data-page="urun-detay"] .product-context-copy h2 { color: #fff; }
body[data-page="urun-detay"] .product-official-section { padding-block: 110px; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.58); }
.footer-lead { border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-lead__inner { display: grid; grid-template-columns: 8fr 4fr; align-items: center; gap: 50px; min-height: 300px; }
.footer-lead h2 { max-width: 820px; color: #fff; font-size: clamp(42px,5vw,70px); line-height: 1.02; letter-spacing: -.055em; }
.footer-lead__cta { justify-self: end; display: flex; align-items: center; justify-content: space-between; width: 190px; height: 190px; padding: 26px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: background .35s ease, border-color .35s ease, transform .4s var(--ease-editorial); }
.footer-lead__cta:hover { border-color: var(--canon-red); background: var(--canon-red); transform: rotate(-4deg) scale(1.03); }
.footer-main { display: grid; grid-template-columns: 4fr 2fr 2fr 4fr; gap: 50px; padding-top: 84px; padding-bottom: 84px; }
.footer-brand-col { padding-right: 40px; }
.footer-brand { margin-bottom: 26px; }
.footer-brand-col > p { max-width: 350px; font-size: 14px; line-height: 1.75; }
.footer-social { display: flex; gap: 20px; margin-top: 30px; }
.footer-social a { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-social a:hover { color: #fff; }
.footer-social span { color: var(--canon-red); }
.footer-col, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-col h2, .footer-contact h2 { margin-bottom: 14px; color: #fff; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a, .footer-contact a, .footer-contact p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.6; }
.footer-col a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact__phone { margin: 8px 0; color: #fff !important; font-size: clamp(22px,2.3vw,31px) !important; font-weight: 700; letter-spacing: -.03em; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; font-size: 10px; letter-spacing: .05em; }
.footer-bottom__inner div { display: flex; gap: 26px; }
.footer-bottom a { color: rgba(255,255,255,.68); }

/* Motion */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease-editorial), transform .8s var(--ease-editorial); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-reveal="delay-1"] { transition-delay: 80ms; }
[data-reveal="delay-2"] { transition-delay: 160ms; }
[data-reveal="delay-3"] { transition-delay: 240ms; }
@keyframes dash-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav__links { gap: 18px; }
  .nav-cta { display: none; }
  .cinematic-hero__layout { grid-template-columns: minmax(0,1fr) 190px; gap: 35px; }
  .footer-main { grid-template-columns: 5fr 2fr 2fr 3fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --header-height: 104px; }
  .utility-bar { height: 32px; }
  .utility-bar__status { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .utility-bar__links a:not(:last-child) { display: none; }
  .primary-nav { height: 72px; }
  .primary-nav__links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .nav-brand__teknomak { height: 31px; }
  .cinematic-hero { height: min(780px, calc(100svh - var(--header-height))); min-height: 650px; }
  .cinematic-hero__layout { display: flex; align-items: center; height: calc(100% - 78px); }
  .cinematic-hero__copy { padding-right: 20%; }
  .hero-proof { display: none; }
  .cinematic-hero__footer { height: 78px; }
  .hero-capabilities span { padding: 0 15px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .experience-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 310px; min-height: 0; }
  .experience-card--large { grid-column: 1 / 3; grid-row: auto; }
  .service-story { grid-template-columns: 1fr; }
  .service-story__media { min-height: 620px; }
  .numbers-section__heading { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .numbers-grid > div:nth-child(2) { border-right: 0; }
  .numbers-grid > div:nth-child(n+3) { margin-top: 35px; padding-top: 35px; border-top: 1px solid rgba(255,255,255,.25); }
  .canon-bridge__layout { grid-template-columns: 1fr; min-height: 0; padding-block: 80px; }
  .canon-bridge__mark { padding: 0 0 48px; border-right: 0; border-bottom: 1px solid #d7d2cb; }
  .canon-bridge__copy { padding: 55px 0 0; }
  .footer-lead__inner { grid-template-columns: 1fr; padding-block: 72px; }
  .footer-lead__cta { justify-self: start; width: 150px; height: 150px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / 3; padding: 0 0 28px; }
}

@media (max-width: 640px) {
  :root { --header-height: 100px; }
  .container-max { padding-inline: 20px; }
  .utility-bar { height: 30px; }
  .utility-bar__inner { padding-inline: 16px; }
  .utility-bar__status { font-size: 8px; letter-spacing: .06em; }
  .utility-bar__links { display: none; }
  .primary-nav { height: 70px; }
  .primary-nav__inner { padding-inline: 16px; }
  .nav-brand { gap: 9px; }
  .nav-brand__teknomak { height: 27px; }
  .nav-brand__canon { height: 14px; }
  .nav-brand__divider { height: 23px; }
  .cinematic-hero { height: 720px; min-height: 0; }
  .cinematic-hero__media video { object-position: 62% center; }
  .cinematic-hero__veil { background: linear-gradient(180deg, rgba(12,12,12,.34), rgba(12,12,12,.88) 64%, rgba(12,12,12,.98)); }
  .cinematic-hero__layout { align-items: flex-end; height: calc(100% - 76px); padding-bottom: 42px; }
  .cinematic-hero__copy { padding-right: 0; }
  .cinematic-hero h2 { font-size: clamp(44px,13vw,58px); }
  .hero-summary { max-width: 95%; font-size: 15px; }
  .hero-actions { gap: 19px; margin-top: 29px; }
  .btn-primary, .btn-secondary, .btn-ghost, .btn-outline-dark { min-height: 48px; padding-inline: 19px; }
  .cinematic-hero__footer { height: 76px; }
  .hero-capabilities { display: none; }
  .authority-strip__track { height: 52px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading--controls { align-items: flex-start; flex-direction: column; }
  .slider-controls .text-link { margin-right: auto; }
  .experience-grid { display: flex; flex-direction: column; min-height: 0; }
  .experience-card { min-height: 390px; }
  .experience-card:not(.experience-card--large) { min-height: 310px; }
  .experience-card__copy { padding: 25px; }
  .service-story__media { min-height: 460px; }
  .service-story__content { padding: 64px 20px; }
  .service-story__intro h2 { font-size: 44px; }
  .numbers-grid { margin-top: 50px; }
  .numbers-grid > div { padding-right: 12px; }
  .numbers-grid > div:not(:first-child) { padding-left: 12px; }
  .numbers-grid strong { font-size: 48px; }
  .numbers-grid span { font-size: 8px; }
  .canon-bridge__layout { padding-block: 64px; }
  .canon-bridge__copy h2 { font-size: 40px; }
  .footer-lead__inner { padding-block: 64px; }
  .footer-lead h2 { font-size: 42px; }
  .footer-main { grid-template-columns: 1fr; padding-block: 62px; }
  .footer-brand-col { grid-column: auto; }
  .footer-contact { margin-top: 20px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
  .footer-bottom__inner { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child > .container-max { min-height: 320px; padding-top: 65px !important; padding-bottom: 54px !important; }
  body:not([data-page="index"]):not([data-page="urun-detay"]) main > section:first-child h1 { font-size: 44px !important; }
  body:not([data-page="index"]) .section { padding-block: 70px; }
  #category-filter { flex-wrap: nowrap !important; margin-inline: -20px; padding-inline: 20px; overflow-x: auto; scrollbar-width: none; }
  #category-filter::-webkit-scrollbar { display: none; }
  #category-filter .filter-chip { flex: 0 0 auto; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .authority-strip__track { animation: none; }
  .cinematic-hero__media { transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .experience-card img, .card, .mega-panel { transition: none; }
}

/* ========================================================================== 
   PRODUCT CATALOG EXPLORER — image-led families + task-first discovery
   ========================================================================== */
body[data-page="urunler"] { background: var(--warm-white); }

body[data-page="urunler"] main > section.catalog-hero {
  overflow: hidden;
  background: var(--charcoal) !important;
}
body[data-page="urunler"] main > section.catalog-hero::after { display: none; }
body[data-page="urunler"] main > section.catalog-hero > .catalog-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  min-height: 610px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.catalog-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 84px clamp(40px, 5vw, 78px) 84px 0;
}
body[data-page="urunler"] .catalog-hero h1 {
  max-width: 690px;
  color: #fff;
  font-size: clamp(52px, 5.2vw, 76px) !important;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.06em;
}
.catalog-hero__lede {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255,255,255,.65) !important;
  font-size: 17px;
  line-height: 1.72;
}
.catalog-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.catalog-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.catalog-hero__facts span {
  min-width: 145px;
  padding: 19px 24px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-hero__facts span + span { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.16); }
.catalog-hero__facts strong {
  margin-right: 6px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.04em;
}
.catalog-hero__media {
  position: relative;
  min-width: 0;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  background: var(--warm-stone);
}
.catalog-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22,22,22,.25), transparent 28%), linear-gradient(180deg, transparent 62%, rgba(0,0,0,.62));
  pointer-events: none;
}
.catalog-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.8) contrast(1.03);
  transition: transform 1.1s var(--ease-editorial);
}
.catalog-hero:hover .catalog-hero__media img { transform: scale(1.025); }
.catalog-hero__media-note {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 31px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
}
.catalog-hero__media-note span { font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.catalog-hero__media-note strong { font-size: 15px; letter-spacing: -.02em; }

body[data-page="urunler"] main > section.catalog-categories { background: #fff !important; }
.catalog-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: end;
  margin-bottom: 62px;
}
.catalog-section-heading h2,
.catalog-toolbar h2,
.catalog-guidance__copy h2 {
  color: var(--ink);
  font-size: clamp(40px, 4.7vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.catalog-section-heading > div:last-child > p { font-size: 16px; line-height: 1.75; }
.catalog-reset { margin-top: 24px; }

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 248px;
  gap: 16px;
}
.catalog-loading { grid-column: 1 / -1; padding: 72px 0; text-align: center; font-size: 16px; }
.catalog-category-card {
  position: relative;
  grid-column: span 3;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--charcoal);
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  animation: catalog-item-in .62s var(--ease-editorial) both;
  animation-delay: calc(var(--category-index) * 55ms);
}
.catalog-category-card:first-child { grid-column: span 6; grid-row: span 2; }
.catalog-category-card:nth-child(n+6) { grid-column: span 6; }
.catalog-category-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 -3px 0 transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
  pointer-events: none;
}
.catalog-category-card:hover::after,
.catalog-category-card:focus-visible::after { border-color: rgba(255,255,255,.5); }
.catalog-category-card.is-active::after { border-color: var(--canon-red); box-shadow: inset 0 -4px 0 var(--canon-red); }
.catalog-category-card:focus-visible { outline: 3px solid var(--canon-red); outline-offset: 3px; }
.catalog-category-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
  transition: transform .8s var(--ease-editorial), filter .5s ease;
}
.catalog-category-card:hover > img,
.catalog-category-card:focus-visible > img { transform: scale(1.055); filter: saturate(.9) contrast(1.06); }
.catalog-category-card__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.04) 20%, rgba(10,10,10,.9) 100%);
}
.catalog-category-card__number {
  position: absolute;
  top: 20px;
  left: 22px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}
.catalog-category-card__copy {
  position: absolute;
  right: 24px;
  bottom: 23px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.catalog-category-card__copy > span {
  color: rgba(255,255,255,.64);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.catalog-category-card__copy strong {
  max-width: 560px;
  margin-top: 8px;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.catalog-category-card:not(:first-child) .catalog-category-card__copy strong { font-size: clamp(18px, 1.5vw, 23px); }
.catalog-category-card__copy small {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.catalog-category-card__copy .material-symbols-outlined { font-size: 16px; transition: transform .3s var(--ease-editorial); }
.catalog-category-card:hover .catalog-category-card__copy .material-symbols-outlined { transform: translate(3px, -3px); }

.catalog-results { border-top: 1px solid #ddd8d2; background: var(--warm-white); scroll-margin-top: 78px; }
.catalog-results__inner { padding-top: 108px; padding-bottom: 116px; }
.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: end;
}
.catalog-count { margin-top: 18px; color: var(--muted-ink); font-size: 13px; font-weight: 600; }
.catalog-search-wrap > label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.catalog-search {
  display: grid;
  grid-template-columns: 24px 1fr 32px;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 0 16px 0 20px;
  border: 1px solid #d7d2cc;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.catalog-search:focus-within { border-color: var(--ink); box-shadow: 0 12px 34px rgba(20,20,20,.07); }
.catalog-search > .material-symbols-outlined { color: var(--canon-red); font-size: 22px; }
.catalog-search input {
  min-width: 0;
  height: 60px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
}
.catalog-search input::-webkit-search-cancel-button { display: none; }
.catalog-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--muted-ink);
}
.catalog-search button:hover { color: var(--canon-red); }
.catalog-search button .material-symbols-outlined { font-size: 19px; }
.catalog-search button[hidden] { display: none; }

.catalog-filter-tabs {
  display: flex;
  align-items: stretch;
  margin-top: 50px;
  margin-bottom: 38px;
  overflow-x: auto;
  border-top: 1px solid #d7d2cc;
  border-bottom: 1px solid #d7d2cc;
  scrollbar-width: none;
}
.catalog-filter-tabs::-webkit-scrollbar { display: none; }
.catalog-filter-tab {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
  border-right: 1px solid #d7d2cc;
  color: var(--muted-ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease;
}
.catalog-filter-tab small { color: #aaa49e; font-size: 9px; }
.catalog-filter-tab:hover { color: var(--canon-red); }
.catalog-filter-tab.is-active { background: var(--charcoal); color: #fff; }
.catalog-filter-tab.is-active small { color: rgba(255,255,255,.55); }
.catalog-filter-tab:focus-visible { outline: 2px solid var(--canon-red); outline-offset: -4px; }

@media (min-width: 901px) {
  .catalog-filter-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
  .catalog-filter-tab { justify-content: space-between; min-width: 0; text-align: left; }
  .catalog-filter-tab:nth-child(-n+4) { border-bottom: 1px solid #d7d2cc; }
  .catalog-filter-tab:nth-child(4n) { border-right: 0; }
}

#product-grid.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body[data-page="urunler"] #product-grid .product-card__media { min-height: 275px; padding: 30px; }
body[data-page="urunler"] #product-grid .product-card__media img { height: 190px; }
body[data-page="urunler"] #product-grid .product-card__body { padding: 23px 22px 21px; }
body[data-page="urunler"] #product-grid .product-card__body h3 { font-size: 18px; }
.catalog-product-enter {
  animation: catalog-item-in .5s var(--ease-editorial) both;
  animation-delay: calc(var(--catalog-index) * 38ms);
}
.catalog-empty {
  grid-column: 1 / -1;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border: 1px solid #d7d2cc;
  background: #fff;
  text-align: center;
}
.catalog-empty > .material-symbols-outlined { color: var(--canon-red); font-size: 42px; }
.catalog-empty h3 { margin-top: 18px; font-size: 25px; }
.catalog-empty p { margin-top: 10px; font-size: 15px; }
.catalog-empty .text-link { margin-top: 25px; }
.catalog-load-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #d7d2cc;
}
.catalog-load-more p { color: var(--muted-ink); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.catalog-load-more button[hidden] { display: none; }

.catalog-guidance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 620px;
  background: var(--charcoal);
}
.catalog-guidance__media { min-height: 520px; overflow: hidden; }
.catalog-guidance__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(.72) contrast(1.04); }
.catalog-guidance__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px);
  color: rgba(255,255,255,.62);
}
.catalog-guidance__copy h2 { color: #fff; }
.catalog-guidance__copy > p:not(.eyebrow) { max-width: 630px; margin-top: 29px; font-size: 17px; line-height: 1.75; }
.catalog-guidance__copy > div { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; margin-top: 38px; }
.text-link--light { color: #fff; }
.text-link--light:hover { color: var(--canon-red); }

@keyframes catalog-item-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  body[data-page="urunler"] main > section.catalog-hero > .catalog-hero__layout { grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); }
  .catalog-hero__facts span { min-width: 0; }
  .catalog-category-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .catalog-category-card:first-child { grid-column: span 6; grid-row: span 1; }
  .catalog-category-card { grid-column: span 3; }
  .catalog-category-card:nth-child(n+6) { grid-column: span 3; }
  #product-grid.catalog-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body[data-page="urunler"] main > section.catalog-hero > .catalog-hero__layout { grid-template-columns: 1fr; }
  .catalog-hero__copy { padding: 72px 0 62px; }
  .catalog-hero__media { min-height: 430px; margin-right: 0; margin-inline: -32px; }
  .catalog-hero__media img { min-height: 430px; }
  .catalog-section-heading,
  .catalog-toolbar { grid-template-columns: 1fr; gap: 38px; }
  .catalog-results__inner { padding-top: 82px; padding-bottom: 90px; }
  .catalog-search-wrap { max-width: 620px; }
  #product-grid.catalog-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-guidance { grid-template-columns: 1fr; }
  .catalog-guidance__media { min-height: 430px; }
}

@media (max-width: 640px) {
  body[data-page="urunler"] main > section.catalog-hero > .catalog-hero__layout { min-height: 0; }
  .catalog-hero__copy { padding: 62px 0 52px; }
  body[data-page="urunler"] .catalog-hero h1 { font-size: clamp(43px, 13vw, 56px) !important; }
  .catalog-hero__lede { margin-top: 24px; font-size: 15px; }
  .catalog-hero__actions { align-items: stretch; flex-direction: column; width: 100%; }
  .catalog-hero__actions a { width: 100%; }
  .catalog-hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; margin-top: 40px; }
  .catalog-hero__facts span { padding: 16px 10px 0 0; font-size: 7px; }
  .catalog-hero__facts span + span { padding-left: 10px; }
  .catalog-hero__facts strong { display: block; margin: 0 0 4px; font-size: 20px; }
  .catalog-hero__media { min-height: 330px; margin-inline: -20px; }
  .catalog-hero__media img { min-height: 330px; object-position: 64% center; }
  .catalog-hero__media-note { right: 20px; bottom: 20px; left: 20px; align-items: flex-start; flex-direction: column; gap: 5px; }

  .catalog-section-heading { margin-bottom: 40px; }
  .catalog-section-heading h2,
  .catalog-toolbar h2,
  .catalog-guidance__copy h2 { font-size: 40px; }
  .catalog-category-grid {
    display: flex;
    gap: 12px;
    margin-inline: -20px;
    padding: 0 20px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .catalog-category-grid::-webkit-scrollbar { display: none; }
  .catalog-category-card,
  .catalog-category-card:first-child,
  .catalog-category-card:nth-child(n+6) {
    flex: 0 0 84%;
    min-height: 365px;
    scroll-snap-align: start;
  }
  .catalog-category-card:not(:first-child) .catalog-category-card__copy strong { font-size: 24px; }

  .catalog-results__inner { padding-top: 70px; padding-bottom: 76px; }
  .catalog-filter-tabs { margin: 36px -20px 28px; padding-left: 20px; }
  .catalog-filter-tab { min-height: 54px; padding-inline: 16px; }
  #product-grid.catalog-product-grid { grid-template-columns: 1fr; }
  body[data-page="urunler"] #product-grid .product-card__media { min-height: 315px; }
  body[data-page="urunler"] #product-grid .product-card__media img { height: 220px; }
  .catalog-load-more { align-items: stretch; flex-direction: column; }
  .catalog-load-more .btn-secondary { width: 100%; }
  .catalog-guidance__media { min-height: 330px; }
  .catalog-guidance__copy { padding: 62px 20px; }
  .catalog-guidance__copy > div { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-hero__media img,
  .catalog-category-card,
  .catalog-category-card > img,
  .catalog-product-enter { animation: none; transition: none; }
}
