/* =========================================================
   Vishaweb Header — exact match to code_artifact (4).html
   ========================================================= */

.vhb-header {
  --vhb-dark: #4a3b32;
  --vhb-orange: #f28c28;
  --vhb-orange-hover: #d67a1f;
  --vhb-green: #5a8c3d;
  --vhb-green-hover: #466d30;
  --vhb-cream: #f4f1ea;
  --vhb-yellow: #fcd34d;
  --vhb-bg: #fcfaf3;
  --vhb-container: 1152px;

  font-family: var(--vp-font, "Vazirmatn", Tahoma, sans-serif);
  direction: rtl;
  position: relative;
  z-index: 50;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: none;
}

.vhb-header.vhb-is-sticky {
  position: sticky;
  top: 0;
}

/* WP admin bar offset */
.admin-bar .vhb-header.vhb-is-sticky {
  top: 46px;
}

@media (min-width: 783px) {
  .admin-bar .vhb-header.vhb-is-sticky {
    top: 32px;
  }
}

.vhb-header.vhb-scrolled {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .vhb-header.vhb-scrolled {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
}

.vhb-container {
  max-width: var(--vhb-container);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}

.vhb-row {
  background: var(--vhb-row-bg, #fff);
  color: var(--vhb-row-color, #222);
  display: flex;
  align-items: center;
  width: 100%;
}

.vhb-col {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.vhb-align-start { justify-content: flex-start; }
.vhb-align-center { justify-content: center; flex: 1 1 auto; }
.vhb-align-end { justify-content: flex-end; margin-inline-start: auto; }

/* ========== TOP BAR (artifact #top-bar) ========== */
.vhb-row--top {
  background: var(--vhb-dark) !important;
  color: #fcfaf3 !important;
  padding: 8px 0;
  font-size: 10px;
  font-weight: 500;
  max-height: 80px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
@media (min-width: 768px) {
  .vhb-row--top { font-size: 14px; }
}
.vhb-row--top .vhb-container {
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  text-align: center;
}
@media (min-width: 640px) {
  .vhb-row--top .vhb-container {
    flex-direction: row;
    text-align: right;
  }
}
.vhb-row--top .vhb-col { flex: 0 1 auto; }
.vhb-row--top .vhb-align-end {
  display: none;
  gap: 16px;
}
@media (min-width: 640px) {
  .vhb-row--top .vhb-align-end { display: flex; }
}

.vhb-header.vhb-scrolled .vhb-row--top,
.vhb-row--top.vhb-row--collapsed {
  max-height: 0 !important;
  opacity: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.vhb-phone a,
.vhb-phone__link {
  color: #fcfaf3;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  direction: ltr;
  transition: color 0.2s;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .vhb-phone a,
  .vhb-phone__link { gap: 8px; }
}
.vhb-phone a:hover,
.vhb-phone__link:hover { color: var(--vhb-orange); }
.vhb-phone-num {
  direction: ltr;
  unicode-bidi: isolate;
  font-weight: 500;
}
.vhb-phone-label {
  direction: rtl;
  unicode-bidi: isolate;
}

.vhb-top-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fcfaf3;
}
@media (min-width: 768px) {
  .vhb-top-promo { gap: 8px; }
}
.vhb-hl { color: var(--vhb-yellow) !important; font-weight: 700; }
.vhb-bounce {
  display: inline-block;
  font-size: 14px;
  animation: vhb-bounce 1s ease infinite;
}
@media (min-width: 768px) {
  .vhb-bounce { font-size: 16px; }
}
@keyframes vhb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25%); }
}

/* ========== MAIN HEADER ========== */
.vhb-row--main {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--vhb-cream);
  padding: 12px 0;
  box-shadow: 0 10px 30px -10px rgba(74, 59, 50, 0.08);
}
@media (min-width: 1024px) {
  .vhb-row--main { padding: 16px 0; }
}
.vhb-row--main .vhb-container {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 16px;
}
@media (min-width: 768px) {
  .vhb-row--main .vhb-container { flex-wrap: nowrap; }
}

.vhb-row--main .vhb-col:nth-child(1) {
  flex: 0 0 auto;
  order: 1;
}
.vhb-row--main .vhb-col:nth-child(2) {
  flex: 1 1 100%;
  order: 3;
  max-width: 100%;
  justify-content: stretch;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .vhb-row--main .vhb-col:nth-child(2) {
    flex: 1 1 auto;
    order: 2;
    max-width: 36rem;
    margin: 0 auto;
  }
}
.vhb-row--main .vhb-col:nth-child(3) {
  flex: 0 0 auto;
  order: 2;
  margin-inline-start: auto;
  gap: 8px;
}
@media (min-width: 768px) {
  .vhb-row--main .vhb-col:nth-child(3) {
    order: 3;
    margin-inline-start: 0;
    gap: 14px;
  }
}

/* Tools row — artifact: gap-2 md:gap-3.5, w-9/w-11 circles */
.vhb-row--main .vhb-col:nth-child(3) .vhb-tool,
.vhb-row--main .vhb-col:nth-child(3) .vhb-account,
.vhb-row--main .vhb-col:nth-child(3) .vhb-burger--inline {
  flex-shrink: 0;
}

/* Brand logo — animate-wiggle */
.vhb-logo--brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .vhb-logo--brand { gap: 12px; }
}
.vhb-logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--vhb-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(242, 140, 40, 0.3);
  animation: vhb-wiggle 2s ease-in-out infinite;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .vhb-logo__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 30px;
  }
}
@keyframes vhb-wiggle {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.vhb-logo__title {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--vhb-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .vhb-logo__title { font-size: 24px; }
}
.vhb-logo__accent { color: var(--vhb-orange); }
.vhb-logo__tagline {
  display: none;
  font-size: 9px;
  color: #9ca3af;
  font-weight: 500;
  margin-top: -2px;
}
@media (min-width: 640px) {
  .vhb-logo__tagline {
    display: block;
    font-size: 10px;
  }
}
.vhb-logo img { display: block; height: auto; max-height: 48px; }

/* Search */
.vhb-search {
  position: relative;
  width: 100%;
}
.vhb-search input[type="search"] {
  width: 100%;
  height: auto;
  min-height: 42px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--vhb-cream);
  color: var(--vhb-dark);
  padding: 10px 16px 10px 44px;
  font-size: 12px;
  font-family: inherit;
  outline: none;
  box-shadow: 0 20px 40px -15px rgba(90, 140, 61, 0.15);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .vhb-search input[type="search"] {
    min-height: 48px;
    padding: 12px 24px 12px 52px;
    font-size: 14px;
  }
}
.vhb-search input:focus {
  border-color: var(--vhb-orange);
  background: #fff;
}
.vhb-search input::placeholder { color: #9ca3af; opacity: 1; }
.vhb-search button {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--vhb-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .vhb-search button {
    left: 10px;
    width: 36px;
    height: 36px;
  }
}
.vhb-search button:hover { background: var(--vhb-orange-hover); }
.vhb-search button svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .vhb-search button svg {
    width: 16px;
    height: 16px;
  }
}

