.elementor-252 .elementor-element.elementor-element-a55a9e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-252 .elementor-element.elementor-element-28b1e6aa{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-28b1e6aa *//* בסיס ההדר */
.site-header {
  background: #f7f4ee;
  border-bottom: 1px solid #ddd3c4;
  width: 100%;
  font-family: 'Heebo', Arial, sans-serif;
}
.site-header .nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-header .logo img {
  height: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header .logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.site-header .logo-text {
  font-weight: 700;
  font-size: 22px;
  color: #8b1a1a;
  transition: color 0.3s ease;
}
.site-header .logo-subtext {
  font-weight: 500;
  font-size: 16px;
  color: #b8860b;
  margin-top: 2px;
}
.site-header .logo:hover .logo-text { color: #2c2416; }
.site-header .logo:hover img { transform: scale(1.05); box-shadow: 0 4px 10px rgba(0,0,0,0.25); }

/* תפריט ההדר */
.site-header .header-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .header-menu a {
  text-decoration: none;
  color: #2c2416;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  line-height: 1.6;
  transition: all 0.3s ease;
}
.site-header .header-menu a:hover {
  color: #8b1a1a;
  border-bottom-color: #8b1a1a;
}

/* מסתיר את הצ'קבוקס לגמרי */
#menu-toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* אייקון המבורגר */
.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 10000;
}
.site-header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #8b1a1a;
  transition: all 0.4s ease;
}

/* מובייל */
@media (max-width: 768px) {
  .site-header .logo img { height: 50px; }

  .site-header .header-menu {
    display: none;
    flex-direction: column;
    background: #f7f4ee;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ddd3c4;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
  }
  .site-header .header-menu li { margin-bottom: 12px; }

  #menu-toggle-checkbox:checked ~ .header-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header .menu-toggle { display: flex; }

  #menu-toggle-checkbox:checked + .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #menu-toggle-checkbox:checked + .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle-checkbox:checked + .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* התאמות ללוגו גדול במיוחד */
.site-header .logo img {
  height: 100px;
}
@media (max-width: 768px) {
  .site-header .logo img {
    height: 75px;
  }
}

/* תפריט נפתח */
.header-menu .has-submenu {
  position: relative;
}
.header-menu .has-submenu > a::after {
  content: " ▾";
  font-size: 12px;
}
.header-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #f7f4ee;
  border: 1px solid #ddd3c4;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 220px;
  z-index: 9999;
}
.header-menu .submenu a {
  display: block;
  padding: 8px 15px;
  color: #2c2416;
  text-decoration: none;
  transition: background 0.3s ease;
}
.header-menu .submenu a:hover {
  background: #ddd3c4;
  color: #8b1a1a;
}
.header-menu .has-submenu:hover .submenu {
  display: block;
}
@media (max-width: 768px) {
  .header-menu .submenu {
    position: static;
    border: none;
    background: none;
    padding: 0;
    min-width: auto;
  }
  .header-menu .submenu a {
    padding: 8px 0;
  }
}

/* כפתורים צפים */
.floating-button {
  position: fixed;
  right: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.25s ease;
}
.floating-button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

.floating-whatsapp { bottom: 20px; background-color: #25D366; }
.floating-phone    { bottom: 92px; background-color: #8B1A1A; }
.floating-facebook { bottom: 164px; background-color: #1877F2; }
.floating-youtube  { bottom: 236px; background-color: #FF0000; }

/* מובייל */
@media (max-width: 480px) {
  .floating-button {
    width: 48px;
    height: 48px;
    font-size: 20px;
    right: 12px;
  }
  .floating-whatsapp { bottom: 12px; }
  .floating-phone    { bottom: 68px; }
  .floating-facebook { bottom: 124px; }
  .floating-youtube  { bottom: 180px; }
}

.site-header {
  position: relative;
  z-index: 10000;
}

/* כפתור שפות */
.floating-language {
  position: fixed;
  right: 20px;
  bottom: 308px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #4285F4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.25s ease;
}
.floating-language:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* טקסט "שפות" */
.floating-language-label {
  position: fixed;
  right: 20px;
  bottom: 380px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 9999;
}

/* מובייל */
@media (max-width: 480px) {
  .floating-language {
    width: 48px;
    height: 48px;
    font-size: 20px;
    right: 12px;
    bottom: 240px;
  }
  .floating-language-label {
    right: 12px;
    bottom: 290px;
    font-size: 12px;
  }
}

/* תיקון הצגת האייקונים */
.floating-button i {
  font-size: 28px;
  color: #fff;
  display: block;
}
.site-header .header-menu {
  flex-wrap: wrap;
}
 .site-header .header-menu {
  gap: 14px; /* במקום 20px */
}
/* כוכב זהב בין פריטי התפריט – לא תופס מקום */
.site-header .header-menu li {
  position: relative;
}

.site-header .header-menu li:not(:last-child)::after {
  content: "✦";
  color: #b8860b; /* זהב */
  position: absolute;
  left: -12px; /* מיקום אופקי */
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  pointer-events: none;
}
/* מוריד רק את התפריט למטה בלי לגעת בלוגו */
.site-header .header-menu {
  margin-top: 20px !important;
}
/* מרווח קטן בין פריטי התפריט ליהלום */
.site-header .header-menu li:not(:last-child) {
  padding-left: 2px; /* מרווח קטן לפני היהלום */
}/* End custom CSS */
/* Start custom CSS */<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">/* End custom CSS */