/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 43:0 Unexpected "<"

**/
<style>
/* ===== HEADER CLEAN FIX ===== */
header {
  padding: 0 !important;
  margin: 0 !important;
  min-height: unset !important;
}

/* הסרת חיפוש ו-X */
button[aria-label*="search"],
button[aria-label*="Search"],
details-modal,
.header__icon--search,
.search-toggle,
.search-icon,
.header__close,
.close-icon {
  display: none !important;
}

/* צמצום תוכן ההדר */
.header__inner,
.header__wrapper {
  padding: 10px 20px !important;
}

/* חיזוק טקסט / לוגו */
.header__heading,
.header__heading-link,
.site-title {
  font-weight: 600 !important;
  letter-spacing: 0.4px;
  text-shadow:
    0 0 6px rgba(255,255,255,0.35),
    0 2px 10px rgba(0,0,0,0.45);
}
</style>

<script>
/* הסרת רווח לבן מתחת להדר אם קיים */
document.addEventListener("DOMContentLoaded", () => {
  const header = document.querySelector("header");
  if (header) {
    header.style.paddingBottom = "0";
    header.style.marginBottom = "0";
  }
});
</script>
