:root {
  --customer-nav-height: 66px;
}

body.has-customer-bottom-nav {
  padding-bottom: calc(var(--customer-nav-height) + env(safe-area-inset-bottom, 0px) + 14px) !important;
}

.customer-bottom-nav {
  position: fixed;
  z-index: 880;
  right: 12px;
  bottom: max(10px, env(safe-area-inset-bottom, 0px));
  left: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(680px, calc(100% - 24px));
  min-height: var(--customer-nav-height);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(10, 16, 19, 0.97);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.customer-bottom-nav__item {
  display: flex;
  min-width: 0;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: #aab4b8;
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.16s ease, background 0.16s ease;
}

.customer-bottom-nav__item svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.customer-bottom-nav__item:hover,
.customer-bottom-nav__item:focus-visible {
  color: #ffffff;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
}

.customer-bottom-nav__item.is-active {
  color: #17d15a;
  background: linear-gradient(180deg, rgba(23, 209, 90, 0.12), rgba(23, 209, 90, 0.02));
}

.customer-bottom-nav__item.is-active::before {
  position: absolute;
  top: 0;
  width: 28px;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background: #17d15a;
  content: "";
}

@media (max-width: 430px) {
  .customer-bottom-nav {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 16px 16px 0 0;
  }
}

