/* SnapBook — Mobile bottom navigation (customer pages) */

.site-bottom-nav {
  display: none;
}

@media (max-width: 992px) {
  body.has-site-bottom-nav {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  body.has-site-bottom-nav .footer-chat-btn {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    z-index: 997;
  }

  body.has-site-bottom-nav .sticky-cta {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  body.has-site-bottom-nav .instant-cart-bar,
  body.has-site-bottom-nav .selected-packages-bar,
  body.has-site-bottom-nav .makeup-cart-bar,
  body.has-site-bottom-nav #makeupCart {
    bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.has-site-bottom-nav .cd-bottom-nav {
    display: none !important;
  }

  body.has-site-bottom-nav.custdash {
    padding-bottom: 0;
  }

  .site-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    gap: 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.35rem 0.15rem max(0.35rem, env(safe-area-inset-bottom));
    -webkit-tap-highlight-color: transparent;
  }

  .site-bottom-nav-item {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.35rem 0.15rem 0.45rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    border-radius: 12px;
    transition: color 0.2s ease;
  }

  .site-bottom-nav-item .sb-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .site-bottom-nav-item .sb-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .site-bottom-nav-item .sb-nav-label {
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    letter-spacing: 0.01em;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-bottom-nav-item.active {
    color: var(--gold, #FF8C00);
    background: rgba(255, 255, 255, 0.06);
  }

  .site-bottom-nav-item.active::after {
    content: '';
    position: absolute;
    left: 22%;
    right: 22%;
    bottom: 0;
    height: 2.5px;
    border-radius: 999px 999px 0 0;
    background: var(--gold, #FF8C00);
  }

  .site-bottom-nav-item:not(.active):hover,
  .site-bottom-nav-item:not(.active):focus-visible {
    color: rgba(255, 255, 255, 0.72);
  }

  .site-bottom-nav-item:focus-visible {
    outline: 2px solid var(--gold, #FF8C00);
    outline-offset: -2px;
  }
}
