/*
 * BottomNavBar — mobile fixed bottom tab bar (Shop / Search / Wishlist / Account).
 * Stitch reference: urun-detay.html + ana-sayfa.html, "BottomNavBar (Mobile)".
 * Only designed for MOBILE in Stitch — hidden at desktop breakpoints (see bottom).
 */

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--mh-z-header);
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 4rem;
  padding: 0 1rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
  border-top: 1px solid
    color-mix(in srgb, var(--bottom-nav-bar-border, transparent) 30%, transparent);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex: 1;
  height: 100%;
  text-decoration: none;
  opacity: 0.6;
  -webkit-tap-highlight-color: transparent;
}

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar__item--active {
  opacity: 1;
}

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
}

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar__label {
  font-family: var(--mh-font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar__item--active .bottom-nav-bar__label {
  font-weight: 700;
}

/*
 * Stitch only designed this component for MOBILE. There is no desktop
 * equivalent in the approved screens — desktop primary navigation is the
 * top Navbar/Header. Hiding the bar above the tablet breakpoint is the
 * safest interpretation (avoids a duplicate, undesigned nav on desktop);
 * flagged in the report for the integrator/user to confirm.
 */
@media (min-width: 768px) {
  .cc_t2dowgyg_em6ZtqqKSk .bottom-nav-bar {
    display: none;
  }
}
