/*
 * Eduval — Mobile bottom fixed navigation (5 cards)
 */

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

@media (max-width: 991px) {
  .eduval-mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    transform: none;
    background: #f8f9fa;
    border-top: 1px solid var(--eduval-footer-divider-color);
    z-index: 9998;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .eduval-mobile-bottom-nav__item {
    appearance: none;
    background: transparent;
    border: 0;
    width: 100%;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #261e50;
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .eduval-mobile-bottom-nav__badge {
    position: absolute;
    top: 8px;
    right: 16px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    pointer-events: none;
  }

  .eduval-mobile-bottom-nav__label {
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .eduval-mobile-bottom-nav__item:focus {
    outline: none;
  }

  .eduval-mobile-bottom-nav__item:active,
  .eduval-mobile-bottom-nav__item:focus-visible {
    color: var(--bg-blue);
    opacity: 0.7;
  }

  .eduval-mobile-bottom-nav__item:focus:not(:focus-visible) {
    color: #261e50;
  }

  .eduval-mobile-bottom-nav__item.is-active {
    color: var(--bg-blue);
    border-top: 3px solid var(--bg-blue);
  }

  .eduval-mobile-bottom-nav__icon {
    display: inline-block;
  }

  .eduval-mobile-bottom-nav__item i {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    color: currentColor;
  }

  .eduval-mobile-bottom-nav__icon--menu {
    width: 22px;
    height: 16px;
    position: relative;
  }

  .eduval-mobile-bottom-nav__icon--menu::before,
  .eduval-mobile-bottom-nav__icon--menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
  }

  .eduval-mobile-bottom-nav__icon--menu::before {
    top: 2px;
    box-shadow: 0 6px 0 currentColor;
  }

  .eduval-mobile-bottom-nav__icon--menu::after {
    bottom: 2px;
  }

  .site-footer.eduval-has-bottom-nav {
    padding-bottom: calc(0.5rem + 64px + env(safe-area-inset-bottom));
  }

  .site-footer.eduval-has-bottom-nav .footer-copyright-section {
    padding-bottom: 0.75rem;
  }

  .eduval-mobile-bottom-nav ~ #back-to-top {
    bottom: calc(64px + 20px + env(safe-area-inset-bottom));
    z-index: 9999;
  }

  #floating-cart {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .eduval-mobile-bottom-nav {
    display: none !important;
  }
}
