﻿:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --primary: #0f172a;
  --accent: #0ea5e9;
  --accent-2: #22d3ee;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.09);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,0.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.module-nav {
  position: sticky;
  top: 78px;
  z-index: 95;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.85);
}

.module-nav-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 62px;
}

.module-nav-spacer {
  min-height: 1px;
}

.module-nav-track {
  min-width: 0;
}

.module-nav-scroll {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.module-nav-scroll::-webkit-scrollbar {
  display: none;
}

.module-nav-btn {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 16px;
  box-shadow: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.module-nav-btn.is-active {
  background: #ffffff;
  border-color: #0ea5e9;
  color: #0284c7;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
}

.module-nav-btn:disabled,
.module-nav-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--primary), #334155);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-size: 20px;
}

.brand-text small {
  display: block;
  color: var(--muted);
  margin-top: 1px;
  font-size: 13px;
  font-weight: 500;
  opacity: .78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #475569;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  width: 42px;
  height: 42px;
  font-size: 20px;
  cursor: pointer;
}

.main-nav a.btn-dark {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.main-nav a.btn-dark:hover {
  background: #1e293b;
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  color: #cbd5e1;
  transition: all .25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 14px;
}

.btn-dark {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-dark:hover {
  background: #1e293b;
  color: #e2e8f0;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #0284c7;
}

.btn-light {
  background: #ffffff;
  color: var(--text);
  border-color: var(--line);
}

.btn-light:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.site-header .main-nav .btn {
  border-color: #dbe3ef;
  background: #ffffff;
  color: #111827;
  box-shadow: none;
}

.site-header .main-nav .btn:hover {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.site-header .main-nav .btn.btn-primary {
  border-color: #bae6fd;
  background: #eff6ff;
  color: #0369a1;
  box-shadow: none;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 72px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 74%);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: .55;
}

.hero-bg-one {
  width: 360px;
  height: 360px;
  background: #bae6fd;
  top: -110px;
  left: -80px;
}

.hero-bg-two {
  width: 420px;
  height: 420px;
  background: #cffafe;
  top: 40px;
  right: -100px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid #dbeafe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.blue {
  background: #eff6ff;
  color: #0369a1;
}

.eyebrow.light {
  background: rgba(255,255,255,.1);
  color: #bae6fd;
  border-color: rgba(255,255,255,.14);
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-stats strong {
  display: block;
  font-size: 30px;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 16px;
  box-shadow: 0 30px 100px rgba(15,23,42,.16);
  position: relative;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(34,211,238,.18));
  filter: blur(24px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px;
}

.phone-top small,
.dashboard-top small {
  text-transform: uppercase;
  letter-spacing: .18em;
  color: #94a3b8;
  font-size: 11px;
}

.phone-top h3,
.dashboard-top h3 {
  margin: 6px 0 0;
  font-size: 24px;
}

.lang-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.menu-banner {
  margin-top: 14px;
  min-height: 170px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,23,42,.55), rgba(14,165,233,.28)), url('../images/hero-dish.svg') center/cover no-repeat;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.menu-banner-overlay {
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.45));
  color: #fff;
}

.menu-banner-overlay small {
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: .84;
}

.menu-banner-overlay h4 {
  margin: 10px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.category-pills {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
}

.category-pills span {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
}

.category-pills .active {
  background: var(--primary);
  color: #fff;
}

.dish-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.dish-list article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,.05);
}

.dish-list h5,
.dashboard-list h5 {
  margin: 0;
  font-size: 15px;
}

.dish-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.dish-side {
  text-align: right;
}

.dish-side strong {
  display: block;
  font-size: 15px;
}

.dish-side small {
  display: block;
  margin-top: 6px;
  color: #0284c7;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  color: var(--muted);
}

