/* Shared component hooks for future cleanup */
.memory-action-btn.danger {
  color: #FF3B30;
  opacity: 0.6;
}

/* Glass + pill components */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.soft-shadow {
  box-shadow: var(--shadow-soft);
}

.pill-btn {
  border-radius: var(--radius-full);
  padding: 10px 18px;
  border: none;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.pill-btn.primary {
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
  color: #fff;
  box-shadow: var(--fab-shadow);
}

.fab-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-pink-dark) 100%);
  color: #fff;
  font-size: 20px;
  box-shadow: var(--fab-shadow);
}

.section-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.4px;
}

/* Shell Nav */
.shell-nav {
  position: fixed;
  bottom: calc(var(--shell-nav-offset) + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 240px;
  height: 66px;
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-radius: 33px;
  border: none;
  box-shadow: var(--shadow-soft);
  padding: 0 12px;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn {
  width: 76px;
  height: 100%;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #C5C5C7;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.nav-btn span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.nav-btn svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn.active {
  color: var(--accent-pink-dark);
  filter: drop-shadow(0 0 8px rgba(255, 143, 163, 0.35));
}

.nav-btn.active svg {
  transform: scale(1.05);
}

.nav-btn:active {
  transform: scale(0.92);
  opacity: 0.7;
}

.nav-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #FF3B30;
  color: white;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-sizing: border-box;
  z-index: 10;
}

.has-custom-bg .shell-nav {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(30px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: auto !important;
  min-width: 280px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  bottom: calc(var(--shell-nav-offset) + var(--safe-bottom)) !important;
}
