.site-header,
.site-header * {
  font-family: "Arial Hebrew", Arial, sans-serif;
}

.site-header .global-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 7px;
  width: min(100%, 760px);
  flex: 1 1 700px;
}

.site-header .global-nav::after {
  display: none;
}

.site-header .global-nav a {
  border-radius: 999px;
  padding: 9px 12px;
  color: #17312d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-header .global-nav a:hover {
  background: #e8f4ef;
  color: #095344;
}

.site-header .brand-title-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.site-header .brand-with {
  font-size: 14px;
  font-weight: 400;
}

.site-header .brand small {
  max-width: 300px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.site-header .brand small span {
  display: block;
}

.site-header .global-nav a[href="/"] { grid-row: 1; grid-column: 1; }
.site-header .global-nav a[href="/about/"] { grid-row: 1; grid-column: 2; }
.site-header .global-nav a[href="/sugar-balance-course/"] { grid-row: 1; grid-column: 3; }
.site-header .global-nav a[href="/food-as-medicine/"] { grid-row: 1; grid-column: 4; }
.site-header .global-nav a[href="/vitamins/"] { grid-row: 1; grid-column: 5; }
.site-header .global-nav a[href="/books/"] { grid-row: 2; grid-column: 2; }

.site-header .global-nav .app-nav {
  grid-row: 2;
  grid-column: 5;
  border: 2px solid #c98c16;
  background: #ffd86a;
  color: #3f2d00;
  box-shadow: 0 5px 14px rgba(201, 140, 22, .22);
}

.site-header .global-nav .app-nav:hover {
  border-color: #b87900;
  background: #e3a225;
  color: #fff;
}

.site-header .global-nav .whatsapp-nav {
  background: #0f755f;
  color: #fff;
  grid-row: 2;
  grid-column: 3;
}

.site-header .global-nav a[href="/japanese-mindfulness/"] {
  grid-row: 2;
  grid-column: 4;
  border: 2px solid #cf5b2d;
  background: #fff0e8;
  color: #7a2d10;
  box-shadow: 0 5px 14px rgba(207, 91, 45, .2);
}

.site-header .global-nav a[href="/japanese-mindfulness/"]:hover {
  border-color: #c84f20;
  background: #f56b35;
  color: #fff;
}

.site-header .global-nav a[href="/food-as-medicine/"] {
  border: 1px solid #ead69b;
  background: #fff3cf;
  color: #513900;
}

.site-header .global-nav a[href="/food-as-medicine/"]:hover {
  border-color: #ffd86a;
  background: #ffd86a;
  color: #3f2d00;
}

.site-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 22px 18px;
  background: #17312d;
  font-family: "Arial Hebrew", Arial, sans-serif;
}

.site-bottom-nav {
  width: min(100%, 1180px);
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.site-bottom-nav a {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  padding: 9px 13px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.site-bottom-nav a:hover {
  border-color: #ffd86a;
  background: #ffd86a;
  color: #513900;
}

.site-bottom-nav a[href*="whatsapp.com/channel/"] {
  order: 20;
}

.site-bottom-nav .app-nav {
  order: 25;
  border: 2px solid #ffd86a;
  background: #ffd86a;
  color: #3f2d00;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.site-bottom-nav .app-nav:hover {
  border-color: #fff0bd;
  background: #fff0bd;
  color: #3f2d00;
}

.site-bottom-nav a[href="/japanese-mindfulness/"] {
  order: 30;
  border: 2px solid #ff9a70;
  background: #f56b35;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .22);
}

.site-bottom-nav a[href="/japanese-mindfulness/"]:hover {
  border-color: #ffd1bd;
  background: #fff0e8;
  color: #7a2d10;
}

.site-header .global-nav a:focus-visible,
.site-bottom-nav a:focus-visible {
  outline: 3px solid #e3a225;
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .site-header .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header .global-nav {
    width: 100%;
    height: auto;
    min-height: 0;
    flex: 0 0 auto;
    align-self: stretch;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    grid-auto-rows: auto;
    gap: 4px;
    padding-bottom: 0;
  }

  .site-header .global-nav a {
    padding: 6px 4px;
    min-height: 38px;
    height: auto;
    font-size: 10px;
    white-space: normal;
    text-align: center;
  }

  .site-header .brand small {
    display: block !important;
  }

  .site-bottom-bar {
    padding: 20px 14px;
  }

  .site-bottom-nav {
    gap: 7px;
  }

  .site-bottom-nav a {
    padding: 8px 10px;
    font-size: 12px;
  }
}
