/* Mobile bottom nav — "More" sheet (Coming Soon modules) */

.mobile-more-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal-overlay);
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}
.mobile-more-sheet[hidden] { display: none !important; }
.mobile-more-sheet.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.mobile-more-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-more-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: min(72dvh, 420px);
  padding: 10px 16px calc(16px + env(safe-area-inset-bottom, 0));
  border-radius: 20px 20px 0 0;
  background: #fff;
  border-top: 1px solid rgba(30, 58, 138, 0.1);
  box-shadow: 0 -12px 40px rgba(30, 58, 138, 0.18);
  font-family: 'Outfit', sans-serif;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow-y: auto;
}
.mobile-more-sheet.open .mobile-more-panel {
  transform: translateY(0);
}

.mobile-more-handle {
  width: 36px;
  height: 4px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.18);
}

.mobile-more-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--pn);
  letter-spacing: -0.02em;
}

.mobile-more-lead {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.4;
  color: #64748B;
}

.mobile-more-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-more-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
  color: var(--pn);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.mobile-more-item:hover {
  background: #eef2ff;
  border-color: rgba(57, 73, 171, 0.2);
}
.mobile-more-item:active {
  transform: scale(0.99);
}
.mobile-more-item:focus-visible {
  outline: 2px solid var(--py);
  outline-offset: 2px;
}

.mobile-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 20px;
}
.mobile-more-icon--blue {
  color: var(--pg);
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
}
.mobile-more-icon--gold {
  color: #b45309;
  background: linear-gradient(145deg, #fef3c7 0%, #fffbeb 100%);
}
.mobile-more-icon .dp-pickleball-paddles {
  width: 22px;
  height: 20px;
}

.mobile-more-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-more-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--pn);
}
.mobile-more-hint {
  font-size: 12px;
  color: #64748B;
  line-height: 1.3;
}
.mobile-more-item > .ti-chevron-right {
  flex-shrink: 0;
  font-size: 18px;
  color: #94A3B8;
}

.mobile-nav-item .ti-dots {
  font-size: 22px;
}

@media (min-width: 1024px) {
  .mobile-more-sheet { display: none !important; }
}

@media (max-width: 1023px) {
  .mobile-nav-item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-more-sheet,
  .mobile-more-panel {
    transition: none;
  }
}
