.bottom-nav__fa-icon {
  font-size: 36px;
  line-height: 1;
  transform: translateY(-4px);
}

.bottom-nav__icon {
  width: 32px;
  height: 32px;
  color: #fff;
  transform: translateY(-2px);
}

.bottom-nav__icon path,
.bottom-nav__icon circle,
.bottom-nav__icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .bottom-nav__fa-icon {
    font-size: 24px;
  }
}

@keyframes fadeIn {
  0% { top: 45%; opacity: 0; }
  100% { top: 50%; opacity: 1; }
}

.bottom-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 96px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0.7rem 0.4rem 0.65rem;
  background: linear-gradient(135deg, #0073fff6 0%, #5190e3f6 100%);
  border-top-left-radius: 50% 28px;
  border-top-right-radius: 50% 28px;
  z-index: 1000;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.bottom-nav__item {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  min-width: 0;
}

.bottom-nav__fa-icon {
  font-size: 30px;
  line-height: 1;
  transform: translateY(-2px);
}

.bottom-nav__label {
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bottom-nav {
    height: 92px;
    padding: 0.65rem 0.25rem 0.6rem;
  }

  .bottom-nav__fa-icon {
    font-size: 27px;
  }

  .bottom-nav__label {
    font-size: 0.66rem;
  }
}