/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 67:0 Unexpected "<"

**/
<style>
  /* מבטל ריצודים ומבטיח כיסוי מלא */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
  }

  /* מסך טעינה */
  #unglaz-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
  }

  /* לוגו UNGLAZ בסגנון Cartier */
  #unglaz-preloader-logo {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    letter-spacing: 7px;
    color: #000000;
    animation: unglazFade 1.8s ease-in-out infinite;
  }

  /* קו דק שמתארך מתחת ללוגו */
  #unglaz-preloader-line {
    width: 0;
    height: 1px;
    background: black;
    margin-top: 14px;
    animation: unglazLine 1.8s ease-in-out infinite;
  }

  /* נשימה */
  @keyframes unglazFade {
    0%   { opacity: 0.3; }
    50%  { opacity: 1; }
    100% { opacity: 0.3; }
  }

  /* קו שנמתח */
  @keyframes unglazLine {
    0%   { width: 0px; opacity: 0.3; }
    50%  { width: 120px; opacity: 1; }
    100% { width: 0px; opacity: 0.3; }
  }

  /* הסתרה */
  #unglaz-preloader.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
</style>