.trust-items {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-items span {
  color: #334155;
  font-weight: 600;
}

.section {
  padding: 88px 0;
}

.alt-section {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.split-grid h2,
.cta-grid h2 {
  margin: 14px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p,
.split-grid p,
.cta-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
  transition: .25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15,23,42,.08);
}

.feature-card img {
  width: 44px;
  height: 44px;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.steps article {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 28px rgba(15,23,42,.04);
}

.steps article span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex: none;
}

.steps h3 {
  margin: 2px 0 8px;
  font-size: 22px;
}

.steps p {
  margin: 0;
  font-size: 16px;
}

.dashboard-card {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(15,23,42,.18);
}

.dashboard-shell {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 24px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-pill {
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.dashboard-stats > div {
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  padding: 18px;
}

.dashboard-stats small {
  display: block;
  color: #94a3b8;
}

.dashboard-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
}

.dashboard-list {
  margin-top: 18px;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
  padding: 18px;
}

.dashboard-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.dashboard-list-head span {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-list article {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  margin-top: 12px;
  border-radius: 18px;
  background: #f8fafc;
}

.dashboard-list small {
  color: var(--muted);
}

.dashboard-list div:last-child {
  text-align: right;
}

.dashboard-list strong {
  display: block;
}

.dashboard-list span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
}

.ok {
  background: #dcfce7;
  color: #15803d;
}

.warn {
  background: #fef3c7;
  color: #b45309;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(15,23,42,.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card.featured {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 26px;
}

.price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 22px 0 10px;
}

.price strong {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price span {
  color: #64748b;
  font-weight: 600;
}

.price-card.featured .price span,
.price-card.featured p,
.price-card.featured li {
  color: #cbd5e1;
}

.price-card p {
  color: var(--muted);
  line-height: 1.8;
}

.price-card ul {
  list-style: none;
  margin: 22px 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.price-card .btn-full {
  margin-top: auto;
}

.price-card li {
  padding-left: 22px;
  position: relative;
  color: #334155;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0284c7;
  font-weight: 800;
}

.price-card.featured li::before {
  color: #7dd3fc;
}

.cta-section {
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 38px;
  align-items: center;
}

.contact-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 24px;
  display: grid;
  gap: 14px;
  backdrop-filter: blur(12px);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder,
.form-field input::placeholder,
.form-field textarea::placeholder,
.config-search-input::placeholder {
  color: #94a3b8;
}

.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-captcha {
  display: grid;
  gap: 8px;
  color: #c7d2fe;
  font-size: 13px;
  font-weight: 800;
}

.contact-status {
  min-height: 18px;
  color: #bfdbfe;
  font-size: 13px;
  font-weight: 800;
}

.contact-status.is-error {
  color: #fecaca;
}

.contact-status.is-success {
  color: #bbf7d0;
}

.site-footer {
  background: #020617;
  color: #94a3b8;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-wrap nav {
  display: flex;
  gap: 20px;
}

.footer-wrap a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9999;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  display: block;
  width: 100%;
  max-width: 440px;
  background: #ffffff !important;
  border: 1px solid #d8e1ee !important;
  border-radius: 8px;
  padding: 32px 28px 26px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
  position: relative;
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 24px;
}

.modal-icon.is-success {
  background: #dcfce7;
  color: #15803d;
}

.modal-icon.is-error {
  background: #fee2e2;
  color: #b91c1c;
}

.modal-icon.is-warning {
  background: #fef3c7;
  color: #b45309;
}

.modal-icon.is-info {
  background: #e0f2fe;
  color: #0369a1;
}

.modal-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #0f172a;
}

.modal-body {
  color: #475569;
  line-height: 1.6;
}

.modal-message-row p {
  margin: 0;
}

/* Action bars: destructive left, secondary next, primary/save as the rightmost action. */
.modal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.settings-form-actions,
.detail-actions-bottom,
.form-actions,
.payments-actions,
.logo-crop-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.settings-form-actions .btn-danger-outline,
.detail-actions-bottom .btn-danger-outline,
.form-actions .btn-danger-outline,
.payments-actions .btn-danger-outline,
.logo-crop-actions .btn-danger-outline {
  margin-right: auto;
}

.login-modal {
  width: min(460px, calc(100vw - 32px));
  max-width: 460px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px 26px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

@media (max-width: 520px) {
  .modal-overlay {
    padding: 16px;
  }

  .login-modal {
    padding: 30px 24px 24px;
  }
}

.modal-overlay.is-open .login-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f3f6fb;
  color: #0f172a;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: #e8eef7;
}

.login-modal-head {
  margin-bottom: 22px;
}

.login-modal-head h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.15;
}

