/* Mobile Bottom Navigation - Luxury Gold Edition */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-top: 1px solid #E6D8B8; /* Border Emas Halus */
  z-index: 9998;
  box-shadow: 0 -2px 15px rgba(212, 175, 55, 0.1); /* Bayangan Emas */
  display: none;
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2px 0;
  max-width: 640px;
  margin: 0 auto;
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 8px;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #736F66; /* Warna abu-abu emas */
  transition: all 0.3s ease;
  position: relative;
}

.bottom-nav-item:hover {
  color: #B58529; /* Warna Emas Gelap saat hover */
}

.bottom-nav-item.active {
  flex-direction: row;
  gap: 8px;
  background: linear-gradient(135deg, #D4AF37 0%, #B58529 100%);
  color: white;
  border-radius: 20px;
  padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(181, 133, 41, 0.3);
}

/* Icon variant switching */
.bottom-nav-item .icon-outlined { display: block; }
.bottom-nav-item .icon-filled { display: none; }
.bottom-nav-item.active .icon-outlined { display: none; }
.bottom-nav-item.active .icon-filled { display: block; }

.bottom-nav-item-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  display: none;
  white-space: nowrap;
}

.bottom-nav-item.active .bottom-nav-item-label { display: block; }

/* Avatar styles */
.bottom-nav-avatar-img,
.bottom-nav-avatar-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
}

.bottom-nav-avatar-initials {
  background: linear-gradient(135deg, #D4AF37 0%, #B58529 100%);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav-item.active .bottom-nav-avatar-initials {
  background: white;
  color: #B58529;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.bottom-nav-item-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #B91C1C; /* Warna merah premium untuk notifikasi */
  color: white;
  border-radius: 10px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile User Sheet - Bottom Sheet */
.mobile-user-sheet-content {
  background: #FDFBF7; /* Warna cream premium */
  border-radius: 16px 16px 0 0;
}

.mobile-user-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D4AF37 0%, #B58529 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 600;
}

.mobile-user-sheet-item:hover {
  background: #F5F4F0; /* Sedikit lebih gelap dari latar belakang */
  color: #B58529;
}

.mobile-user-sheet-icon {
  color: #B58529;
  font-size: 20px;
  width: 24px;
  text-align: center;
}