.pb-mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .pb-whatsapp {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .pb-mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    display: grid;
    grid-template-columns: 1fr 1fr 30px 1fr 1fr;
    align-items: center;
    height: calc(60px + env(safe-area-inset-bottom, 0px));
    padding: 0 4px env(safe-area-inset-bottom, 0px);
    border-top: 1px solid var(--line);
    background: var(--card);
    background: color-mix(in srgb, var(--card) 94%, transparent);
    box-shadow: 0 -8px 24px rgba(13, 23, 38, 0.12);
    backdrop-filter: blur(16px);
  }

  .pb-mobile-bottom-nav__item,
  .pb-mobile-bottom-nav__scan {
    border: 0;
    color: var(--muted);
    background: transparent;
  }

  .pb-mobile-bottom-nav__item {
    display: flex;
    min-width: 0;
    height: 100%;
    padding: 7px 2px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 11px;
    line-height: 1.05;
  }

  .pb-mobile-bottom-nav__item i {
    font-size: 19px;
    flex: none;
  }

  .pb-mobile-bottom-nav__item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pb-mobile-bottom-nav__item.is-active {
    color: var(--orange);
  }

  .pb-mobile-bottom-nav__scan {
    display: grid;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    place-items: center;
    justify-self: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #ff6500);
    box-shadow: 0 7px 20px rgba(13, 23, 38, 0.28);
  }

  .pb-mobile-bottom-nav__scan i {
    font-size: 34px;
  }

  .pb-mobile-bottom-nav button:active {
    transform: scale(0.94);
  }
}

@media (max-width: 390px) {
  .pb-mobile-bottom-nav__item {
    font-size: 10px;
  }
}
