/* F_Product shell: sidebar + top bar (portfolio / dashboard parity) */
.prod-app-shell {
  position: relative;
  min-height: 100vh;
}
.prod-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.prod-app-shell.prod-sidebar-open .prod-sidebar-backdrop {
  display: block;
}
.prod-site-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 11.5rem;
  max-width: 85vw;
  z-index: 160;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  padding: 1rem 0.65rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform 0.22s ease;
  box-shadow: none;
}
.prod-app-shell.prod-sidebar-open .prod-site-sidebar {
  transform: translateX(0);
  box-shadow: 6px 0 28px rgba(0, 0, 0, 0.12);
}
.prod-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.prod-sidebar-nav a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.prod-sidebar-nav a:hover {
  background: #f0f4f0;
  color: #14532d;
}
.prod-sidebar-nav a[aria-current="page"] {
  background: #e8f5e9;
  color: #14532d;
  font-weight: 600;
}
.prod-app-main {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.prod-app-main > main {
  flex: 1 1 auto;
}
.prod-header-brand-group {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.prod-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #14532d;
  cursor: pointer;
  flex-shrink: 0;
}
.prod-nav-toggle:hover {
  background: rgba(20, 83, 45, 0.12);
  color: #0d381c;
}
.prod-nav-toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.prod-site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  background: #e8ecea;
  border-bottom: 1px solid #cdd6d0;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.prod-header-spacer {
  flex: 1;
  min-width: 0;
}
.prod-header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.prod-header-signup {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #14532d;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
}
.prod-header-actions .prod-header-signup:not(.prod-header-signup-bubble) {
  font-weight: 500;
  color: #555;
}
.prod-header-signup:hover {
  background: rgba(20, 83, 45, 0.1);
}
.prod-header-actions .prod-header-signup:not(.prod-header-signup-bubble):hover {
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.06);
}

.prod-header-signup-bubble {
  background: rgba(20, 83, 45, 0.12);
  border: 1px solid rgba(20, 83, 45, 0.28);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.prod-header-signup-bubble:hover {
  background: rgba(20, 83, 45, 0.2);
  border-color: rgba(20, 83, 45, 0.42);
}
.prod-site-header .prod-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  padding: 0.35rem;
  border-radius: 999px;
  line-height: 0;
}
.prod-site-header .prod-account:hover {
  color: #14532d;
  background: rgba(20, 83, 45, 0.08);
}
.prod-site-header .prod-account svg {
  display: block;
}
.prod-brand {
  color: #14532d;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.prod-brand:hover {
  opacity: 0.88;
}

.forsa-clerk-user-mount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
