/* Shared mobile drawer for Tailwind pages */
.ib-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.96);
  padding: 5.5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.ib-mobile-menu.active {
  transform: translateX(0);
}
.ib-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
  font-weight: 600;
}
.ib-mobile-menu a:hover {
  color: #fbbf24;
}
.ib-nav-btn {
  background: transparent;
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 70;
  position: relative;
}
