/* ============================================================
   BP Shop by Sumaiya – Mobile Bottom Navigation
   Black background, white text, golden icons
   Only shows on mobile devices
   ============================================================ */

/* ── Google Font: Mulish ── */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700&display=swap');

/* ── Mobile Bottom Navigation Container ── */
.bpsc-mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black, #111111);
  border-top: 1px solid rgba(201,168,76,0.3);
  z-index: 9999;
  display: none;
  padding: 8px 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  font-family: 'Mulish', sans-serif;
}

/* ── Navigation Items ── */
.bpsc-mobile-bottom-nav__items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bpsc-mobile-bottom-nav__item {
  flex: 1;
  text-align: center;
}

.bpsc-mobile-bottom-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white, #ffffff);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  padding: 8px 4px;
}

.bpsc-mobile-bottom-nav__link:hover,
.bpsc-mobile-bottom-nav__link.active {
  color: var(--gold, #c9a84c);
}

/* ── Icons ── */
.bpsc-mobile-bottom-nav__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  fill: var(--gold, #c9a84c);
  transition: all 0.3s ease;
}

.bpsc-mobile-bottom-nav__link:hover .bpsc-mobile-bottom-nav__icon,
.bpsc-mobile-bottom-nav__link.active .bpsc-mobile-bottom-nav__icon {
  fill: var(--gold-light, #e2c46e);
  transform: scale(1.1);
}

/* ── Responsive - Show only on mobile ── */
@media (max-width: 768px) {
  .bpsc-mobile-bottom-nav {
    display: block;
  }

  /* Add padding to body to prevent content from being hidden behind nav */
  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .bpsc-mobile-bottom-nav__link {
    font-size: 10px;
  }

  .bpsc-mobile-bottom-nav__icon {
    width: 22px;
    height: 22px;
  }
}
