/* БЛОК: Mobile add + bottom sheet */
/* Кнопка-плюсик для мобильных */
.mobile-add-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--yd-red);
  color: #fff;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(252, 63, 29, 0.2);
  flex-shrink: 0;
}
.mobile-add-btn:active {
  opacity: 0.8;
}
.mobile-add-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.4);
}
.mobile-menu-overlay.show {
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 251;
  background: var(--yd-bg);
  border-radius: 16px 16px 0 0;
  padding: 8px 12px calc(16px + var(--safe-bottom));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.mobile-menu.show {
  display: block;
  transform: translateY(0);
}
.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--yd-text);
  cursor: pointer;
  text-align: left;
}
.mobile-menu-item:active {
  background: var(--yd-hover);
}
.mobile-menu-item.primary {
  color: var(--yd-red);
  font-weight: 500;
}
.mobile-menu-item-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
