/* ============================================================
   LAYOUT.CSS — App Shell: Sidebar, Topbar, Main, Bottom Nav
   ============================================================ */

/* ── App Shell ── */
.app-shell {
  display: flex;
  min-height: 100vh;
  background: var(--c-bg);
  overflow-x: hidden;
}

/* ── Sidebar ── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: var(--z-sidebar);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--sidebar-border);
  transition: none;
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s5) var(--s5);
  border-bottom: 1px solid var(--sidebar-border);
  min-height: 66px;
  flex-shrink: 0;
}

.sidebar-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--c-primary);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15,118,110,0.4);
}

.sidebar-logo-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.sidebar-logo-text {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
}

.sidebar-logo-text span {
  color: var(--c-primary-light);
}

.sidebar-close-btn {
  margin-left: auto;
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--sidebar-text);
  transition: all var(--t-fast);
}

.sidebar-close-btn:hover {
  background: var(--sidebar-item-hover);
  color: white;
}

.sidebar-nav {
  flex: 1;
  padding: var(--s3) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  overflow-y: auto;
}

.sidebar-group {
  margin-top: var(--s4);
}

.sidebar-group:first-child {
  margin-top: var(--s2);
}

.sidebar-group-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.5);
  padding: 0 var(--s3);
  margin-bottom: var(--s2);
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 0.55rem var(--s3);
  border-radius: var(--r-md);
  color: var(--sidebar-text);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.sidebar-item svg,
.sidebar-item [data-lucide] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}

.sidebar-item:hover {
  background: var(--sidebar-item-hover);
  color: var(--sidebar-text-hover);
}

.sidebar-item:hover svg,
.sidebar-item:hover [data-lucide] {
  opacity: 1;
}

.sidebar-item.active {
  background: var(--sidebar-item-active);
  color: var(--sidebar-text-active);
  font-weight: 600;
}

.sidebar-item.active svg,
.sidebar-item.active [data-lucide] {
  opacity: 1;
  color: var(--c-primary-light);
}

.sidebar-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--sidebar-active-bar);
  border-radius: 0 var(--r-full) var(--r-full) 0;
}

.sidebar-item-badge {
  margin-left: auto;
  background: var(--c-primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--r-full);
  min-width: 18px;
  text-align: center;
}

.sidebar-footer {
  padding: var(--s4) var(--s3);
  border-top: 1px solid var(--sidebar-border);
  flex-shrink: 0;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s2);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--t-fast);
}

.sidebar-user:hover {
  background: var(--sidebar-item-hover);
}

.sidebar-user-info {
  flex: 1;
  min-width: 0;
}

.sidebar-user-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--sidebar-text-hover);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-user-plan {
  font-size: var(--text-xs);
  color: var(--c-primary-light);
  font-weight: 500;
}

/* ── Overlay (mobile) ── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: calc(var(--z-sidebar) - 1);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.sidebar-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Main Wrapper ── */
.main-wrapper {
  flex: 1;
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  width: calc(100% - var(--sidebar-width));
  padding-top: var(--topbar-height) !important;
}

/* ── Topbar ── */
.topbar {
  height: var(--topbar-height);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: 0 var(--s6);
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  z-index: var(--z-topbar);
  box-shadow: var(--shadow-xs);
}

.topbar-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-text-secondary);
  flex-shrink: 0;
  transition: all var(--t-fast);
}

.topbar-menu-btn:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

.topbar-title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.topbar-search {
  flex: 1;
  max-width: 360px;
  position: relative;
}

.topbar-search input {
  width: 100%;
  height: 38px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 0 var(--s4) 0 var(--s10);
  font-size: var(--text-sm);
  color: var(--c-text);
  transition: all var(--t-fast);
}

.topbar-search input::placeholder {
  color: var(--c-text-muted);
}

.topbar-search input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-bg);
  background: white;
}

.topbar-search-icon {
  position: absolute;
  left: var(--s3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text-muted);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-left: auto;
}

.topbar-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  position: relative;
  flex-shrink: 0;
}

.topbar-icon-btn:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

.topbar-icon-btn svg,
.topbar-icon-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.topbar-icon-btn .notif-dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: var(--c-danger);
  border-radius: var(--r-full);
  border: 2px solid white;
}

