/* R3-MOBILE-NAV-1 mobile-only simplified top header + bottom nav */
.hsj-r3-mobile-bottom-nav {
  display: none;
}

@media (max-width: 767px) {
  .hsj-r2-mobile-header {
    grid-template-columns: 40px minmax(0, 1fr) 40px !important;
    gap: 10px !important;
    align-items: center;
  }

  .hsj-r2-mobile-header::after {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    grid-column: 3;
    justify-self: end;
    visibility: hidden;
    pointer-events: none;
  }

  .hsj-r2-mobile-header__icon--menu {
    grid-column: 1;
    justify-self: start;
  }

  .hsj-r2-mobile-header__brand--text {
    grid-column: 2;
    justify-self: center;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    color: #2F211B;
    font-size: 18px !important;
    line-height: 1;
  }

  .hsj-r2-mobile-header__icon--search,
  .hsj-r2-mobile-help,
  .hsj-r2-mobile-header__icon--cart {
    display: none !important;
  }

  .hsj-r2-header__inner {
    min-height: 60px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .hsj-r2-header {
    background: rgba(255, 252, 247, 0.98);
    border-bottom: 1px solid #E8DCCF;
    box-shadow: none;
    backdrop-filter: blur(8px);
  }

  .hsj-r3-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 260;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    gap: 0;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    background: #FFFCF7;
    border-top: 1px solid #E8DCCF;
    box-shadow: 0 -8px 24px rgba(47, 33, 27, 0.06);
  }

  .hsj-r3-mobile-bottom-nav__item {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 2px;
    color: #5F4A40;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .hsj-r3-mobile-bottom-nav__item:focus-visible {
    outline: 2px solid rgba(47, 33, 27, 0.28);
    outline-offset: -2px;
    border-radius: 12px;
  }

  .hsj-r3-mobile-bottom-nav__item.is-active {
    color: #2F211B;
    font-weight: 600;
  }

  .hsj-r3-mobile-bottom-nav__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hsj-r3-mobile-bottom-nav__icon svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
    fill: none;
  }

  .hsj-r3-mobile-bottom-nav__label {
    font-size: 11px;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  body.hsj-r3-mobile-bottom-nav-enabled #page {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body.hsj-r3-mobile-bottom-nav-enabled #ast-scroll-top,
  body.hsj-r3-mobile-bottom-nav-enabled .ast-scroll-top-icon {
    bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }
}

@media (min-width: 768px) {
  .hsj-r3-mobile-bottom-nav {
    display: none !important;
  }
}
