@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0f1a;
  --bg-elevated: #101826;
  --bg-card: #172131;
  --bg-card-2: #1b2738;
  --bg-sidebar: #0d1420;
  --bg-soft: #121c2b;
  --bg-hover: #223043;

  --primary: #2b9aa7;
  --primary-strong: #237f8a;
  --primary-soft: rgba(43, 154, 167, 0.14);
  --primary-ring: rgba(43, 154, 167, 0.2);

  --text: #ffffff;
  --text-2: #dbe4ee;
  --text-3: #a6b3c2;
  --text-4: #7f8c9d;

  --border: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.05);
  --border-strong: rgba(255, 255, 255, 0.11);

  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 14px 30px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.35);
  --shadow-primary: 0 14px 30px rgba(43, 154, 167, 0.18);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --topbar-h: 74px;
  --sidebar-w: 270px;
  --container: 1600px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(43, 154, 167, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(43, 154, 167, 0.05), transparent 22%),
    var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: #5d6a79;
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: #788594;
}

/* Generic */
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
}

.hidden {
  display: none !important;
}

.m0 {
  margin: 0 !important;
}

.muted {
  color: var(--text-3) !important;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
}

.big {
  font-size: 2rem !important;
  font-weight: 700 !important;
}

.hr {
  height: 1px;
  border: 0;
  margin: 24px 0;
  background: var(--border);
}

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

.empty {
  padding: 40px 24px;
  text-align: center;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-3);
  background: rgba(255, 255, 255, 0.015);
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--topbar-h);
  background: rgba(10, 15, 26, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  filter: none;
}

.brand-sub {
  padding-left: 14px;
  border-left: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Pills */
.pill {
  height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
}

.pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

#creditsText {
  font-weight: 700;
  color: var(--text);
}

/* Buttons */
.btn,
.btn-sm,
.tbtn,
.link-btn,
.pass-toggle,
.jamrook-copy-btn,
.kpi-link-btn {
  transition: 0.2s ease;
}

.btn {
  height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn.primary {
  background: linear-gradient(180deg, #2b9aa7 0%, #24828d 100%);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #31a8b6 0%, #217983 100%);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
  border-color: var(--border);
}

.btn.ghost:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-sm {
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
}

.btn-sm:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-sm.ghost {
  background: transparent;
  border-color: transparent;
}

.btn-sm.ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
}

.kpi-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.kpi-link-btn:hover {
  color: #7ddae4;
  text-decoration: none;
}

/* Layout */
.app {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px;
}

.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: 28px;
}

.main {
  min-width: 0;
  width: 100%;
}

/* Views */
.view {
  width: 100%;
}

.view.hidden {
  display: none !important;
}

.view.active {
  display: block;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--topbar-h) + 28px);
  height: calc(100vh - var(--topbar-h) - 56px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.98), rgba(14, 22, 35, 0.94));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.side-head {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.side-title {
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.side-email,
.side-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.side-email {
  padding: 10px 12px;
  margin-bottom: 12px;
  color: var(--text-2);
  font-size: 0.82rem;
  word-break: break-word;
}

.side-pill {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.82rem;
}

.side-pill .k {
  color: var(--text-3);
}

.side-pill .v {
  color: var(--primary);
  font-weight: 700;
}

.side-nav {
  flex: 1;
  padding: 18px 14px;
}

.nav-item {
  width: 100%;
  margin-bottom: 6px;
  padding: 11px 12px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
}

.nav-item.active {
  background: var(--primary-soft);
  color: var(--text);
  box-shadow: inset 3px 0 0 var(--primary);
}

.ni-ic {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-3);
}

.nav-item.active .ni-ic {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.side-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-4);
}

/* Hero */
.hero {
  margin-bottom: 26px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.96), rgba(20, 29, 43, 0.96));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-kicker {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-title {
  margin-bottom: 10px;
  font-size: 2.15rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  max-width: 720px;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* KPI */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.kpi {
  width: 100%;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.98), rgba(20, 29, 43, 0.98));
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.kpi:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 154, 167, 0.22);
  box-shadow: var(--shadow-md);
}

.kpi.kpi-primary {
  background: linear-gradient(180deg, rgba(25, 36, 52, 1), rgba(20, 29, 43, 1));
  box-shadow: inset 4px 0 0 var(--primary), var(--shadow-sm);
}

