/* ===== Fixed Mobile Navigation ===== */
.fixed-nav {
  display: none;
}

@media (max-width: 1024px) {
  .fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    background: #ffffff;
    z-index: 40;
  }

  .fixed-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 0;
  }

  .fixed-nav ul li {
    display: flex;
    flex-direction: column;
  }

  .fixed-nav ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
  }

  .fixed-nav ul li img {
    height: auto;
  }

  .fixed-nav ul li p {
    margin: 0;
    font-size: 12px;
  }

  /* Category-specific Image Sizes */
  .fixed-nav__link--tired img {
    max-width: 29px;
  }

  .fixed-nav__link--rest img {
    width: 40px;
  }

  .fixed-nav__link--money img {
    width: 33px;
  }

  .fixed-nav__link--return img {
    width: 30px;
  }

  .fixed-nav__link--lifehack img {
    width: 25px;
    height: 30px !important;
  }

  .fixed-nav__link--media img {
    width: 31px;
  }
}