/* Tools — w-9 h-9 md:w-11 md:h-11 cream circles */
.vhb-tool {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--vhb-cream);
  color: var(--vhb-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  overflow: visible;
  flex: 0 0 36px;
  padding: 0;
}
@media (min-width: 768px) {
  .vhb-tool {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}
.vhb-tool svg {
  display: block;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .vhb-tool svg {
    width: 22px;
    height: 22px;
  }
}
.vhb-tool:hover svg {
  transform: scale(1.1);
}
.vhb-wishlist:hover {
  background: #fef2f2;
  color: #ef4444;
}
.vhb-cart:hover {
  background: rgba(90, 140, 61, 0.1);
  color: var(--vhb-green);
}

/* Badge — animate-pulse-subtle */
.vhb-badge {
  position: absolute !important;
  top: -4px !important;
  right: -4px !important;
  left: auto !important;
  bottom: auto !important;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 999px;
  background: var(--vhb-orange);
  color: #fff;
  border: 2px solid #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  box-sizing: border-box;
  margin: 0 !important;
  animation: vhb-pulse-subtle 2s ease infinite;
}
@media (min-width: 768px) {
  .vhb-badge {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 10px;
  }
}
@keyframes vhb-pulse-subtle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.03); }
}

/* Account — orange pill */
.vhb-account {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.1);
  color: var(--vhb-orange);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
@media (min-width: 640px) {
  .vhb-account { display: inline-flex; }
}
@media (min-width: 768px) {
  .vhb-account {
    padding: 8px 16px;
    font-size: 14px;
  }
}
.vhb-account:hover {
  background: rgba(242, 140, 40, 0.2);
  color: var(--vhb-orange);
}
.vhb-account svg {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .vhb-account svg {
    width: 16px;
    height: 16px;
  }
}