.kpi-top {
  min-height: 30px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.kpi-label {
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kpi-chip {
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-3);
  font-size: 0.68rem;
  white-space: nowrap;
}

.kpi-chip.ghost {
  background: transparent;
  border-style: dashed;
}

.kpi-val {
  min-height: 48px;
  margin-bottom: 4px;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
}

.kpi-mono {
  min-height: 48px;
  margin-bottom: 4px;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.kpi-sub {
  min-height: 34px;
  color: var(--text-3);
  font-size: 0.76rem;
  line-height: 1.5;
}

.kpi-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.kpi-meta-row {
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-3);
  font-size: 0.72rem;
}

.kpi-meta-value {
  color: var(--text-2);
  font-weight: 700;
}

/* Panels */
.panel {
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.98), rgba(20, 29, 43, 0.98));
  box-shadow: var(--shadow-sm);
}

.panel-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-title {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.panel-sub {
  margin-top: 3px;
  max-width: 780px;
  color: var(--text-3);
  font-size: 0.82rem;
  line-height: 1.7;
}

.panel-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.panel-body {
  padding: 24px;
}

.badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-3);
  font-size: 0.68rem;
  font-weight: 700;
}

.badge.ghost {
  background: transparent;
  border-style: dashed;
}

/* Expert Review */
.panel-hr .panel-sub {
  max-width: 760px;
}

#humanReviewNote {
  color: var(--text-3);
  font-size: 0.8rem;
  font-style: normal;
}

.expert-review-note-box {
  margin-top: 18px;
}

.expert-review-action-footer {
  justify-content: center !important;
  text-align: center;
}

.expert-review-action-meta {
  width: 100%;
  text-align: center;
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.addon-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 28, 43, 1), rgba(19, 29, 42, 1));
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 230px;
  transition: .22s ease;
}

.addon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 154, 167, .26);
  box-shadow: var(--shadow-sm);
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(43,154,167,0), rgba(43,154,167,.55), rgba(43,154,167,0));
  pointer-events: none;
}

.addon-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.addon-card-title {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.addon-card-sub {
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.8;
  margin: 0;
}

.addon-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(43,154,167,.2);
  background: rgba(43,154,167,.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a8e8ee;
  font-size: 1rem;
  flex: 0 0 42px;
}

.addon-card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--text-3);
  font-size: .82rem;
  line-height: 1.7;
  margin-top: auto;
  text-align: center;
}

.addon-card .btn,
.addon-card .addon-link-btn {
  min-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* Shared Add-ons Drawer */
.addons-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.addons-drawer-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.addons-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(500px, 100vw);
  height: 100%;
  background: linear-gradient(180deg, rgba(16,24,38,.995), rgba(14,22,34,.995));
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .28s ease;
}

.addons-drawer-overlay:not(.hidden) .addons-drawer {
  transform: translateX(0);
}

.addons-drawer-head {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.addons-drawer-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.addons-drawer-head p {
  display: none;
}

.addons-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-group {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
}

.drawer-group-head {
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255,255,255,.015);
}

.drawer-group-title {
  margin: 0;
  color: var(--text);
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.drawer-group-sub {
  display: none;
}

.drawer-options {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.drawer-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.drawer-option-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  transition: .2s ease;
}

.drawer-option:hover .drawer-option-box {
  transform: translateY(-1px);
  border-color: rgba(43,154,167,.28);
  box-shadow: var(--shadow-sm);
}

.drawer-option input:checked + .drawer-option-box {
  border-color: rgba(43,154,167,.55);
  box-shadow: inset 3px 0 0 var(--primary), var(--shadow-sm);
  background: linear-gradient(180deg, rgba(43,154,167,.10), rgba(255,255,255,.02));
}

.drawer-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.drawer-option-title {
  color: var(--text);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.drawer-option-price {
  color: var(--primary);
  font-size: .98rem;
  font-weight: 800;
  white-space: nowrap;
}

.drawer-option-desc {
  color: var(--text-3);
  font-size: .77rem;
  line-height: 1.55;
}

.addons-drawer-foot {
  border-top: 1px solid var(--border);
  padding: 14px 20px 18px;
  background: rgba(255,255,255,.015);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-selection-box {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  color: var(--text-2);
  font-size: .84rem;
  line-height: 1.6;
}

.drawer-selection-box strong {
  color: var(--text);
}

.addons-drawer-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.addons-drawer-actions .btn {
  min-width: 170px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

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

.chart-wrap {
  position: relative;
  height: 250px;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.86rem;
}

.table thead th {
  padding: 15px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-2);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: 0;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.tbtn {
  padding: 7px 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
}

.tbtn:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: var(--border-strong);
}

/* Forms */
label,
.auth-label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-2);
  font-size: 0.84rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text);
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 12px 14px;
}