.login-modal-head p {
  margin: 0;
  color: #5b6472;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.form-row input {
  width: 100%;
  border: 1px solid #d8e0ea;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.login-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.remember-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
}

.login-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.login-link:hover {
  text-decoration: underline;
}

.login-error {
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #991b1b;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
}

.login-error.is-info {
  border-color: #bae6fd;
  background: #f0f9ff;
  color: #0369a1;
}

.login-footer-text {
  text-align: center;
  font-size: 14px;
  color: #5b6472;
  margin-top: 4px;
}

body.modal-open {
  overflow: hidden;
}

.start-page {
  padding: 56px 0 84px;
}

.start-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 42px;
  align-items: start;
}

.start-copy {
  padding-top: 32px;
}

.start-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.start-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
}

.start-benefits {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.start-benefits article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.start-benefits strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.start-benefits span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.start-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.first-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 58%),
    #ffffff;
}

.first-login-shell {
  width: min(100%, 500px);
  margin: 0 auto;
}

.first-login-card {
  border-radius: 24px;
  padding: 34px;
}

.first-login-card .start-card-head h2 {
  font-size: 34px;
}

.first-login-card .helper-note {
  margin: 2px 0 0;
}

.start-card-head small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.start-card-head h2 {
  margin: 10px 0 10px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.start-card-head p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.start-form {
  display: grid;
  gap: 16px;
}

.start-form .form-row {
  display: grid;
  gap: 8px;
}

.start-form .form-row label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.start-form .form-row input,
.start-form .form-row textarea,
.start-select {
  width: 100%;
  border: 1px solid #d8e0ea;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.start-form .form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.start-form .form-row input:focus,
.start-form .form-row textarea:focus,
.start-select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.start-select {
  appearance: none;
}

.start-footnote {
  margin: 4px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-page {
  padding: 46px 0 72px;
  overflow: visible;
  overflow-x: clip;
}

.dashboard-shell-page {
  position: relative;
  z-index: 2;
}

.dashboard-page-head {
  margin-bottom: 26px;
}

.dashboard-page-head h1 {
  margin: 16px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.dashboard-page-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}

.dashboard-side {
  display: grid;
  gap: 20px;
}

.dashboard-main {
  min-width: 0;
}

.manage-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.manage-card-large {
  min-height: 720px;
}

.manage-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.manage-card-head small {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
}

.manage-card-head h2 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.manage-card-body {
  display: grid;
  gap: 16px;
}

.field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.list-block {
  display: grid;
  gap: 10px;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  text-align: left;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.list-row strong {
  display: block;
  font-size: 15px;
}

.list-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.list-row-button.is-selected {
  background: #f1f5f9;
  border-color: #e2e8f0;
  border-left: 3px solid #3b82f6;
  padding-left: calc(1rem - 3px);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.08);
}

.list-row.is-selected strong {
  color: var(--text);
}

.list-row-button.is-selected span {
  color: #475569;
}

.list-row-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

.list-row-button:hover {
  background: #f1f5f9;
  border-color: #d7e0ea;
}

.items-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.items-context {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.context-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.items-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}

.items-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
  table-layout: fixed;
}

.items-table thead th {
  text-align: left;
  font-size: 13px;
  color: #64748b;
  font-weight: 700;
  padding: 16px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.items-table th,
.items-table td {
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.items-table tbody td {
  padding: 16px 18px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
  font-size: 14px;
  color: var(--text);
}

.items-table tbody tr:hover {
  background: #fcfdff;
}

.status-pill {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.table-link {
  background: transparent;
  border: 0;
  padding: 0;
  color: #0284c7;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.table-link:hover {
  text-decoration: underline;
}

/* =========================
   DETAIL PAGES (CRUD)
========================= */

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.detail-main-card {
  height: 100%;
}

.detail-side-card {
  position: fixed;
  top: 96px;
  right: max(16px, calc((100vw - var(--container)) / 2));
  width: 320px;
  max-height: calc(100vh - 112px);
  height: auto;
  overflow: auto;
  z-index: 20;
}

.detail-side-card > .manage-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-side-card > .manage-card-body > .action-stack {
  margin-top: 8px !important;
  order: 3;
}

.detail-side-card > .manage-card-body > .action-stack.action-stack-near {
  margin-top: 8px !important;
}

.detail-side-card > .manage-card-body > .helper-note {
  order: 4;
  display: none;
}

.detail-side-card .venue-logo-panel {
  order: 1;
  margin-top: 0;
}

.detail-side-card .venue-qr-panel {
  order: 4;
}

.detail-side-card .venue-logo-panel ~ .relation-stack {
  order: 2;
}

.detail-side-card .venue-logo-panel ~ .action-stack {
  order: 3;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #d8e1ee;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #b7c8e6;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
}

.detail-side-card-wrap {
  min-width: 0;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.info-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
  font-size: 14px;
}

.info-line strong {
  color: #0f172a;
}

.info-line span {
  color: #64748b;
  text-align: right;
}

.action-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-danger-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #efc7c7;
  border-radius: 14px;
  background: #fff;
  color: #b42318;
  font: inherit;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-danger-outline:hover {
  background: #fff5f5;
  border-color: #e7b3b3;
}

.helper-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split-grid,
  .cta-grid,
  .pricing-grid,
  .start-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy p {
    max-width: none;
  }

  .start-copy {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .module-nav-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }

  .module-nav-spacer {
    display: none;
  }

  .module-nav-scroll {
    justify-content: flex-start;
    padding: 10px 0 12px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-side-card {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .detail-side-card > .manage-card-body {
    min-height: 0;
  }

  .detail-side-card > .manage-card-body > .action-stack {
    margin-top: 22px !important;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-stats,
  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .trust-inner,
  .footer-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p,
  .section-head p,
  .split-grid p,
  .cta-grid p,
  .start-copy p,
  .dashboard-page-head p {
    font-size: 16px;
    line-height: 1.7;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .price-card,
  .manage-card,
  .start-card {
    padding: 22px;
    border-radius: 24px;
  }

  .phone-card,
  .dashboard-card {
    border-radius: 28px;
  }

  .dashboard-shell {
    padding: 18px;
    border-radius: 22px;
  }

  .dashboard-list {
    padding: 14px;
  }

  .dashboard-list article {
    padding: 12px 14px;
  }

  .start-card-head h2,
  .manage-card-head h2,
  .section-head h2,
  .split-grid h2,
  .cta-grid h2 {
    font-size: 28px;
  }

  .price strong {
    font-size: 48px;
  }

  .detail-grid {
    gap: 16px;
  }

  .info-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-line span {
    text-align: left;
  }
}

.mobile-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  padding: 0;
}

/* 3 lines */
.mobile-toggle::before,
.mobile-toggle::after,
.mobile-toggle span {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* top */
.mobile-toggle::before {
  top: 13px;
}

/* middle */
.mobile-toggle span {
  top: 20px;
}

/* bottom */
.mobile-toggle::after {
  top: 27px;
}

/* hover */
.mobile-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
}

.detail-actions-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mobile-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-checkbox span {
  display: none;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 767px) {
  .mobile-checkbox {
    justify-content: flex-start;
  }

  .mobile-checkbox span {
    display: inline;
  }
}

.mobile-field-label {
  display: none;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8a94a6;
}

@media (max-width: 991px) {
  .mobile-field-label {
    display: block;
  }

  .menu-cell-check {
    justify-content: flex-start;
  }

  .menu-row-action {
    justify-content: flex-end;
  }
}

/* =========================
   MASTER / DETAIL CONFIG PAGES
========================= */

.config-shell {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.config-card {
  overflow: hidden;
}

.config-card .manage-card-body {
  padding: 0;
}

.config-list-head,
.config-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--line);
}

.config-list-head h2,
.config-detail-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.config-list-head p,
.config-detail-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.config-list-tools {
  
  border-bottom: 1px solid var(--line);
  width: 100%;
  display: block;
}
.config-tools-row {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.config-search-wrap {
  position: relative;
  width: 100%;
  margin-top: 12px;      /* ðŸ‘ˆ space above */
  margin-bottom: 14px;   /* ðŸ‘ˆ space below (you already added) */
}

.config-search-input {
  width: 100%;
  height: 46px;
  padding: 0 44px 0 14px;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  -webkit-appearance: none;
}

.config-search-input:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(14,165,233,.10);
  background: #fff;
}

.config-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.config-refresh-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.config-list-wrap {
  max-height: 70vh;
  overflow: auto;
}

.config-list {
  display: grid;
}

.config-row {
  display: grid;
  gap: 6px;
  padding: 16px 24px;
  border-bottom: 1px solid #eef2f7;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: background .18s ease, border-color .18s ease;
  cursor: pointer;
}

.config-row:hover {
  background: #f8fbff;
}

.config-row.is-selected {
  background: #eff6ff;
  box-shadow: inset 3px 0 0 var(--accent);
}

.config-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.config-row-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.config-row-code {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.config-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.config-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
}

.config-badge.is-active {
  background: #ecfdf5;
  color: #047857;
}

.config-badge.is-inactive {
  background: #fef2f2;
  color: #b91c1c;
}

.config-empty {
  padding: 26px 24px 30px;
  text-align: center;
  color: var(--muted);
}

.config-empty h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.config-empty p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
}

.config-detail-body {
  padding: 24px;
}

.config-detail-placeholder {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}

.config-detail-placeholder h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.config-detail-placeholder p {
  margin: 0 auto;
  max-width: 460px;
  font-size: 14px;
  line-height: 1.6;
}

.config-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.config-actions .btn-danger-outline {
  margin-right: auto;
}

.config-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.config-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.config-mobile-summary {
  display: none;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .config-shell {
    grid-template-columns: 320px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .config-shell {
    grid-template-columns: 1fr;
  }

  .config-list-wrap {
    max-height: none;
  }

  .config-mobile-summary {
    display: block;
  }
}

@media (max-width: 640px) {
  .config-list-head,
  .config-detail-head,
  .config-list-tools,
  .config-detail-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .config-row {
    padding-left: 18px;
    padding-right: 18px;
  }

  .config-list-head,
  .config-detail-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .config-tools-row {
    flex-direction: column;
    align-items: stretch;
  }

  .config-search-input {
    height: 44px;
    border-radius: 12px;
  }

  .config-refresh-btn {
    width: 100%;
  }

  .config-actions {
    flex-direction: column;
  }

  .config-actions .btn,
  .config-actions .btn-danger-outline {
    width: 100%;
  }

  .config-inline-actions {
    width: 100%;
  }

  .config-inline-actions .btn {
    flex: 1 1 auto;
  }
}
.main-nav .user-menu,
.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.main-nav .user-menu__button,
.user-menu .user-menu__button {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid #d9e2ec;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  font-family: inherit;
  line-height: 1;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.main-nav .user-menu__button:hover,
.main-nav .user-menu__button[aria-expanded="true"],
.user-menu .user-menu__button:hover,
.user-menu .user-menu__button[aria-expanded="true"] {
  border-color: #bcd0e8;
  background: #f8fbff;
  color: #0b4d86;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.main-nav .user-menu__initials,
.user-menu .user-menu__initials {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.main-nav .user-menu__dropdown,
.user-menu .user-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 220px;
  padding: 8px;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.16);
}

.user-menu__identity {
  padding: 10px 10px 12px;
  border-bottom: 1px solid #e5edf5;
  color: #111827;
}

.user-menu__identity strong,
.user-menu__identity span {
  display: block;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-menu__identity strong {
  font-size: 14px;
  line-height: 1.3;
}

.user-menu__identity span {
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
}

.user-menu__item {
  appearance: none;
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.user-menu__item:hover {
  background: #f8fbff;
}

.user-menu__item[hidden] {
  display: none !important;
}

.user-menu__item--danger {
  color: #991b1b;
}

.user-menu__item--danger:hover {
  background: #fef2f2;
}
input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  accent-color: #0ea5e9;
  vertical-align: middle;
}
