/**
 * Üst şerit / header görünürlüğü (html.web-desktop | html.web-mobile).
 * Breakpoint: document.documentElement[data-web-desktop-min] — varsayılan 1024, config ile eşleşmeli.
 */

/* Mobil öncelikli varsayılan (script çalışana kadar) */
.web-only-desktop-header {
  display: none !important;
}

.web-only-mobile-header {
  display: block !important;
}

body.web-layout {
  padding-top: 56px !important;
}

html.web-desktop .web-only-desktop-header {
  display: block !important;
}

html.web-desktop .web-only-mobile-header {
  display: none !important;
}

html.web-desktop body.web-layout {
  padding-top: 0 !important;
}

html.web-mobile .web-only-desktop-header {
  display: none !important;
}

html.web-mobile .web-only-mobile-header {
  display: block !important;
}

html.web-mobile body.web-layout {
  padding-top: 56px !important;
}