textarea {
  padding: 13px 14px;
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-4);
}

input:hover,
textarea:hover,
select:hover {
  border-color: var(--border-strong);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-ring);
}

.help {
  margin-top: 5px;
  color: var(--text-3);
  font-size: 0.76rem;
  line-height: 1.6;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel-inline {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.bad {
  color: #ffb6b6;
}

/* Auth */
.auth-shell {
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
}

.auth-card {
  width: min(500px, 96vw);
  padding: 42px 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.98), rgba(18, 27, 40, 0.98));
  box-shadow: var(--shadow-lg);
}

.auth-head {
  margin-bottom: 24px;
}

.auth-title {
  margin-bottom: 10px;
  text-align: center;
  color: var(--text);
  font-size: 1.95rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.auth-sub {
  text-align: center;
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.auth-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.1);
  color: #ffb8b8;
  font-size: 0.84rem;
}

.auth-input {
  min-height: 52px;
  border-radius: 14px;
  background: #111a27;
}

.pass-wrap {
  position: relative;
  width: 100%;
}

.pass-input {
  padding-right: 56px;
}

.pass-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pass-toggle:hover {
  background: var(--bg-hover);
  color: var(--text);
  border-color: rgba(43, 154, 167, 0.24);
}

.auth-links {
  margin: 12px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.link-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-3);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
}

.link-btn:hover {
  color: var(--text);
  background: var(--primary-soft);
}

.auth-foot {
  margin-top: 18px;
  text-align: center;
}

.auth-foot .small {
  color: var(--text-3);
  font-size: 0.84rem;
}

.auth-submit,
#authLoginBtn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
}

/* View Head */
.view-head {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.vh-title {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vh-sub {
  color: var(--text-3);
  line-height: 1.7;
  font-size: 0.9rem;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  font-size: 0.8rem;
}

.chip button {
  border: 0;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  font-weight: 700;
}

.chip button:hover {
  color: var(--danger);
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(43, 154, 167, 0.2);
  border-top-color: var(--primary);
  animation: spin 0.65s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form detail */
.form-detail-boxes {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-detail-left,
.form-detail-right {
  min-height: 250px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.form-detail-header {
  margin-bottom: 12px;
  color: var(--text-2);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.total-progress {
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
}

.form-detail-list,
.form-detail-selected {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-detail-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}

.form-detail-right .form-detail-item {
  grid-template-columns: 1fr minmax(140px, 180px) auto;
}

.warning {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.08);
  color: #ffd998;
}

/* History */
.history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.modal-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.99), rgba(18, 27, 40, 0.99));
  box-shadow: var(--shadow-lg);
}

.modal-content h4,
.modal-content h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 800;
}

.modal-content p {
  color: var(--text-2);
  line-height: 1.8;
}

/* Legacy add-on modal support */
.addon-modal-content {
  max-width: 760px;
  width: calc(100% - 32px);
}

.addon-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.addon-modal-head h3 {
  margin: 0 0 6px;
}

.addon-modal-head p {
  margin: 0;
  color: #8aa0ad;
  line-height: 1.7;
}

.addon-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.addon-option {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: .22s ease;
  min-height: 220px;
}

.addon-option:hover {
  transform: translateY(-2px);
  border-color: rgba(43,154,167,.26);
  box-shadow: var(--shadow-sm);
}

.addon-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.addon-option-badge {
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text-3);
  font-size: .68rem;
  white-space: nowrap;
}

.addon-option-title {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.addon-option-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  margin: 2px 0 0;
}

.addon-option-price span {
  font-size: .88rem;
  color: var(--text-3);
  font-weight: 600;
  margin-left: 4px;
}