.topbar-new-btn {
  display: flex;
  align-items: center;
  gap: var(--s2);
  height: 38px;
  padding: 0 var(--s4);
  background: var(--c-primary);
  color: white;
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  box-shadow: var(--shadow-primary);
}

.topbar-new-btn:hover {
  background: var(--c-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,118,110,0.3);
}

.topbar-new-btn svg { width: 16px; height: 16px; }

.topbar-divider {
  width: 1px;
  height: 24px;
  background: var(--c-border);
  flex-shrink: 0;
}

.topbar-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--text-sm);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.topbar-avatar:hover {
  transform: scale(1.05);
}

/* ── Page Content ── */
.page-content {
  flex: 1;
  padding: 0 var(--s8) var(--s8) !important;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto !important;
  min-width: 0;
  display: flow-root;
}

.dashboard-page,
.dashboard-page .page-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.page-content > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}

.page-header-info {
  flex: 1;
  min-width: 0;
}

.page-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.page-subtitle {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-top: var(--s1);
  font-weight: 400;
}

.page-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* ── Main container ── */
.container {
  width: 100%;
}

/* ── Bottom Navigation (Mobile) ── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: var(--bottom-nav-height);
  background: white;
  border-top: 1px solid var(--c-border);
  z-index: var(--z-sidebar);
  padding: 0 max(var(--s2), env(safe-area-inset-left));
  padding-right: max(var(--s2), env(safe-area-inset-right));
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}

.bottom-nav-item,
.bottom-nav-fab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1 1 20%;
  min-width: 0;
  min-height: var(--bottom-nav-height);
  cursor: pointer;
  color: var(--c-text-muted);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: all var(--t-fast);
  text-decoration: none;
  padding: var(--s2) 2px;
  text-align: center;
  border: 0;
  background: transparent;
  font: inherit;
}

.bottom-nav-item svg,
.bottom-nav-item [data-lucide],
.bottom-nav-fab svg,
.bottom-nav-fab [data-lucide] {
  width: 22px;
  height: 22px;
}

.bottom-nav-item.active,
.bottom-nav-fab.active {
  color: var(--c-primary);
}

.bottom-nav-item:hover,
.bottom-nav-fab:hover {
  color: var(--c-primary);
}

.bottom-nav-fab {
  color: var(--c-text);
  font-weight: 700;
}

.bottom-nav-fab-btn {
  width: 46px;
  height: 46px;
  background: var(--c-primary);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all var(--t-bounce);
  position: relative;
  bottom: 5px;
  cursor: pointer;
  border: none;
}

.bottom-nav-fab-btn:hover {
  background: var(--c-primary-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,118,110,0.4);
}

.bottom-nav-fab-btn svg { width: 22px; height: 22px; }

.bottom-nav-sheet-backdrop {
  z-index: calc(var(--z-sidebar) + 5);
}

.bottom-nav-sheet {
  z-index: calc(var(--z-sidebar) + 6);
  padding-bottom: calc(env(safe-area-inset-bottom) + var(--s2));
}

.bottom-nav-sheet .action-sheet-item {
  text-align: left;
}

/* ── FAB Help Button ── */
.fab-help {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: var(--z-fab);
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: all var(--t-bounce);
  border: none;
  text-decoration: none;
}

.fab-help:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.fab-help svg { width: 26px; height: 26px; }

.fab-help-tooltip {
  position: absolute;
  right: calc(100% + var(--s3));
  white-space: nowrap;
  background: var(--c-text);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--s2) var(--s3);
  border-radius: var(--r-md);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t-fast);
}

.fab-help:hover .fab-help-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  padding: var(--s4) var(--s6);
  background: white;
  border-bottom: 1px solid var(--c-border);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* ── Section Wrapper ── */
.section {
  background: white;
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s6);
  border-bottom: 1px solid var(--c-border);
}

.section-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
}

.section-body {
  padding: var(--s6);
}

/* ── Dropdown Wrapper ── */
.dropdown-wrapper {
  position: relative;
  display: inline-flex;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--s2));
  right: 0;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s2);
  min-width: 180px;
  z-index: var(--z-dropdown);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all var(--t-fast);
  transform-origin: top right;
}

.dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-md);
  color: var(--c-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  width: 100%;
}

.dropdown-item svg,
.dropdown-item [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.dropdown-item:hover {
  background: var(--c-bg);
  color: var(--c-text);
}

.dropdown-item.danger {
  color: var(--c-danger);
}

.dropdown-item.danger:hover {
  background: var(--c-danger-bg);
}

.dropdown-divider {
  height: 1px;
  background: var(--c-border);
  margin: var(--s2) 0;
}

/* ── New Dropdown Menu ── */
.new-dropdown-menu {
  position: absolute;
  top: calc(100% + var(--s2));
  right: 0;
  background: white;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--s3);
  min-width: 240px;
  z-index: var(--z-dropdown);
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all var(--t-fast);
  transform-origin: top right;
}

.new-dropdown-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.new-dropdown-header {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: var(--s2) var(--s3) var(--s3);
}

.new-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s3);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}

.new-dropdown-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.new-dropdown-item-icon svg { width: 18px; height: 18px; }

.new-dropdown-item-info .item-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text);
}

.new-dropdown-item-info .item-desc {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.new-dropdown-item:hover {
  background: var(--c-bg);
}

/* ── Toast Notifications ── */
.toast-container {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: var(--c-text);
  color: white;
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  min-width: 280px;
  max-width: 380px;
  animation: toast-in var(--t-bounce) forwards;
  pointer-events: auto;
}

.toast.success { background: var(--c-success); }
.toast.error   { background: var(--c-danger); }
.toast.warning { background: var(--c-warning); color: var(--c-text); }
.toast.info    { background: var(--c-info); }

.toast svg, .toast [data-lucide] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.toast-close {
  margin-left: auto;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity var(--t-fast);
}

.toast-close:hover { opacity: 1; }

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
}

.toast.removing {
  animation: toast-out var(--t-base) forwards;
}

/* ────────────────────────────────────────────────────────────
   ALIASES E CLASSES FALTANDO — Compatibilidade HTML gerado
   ──────────────────────────────────────────────────────────── */

/* menu-btn = alias de topbar-menu-btn */
.menu-btn {
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-text-secondary);
  flex-shrink: 0;
  transition: all var(--t-fast);
  cursor: pointer;
}

.menu-btn:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

/* topbar-left e topbar-right */
.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex: 1;
  min-width: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
}

/* sidebar-logo */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

/* sidebar-logo-name = alias de sidebar-logo-text */
.sidebar-logo-name {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* notif-badge */
.notif-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--c-danger);
  color: white;
  border-radius: var(--r-full);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--topbar-bg);
  line-height: 1;
}

.notif-dropdown-wrap {
  position: relative;
}

.notif-dropdown {
  width: 360px;
  max-height: 420px;
  overflow: hidden;
  padding: 0;
}

.notif-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--c-border);
}

.notif-mark-read-btn {
  border: 0;
  background: transparent;
  color: var(--c-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
}

.notif-dropdown-list {
  max-height: 360px;
  overflow-y: auto;
  display: grid;
}

.notif-item {
  display: block;
  padding: var(--s3) var(--s4);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}

.notif-item:last-child {
  border-bottom: 0;
}

.notif-item.unread {
  background: var(--c-primary-bg);
}

.notif-item.read {
  opacity: 0.82;
}

.notif-item-title {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 2px;
}

.notif-item-message {
  font-size: var(--text-xs);
  color: var(--c-text-secondary);
  line-height: 1.35;
}

.notif-item-time {
  display: block;
  margin-top: var(--s1);
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.notif-empty {
  padding: var(--s4);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

/* sidebar-user-settings */
.sidebar-user-settings {
  color: var(--sidebar-text);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.sidebar-user-settings:hover {
  background: var(--sidebar-item-hover);
  color: var(--sidebar-text-hover);
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.breadcrumb a {
  color: var(--c-text-secondary);
  font-weight: 500;
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: var(--c-primary);
}

.breadcrumb span {
  color: var(--c-text-muted);
}

/* dropdown-header */
.dropdown-header {
  padding: var(--s3) var(--s4) var(--s2);
}

/* editor-page padding-bottom for sticky bar */
.editor-page {
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
}