/* ========== BOTTOM NAV ========== */
.vhb-row--bottom {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 241, 234, 0.7);
  padding: 8px 0;
  overflow-x: auto;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vhb-row--bottom::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .vhb-row--bottom { padding: 12px 0; }
}
.vhb-row--bottom .vhb-container {
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
.vhb-row--bottom .vhb-col:nth-child(1) {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vhb-row--bottom .vhb-col:nth-child(1)::-webkit-scrollbar { display: none; }
.vhb-row--bottom .vhb-col:nth-child(2) {
  flex: 0 0 auto;
  display: none;
}
@media (min-width: 1280px) {
  .vhb-row--bottom .vhb-col:nth-child(2) { display: flex; }
}

/* Pills — exact artifact */
.vhb-pills,
.vhb-nav--pills .vhb-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0 4px 4px 0;
  white-space: nowrap;
}
.vhb-pill,
.vhb-nav--pills .vhb-menu > li > a {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none !important;
  background: var(--vhb-cream);
  color: var(--vhb-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1.25;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  border: 0;
  box-shadow: none;
}
@media (min-width: 768px) {
  .vhb-pill,
  .vhb-nav--pills .vhb-menu > li > a {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.vhb-pill:hover,
.vhb-nav--pills .vhb-menu > li > a:hover {
  background: rgba(242, 140, 40, 0.1);
  color: var(--vhb-dark);
  transform: scale(1.05);
}
.vhb-pill.is-active,
.vhb-nav--pills .vhb-menu > li:first-child > a,
.vhb-nav--pills .vhb-menu > li.current-menu-item > a {
  background: var(--vhb-orange) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.vhb-pill.is-active:hover,
.vhb-nav--pills .vhb-menu > li:first-child > a:hover {
  background: var(--vhb-orange) !important;
  color: #fff !important;
  transform: scale(1.05);
}

/* Special links — xl only */
.vhb-special,
.vhb-nav--special .vhb-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
}
.vhb-special a,
.vhb-nav--special .vhb-menu > li > a {
  text-decoration: none;
  color: var(--vhb-dark);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  font-weight: 700;
}
.vhb-special a:hover,
.vhb-nav--special .vhb-menu > li > a:hover { color: var(--vhb-orange); }
.vhb-special__hot,
.vhb-nav--special .vhb-menu > li:nth-child(1) > a {
  color: #ef4444 !important;
  animation: vhb-pulse-subtle 2s ease infinite;
}
.vhb-special__hot:hover { color: #dc2626 !important; }
.vhb-special__green,
.vhb-nav--special .vhb-menu > li:nth-child(2) > a {
  color: var(--vhb-green) !important;
}
.vhb-special__green:hover { color: var(--vhb-green-hover) !important; }

.vhb-html { width: 100%; }
.vhb-nav--links .vhb-menu {
  display: flex; gap: 12px; list-style: none; margin: 0; padding: 0;
}
.vhb-nav--links .vhb-menu a {
  color: inherit; text-decoration: none; font-weight: 700; font-size: 14px;
}

.vhb-cats { position: relative; }
.vhb-cats__btn {
  background: var(--vhb-orange); color: #fff; border: 0; border-radius: 999px;
  padding: 8px 14px; font-weight: 800; font-family: inherit; cursor: pointer;
}
.vhb-cats__list {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 200px; background: #fff; border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12); list-style: none; margin: 0; padding: 8px; z-index: 20;
}
.vhb-cats:hover .vhb-cats__list { display: block; }
.vhb-cats__list a {
  display: block; padding: 8px 10px; color: var(--vhb-dark);
  text-decoration: none; border-radius: 8px; font-size: 13px;
}
.vhb-btn {
  display: inline-flex; align-items: center; padding: 8px 16px;
  border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 13px;
}
.vhb-btn--orange { background: var(--vhb-orange); color: #fff; }
.vhb-divider { width: 1px; background: rgba(0,0,0,.12); display: inline-block; }
.vhb-spacer { display: inline-block; }

/* Mobile */
.vhb-mobile-bar { display: none !important; }
.vhb-mobile-drawer[hidden] { display: none !important; }
.vhb-mobile-drawer:not([hidden]) { display: block; }

.vhb-burger--inline {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--vhb-cream);
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.vhb-burger--inline span {
  width: 18px;
  height: 2px;
  background: var(--vhb-dark);
  display: block;
}

@media (max-width: 767px) {
  .vhb-burger--inline { display: inline-flex; }
  .vhb-wishlist { display: none; }
  .vhb-row--main .vhb-col:nth-child(3) { gap: 6px; }
}

.vhb-hide-mobile { display: none !important; }
@media (min-width: 768px) {
  .vhb-hide-mobile { display: flex !important; }
}

@media (max-width: 639px) {
  .vhb-row--bottom .vhb-special { display: none; }
  .vhb-pill,
  .vhb-nav--pills .vhb-menu > li > a {
    font-size: 11px;
    padding: 6px 10px;
  }
}

.vhb-mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2000;
}
.vhb-mobile-drawer__inner {
  width: min(320px, 86vw);
  height: 100%;
  background: #fff;
  padding: 20px;
  overflow: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.vhb-mobile-close {
  border: 0;
  background: var(--vhb-cream);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-size: 22px;
  cursor: pointer;
  margin-bottom: 16px;
}
.vhb-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vhb-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--vhb-dark);
  text-decoration: none;
  font-weight: 700;
}

/* Menu emoji */
.vp-menu-emoji {
  display: inline-flex !important;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.1em;
  line-height: 1;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
}
.vhb-pill span,
.vhb-special span {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
  line-height: 1;
}
.vhb-menu a,
.vhb-pills a,
.vhb-mobile-menu a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

/* =========================================================
   Responsive — mobile & tablet (artifact breakpoints)
   ========================================================= */

/* --- Mobile: up to 767px --- */
@media (max-width: 767px) {
  .vhb-container {
    padding: 0 12px;
    gap: 8px;
  }

  .vhb-row--main {
    padding: 10px 0;
  }

  .vhb-row--main .vhb-container {
    gap: 10px 8px;
  }

  .vhb-row--main .vhb-col:nth-child(1) {
    flex: 1 1 auto;
    min-width: 0;
  }

  .vhb-row--main .vhb-col:nth-child(2) {
    flex: 1 1 100%;
    order: 3;
    margin-top: 4px;
  }

  .vhb-row--main .vhb-col:nth-child(3) {
    flex: 0 0 auto;
    order: 2;
    gap: 6px;
  }

  .vhb-logo--brand {
    gap: 8px;
    min-width: 0;
  }

  .vhb-logo__icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 12px;
  }

  .vhb-logo__title {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .vhb-logo__tagline {
    display: none;
  }

  .vhb-search input[type="search"] {
    min-height: 40px;
    padding: 8px 14px 8px 42px;
    font-size: 12px;
    box-shadow: 0 12px 28px -14px rgba(90, 140, 61, 0.18);
  }

  .vhb-search button {
    width: 30px;
    height: 30px;
    left: 5px;
  }

  .vhb-account {
    display: none !important;
  }

  .vhb-row--bottom {
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .vhb-row--bottom::-webkit-scrollbar {
    display: none;
  }

  .vhb-row--bottom .vhb-container {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: min-content;
    padding-bottom: 2px;
  }

  .vhb-row--bottom .vhb-col:nth-child(1) {
    flex: 0 0 auto;
    overflow: visible;
  }

  .vhb-pills,
  .vhb-nav--pills .vhb-menu {
    padding: 0 2px 4px 0;
  }

  .vhb-mobile-drawer__inner {
    width: min(300px, 88vw);
    padding: 16px;
  }
}

/* --- Tablet: 768px – 1023px --- */
@media (min-width: 768px) and (max-width: 1023px) {
  .vhb-container {
    padding: 0 16px;
  }

  .vhb-row--main .vhb-col:nth-child(2) {
    max-width: 28rem;
  }

  .vhb-row--bottom .vhb-col:nth-child(2) {
    display: none;
  }

  .vhb-row--bottom .vhb-container {
    justify-content: flex-start;
  }

  .vhb-row--bottom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .vhb-row--bottom::-webkit-scrollbar {
    display: none;
  }
}

/* --- Small mobile --- */
@media (max-width: 399px) {
  .vhb-tool {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .vhb-tool svg {
    width: 16px;
    height: 16px;
  }

  .vhb-burger--inline {
    width: 36px;
    height: 36px;
  }

  .vhb-logo__title {
    font-size: 16px;
  }

  .vhb-top-promo {
    font-size: 9px;
    line-height: 1.5;
  }
}