.addon-option-desc {
  color: var(--text-2);
  font-size: .88rem;
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.addon-option .btn {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

/* Jamarek widget */
.jamrook-widget {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
}

.jamrook-toggle {
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(23, 33, 49, 0.96);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.jamrook-toggle:hover {
  background: var(--bg-hover);
  border-color: rgba(43, 154, 167, 0.24);
}

.jamrook-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.jamrook-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 360px;
  padding: 0;
}

.jamrook-widget.jamrook-closed .jamrook-panel {
  display: none;
}

.jamrook-header {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.jamrook-avatar-lg {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2px solid var(--primary);
}

.jamrook-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}

.jamrook-sub {
  color: var(--text-3);
  font-size: 0.76rem;
  line-height: 1.65;
}

.jamrook-chatbox {
  height: 200px;
  overflow-y: auto;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-soft);
}

.jamrook-msg,
.user-msg {
  margin-bottom: 8px;
  font-size: 0.85rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.jamrook-msg {
  color: var(--text-2);
}

.user-msg {
  color: var(--primary);
  font-weight: 600;
  text-align: right;
}

.jamrook-column {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.jamrook-column-title {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.jamrook-copy-wrap {
  position: relative;
}

.jamrook-copy-wrap textarea {
  min-height: 80px;
  padding-right: 88px;
  background: var(--bg-soft);
}

.jamrook-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.jamrook-copy-btn:hover {
  background: var(--primary-strong);
}

/* Responsive */
@media (max-width: 1280px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .grid-2,
  .row,
  .grid,
  .form-detail-boxes,
  .addons-grid,
  .addon-options {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: flex-start;
  }

  .addon-card .btn,
  .addon-card .addon-link-btn {
    width: 100%;
    min-width: 0;
  }

  .addon-modal-head {
    flex-direction: column;
  }

  .addons-drawer {
    width: min(460px, 100vw);
  }
}

@media (max-width: 768px) {
  .topbar-inner,
  .app {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-sub,
  .jamrook-toggle-label {
    display: none;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .auth-card {
    width: min(100%, 96vw);
    padding: 30px 22px;
    border-radius: 20px;
  }

  .auth-title {
    font-size: 1.55rem;
  }

  .auth-links {
    flex-direction: column;
  }

  .link-btn {
    width: 100%;
    text-align: center;
  }

  .jamrook-panel {
    width: min(360px, calc(100vw - 24px));
  }

  .addons-drawer-head,
  .addons-drawer-body,
  .addons-drawer-foot {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 520px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .inline {
    width: 100%;
  }

  .hero-actions .btn,
  .inline .btn {
    width: 100%;
  }

  .panel-head,
  .view-head,
  .history-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .table {
    min-width: 640px;
  }

  .jamrook-widget {
    right: 14px;
    bottom: 14px;
  }

  .addon-modal-content {
    width: calc(100% - 20px);
    padding: 22px;
  }

  .addons-drawer {
    width: 100vw;
  }

  .addons-drawer-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

.admin-actions .admin-status-save-btn {
  height: 36px;
  padding: 0 12px;
}

/* =========================================================
   ADMIN DASHBOARD ANALYTICS
========================================================= */

.admin-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  gap: 28px;
}

.admin-login-shell {
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
}

.admin-login-card {
  width: min(500px, 96vw);
  padding: 42px 36px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.98), rgba(18, 27, 40, 0.98));
  box-shadow: var(--shadow-lg);
}

.admin-login-title {
  margin-bottom: 10px;
  text-align: center;
  color: var(--text);
  font-size: 1.95rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.admin-login-sub {
  text-align: center;
  color: var(--text-3);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.admin-login-error,
.error-box {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.1);
  color: #ffb8b8;
  font-size: 0.84rem;
}

.admin-login-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  margin-top: 10px;
}

.admin-login-foot {
  margin-top: 18px;
  text-align: center;
  color: var(--text-3);
  font-size: 0.84rem;
  line-height: 1.7;
}

.admin-panel-shell.hidden,
.admin-login-shell.hidden {
  display: none !important;
}

.section-block {
  margin-bottom: 24px;
}

.section-head {
  margin-bottom: 14px;
}

.section-title {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.section-sub {
  color: var(--text-3);
  font-size: 0.86rem;
  line-height: 1.7;
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.admin-kpi-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(23, 33, 49, 0.98), rgba(20, 29, 43, 0.98));
  box-shadow: var(--shadow-sm);
}

.admin-kpi-card.primary {
  box-shadow: inset 4px 0 0 var(--primary), var(--shadow-sm);
}

.admin-kpi-label {
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.admin-kpi-value {
  color: var(--text);
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 4px;
}

.admin-kpi-card.primary .admin-kpi-value {
  color: var(--primary);
}

.admin-kpi-sub {
  color: var(--text-3);
  font-size: 0.76rem;
  line-height: 1.5;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.analytics-grid .panel {
  margin-bottom: 0;
}

.analytics-grid .panel.span-2 {
  grid-column: span 2;
}

.chart-card-body {
  padding: 20px 24px 24px;
}

.chart-canvas-wrap {
  position: relative;
  width: 100%;
  min-height: 280px;
  height: 280px;
}

.chart-canvas-wrap.chart-sm {
  min-height: 240px;
  height: 240px;
}

.chart-canvas-wrap.chart-lg {
  min-height: 320px;
  height: 320px;
}

.alert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.alert-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.alert-card.warning {
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.08);
}

.alert-card.danger {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.08);
}

.alert-card.success {
  border-color: rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.08);
}

.alert-title {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.alert-value {
  color: var(--text);
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 4px;
}

.alert-note {
  color: var(--text-3);
  font-size: 0.78rem;
  line-height: 1.6;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
  font-size: 0.86rem;
}

.admin-table thead th {
  padding: 15px 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--border);
  color: var(--text-3);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-2);
  vertical-align: middle;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.admin-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}

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

.admin-status-select {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  min-width: 130px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.admin-actions .admin-status-save-btn {
  height: 36px;
  padding: 0 12px;
}

.admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-footer-note {
  margin-top: 10px;
  color: var(--text-4);
  font-size: 0.78rem;
  line-height: 1.7;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-2);
  white-space: nowrap;
}

.admin-badge.active {
  color: #9ef3c2;
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
}

.admin-badge.expired {
  color: #ffd2a1;
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
}

.admin-badge.pending {
  color: #c9d6ff;
  border-color: rgba(96, 165, 250, 0.25);
  background: rgba(96, 165, 250, 0.08);
}

.admin-badge.completed {
  color: #9ef3c2;
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
}

.admin-badge.cancelled {
  color: #ffb8b8;
  border-color: rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
}

#overview,
#analytics,
#customers,
#plans,
#reviews,
#alerts {
  scroll-margin-top: 100px;
}

.side-nav .nav-item[data-target] {
  position: relative;
}

@media (max-width: 1280px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .analytics-grid,
  .alert-grid {
    grid-template-columns: 1fr;
  }

  .analytics-grid .panel.span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .admin-login-card {
    width: min(100%, 96vw);
    padding: 30px 22px;
    border-radius: 20px;
  }

  .admin-login-title {
    font-size: 1.55rem;
  }

  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ADD-ONS DRAWER / MOBILE BALANCED VERSION ===== */
@media (max-width: 768px) {

  #addonsDrawerOverlay{
    overflow: hidden;
    touch-action: none;
  }

  #addonsDrawerOverlay .addons-drawer{
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  #addonsDrawerOverlay .addons-drawer-head{
    padding: 12px 14px;
  }

  #addonsDrawerOverlay .addons-drawer-head h3{
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  #addonsDrawerOverlay #closeAddonsDrawerBtn{
    height: 36px;
    min-width: 82px;
    padding: 0 12px;
    font-size: 0.82rem;
    border-radius: 10px;
  }

  #addonsDrawerOverlay .addons-drawer-body{
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 10px 12px;
    gap: 10px;
  }

  #addonsDrawerOverlay .drawer-group{
    border-radius: 14px;
  }

  #addonsDrawerOverlay .drawer-group-head{
    padding: 10px 12px 8px;
  }

  #addonsDrawerOverlay .drawer-group-title{
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
  }

  #addonsDrawerOverlay .drawer-options{
    padding: 8px;
    gap: 8px;
  }

  #addonsDrawerOverlay .drawer-option-box{
    padding: 12px 14px;
    border-radius: 12px;
    min-height: auto;
  }

  #addonsDrawerOverlay .drawer-option-top{
    margin: 0;
    gap: 10px;
    align-items: center;
  }

  #addonsDrawerOverlay .drawer-option-title{
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 600;
  }

  #addonsDrawerOverlay .drawer-option-price{
    font-size: 0.9rem;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
  }

  #addonsDrawerOverlay .drawer-option-desc{
    display: none;
  }

  #addonsDrawerOverlay .addons-drawer-foot{
    padding: 10px 12px 12px;
    gap: 8px;
  }

  #addonsDrawerOverlay .drawer-selection-box{
    padding: 10px 12px;
    font-size: 0.8rem;
    line-height: 1.45;
    border-radius: 10px;
  }

  #addonsDrawerOverlay .addons-drawer-actions{
    flex-direction: column;
    gap: 8px;
  }

  #addonsDrawerOverlay .addons-drawer-actions .btn{
    width: 100%;
    min-width: 0;
    height: 42px;
    font-size: 0.88rem;
    border-radius: 10px;
  }
}

body.drawer-open,
html.drawer-open{
  overflow:hidden;
  touch-action:none;
}

html.drawer-open,
body.drawer-open{
  overflow: hidden !important;
  touch-action: none;
  overscroll-behavior: none;
}
