/* ============================================================
   Mobile bottom navigation – CUSTOMER ONLY
   Visible on mobile only (Bootstrap d-md-none)
   ============================================================ */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;

  height: 64px;
  background-color: #ffffff;

  border-top: 1px solid #e5e5e5;
  z-index: 1030; /* Bootstrap navbar fölé */

  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.04);
}

.mobile-bottom-nav .container-fluid {
  height: 100%;
}

.mobile-bottom-nav .row {
  height: 100%;
  align-items: center;
}

.mobile-bottom-nav .nav-item {
  padding: 6px 0;
  text-align: center;

  font-size: 0.7rem;
  line-height: 1.1;

  color: #6c757d;
  text-decoration: none;
}

.mobile-bottom-nav .nav-item i {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item.active i {
  color: #0d6efd; /* Bootstrap primary */
  font-weight: 600;
}

.mobile-bottom-nav .nav-item:hover {
  color: #0d6efd;
}

.mobile-bottom-nav .nav-item.disabled {
  pointer-events: none;
  opacity: 0.45;
}

/* Cart badge pulse / shake on add */
@keyframes cart-pulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.15); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.cart-badge-animate {
  animation: cart-pulse 300ms ease-out;
}


/* ============================================================
   Content spacing – prevent overlap
   ============================================================ */

@media (max-width: 767.98px) {
  main {
    padding-bottom: 72px; /* mobile nav height + spacing */
  }
}

