
/* Desktop: sembunyi */
.mcs-bottom-navbar {
  display: none;
}

/* Mobile mode */
@media (max-width: 768px) {
  .mcs-bottom-navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0 0;
    border-radius: 16px 16px 0 0;
    z-index: 9999;
    background-color: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color, rgba(0, 0, 0, 0.08));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
  }

  .mcs-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pc-sidebar-color, #a0aec0);
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .mcs-nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .mcs-nav-item span {
    font-size: 11px;
    font-weight: 500;
  }

  .mcs-nav-item.active {
    color: var(--pc-sidebar-active-color, #5b7bfe);
  }

  /* Center FAB */
  .mcs-nav-center {
    position: relative;
    top: -18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pc-sidebar-active-color, #5b7bfe);
    font-size: 14px;
  }

  .mcs-nav-center span {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    position: relative;
    top: 14px;
  }

  .mcs-plus-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #7b7bff, #5b5bfa);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(91, 91, 250, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mcs-plus-btn:hover,
  .mcs-plus-btn:active {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(91, 91, 250, 0.55);
  }

  /* Glow ring around FAB */
  .mcs-fab-ring {
    width: 68px;
    height: 68px;
    background: rgba(91, 91, 250, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}