body.bee1-native-shell {
  --bee1-red: #c8102e;
  --bee1-dark: #1d1d1b;
  --bee1-text: #4d4d4f;
  --bee1-muted: #64748b;
  --bee1-border: #e2e8f0;
  --bee1-white: #fff;
  --bee1-light: #f8fafc;
  --bee1-font: 'OpenSansHebrew', Arial, sans-serif;
  font-family: var(--bee1-font);
}

.bee1-site-header,
.bee1-site-footer,
body.bee1-native-shell button,
body.bee1-native-shell input,
body.bee1-native-shell select,
body.bee1-native-shell textarea {
  font-family: var(--bee1-font);
}

.bee1-shell-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.bee1-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--bee1-border);
  box-shadow: 0 4px 18px rgba(15, 23, 42, .06);
  backdrop-filter: blur(12px);
}

.bee1-site-header .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bee1-topbar {
  display: flex;
  justify-content: flex-start;
  min-height: 34px;
  border-bottom: 1px solid rgba(226, 232, 240, .75);
  color: var(--bee1-muted);
  font-size: 13px;
}

.bee1-topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bee1-topbar a {
  color: inherit;
  text-decoration: none;
}

.bee1-topbar a:hover,
.bee1-main-nav a:hover,
.bee1-footer-menu a:hover {
  color: var(--bee1-red);
}

.bee1-topbar-phone {
  direction: ltr;
}

.bee1-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.bee1-site-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.bee1-site-logo img {
  width: 178px;
  max-height: 52px;
  object-fit: contain;
}

.bee1-main-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex: 1 1 auto;
}

.bee1-main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bee1-main-nav li {
  position: relative;
  margin: 0;
  padding: 0;
}

.bee1-main-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--bee1-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.bee1-main-nav > li > a:hover,
.bee1-main-nav > li.current-menu-item > a,
.bee1-main-nav > li.current-menu-ancestor > a {
  background: rgba(200, 16, 46, .06);
  color: var(--bee1-red);
}

.bee1-main-nav .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--bee1-white);
  border: 1px solid var(--bee1-border);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.bee1-main-nav li:hover > .sub-menu,
.bee1-main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bee1-main-nav .sub-menu a {
  justify-content: flex-start;
  min-height: 38px;
  padding: 8px 16px;
  color: var(--bee1-text);
  font-size: 14px;
}

.bee1-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--bee1-red);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.bee1-nav-cta:hover {
  color: #fff;
  background: #a70d25;
}

.bee1-nav-search {
  position: relative;
}

.bee1-search-toggle,
.bee1-hamburger {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.bee1-search-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--bee1-dark);
}

.bee1-search-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.bee1-search-form {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: flex;
  gap: 6px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--bee1-border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.bee1-nav-search.is-open .bee1-search-form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bee1-search-form input {
  min-width: 210px;
  border: 1px solid var(--bee1-border);
  padding: 8px 10px;
}

.bee1-search-form button {
  border: 0;
  background: var(--bee1-red);
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
}

.bee1-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.bee1-hamburger span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bee1-dark);
}

.bee1-site-footer {
  background: #151515;
  color: rgba(255, 255, 255, .82);
  padding: 58px 0 24px;
}

.bee1-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.bee1-footer-logo {
  width: 180px;
  max-height: 58px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.bee1-footer-brand p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.bee1-footer-social {
  display: flex;
  gap: 10px;
}

.bee1-footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.bee1-footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 17px;
}

.bee1-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bee1-footer-menu li {
  margin: 0 0 9px;
}

.bee1-footer-menu a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.bee1-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.bee1-footer-bottom a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .bee1-main-nav a {
    padding: 0 8px;
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .bee1-shell-container {
    padding: 0 18px;
  }

  .bee1-topbar {
    display: none;
  }

  .bee1-nav {
    min-height: 66px;
  }

  .bee1-hamburger {
    display: flex;
  }

  .bee1-main-nav-wrap {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px 20px;
    background: #fff;
    border-bottom: 1px solid var(--bee1-border);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
  }

  .bee1-main-nav-wrap.is-open {
    display: flex;
  }

  .bee1-main-nav {
    display: block;
  }

  .bee1-main-nav a {
    justify-content: space-between;
    min-height: 42px;
    border-bottom: 1px solid rgba(226, 232, 240, .8);
  }

  .bee1-main-nav .sub-menu {
    position: static;
    display: none;
    min-width: 0;
    box-shadow: none;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 12px 6px;
  }

  .bee1-main-nav .submenu-open > .sub-menu {
    display: block;
  }

  .bee1-nav-cta {
    width: 100%;
  }

  .bee1-search-form {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0;
  }

  .bee1-search-toggle {
    display: none;
  }

  .bee1-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .bee1-footer-inner {
    grid-template-columns: 1fr;
  }

  .bee1-footer-bottom {
    flex-direction: column;
  }
}
