#universalBelow {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 7000;
}

.u-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  transition: .22s ease;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  transition: .25s ease;
}

.nav-label {
  font-size: 11px;
  letter-spacing: .02em;
}

.u-nav:hover {
  color: var(--text-primary);
}

.u-nav.active {
  color: rgb(var(--accent-rgb));
}

.u-nav.active .nav-icon svg {
  transform: scale(1.15);
  stroke: rgb(var(--accent-rgb));
}

.u-nav:active .nav-icon svg {
  transform: scale(.9);
}

.drawer-collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgb(var(--accent-rgb));
}

.engagement-link input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 0 12px;
}

.engagement-link button {
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(var(--accent-rgb), .35);
  background: var(--bg-elevated);
  color: rgb(var(--accent-rgb));
}

.service-add-btn {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 1),
    rgba(var(--accent-rgb), .75)
  );
  color: var(--bg-main);
}

.service-adder-depth {
  border-radius: 18px;
  padding: 12px;
  background: linear-gradient(
    180deg,
    var(--bg-surface),
    var(--bg-main)
  );
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 12px 28px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 2;
}

.services-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg-main),
    transparent
  );
}

.services-carousel::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--bg-main),
    transparent
  );
}

.time-pill,
.ps-duration-pill,
.drawer-service-price {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.time-minus,
.time-plus,
.ps-minus,
.ps-plus {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: rgb(var(--accent-rgb));
}

.ps-value,
.time-value {
  color: var(--text-primary);
}
