body.customer-layout {
  background:
    linear-gradient(162deg, var(--belora-theme-bg-start) 0%, var(--belora-theme-bg-mid) 52%, var(--belora-theme-bg-end) 100%);
}

body.customer-layout .shell {
  max-width: 100%;
  padding: 0;
}

.customer-shell {
  width: min(540px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  padding: calc(env(safe-area-inset-top, 0px) + 10px) 12px calc(env(safe-area-inset-bottom, 0px) + 10px);
  overflow: visible;
}

.customer-ui-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.customer-ui-icon path {
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.customer-ui-icon--filled path {
  fill: currentColor;
  stroke: none;
}

.customer-panel-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.customer-shell-desktop {
  width: min(1280px, calc(100vw - 40px));
  min-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.customer-desktop-sidebar {
  position: sticky;
  top: 12px;
  height: calc(100vh - 24px);
  border: 1px solid rgba(122, 197, 186, 0.36);
  border-radius: 22px;
  background: linear-gradient(162deg, rgba(7, 42, 39, 0.95), rgba(4, 24, 23, 0.96));
  box-shadow: 0 18px 30px rgba(1, 9, 11, 0.3);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.customer-desktop-brand p {
  margin: 0;
  color: var(--admin-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-desktop-brand strong {
  display: block;
  margin-top: 6px;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 28px;
  line-height: 0.95;
  color: #edf6f2;
}

.customer-desktop-brand small {
  display: block;
  margin-top: 8px;
  color: var(--admin-muted);
  font-size: 12px;
  line-height: 1.45;
  word-break: break-word;
}

.customer-desktop-nav {
  flex: 1;
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  overflow-y: auto;
  padding-right: 2px;
}

.customer-desktop-nav-item {
  border: 1px solid rgba(122, 197, 186, 0.26);
  background: rgba(8, 35, 32, 0.74);
  color: #d8ece7;
  border-radius: 12px;
  min-height: 44px;
  width: 100%;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.customer-desktop-nav-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.customer-desktop-nav-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  border: 1px solid rgba(122, 197, 186, 0.28);
  background: rgba(7, 32, 30, 0.78);
  color: #bcded7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.customer-desktop-nav-item.active {
  border-color: rgba(210, 177, 93, 0.56);
  background: linear-gradient(152deg, rgba(210, 177, 93, 0.16), rgba(10, 44, 40, 0.8));
  color: #f3e3b4;
}

.customer-desktop-nav-item.active .customer-desktop-nav-icon {
  border-color: rgba(210, 177, 93, 0.5);
  background: rgba(77, 61, 24, 0.52);
  color: #f3e3b4;
}

.customer-desktop-signout {
  border: 1px solid rgba(224, 134, 134, 0.44);
  border-radius: 12px;
  background: rgba(67, 24, 33, 0.54);
  color: #ffd8d8;
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.customer-desktop-signout-icon {
  width: 18px;
  height: 18px;
}

.customer-desktop-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.customer-desktop-topbar {
  position: sticky;
  top: 12px;
  z-index: 55;
  border: 1px solid rgba(122, 197, 186, 0.36);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(7, 43, 40, 0.995), rgba(5, 27, 25, 0.995));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  isolation: isolate;
  box-shadow: 0 18px 32px rgba(1, 9, 11, 0.34);
  padding: 14px 16px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 16px;
  overflow: visible;
}

.customer-desktop-topbar .customer-topbar-meta h2 {
  font-size: 34px;
}

.customer-content-desktop {
  min-height: calc(100vh - 126px);
  padding-bottom: 8px;
}

.customer-shell-desktop .customer-alerts-menu {
  width: min(340px, calc(100vw - 320px));
}

.customer-topbar {
  position: sticky;
  top: 0;
  z-index: 55;
  border: 1px solid rgba(122, 197, 186, 0.36);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 38, 34, 0.94), rgba(6, 24, 21, 0.94));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
  box-shadow:
    0 12px 24px rgba(1, 8, 10, 0.26),
    inset 0 1px 0 rgba(174, 235, 226, 0.05);
  padding: 12px 12px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 12px;
  overflow: visible;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.customer-topbar.scrolled {
  border-color: rgba(133, 226, 211, 0.68);
  box-shadow:
    0 0 0 2px rgba(104, 224, 201, 0.34),
    0 0 20px rgba(104, 224, 201, 0.58),
    0 18px 34px rgba(1, 9, 10, 0.44);
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.customer-topbar-meta {
  min-width: 0;
}

.customer-topbar-overline {
  margin: 0;
  color: #c6e0da;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-topbar-meta h2 {
  margin: 4px 0 0;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 25px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #edf6f2;
}

.customer-topbar-subtitle {
  margin: 2px 0 0;
  color: #d0e7e1;
  font-size: 12px;
}

.customer-desktop-topbar .customer-topbar-actions {
  justify-self: end;
}

.customer-desktop-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}



.customer-mobile-header-shell {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding-bottom: 4px;
}

.customer-section-tabs--inline {
  min-width: 0;
}


.customer-section-shell {
  display: grid;
  gap: 10px;
}

.customer-section-tabs {
  gap: 0;
  margin-bottom: 4px;
}

.customer-section-tabs-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px 16px;
  align-items: flex-end;
  overflow-x: auto;
  border-bottom: 1px solid rgba(122, 197, 186, 0.18);
  scrollbar-width: none;
}

.customer-section-tabs-list::-webkit-scrollbar {
  display: none;
}

.customer-section-tab {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: rgba(205, 226, 220, 0.74);
  min-height: 0;
  padding: 8px 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.16s ease, border-color 0.16s ease;
}

.customer-section-tab:hover,
.customer-section-tab:focus-visible {
  color: #eef8f4;
  outline: none;
}

.customer-section-tab.active {
  color: #f4e4b2;
  border-color: rgba(210, 177, 93, 0.72);
}


.customer-section-tabs--inline {
  gap: 0;
}


.customer-topbar-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.customer-bell-btn {
  border: 1px solid rgba(122, 197, 186, 0.38);
  background: rgba(9, 45, 41, 0.8);
  color: #e4f3ef;
  border-radius: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.customer-bell-btn:hover {
  border-color: rgba(210, 177, 93, 0.52);
  color: #f3e3b4;
}

.customer-bell-icon {
  width: 20px;
  height: 20px;
}

.customer-profile-trigger {
  border: 1px solid rgba(122, 197, 186, 0.38);
  background: rgba(9, 45, 41, 0.8);
  color: #e4f3ef;
  border-radius: 14px;
  min-width: 42px;
  height: 42px;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.customer-profile-trigger.open {
  border-color: rgba(210, 177, 93, 0.52);
  box-shadow: 0 0 0 1px rgba(210, 177, 93, 0.12);
}

.customer-profile-trigger.is-labeled {
  min-width: 102px;
  padding: 4px 12px 4px 4px;
}

.customer-profile-trigger-label {
  color: #e4f3ef;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.customer-alert-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(250, 222, 144, 0.62);
  background: #d2b15d;
  color: #13202f;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.customer-avatar {
  width: 32px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(210, 177, 93, 0.96), rgba(149, 126, 61, 0.96));
  color: #172130;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.customer-alerts-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, calc(100vw - 24px));
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.customer-alerts-menu {
  border: 1px solid rgba(132, 174, 204, 0.52);
  background:
    radial-gradient(circle at 10% 0%, rgba(84, 134, 170, 0.14), transparent 44%),
    linear-gradient(162deg, rgba(5, 18, 27, 0.98), rgba(6, 24, 31, 0.98));
  padding: 12px;
  box-shadow: 0 16px 30px rgba(1, 7, 14, 0.58);
  z-index: 98;
}

.customer-profile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
  background: linear-gradient(180deg, rgba(2, 11, 13, 0.24), rgba(2, 11, 13, 0.72));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: customerProfileBackdropIn 0.18s ease;
}

.customer-profile-drawer {
  width: min(400px, calc(100vw - 24px));
  height: auto;
  max-height: calc(100dvh - 24px);
  margin-left: auto;
  border: 1px solid rgba(132, 211, 201, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 0%, rgba(210, 177, 93, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(12, 43, 39, 0.98), rgba(6, 28, 25, 0.99));
  box-shadow:
    0 20px 42px rgba(1, 7, 12, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: customerProfileDrawerIn 0.22s cubic-bezier(0.18, 0.86, 0.32, 1);
}

.customer-profile-drawer-shell {
  min-height: 0;
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.customer-profile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-profile-drawer-kicker {
  display: grid;
  gap: 4px;
}

.customer-profile-drawer-kicker small {
  margin: 0;
  color: rgba(191, 219, 212, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-profile-drawer-kicker strong {
  margin: 0;
  color: #f0f7f4;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.customer-profile-drawer-close {
  border: 1px solid rgba(17, 48, 42, 0.14);
  border-radius: 14px;
  background: rgba(9, 39, 35, 0.82);
  color: #f5eed9;
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(6, 20, 18, 0.14);
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.customer-profile-drawer-close-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.customer-profile-drawer-account {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0 12px;
  border-bottom: 1px solid rgba(132, 211, 201, 0.14);
}

.customer-profile-drawer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(32, 73, 66, 0.98), rgba(12, 39, 35, 0.98));
  border: 1px solid rgba(210, 177, 93, 0.34);
  color: #f0ddab;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.customer-profile-drawer-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.customer-profile-drawer-copy .customer-profile-name {
  font-size: 20px;
  line-height: 1.05;
  color: #f0f7f4;
}

.customer-profile-drawer-copy .customer-profile-email {
  margin-top: 0;
  font-size: 13px;
  color: rgba(201, 223, 218, 0.8);
}

.customer-profile-status-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.customer-profile-status-chip {
  border: 1px solid rgba(132, 211, 201, 0.18);
  border-radius: 999px;
  background: rgba(8, 35, 32, 0.88);
  color: #eef6f1;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.customer-profile-status-chip small {
  margin: 0;
  color: rgba(227, 240, 236, 0.7);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.customer-profile-status-chip strong {
  margin: 0;
  color: #f7fbf8;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.customer-profile-status-chip.is-good {
  background: rgba(20, 89, 60, 0.86);
}

.customer-profile-status-chip.is-warn {
  background: rgba(102, 80, 26, 0.86);
}

.customer-profile-status-chip.is-bad {
  background: rgba(99, 31, 42, 0.86);
}

.customer-profile-status-chip.is-info {
  background: rgba(16, 72, 67, 0.86);
}

.customer-profile-status-chip.is-muted {
  background: rgba(10, 44, 40, 0.86);
}

.customer-profile-drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-top: 4px;
  scrollbar-width: thin;
}

.customer-profile-drawer-body .customer-profile-links {
  margin-top: 0;
  gap: 10px;
}

.customer-profile-drawer-note {
  margin: 0;
  color: #a8c6be;
  font-size: 12px;
  line-height: 1.45;
}

.customer-profile-drawer-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(132, 211, 201, 0.14);
}

.customer-profile-drawer-footer .customer-profile-item {
  min-height: 60px;
}

@keyframes customerProfileBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes customerProfileDrawerIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes customerSectionMenuIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.customer-alerts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customer-alerts-head p {
  margin: 0;
  color: #eef6fb;
  font-size: 14px;
  font-weight: 700;
}

.customer-alerts-refresh {
  border: 1px solid rgba(130, 176, 208, 0.42);
  border-radius: 999px;
  background: rgba(16, 40, 54, 0.86);
  color: #d8ebf7;
  font-size: 13px;
  font-weight: 600;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  min-height: 30px;
  padding: 0 10px;
  cursor: pointer;
}

.customer-alerts-meta {
  margin: 6px 0 0;
  color: #bcd3df;
  font-size: 13px;
}

.customer-alerts-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.customer-alert-item {
  border: 1px solid rgba(124, 170, 198, 0.34);
  background: rgba(15, 35, 47, 0.8);
  color: #ebf4f9;
  border-radius: 11px;
  min-height: 44px;
  padding: 8px 11px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  cursor: pointer;
}

.customer-alert-item.is-warning {
  border-color: rgba(210, 177, 93, 0.46);
}

.customer-alert-item.is-error {
  border-color: rgba(224, 134, 134, 0.44);
}

.customer-alert-item:disabled {
  cursor: default;
}

.customer-alert-item-text {
  display: grid;
  gap: 2px;
  text-align: left;
}

.customer-alert-item-text strong {
  font-size: 13px;
}

.customer-alert-item-text small {
  color: #b9d2df;
  font-size: 13px;
  line-height: 1.35;
}

.customer-profile-name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #eff6fc;
}

.customer-profile-email {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #c4d8e8;
  opacity: 0.96;
  word-break: break-word;
}

.customer-profile-links {
  margin-top: 0;
  display: grid;
  gap: 14px;
}

.customer-profile-section {
  display: grid;
  gap: 10px;
}

.customer-profile-section-title {
  margin: 0;
  color: rgba(247, 229, 183, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.customer-profile-signout-wrap {
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid rgba(121, 165, 193, 0.28);
}

.customer-profile-item {
  border: 1px solid rgba(132, 211, 201, 0.18);
  background: linear-gradient(180deg, rgba(7, 31, 37, 0.86), rgba(4, 21, 27, 0.94));
  color: #eef6f1;
  border-radius: 15px;
  min-height: 60px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  width: 100%;
  transition:
    border-color 0.14s ease,
    background 0.14s ease,
    color 0.14s ease,
    transform 0.14s ease;
}

.customer-profile-item:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.customer-profile-item-main {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.customer-profile-item-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.customer-profile-item-label {
  color: #f5fbf7;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.customer-profile-item-detail {
  margin: 0;
  color: #a9c2bc;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.customer-profile-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(116, 161, 151, 0.26);
  background: rgba(11, 45, 41, 0.84);
  color: #f0dfb2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.customer-profile-item-chevron {
  color: rgba(225, 236, 231, 0.52);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.14s ease, transform 0.14s ease;
}

.customer-profile-item.active .customer-profile-item-chevron {
  color: #f7e3b0;
}

.customer-profile-item.active {
  border-color: rgba(226, 202, 136, 0.42);
  background: linear-gradient(180deg, rgba(91, 71, 26, 0.64), rgba(15, 52, 46, 0.92));
  color: #fff2cf;
  font-weight: 700;
}

.customer-profile-item.active .customer-profile-item-icon {
  border-color: rgba(226, 202, 136, 0.44);
  background: rgba(91, 71, 26, 0.4);
  color: #ffe8b8;
}

.customer-profile-item-danger {
  border-color: rgba(212, 117, 135, 0.38);
  background: linear-gradient(180deg, rgba(88, 32, 44, 0.86), rgba(62, 23, 33, 0.92));
  color: #ffe0e7;
}

.customer-profile-item-danger .customer-profile-item-icon {
  border-color: rgba(218, 133, 151, 0.34);
  background: rgba(78, 28, 39, 0.88);
  color: #ffe3e8;
}

@media (hover: hover) and (pointer: fine) {
  .customer-profile-item:hover:not(:disabled) {
    border-color: rgba(232, 214, 165, 0.22);
    background: linear-gradient(180deg, rgba(12, 40, 46, 0.88), rgba(6, 26, 32, 0.96));
    color: #f8fcfa;
  }

  .customer-profile-item:hover:not(:disabled) .customer-profile-item-icon {
    border-color: rgba(226, 202, 136, 0.34);
    background: rgba(27, 63, 57, 0.92);
    color: #ffe9ba;
  }

  .customer-profile-item:hover:not(:disabled) .customer-profile-item-chevron {
    color: rgba(247, 232, 184, 0.86);
    transform: translateX(1px);
  }

  .customer-profile-item-danger:hover:not(:disabled) {
    border-color: rgba(228, 145, 162, 0.48);
    background: linear-gradient(180deg, rgba(97, 36, 49, 0.88), rgba(71, 26, 37, 0.94));
    color: #ffeef2;
  }

  .customer-profile-drawer-close:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(6, 20, 18, 0.2);
  }
}

.customer-content {
  min-height: 0;
  display: grid;
  gap: 12px;
  padding-bottom: 2px;
}

.customer-shell > .customer-content {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 92px);
  scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 108px);
}

@media (min-width: 680px) and (max-width: 919px) {
  .customer-shell {
    width: min(960px, calc(100vw - 28px));
    padding: calc(env(safe-area-inset-top, 0px) + 12px) 14px calc(env(safe-area-inset-bottom, 0px) + 12px);
  }

  .customer-shell > .customer-content {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 96px);
    scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 112px);
  }

  .customer-profile-drawer {
    width: min(400px, calc(100vw - 40px));
  }
}

.customer-bottom-nav {
  position: sticky;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 2px);
  z-index: 52;
  border: 1px solid rgba(129, 194, 182, 0.22);
  border-radius: 24px;
  background: rgba(6, 24, 22, 0.94);
  box-shadow:
    0 14px 28px rgba(1, 8, 10, 0.28),
    inset 0 1px 0 rgba(171, 232, 223, 0.04);
  display: grid;
  grid-template-columns: repeat(var(--customer-bottom-nav-count, 5), minmax(0, 1fr));
  gap: 4px;
  padding: 7px;
}

.customer-bottom-link {
  border: 1px solid rgba(129, 194, 182, 0.08);
  border-radius: 16px;
  background: transparent;
  color: var(--admin-muted);
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.customer-bottom-link.active {
  border-color: rgba(210, 177, 93, 0.52);
  background: linear-gradient(150deg, rgba(210, 177, 93, 0.18), rgba(12, 52, 47, 0.74));
  color: #f2e3b2;
}

.customer-bottom-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-bottom-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.customer-market-screen {
  display: grid;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.customer-wallet-screen,
.customer-profile-screen,
.customer-kyc-screen {
  display: grid;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.customer-card {
  border: 1px solid var(--belora-theme-border);
  border-radius: 20px;
  background: var(--belora-theme-shell-gradient);
  padding: 14px;
  box-shadow:
    var(--belora-theme-shadow),
    inset 0 1px 0 rgba(190, 255, 243, 0.05);
}

.customer-hero-card {
  background: var(--belora-theme-hero-gradient);
}
.customer-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.customer-kicker {
  margin: 0;
  color: var(--belora-theme-text-muted);
  font-size: var(--app-eyebrow-size);
  letter-spacing: var(--app-eyebrow-spacing);
  text-transform: uppercase;
}

.customer-hero-top h3 {
  margin: 5px 0 0;
  font-family: var(--app-font-display);
  font-size: var(--app-title-md);
  line-height: 0.96;
  letter-spacing: var(--app-title-letter-spacing);
  color: var(--belora-theme-text);
}

.customer-hero-holdings {
  text-align: right;
}

.customer-hero-holdings p {
  margin: 0;
  color: var(--belora-theme-text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-hero-holdings strong {
  display: block;
  margin-top: 4px;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: 34px;
  color: var(--belora-theme-text-strong);
}

.customer-segmented {
  margin-top: 12px;
  border: 1px solid rgba(122, 197, 186, 0.28);
  border-radius: 999px;
  background: rgba(7, 33, 31, 0.62);
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.customer-segment-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--admin-muted);
  min-height: 36px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.customer-segment-btn.active {
  background: linear-gradient(148deg, rgba(210, 177, 93, 0.28), rgba(12, 56, 50, 0.78));
  color: #f3e3b4;
}
.customer-wallet-hero {
  background: linear-gradient(150deg, rgba(9, 56, 51, 0.94), rgba(7, 33, 30, 0.9));
}

.customer-wallet-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.customer-wallet-hero h3 {
  margin: 4px 0 0;
  font-family: var(--app-font-display);
  font-size: var(--app-title-md);
  line-height: 0.98;
  letter-spacing: var(--app-title-letter-spacing);
  color: var(--belora-theme-text);
}

.customer-profile-page-btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(112, 189, 179, 0.3);
  background: rgba(8, 36, 33, 0.72);
  color: #d3e7e3;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 1rem;
  cursor: pointer;
}

.customer-profile-page-btn.active {
  border-color: rgba(210, 177, 93, 0.62);
  background: rgba(210, 177, 93, 0.2);
  color: #f3e2af;
}

.customer-profile-page-btn:hover:not(:disabled):not(.gap),
.customer-profile-page-btn:focus-visible:not(:disabled):not(.gap) {
  border-color: rgba(210, 177, 93, 0.56);
  color: #f3e3b4;
}

.customer-profile-page-btn.gap,
.customer-profile-page-btn:disabled {
  opacity: 0.78;
  cursor: default;
}

.customer-panel-pagination.app-table-pagination {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  margin-top: 12px;
}

.customer-panel-pagination.app-table-pagination--meta-only {
  gap: 8px;
  justify-items: stretch;
}

.customer-panel-pagination.app-table-pagination--meta-only .app-table-pagination-meta {
  justify-content: flex-end;
}

.customer-panel-pagination .app-table-pagination-controls {
  display: grid;
  grid-template-columns: 54px 92px minmax(0, 1fr) 92px 54px;
  align-items: stretch;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(108, 186, 174, 0.32);
  background: linear-gradient(150deg, rgba(6, 40, 37, 0.96), rgba(4, 28, 26, 0.95));
  box-shadow: inset 0 1px 0 rgba(175, 236, 227, 0.05), 0 18px 32px rgba(0, 0, 0, 0.16);
}

.customer-panel-pagination .app-table-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 56px;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid rgba(108, 186, 174, 0.18);
  background: linear-gradient(150deg, rgba(12, 58, 53, 0.96), rgba(8, 45, 41, 0.95));
  color: #e6f4ee;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.customer-panel-pagination .app-table-pagination-btn--edge {
  padding: 0;
  font-size: 18px;
}

.customer-panel-pagination .app-table-pagination-btn:last-child {
  border-right: 0;
}

.customer-panel-pagination .app-table-pagination-btn:hover:not(:disabled),
.customer-panel-pagination .app-table-pagination-btn:focus-visible:not(:disabled) {
  background: linear-gradient(150deg, rgba(21, 81, 74, 0.96), rgba(14, 64, 59, 0.95));
  color: #f7fdfb;
}

.customer-panel-pagination .app-table-pagination-btn:disabled {
  cursor: default;
  opacity: 0.56;
}

.customer-panel-pagination .app-table-pagination-center {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 12px 16px;
  border-right: 1px solid rgba(108, 186, 174, 0.2);
  border-left: 1px solid rgba(108, 186, 174, 0.2);
  background: linear-gradient(150deg, rgba(15, 68, 61, 0.92), rgba(10, 52, 48, 0.92));
}

.customer-panel-pagination .app-table-pagination-summary {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.customer-panel-pagination .app-table-pagination-summary-kicker {
  color: #9fc8c0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.customer-panel-pagination .app-table-pagination-summary-range {
  color: #f7edd0;
  font-family: 'Newsreader', 'Fraunces', serif;
  font-size: 28px;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.customer-panel-pagination .app-table-pagination-summary-context {
  color: #d2e5df;
  font-size: 11px;
  font-weight: 600;
}

.customer-panel-pagination .app-table-pagination-pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.customer-panel-pagination .app-table-pagination-page-chip,
.customer-panel-pagination .app-table-pagination-gap {
  min-width: 38px;
}

.customer-panel-pagination .app-table-pagination-page-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(108, 186, 174, 0.22);
  border-radius: 12px;
  background: rgba(9, 34, 31, 0.72);
  color: #d9ebe6;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.customer-panel-pagination .app-table-pagination-page-chip:hover:not(:disabled),
.customer-panel-pagination .app-table-pagination-page-chip:focus-visible:not(:disabled) {
  border-color: rgba(210, 177, 93, 0.42);
  background: rgba(18, 53, 49, 0.9);
  color: #fbf4dd;
}

.customer-panel-pagination .app-table-pagination-page-chip.is-active,
.customer-panel-pagination .app-table-pagination-page-chip.is-active:disabled {
  border-color: rgba(210, 177, 93, 0.54);
  background: linear-gradient(135deg, rgba(210, 177, 93, 0.24), rgba(27, 93, 83, 0.92));
  color: #fff2ca;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-panel-pagination .app-table-pagination-page-chip:disabled {
  cursor: default;
  opacity: 1;
}

.customer-panel-pagination .app-table-pagination-gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #89b8af;
  font-size: 16px;
  font-weight: 700;
}

.customer-panel-pagination .app-table-pagination-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.customer-panel-pagination .app-table-pagination-rows,
.customer-panel-pagination .app-table-pagination-total {
  min-height: 40px;
  border: 1px solid rgba(122, 197, 186, 0.16);
  border-radius: 14px;
  background: rgba(7, 28, 25, 0.46);
  padding: 0 12px;
}

.customer-panel-pagination .app-table-pagination-rows {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  white-space: nowrap;
  color: #c7e1da;
  font-size: 12px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.customer-panel-pagination .app-table-pagination-rows select {
  width: unset;
  max-width: none;
  min-height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(109, 185, 173, 0.28);
  background: rgba(7, 52, 46, 0.88);
  color: #e5f4ef;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 0 13px;
}

.customer-panel-pagination .app-table-pagination-total {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #c7e1da;
  font-size: 12px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.customer-panel-pagination .app-table-pagination-total-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(210, 177, 93, 0.22);
  background: rgba(210, 177, 93, 0.12);
  color: #e7c56b;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-controls {
  border-color: rgba(51, 84, 79, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
  box-shadow: 0 16px 30px rgba(20, 37, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-btn {
  border-right-color: rgba(51, 84, 79, 0.12);
  background: linear-gradient(180deg, rgba(249, 251, 249, 0.98), rgba(240, 245, 242, 0.98));
  color: #2a4643;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-btn:hover:not(:disabled),
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-btn:focus-visible:not(:disabled) {
  background: linear-gradient(180deg, rgba(244, 248, 245, 0.98), rgba(234, 241, 237, 0.98));
  color: #183533;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-center {
  border-right-color: rgba(51, 84, 79, 0.12);
  border-left-color: rgba(51, 84, 79, 0.12);
  background: linear-gradient(180deg, rgba(246, 249, 247, 0.98), rgba(238, 244, 241, 0.98));
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-summary-kicker,
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-summary-context,
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-gap {
  color: #6c7f7a;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-summary-range {
  color: #173533;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-page-chip {
  border-color: rgba(51, 84, 79, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #20403d;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-page-chip:hover:not(:disabled),
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-page-chip:focus-visible:not(:disabled) {
  border-color: rgba(168, 116, 18, 0.22);
  background: rgba(249, 246, 238, 0.98);
  color: #173533;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-page-chip.is-active,
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-page-chip.is-active:disabled {
  border-color: rgba(168, 116, 18, 0.22);
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.98), rgba(244, 236, 214, 0.98));
  color: #8a6410;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-rows,
:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-total {
  border-color: rgba(51, 84, 79, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
  color: #5e726e;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-rows select {
  border-color: rgba(51, 84, 79, 0.16);
  background: rgba(249, 251, 249, 0.98);
  color: #1d3a38;
}

:is(body.theme-light, :root[data-theme='light']) .customer-panel-pagination .app-table-pagination-total-pill {
  border-color: rgba(168, 116, 18, 0.16);
  background: rgba(168, 116, 18, 0.08);
  color: #8a6410;
}

@media (max-width: 760px) {
  .customer-topbar {
    padding: 8px 10px;
  }

  .customer-topbar-meta h2 {
    font-size: 23px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .customer-topbar-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .customer-panel-pagination .app-table-pagination-controls {
    grid-template-columns: 46px 82px minmax(0, 1fr) 82px 46px;
  }

  .customer-panel-pagination .app-table-pagination-btn {
    min-height: 50px;
    padding: 0 12px;
    font-size: 10px;
  }

  .customer-panel-pagination .app-table-pagination-btn--edge {
    font-size: 16px;
  }

  .customer-panel-pagination .app-table-pagination-center {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .customer-panel-pagination .app-table-pagination-summary-range {
    font-size: 24px;
  }

  .customer-panel-pagination .app-table-pagination-pages {
    justify-content: flex-start;
  }

  .customer-panel-pagination .app-table-pagination-page-chip {
    min-width: 36px;
    height: 36px;
  }

  .customer-panel-pagination .app-table-pagination-meta {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .customer-panel-pagination .app-table-pagination-rows,
  .customer-panel-pagination .app-table-pagination-total {
    width: 100%;
    justify-content: space-between;
  }

  .customer-panel-pagination .app-table-pagination-rows select {
    min-width: 72px;
  }
}

@media (max-width: 460px) {
  .customer-panel-pagination .app-table-pagination-controls {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 0;
  }

  .customer-panel-pagination .app-table-pagination-controls > :nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .customer-panel-pagination .app-table-pagination-controls > :nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .customer-panel-pagination .app-table-pagination-controls > :nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .customer-panel-pagination .app-table-pagination-controls > :nth-child(4) {
    grid-column: 3;
    grid-row: 1;
  }

  .customer-panel-pagination .app-table-pagination-controls > :nth-child(5) {
    grid-column: 4;
    grid-row: 1;
  }

  .customer-panel-pagination .app-table-pagination-center {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(108, 186, 174, 0.24);
    border-bottom: 1px solid rgba(108, 186, 174, 0.24);
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 12px;
  }

  .customer-panel-pagination .app-table-pagination-btn {
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    border-right: 1px solid rgba(108, 186, 174, 0.2);
    letter-spacing: 0.12em;
  }

  .customer-panel-pagination .app-table-pagination-btn--direction {
    gap: 4px;
  }

  .customer-panel-pagination .app-table-pagination-summary-range {
    font-size: 20px;
  }

  .customer-panel-pagination .app-table-pagination-pages {
    justify-content: flex-start;
    gap: 6px;
  }

  .customer-panel-pagination .app-table-pagination-page-chip {
    min-width: 32px;
    height: 32px;
    padding: 0 9px;
    border-radius: 10px;
    font-size: 12px;
  }

  .customer-panel-pagination .app-table-pagination-btn:last-child {
    border-right: 0;
  }
}

.customer-wallet-shell {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at 14% 18%, rgba(123, 177, 103, 0.18), transparent 36%),
    linear-gradient(160deg, rgba(10, 43, 38, 0.96), rgba(6, 24, 22, 0.94));
}

.customer-wallet-shell-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.customer-wallet-shell-subtitle {
  margin: 0;
  max-width: 56ch;
  color: var(--belora-theme-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.customer-wallet-shell-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.customer-wallet-page-loading {
  margin: -2px 2px 0;
  color: #bfe0d8;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.customer-wallet-page-loading-badge {
  margin: 0;
  padding: 3px 8px;
  border: 1px solid rgba(122, 197, 186, 0.46);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(13, 54, 49, 0.78), rgba(8, 35, 32, 0.74));
  color: #d9f0ea;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.customer-wallet-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(122, 197, 186, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(242, 201, 76, 0.08), transparent 42%),
    linear-gradient(160deg, rgba(9, 37, 34, 0.78), rgba(6, 26, 24, 0.74));
}

.customer-wallet-panel-head .customer-section-head {
  flex: 1;
  min-width: 0;
  gap: 4px;
}

.customer-wallet-panel-title {
  margin: 0;
  font-family: var(--app-font-display);
  font-size: var(--app-title-sm);
  line-height: 1.08;
  letter-spacing: var(--app-title-letter-spacing);
  color: var(--belora-theme-text);
}

.customer-wallet-panel-head small {
  color: #9fc2ba;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

:is(body.theme-light, :root[data-theme='light']) .customer-wallet-panel-head {
  border-color: var(--belora-theme-border-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

:is(body.theme-light, :root[data-theme='light']) .customer-wallet-panel-head small {
  color: var(--belora-theme-text-soft);
}
.customer-wallet-action-btn {
  --customer-action-min-height: 36px;
  --customer-action-padding: 0 10px;
  --customer-action-radius: 10px;
  --customer-action-gap: 6px;
  --customer-action-font-size: 12px;
  --customer-action-font-weight: 700;
  --customer-action-line-height: 1.2;
  --customer-action-letter-spacing: 0.01em;
  --customer-action-disabled-opacity: 0.64;
  border: 1px solid rgba(122, 197, 186, 0.38);
  background: linear-gradient(145deg, rgba(9, 39, 36, 0.85), rgba(6, 30, 28, 0.85));
  color: #d7ece7;
}

.customer-wallet-action-btn-icon {
  width: 12px;
  height: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-wallet-action-btn-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-wallet-action-btn-refresh {
  border-color: rgba(112, 199, 189, 0.58);
  background: linear-gradient(145deg, rgba(33, 109, 98, 0.62), rgba(14, 67, 60, 0.92));
  color: #dffaf4;
}

.customer-wallet-action-btn-retry {
  border-color: rgba(219, 181, 95, 0.54);
  background: linear-gradient(145deg, rgba(93, 75, 31, 0.56), rgba(54, 42, 16, 0.92));
  color: #f3e2ad;
}

.customer-wallet-action-btn:not(:disabled):hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.customer-wallet-action-btn:disabled {
  opacity: 0.64;
  transform: none;
}

body.customer-layout .customer-amount-positive {
  color: var(--app-money-positive-text);
  font-weight: 700;
}

body.customer-layout .customer-amount-negative {
  color: var(--app-money-negative-text);
  font-weight: 700;
}

body.customer-layout .customer-amount-neutral {
  color: var(--app-money-neutral-text);
  font-weight: 700;
}

.customer-verify-grid label {
  display: grid;
  gap: 6px;
  color: #cfe4df;
  font-size: 13px;
}

.customer-verify-grid select,
.customer-verify-grid input,
.customer-card input,
.customer-card select,
.customer-card textarea {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--belora-theme-border-soft);
  background: var(--belora-theme-input-bg);
  color: var(--belora-theme-text);
  padding: 8px 12px;
  box-sizing: border-box;
}
.customer-verify-grid select:focus,
.customer-verify-grid input:focus,
.customer-card input:focus,
.customer-card select:focus,
.customer-card textarea:focus {
  outline: none;
  border-color: rgba(103, 245, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(103, 245, 255, 0.12), 0 0 20px rgba(103, 245, 255, 0.08);
}

.customer-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.customer-section-head small {
  color: var(--belora-theme-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.customer-overview-snapshot-head {
  align-items: flex-start;
}

.customer-overview-updated-badge {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(126, 184, 215, 0.46);
  background: linear-gradient(148deg, rgba(17, 53, 64, 0.72), rgba(9, 36, 43, 0.78));
  color: #d9edf5;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.customer-overview-orders-head {
  align-items: flex-start;
  margin-bottom: 8px;
}

.customer-overview-orders-count {
  margin: 0;
  white-space: nowrap;
}
.customer-loading-card,
.customer-error-card {
  min-height: 160px;
  display: grid;
  place-items: center;
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-muted,
  .trade-orders-action,
  .trade-orders-detail-action,
  .customer-wallet-action-btn,
  .customer-trade-action-btn,
  .customer-profile-page-btn,
  .customer-wallet-flow-btn,
  .customer-wallet-ledger-tab,
  .trade-ref-cancel-btn,
  .trade-ref-action-pill,
  .customer-wallet-history-detail-btn,
  .customer-wallet-requests-icon-button,
  .customer-wallet-requests-utility,
  .customer-wallet-requests-row-action,
  .customer-wallet-collect-submit,
  .customer-withdraw-max-btn,
  .customer-withdraw-otp-send-btn,
  .customer-wallet-transfer-max-btn
) {
  min-width: var(--customer-action-min-width, 0);
  min-height: var(--customer-action-min-height, 2.3rem);
  padding: var(--customer-action-padding, 0 1.05rem);
  border-radius: var(--customer-action-radius, .5rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--customer-action-gap, 0.55rem);
  font-family: var(--customer-action-font-family, "Space Grotesk", "Trebuchet MS", sans-serif);
  font-size: var(--customer-action-font-size, 0.78rem);
  font-weight: var(--customer-action-font-weight, 700);
  line-height: var(--customer-action-line-height, 1.05);
  letter-spacing: var(--customer-action-letter-spacing, 0.06em);
  text-transform: var(--customer-action-text-transform, none);
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .trade-orders-action--primary,
  .trade-orders-detail-action--primary,
  .customer-wallet-requests-utility--primary,
  .customer-wallet-collect-submit
) {
  --customer-action-min-height: 3.15rem;
  --customer-action-padding: 0 1.2rem;
  --customer-action-radius: 999px;
  --customer-action-font-size: 0.82rem;
  --customer-action-font-weight: 700;
  --customer-action-letter-spacing: 0.03em;
  --customer-action-text-transform: none;
  border: 1px solid var(--belora-theme-border-strong);
  background: var(--belora-theme-chip-active-gradient);
  color: var(--belora-theme-text-strong);
  box-shadow:
    0 0 0 1px rgba(111, 248, 255, 0.1),
    0 0 24px rgba(103, 245, 255, 0.1);
}

body.customer-layout :is(.btn, .btn-primary, .btn-outline, .btn-muted).btn-small {
  --customer-action-min-height: var(--control-height-compact);
  --customer-action-padding: 0 0.95rem;
  --customer-action-font-size: 0.72rem;
  --customer-action-letter-spacing: 0.08em;
}

body.customer-layout :is(
  .btn-outline,
  .btn-muted,
  .trade-orders-action--ghost,
  .trade-orders-detail-action--ghost,
  .customer-wallet-action-btn,
  .customer-trade-action-btn,
  .customer-profile-page-btn,
  .customer-wallet-flow-btn,
  .customer-wallet-ledger-tab,
  .trade-ref-cancel-btn,
  .trade-ref-action-pill,
  .customer-wallet-history-detail-btn,
  .customer-wallet-requests-icon-button,
  .customer-wallet-requests-utility--muted,
  .customer-wallet-requests-row-action,
  .customer-withdraw-max-btn,
  .customer-withdraw-otp-send-btn,
  .customer-wallet-transfer-max-btn
) {
  border: 1px solid var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
  box-shadow:
    inset 0 1px 0 rgba(154, 230, 218, 0.08);
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-muted,
  .trade-orders-action,
  .trade-orders-detail-action,
  .customer-wallet-action-btn,
  .customer-trade-action-btn,
  .customer-profile-page-btn,
  .customer-wallet-flow-btn,
  .customer-wallet-ledger-tab,
  .trade-ref-cancel-btn,
  .trade-ref-action-pill,
  .customer-wallet-history-detail-btn,
  .customer-wallet-requests-icon-button,
  .customer-wallet-requests-utility,
  .customer-wallet-requests-row-action,
  .customer-wallet-collect-submit,
  .customer-withdraw-max-btn,
  .customer-withdraw-otp-send-btn,
  .customer-wallet-transfer-max-btn
):is(:hover, :focus-visible) {
  outline: none;
  transform: translateY(-1px);
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .trade-orders-action--primary,
  .trade-orders-detail-action--primary,
  .customer-wallet-requests-utility--primary,
  .customer-wallet-collect-submit
):is(:hover, :focus-visible) {
  border-color: var(--belora-theme-border-strong);
  background: var(--belora-theme-chip-active-gradient);
  color: var(--belora-theme-text-strong);
  box-shadow:
    0 0 0 1px rgba(111, 248, 255, 0.12),
    0 0 28px rgba(103, 245, 255, 0.14);
  filter: saturate(1.08);
}

body.customer-layout :is(
  .btn-outline,
  .btn-muted,
  .trade-orders-action--ghost,
  .trade-orders-detail-action--ghost,
  .customer-wallet-action-btn,
  .customer-trade-action-btn,
  .customer-profile-page-btn,
  .customer-wallet-flow-btn,
  .customer-wallet-ledger-tab,
  .trade-ref-cancel-btn,
  .trade-ref-action-pill,
  .customer-wallet-history-detail-btn,
  .customer-wallet-requests-icon-button,
  .customer-wallet-requests-utility--muted,
  .customer-wallet-requests-row-action,
  .customer-withdraw-max-btn,
  .customer-withdraw-otp-send-btn,
  .customer-wallet-transfer-max-btn
):is(:hover, :focus-visible) {
  border-color: var(--belora-theme-border-strong);
  background: var(--app-chip-hover-bg);
  color: var(--app-chip-hover-text);
  box-shadow:
    0 0 0 1px rgba(111, 248, 255, 0.08),
    0 0 20px rgba(103, 245, 255, 0.08);
}

body.customer-layout :is(
  .customer-profile-page-btn.active,
  .customer-wallet-flow-btn.active,
  .customer-wallet-ledger-tab.active,
  .customer-withdraw-toggle .customer-trade-action-btn.active
) {
  border-color: var(--belora-theme-border-strong);
  background: var(--belora-theme-chip-active-gradient);
  color: var(--belora-theme-text-strong);
  box-shadow:
    0 0 0 1px rgba(111, 248, 255, 0.1),
    0 0 24px rgba(103, 245, 255, 0.1);
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .trade-orders-action--primary,
  .trade-orders-detail-action--primary,
  .customer-wallet-requests-utility--primary,
  .customer-wallet-collect-submit
):disabled {
  border-color: rgba(160, 205, 187, 0.16);
  background: linear-gradient(135deg, rgba(85, 96, 92, 0.58), rgba(52, 60, 57, 0.88));
  color: rgba(243, 244, 239, 0.6);
  box-shadow: none;
  opacity: 1;
  filter: none;
}

body.customer-layout :is(
  .btn,
  .btn-primary,
  .btn-outline,
  .btn-muted,
  .trade-orders-action,
  .trade-orders-detail-action,
  .customer-wallet-action-btn,
  .customer-trade-action-btn,
  .customer-profile-page-btn,
  .customer-wallet-flow-btn,
  .customer-wallet-ledger-tab,
  .trade-ref-cancel-btn,
  .trade-ref-action-pill,
  .customer-wallet-history-detail-btn,
  .customer-wallet-requests-icon-button,
  .customer-wallet-requests-utility,
  .customer-wallet-requests-row-action,
  .customer-wallet-collect-submit,
  .customer-withdraw-max-btn,
  .customer-withdraw-otp-send-btn,
  .customer-wallet-transfer-max-btn
):disabled {
  cursor: not-allowed;
  opacity: var(--customer-action-disabled-opacity, 0.66);
  transform: none;
}

.customer-inline-notice,
.customer-field-error {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  line-height: 1.55;
}

.customer-inline-notice {
  border: 1px solid var(--app-status-live-border);
  background: var(--app-status-live-bg);
  color: var(--app-status-live-text);
}

.customer-inline-notice.good,
.customer-inline-notice.is-good {
  border-color: var(--app-status-live-border);
  background: var(--app-status-live-bg);
  color: var(--app-status-live-text);
}

.customer-inline-notice.warn,
.customer-inline-notice.warning,
.customer-inline-notice.is-warn {
  border-color: var(--app-status-paused-border);
  background: var(--app-status-paused-bg);
  color: var(--app-status-paused-text);
}

.customer-inline-notice.bad,
.customer-inline-notice.error,
.customer-inline-notice.is-bad,
.customer-inline-notice.is-error {
  border-color: var(--app-field-error-border);
  background: var(--app-danger-surface-bg);
  color: var(--app-field-error-text);
}

.customer-inline-notice.muted,
.customer-inline-notice.neutral,
.customer-inline-notice.is-muted {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text-muted);
}

.customer-inline-notice.gold,
.customer-inline-notice.is-gold {
  border-color: rgba(255, 214, 107, 0.38);
  background: linear-gradient(145deg, rgba(255, 214, 107, 0.12), rgba(64, 47, 9, 0.32));
  color: var(--belora-theme-text);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--customer-status-pill-min-width, 6.25rem);
  min-height: var(--customer-status-pill-min-height, auto);
  padding: var(--customer-status-pill-padding, 0.4rem 0.75rem);
  border-radius: 999px;
  border: var(--customer-status-pill-border-width, 1px) solid var(--customer-status-pill-border-color, transparent);
  background: var(--customer-status-pill-background, transparent);
  color: var(--customer-status-pill-color, inherit);
  font-size: var(--customer-status-pill-font-size, 0.78rem);
  font-weight: var(--customer-status-pill-font-weight, 700);
  letter-spacing: var(--customer-status-pill-letter-spacing, 0.04em);
  text-transform: var(--customer-status-pill-text-transform, none);
}

.status-pill.status-approved {
  border-color: rgba(248, 201, 39, 0.18);
  background: rgba(86, 67, 12, 0.5);
  color: #f8d768;
}

.status-pill.status-pending {
  border-color: rgba(138, 211, 215, 0.18);
  background: rgba(13, 54, 59, 0.5);
  color: #8ad3d7;
}

.status-pill.status-rejected {
  border-color: rgba(255, 180, 171, 0.26);
  background: rgba(63, 28, 28, 0.55);
  color: var(--belora-theme-danger);
}

:is(body.theme-light, :root[data-theme='light']) .status-pill.status-approved {
  border-color: rgba(168, 116, 18, 0.18);
  background: rgba(248, 237, 211, 0.86);
  color: #8a6110;
}

:is(body.theme-light, :root[data-theme='light']) .status-pill.status-pending {
  border-color: rgba(15, 92, 88, 0.18);
  background: rgba(223, 242, 232, 0.9);
  color: #0f5c58;
}

:is(body.theme-light, :root[data-theme='light']) .status-pill.status-rejected {
  border-color: rgba(214, 115, 94, 0.18);
  background: rgba(252, 233, 229, 0.92);
  color: #9a4d42;
}

.customer-field-error {
  border: 1px solid var(--app-field-error-border);
  background: var(--app-danger-surface-bg);
  color: var(--app-field-error-text);
}

.customer-profile-activity-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 10px;
}

.customer-profile-activity-toolbar > * {
  min-width: 0;
}

.customer-profile-activity-toolbar .customer-product-search-input {
  width: 100%;
}

.customer-profile-activity-toolbar .customer-profile-page-size-select {
  width: min(240px, 100%);
  justify-self: end;
}

@media (max-width: 679px) {
  .customer-profile-activity-toolbar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .customer-profile-activity-toolbar .customer-profile-page-size-select {
    width: 100%;
    justify-self: stretch;
  }
}

body.customer-layout .panel.card {
  border-color: rgba(132, 211, 201, 0.4);
  background: linear-gradient(145deg, rgba(6, 33, 31, 0.94), rgba(4, 22, 21, 0.9));
  border-radius: 18px;
  box-shadow:
    0 16px 30px rgba(1, 8, 10, 0.34),
    inset 0 1px 0 rgba(146, 228, 215, 0.08);
}

body.customer-layout .table-wrap {
  overflow-x: auto;
}

body.customer-layout table {
  min-width: 660px;
}

body.customer-layout th,
body.customer-layout td {
  border-bottom: 1px solid rgba(122, 197, 186, 0.3);
}

body.customer-layout th {
  color: #dff2ee;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(8, 36, 33, 0.86);
}

body.customer-layout td {
  color: #e6f3ef;
  background: rgba(7, 31, 29, 0.55);
}

body.customer-layout tbody tr:nth-child(even) td {
  background: rgba(9, 39, 36, 0.72);
}

body.customer-layout tbody tr:hover td {
  background: rgba(20, 59, 53, 0.76);
}

.customer-wallet-shell-head-balance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.customer-wallet-shell-copy {
  display: grid;
  gap: 0.45rem;
}

.customer-wallet-shell-kicker {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--belora-theme-gold);
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-wallet-shell h3 {
  margin: 0;
  font-family: "Fraunces", "Palatino Linotype", serif;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--belora-theme-text);
}

.customer-wallet-shell-actions-tools {
  align-self: start;
}
@media (max-width: 860px) {
  .customer-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .customer-overview-snapshot-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .customer-overview-orders-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .customer-shell {
    padding: calc(env(safe-area-inset-top, 0px) + 8px) 8px calc(env(safe-area-inset-bottom, 0px) + 8px);
  }

  .customer-shell > .customer-content {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 88px);
    scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 104px);
  }

  .customer-topbar-overline {
    display: none;
  }

  .customer-topbar-subtitle {
    font-size: 12px;
  }

  .customer-bottom-nav {
    border-radius: 20px;
    padding: 6px;
  }

  .customer-overview-account-head {
    grid-template-columns: 1fr;
  }

  .customer-overview-balance-grid {
    grid-template-columns: 1fr;
  }

  .customer-overview-actions.customer-overview-actions--three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-overview-actions.customer-overview-actions--three-up > :last-child {
    grid-column: 1 / -1;
  }

  .customer-overview-balance-item-wide {
    grid-column: auto;
  }

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

  .customer-overview-balance-value {
    font-size: clamp(36px, 13vw, 52px);
  }

  .customer-overview-board-spread {
    min-width: 0;
    width: 100%;
  }
  .customer-topbar {
    border-radius: 20px;
    padding: 10px 12px 12px;
  }

  .customer-topbar-meta h2 {
    font-size: 25px;
  }

  .customer-topbar-actions {
    gap: 8px;
  }

  .customer-overview-updated-badge {
    min-height: 22px;
    padding: 0 7px;
    font-size: 10px;
    margin-bottom: 12px;
  }

  .customer-bell-btn {
    width: 44px;
    height: 44px;
  }

  .customer-profile-trigger {
    min-width: 44px;
    height: 44px;
    padding: 4px;
    gap: 7px;
  }

  .customer-profile-trigger.is-labeled {
    min-width: 104px;
    padding: 4px 11px 4px 4px;
  }

  .customer-avatar {
    width: 36px;
    height: 34px;
  }

  .customer-alerts-menu {
    width: min(320px, calc(100vw - 16px));
  }

  .customer-profile-drawer-backdrop {
    padding: 8px;
  }

  .customer-profile-drawer {
    width: min(420px, calc(100vw - 16px));
    max-height: calc(100dvh - 16px);
    border-radius: 22px;
    border-left: 1px solid rgba(132, 211, 201, 0.3);
    border-right: 1px solid rgba(132, 211, 201, 0.3);
  }

  .customer-profile-drawer-shell {
    gap: 12px;
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 14px calc(env(safe-area-inset-bottom, 0px) + 16px);
  }

  .customer-profile-drawer-kicker strong {
    font-size: 21px;
  }

  .customer-profile-drawer-close {
    min-height: 40px;
    padding: 0 11px;
    border-radius: 12px;
    font-size: 12px;
  }

  .customer-profile-drawer-account {
    gap: 9px;
    padding: 6px 0 10px;
  }

  .customer-profile-drawer-copy .customer-profile-name {
    font-size: 18px;
  }

  .customer-profile-status-inline {
    gap: 5px;
  }

  .customer-profile-status-chip {
    padding: 6px 8px;
  }

  .customer-profile-item {
    min-height: 58px;
    padding: 11px 13px;
    font-size: 14px;
  }

  .customer-profile-section-title {
    font-size: 10px;
  }

  .customer-profile-signout-wrap {
    padding-top: 10px;
  }

  .customer-hero-top h3 {
    font-size: 30px;
  }

  .customer-hero-holdings strong {
    font-size: 28px;
  }

  .customer-card {
    padding: 12px;
  }
  .customer-section-head small {
    font-size: 13px;
    line-height: 1.35;
  }

  .customer-wallet-shell-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 10px;
  }

  .customer-wallet-panel-title {
    font-size: 20px;
  }

  .customer-wallet-shell-actions {
    width: auto;
    justify-content: flex-end;
  }

  .customer-wallet-panel-head {
    gap: 8px;
  }

  .customer-wallet-shell-head-balance {
    grid-template-columns: 1fr;
  }

  .customer-wallet-shell-actions-tools {
    width: 100%;
    justify-content: flex-start;
  }

  .customer-wallet-summary-grid {
    grid-template-columns: 1fr;
  }

  .customer-wallet-shell h3 {
    font-size: clamp(36px, 13vw, 52px);
  }

  .customer-wallet-flow-summary {
    grid-template-columns: 1fr;
  }

  .customer-wallet-flow-form {
    padding: 12px;
  }

  .customer-wallet-flow-form > .btn.btn-primary {
    width: 100%;
    min-width: 0;
  }

  .customer-wallet-flow-summary-history {
    grid-template-columns: 1fr;
  }

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

  .customer-overview-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .customer-overview-hero {
    gap: 6px;
  }

  .customer-overview-hero .customer-hero-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .customer-overview-subtitle {
    font-size: 13px;
    line-height: 1.38;
  }

  .customer-overview-market-badge {
    width: 100%;
    min-width: 0;
    text-align: left;
    padding: 8px 10px;
  }

  .customer-overview-market-badge strong {
    font-size: 30px;
  }

  .customer-overview-neon-head {
    display: grid;
    gap: 8px;
  }

  .customer-overview-neon-head-main h4 {
    font-size: 34px;
  }

  .customer-overview-neon-subtitle {
    font-size: 13px;
    line-height: 1.38;
  }

  .customer-overview-neon-head-badges {
    justify-items: start;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 6px;
  }

  .customer-overview-neon-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .customer-overview-neon-center {
    min-width: 0;
  }

  .customer-overview-neon-ring {
    width: min(170px, 52vw);
  }

  .customer-overview-neon-side {
    min-height: 0;
    padding: 10px;
  }

  .customer-overview-neon-side strong {
    font-size: clamp(34px, 9vw, 48px);
  }

  .customer-overview-neon-foot {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .customer-overview-neon-actions {
    gap: 6px;
  }

  .customer-overview-neon-btn {
    min-height: 40px;
    font-size: 13px;
  }

  .customer-overview-status-row {
    gap: 6px;
  }

  .customer-overview-status-pill {
    max-width: 100%;
    min-height: 30px;
    padding: 0 9px;
  }

  .customer-overview-hero-foot {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .customer-overview-hero-foot-item {
    padding: 8px;
  }

  .customer-overview-hero-foot-item strong {
    font-size: 13px;
  }

  .customer-overview-action-btn {
    min-height: 40px;
  }

  .customer-overview-grid {
    grid-template-columns: 1fr;
  }

  .customer-overview-snapshot-card .customer-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .customer-overview-snapshot-card .customer-overview-stat {
    padding: 8px;
    gap: 3px;
  }

  .customer-overview-snapshot-card .customer-overview-stat p {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .customer-overview-snapshot-card .customer-overview-stat strong {
    font-size: 14px;
    line-height: 1.25;
  }

  .customer-overview-snapshot-card .customer-overview-stat small {
    font-size: 11px;
    line-height: 1.25;
  }

  .customer-wallet-main-grid {
    grid-template-columns: 1fr;
  }

  .customer-wallet-flow-availability {
    grid-template-columns: 1fr;
  }

  .customer-wallet-flow-availability-compact {
    gap: 5px;
  }

  .customer-withdraw-otp-row,
  .customer-withdraw-pass-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .customer-withdraw-otp-actions {
    grid-column: auto;
  }

  .customer-withdraw-pass-card-head {
    align-items: stretch;
  }

  .customer-withdraw-pass-copy {
    width: 100%;
  }

  .customer-wallet-action-btn {
    min-height: 30px;
    min-width: 30px;
    padding: 0 9px;
    border-radius: 10px;
  }

  .customer-wallet-action-btn-label {
    display: inline;
    font-size: 11px;
    line-height: 1;
  }

  .customer-wallet-action-btn-icon {
    width: 12px;
    height: 12px;
  }

  .customer-wallet-action-btn-icon svg {
    width: 12px;
    height: 12px;
  }


  .app-toast-stack {
    top: auto;
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 88px);
    transform: translateX(-50%);
    width: min(420px, calc(100vw - 20px));
    gap: 8px;
  }

  .app-toast-item {
    border-radius: 13px;
    padding: 10px 11px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .app-toast-item p {
    font-size: 13px;
  }

  .app-toast-close {
    min-height: 30px;
    padding: 0 9px;
    font-size: 13px;
  }

  .customer-panel-pagination.app-table-pagination {
    flex-basis: 100%;
    min-width: 100%;
    margin-left: 0;
  }

  .customer-panel-pagination .app-table-pagination-controls {
    grid-template-columns: 42px 72px minmax(0, 1fr) 72px 42px;
  }

  .customer-panel-pagination .app-table-pagination-btn {
    min-height: 46px;
    padding: 0 10px;
    font-size: 10px;
  }

  .customer-panel-pagination .app-table-pagination-btn--edge {
    font-size: 16px;
  }

  .customer-panel-pagination .app-table-pagination-center {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 0;
    padding: 11px 12px;
  }

  .customer-panel-pagination .app-table-pagination-summary-range {
    font-size: 21px;
  }

  .customer-panel-pagination .app-table-pagination-pages {
    justify-content: flex-start;
    gap: 6px;
  }

  .customer-panel-pagination .app-table-pagination-page-chip {
    min-width: 34px;
    height: 34px;
  }

  .customer-panel-pagination .app-table-pagination-meta {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 4px;
  }

  .customer-panel-pagination .app-table-pagination-rows {
    justify-content: space-between;
    padding-right: 0;
  }

  .customer-panel-pagination .app-table-pagination-rows select {
    min-height: 31px;
    font-size: 12px;
    padding: 0 11px;
  }

  .customer-panel-pagination .app-table-pagination-total {
    justify-content: space-between;
    font-size: 11px;
  }

  .customer-panel-pagination .app-table-pagination-total-pill {
    min-height: 0;
    font-size: 13px;
  }


  .customer-bottom-link {
    min-height: 56px;
  }

  .customer-bottom-icon {
    width: 20px;
    height: 20px;
  }

  .customer-bottom-label {
    font-size: 13px;
  }
}

@media (max-width: 679px) {

  .customer-shell {
    width: min(560px, 100vw);
  }

  .customer-profile-trigger {
    min-width: 44px;
    padding: 4px;
    gap: 6px;
  }

  .customer-profile-trigger.is-labeled {
    min-width: 96px;
    padding: 4px 10px 4px 4px;
  }

  .customer-profile-drawer-backdrop {
    padding: calc(env(safe-area-inset-top, 0px) + 8px) 8px calc(env(safe-area-inset-bottom, 0px) + 8px);
  }

  .customer-profile-drawer {
    width: calc(100vw - 16px);
  }

  .customer-profile-drawer-kicker small {
    display: none;
  }

  .customer-profile-drawer-close {
    min-width: 40px;
    padding: 0 10px;
  }

  .customer-profile-drawer-close-label {
    display: none;
  }

  .customer-profile-status-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-profile-status-chip {
    justify-content: space-between;
  }


  .customer-profile-item-detail {
    display: none;
  }
}

@media (max-width: 640px) {
    white-space: normal;
    line-height: 1.15;
  }
}

@media (min-width: 920px) {
  .customer-shell-desktop {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .customer-content-desktop,
  .customer-content {
    gap: 14px;
  }

}

@media (min-width: 1240px) {
  .customer-shell-desktop {
    width: min(1360px, calc(100vw - 56px));
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .customer-desktop-topbar .customer-topbar-meta h2 {
    font-size: 38px;
  }
}

@media (min-width: 1480px) {
  .customer-overview-neon-book {
    gap: 16px;
    padding: 20px 22px;
  }

  .customer-overview-neon-grid {
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    gap: 16px;
  }

  .customer-overview-neon-side {
    min-height: 188px;
    padding: 16px;
  }

  .customer-overview-neon-side strong {
    font-size: clamp(40px, 3.5vw, 58px);
  }

  .customer-overview-neon-ring {
    width: 144px;
  }

  .customer-overview-neon-ring strong {
    font-size: 22px;
  }
}

@media (min-width: 1880px) {
  .customer-shell-desktop {
    width: min(1540px, calc(100vw - 84px));
    grid-template-columns: 304px minmax(0, 1fr);
  }

  .customer-overview-neon-grid {
    grid-template-columns: minmax(0, 1fr) 198px minmax(0, 1fr);
    gap: 20px;
  }

  .customer-overview-neon-ring {
    width: 168px;
  }
}

/* Unified customer panel chrome */
.customer-desktop-sidebar,
.customer-desktop-topbar,
.customer-topbar,
.customer-alerts-menu,
.customer-profile-drawer,
.customer-bottom-nav {
  border-color: var(--belora-theme-border);
  background: var(--belora-theme-shell-gradient);
  box-shadow:
    var(--belora-theme-shadow),
    inset 0 1px 0 rgba(190, 255, 243, 0.06);
}

.customer-hero-top h3,
.customer-card h2,
.customer-card h3,
.customer-card h4 {
  color: var(--belora-theme-text);
}


.customer-desktop-brand p,
.customer-desktop-brand small,
.customer-topbar-overline,
.customer-topbar-subtitle,
.customer-profile-drawer-kicker small,
.customer-profile-drawer-note,
.customer-profile-email,
.customer-profile-item-detail,
.customer-bottom-link {
  color: var(--belora-theme-text-muted);
}

.customer-desktop-brand strong,
.customer-topbar-meta h2,
.customer-profile-drawer-kicker strong,
.customer-profile-name,
.customer-profile-item-label {
  color: var(--belora-theme-text);
}

.customer-desktop-nav-item,
.customer-desktop-nav-icon,
.customer-profile-trigger,
.customer-profile-drawer-close,
.customer-profile-item,
.customer-bottom-link,
.customer-bell-btn {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
}

.customer-desktop-nav-item.active,
.customer-bottom-link.active,
.customer-profile-item.active {
  border-color: var(--belora-theme-border-strong);
  background: var(--belora-theme-chip-active-gradient);
  color: var(--belora-theme-text-strong);
}

.customer-desktop-nav-item.active .customer-desktop-nav-icon,
.customer-profile-item.active .customer-profile-item-icon {
  border-color: rgba(111, 248, 255, 0.42);
  background: var(--app-chip-solid-strong-bg);
  color: var(--belora-theme-text-strong);
}

.customer-desktop-signout,
.customer-profile-item-danger {
  border-color: rgba(255, 180, 168, 0.36);
  background: var(--app-danger-surface-bg);
  color: var(--belora-theme-danger);
}

.customer-profile-item-icon {
  border-color: var(--belora-theme-border-soft);
  background: var(--app-chip-solid-bg);
  color: var(--belora-theme-text-muted);
}



.customer-alert-badge {
  border-color: rgba(255, 214, 107, 0.4);
  background: var(--belora-theme-gold);
  color: #1b241f;
}

.customer-avatar,
.customer-profile-drawer-avatar {
  background: var(--app-accent-gradient);
  color: var(--app-accent-contrast);
}


.customer-shell-desktop.customer-route-home .customer-desktop-topbar,
.customer-shell-desktop.customer-route-account .customer-desktop-topbar {
  padding: 10px 12px 12px;
  gap: 8px 12px;
  border-radius: 20px;
}

.customer-shell-desktop.customer-route-home .customer-desktop-topbar .customer-topbar-meta h2,
.customer-shell-desktop.customer-route-account .customer-desktop-topbar .customer-topbar-meta h2 {
  font-size: 30px;
}

.customer-shell-desktop.customer-route-home .customer-topbar-overline,
.customer-shell-desktop.customer-route-account .customer-topbar-overline {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.customer-shell-desktop.customer-route-home .customer-topbar-subtitle,
.customer-shell-desktop.customer-route-account .customer-topbar-subtitle {
  margin-top: 2px;
  font-size: 12px;
}

.customer-shell-desktop.customer-route-home .customer-topbar-actions,
.customer-shell-desktop.customer-route-account .customer-topbar-actions {
  gap: 8px;
}

.customer-route-account .customer-section-tabs-list {
  gap: 6px 16px;
}

.customer-route-account .customer-section-tab {
  padding: 8px 10px;
}

body.customer-layout .shell,
body.customer-layout .customer-shell,
body.customer-layout .customer-mobile-header-shell,
body.customer-layout .customer-content {
  overflow-x: hidden;
  overflow-y: visible;
}

.customer-shell > .customer-content {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 104px);
  scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 116px);
}

.customer-route-quick-buy.customer-shell > .customer-content {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 128px);
  scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 140px);
}

.customer-route-wallet.customer-shell > .customer-content {
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 144px);
  scroll-padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 160px);
}

.customer-bottom-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.customer-bottom-nav {
  --customer-bottom-size: 54px;
  --customer-bottom-step: 54px;
  position: fixed;
  left: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: var(--customer-bottom-size);
  min-width: var(--customer-bottom-size);
  min-height: var(--customer-bottom-size);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  overflow: visible;
  pointer-events: none;
}

.customer-bottom-nav::before,
.customer-bottom-nav::after {
  content: none;
}

.customer-bottom-nav-stack {
  position: relative;
  width: 100%;
  min-height: var(--customer-bottom-size);
  pointer-events: auto;
}

.customer-bottom-nav-stack::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--customer-bottom-size);
  height: calc(var(--customer-bottom-size) + (var(--customer-bottom-step) * var(--customer-bottom-stack-count, 0)));
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(8, 30, 38, 0.98), rgba(5, 18, 24, 0.98));
  box-shadow:
    0 18px 32px rgba(1, 8, 10, 0.34),
    inset 0 1px 0 rgba(190, 255, 243, 0.06);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 180ms ease, transform 160ms ease;
  pointer-events: none;
}

.customer-bottom-nav.expanded .customer-bottom-nav-stack::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.customer-bottom-nav-menu {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--customer-bottom-size);
  min-height: var(--customer-bottom-size);
}

.customer-bottom-nav .customer-bottom-link {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  border: 1px solid rgba(97, 200, 192, 0.26);
  color: rgba(226, 239, 237, 0.9);
  transform-origin: center bottom;
  --customer-bottom-press-y: 0px;
  transition:
    transform 160ms ease-out,
    opacity 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.customer-bottom-nav .customer-bottom-link::before {
  content: none;
}

.customer-bottom-nav .customer-bottom-link:focus-visible {
  outline: none;
}

.customer-bottom-nav .customer-bottom-link:active {
  transform: translate3d(0, var(--customer-bottom-press-y), 0) scale(0.96);
}

.customer-bottom-nav .customer-bottom-link--toggle {
  z-index: 3;
  width: var(--customer-bottom-size);
  height: var(--customer-bottom-size);
  min-height: var(--customer-bottom-size);
  padding: 0;
  border-color: rgba(244, 211, 125, 0.58);
  border-radius: 50%;
  background: linear-gradient(180deg, #f3cf70 0%, #ddb04a 100%);
  color: #142022;
  justify-content: center;
  gap: 0;
  box-shadow:
    0 16px 28px rgba(172, 134, 40, 0.24),
    inset 0 1px 0 rgba(255, 251, 232, 0.42);
}

.customer-bottom-nav .customer-bottom-link--toggle:hover,
.customer-bottom-nav .customer-bottom-link--toggle:focus-visible {
  color: #142022;
  border-color: rgba(250, 221, 146, 0.7);
  box-shadow:
    0 18px 30px rgba(172, 134, 40, 0.28),
    inset 0 1px 0 rgba(255, 251, 232, 0.52);
}

.customer-bottom-nav.expanded .customer-bottom-link--toggle {
  box-shadow:
    0 20px 34px rgba(172, 134, 40, 0.28),
    inset 0 1px 0 rgba(255, 251, 232, 0.52);
}

.customer-bottom-nav .customer-bottom-link--stacked {
  width: var(--customer-bottom-size);
  height: var(--customer-bottom-size);
  min-height: var(--customer-bottom-size);
  padding: 0;
  border-color: rgba(84, 194, 188, 0.28);
  border-radius: 50%;
  background: linear-gradient(160deg, #237f7d 0%, #0e4e55 58%, #6a5520 100%);
  color: #e6f2ef;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0) scale(0.82);
  box-shadow:
    0 12px 22px rgba(3, 12, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-bottom-nav .customer-bottom-link--stacked:hover,
.customer-bottom-nav .customer-bottom-link--stacked:focus-visible {
  color: #f5fbfb;
  border-color: rgba(107, 219, 210, 0.36);
  box-shadow:
    0 14px 24px rgba(3, 12, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.customer-bottom-nav.expanded .customer-bottom-link--stacked {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, var(--customer-bottom-shift), 0) scale(1);
  transition-delay: var(--customer-bottom-delay, 0ms);
  --customer-bottom-press-y: var(--customer-bottom-shift);
}

.customer-bottom-nav .customer-bottom-icon {
  position: relative;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.customer-bottom-nav .customer-ui-icon {
  width: 20px;
  height: 20px;
}

.customer-bottom-nav .customer-bottom-icon-glyph {
  position: absolute;
  inset: 0;
  transition: opacity 180ms ease, transform 160ms ease;
}

.customer-bottom-nav .customer-bottom-icon-glyph path {
  vector-effect: non-scaling-stroke;
}

.customer-bottom-nav .customer-bottom-icon-glyph-outline {
  fill: none;
  stroke: currentColor;
  opacity: 1;
  transform: scale(1);
}

.customer-bottom-nav .customer-bottom-icon-glyph-outline path {
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-bottom-nav .customer-bottom-icon-glyph-filled {
  fill: currentColor;
  stroke: none;
  opacity: 0;
  transform: scale(0.82);
}

.customer-bottom-nav .customer-bottom-icon-glyph-filled path {
  fill: currentColor;
  stroke: none;
}

.customer-bottom-nav .customer-bottom-link.active .customer-bottom-icon-glyph-outline {
  opacity: 0;
  transform: scale(0.9);
}

.customer-bottom-nav .customer-bottom-link.active .customer-bottom-icon-glyph-filled {
  opacity: 1;
  transform: scale(1);
}

.customer-bottom-nav .customer-bottom-label {
  display: none;
}

@media (max-width: 679px) {
  .customer-bottom-nav {
    --customer-bottom-size: 50px;
    --customer-bottom-step: 54px;
    left: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .customer-bottom-nav .customer-bottom-icon,
  .customer-bottom-nav .customer-ui-icon {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-bottom-nav,
  .customer-bottom-nav .customer-bottom-link,
  .customer-bottom-nav .customer-bottom-icon-glyph,
  .customer-bottom-nav .customer-bottom-label,
  .customer-bottom-nav-stack::before {
    transition: none;
  }
}

/* Unified customer panel heading hierarchy */
.customer-section-head h4,
.customer-section-head-copy h4 {
  margin: 0;
  font-family: var(--app-font-display);
  font-size: var(--app-title-sm);
  line-height: 1.06;
  letter-spacing: var(--app-title-letter-spacing);
  color: var(--belora-theme-text);
}

.customer-section-head-copy small {
  color: var(--belora-theme-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}


/* Shared customer subnav normalization */
.customer-section-tab {
  color: var(--belora-theme-text-muted);
}

.customer-section-tab:hover,
.customer-section-tab:focus-visible {
  color: var(--belora-theme-text);
}

.customer-section-tab.active {
  color: var(--belora-theme-gold);
}

/* Light mode drawer contrast cleanup */
:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-copy .customer-profile-name,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-item-label {
  color: var(--belora-theme-text);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-copy .customer-profile-email,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-note,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-item-detail,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-item-chevron {
  color: var(--belora-theme-text-muted);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-section-title {
  color: var(--belora-theme-gold);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-item,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-close {
  border-color: var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-item-icon {
  border-color: var(--belora-theme-border-soft);
  background: var(--app-chip-solid-bg);
  color: var(--belora-theme-text-muted);
}

/* Bottom nav and customer surface contrast cleanup */
.customer-bottom-nav-stack::before {
  left: -6px;
  bottom: -6px;
  width: calc(var(--customer-bottom-size) + 12px);
  height: calc(var(--customer-bottom-size) + 12px + (var(--customer-bottom-step) * var(--customer-bottom-stack-count, 0)));
  border: 1px solid var(--belora-theme-border);
  border-radius: 999px;
  background: var(--belora-theme-shell-gradient);
  box-shadow:
    var(--belora-theme-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

:is(body.theme-light, :root[data-theme='light']) .customer-card,
:is(body.theme-light, :root[data-theme='light']) .customer-desktop-topbar,
:is(body.theme-light, :root[data-theme='light']) .customer-topbar,
:is(body.theme-light, :root[data-theme='light']) .customer-alerts-menu,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer {
  box-shadow:
    0 18px 34px rgba(28, 44, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

:is(body.theme-light, :root[data-theme='light']) .customer-card :is(input, select, textarea),
:is(body.theme-light, :root[data-theme='light']) .customer-desktop-nav-item,
:is(body.theme-light, :root[data-theme='light']) .customer-profile-trigger,
:is(body.theme-light, :root[data-theme='light']) .customer-bell-btn,
:is(body.theme-light, :root[data-theme='light']) .customer-bottom-link {
  border-color: var(--belora-theme-border-soft);
}

:is(body.theme-light, :root[data-theme='light']) .customer-bottom-nav-stack::before {
  box-shadow:
    0 18px 34px rgba(28, 44, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

:is(body.theme-light, :root[data-theme='light']) .customer-bottom-nav .customer-bottom-link--stacked {
  border-color: rgba(15, 92, 88, 0.34);
  box-shadow:
    0 14px 24px rgba(28, 44, 48, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

:is(body.theme-light, :root[data-theme='light']) .customer-bottom-nav .customer-bottom-link--toggle {
  border-color: rgba(168, 116, 18, 0.5);
  box-shadow:
    0 16px 28px rgba(172, 134, 40, 0.2),
    inset 0 1px 0 rgba(255, 251, 232, 0.5);
}


/* Editorial vault customer shell */
.customer-editorial-shell {
  position: relative;
}

.customer-editorial-shell.customer-shell-desktop {
  width: min(1500px, calc(100vw - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.customer-editorial-shell.customer-shell {
  width: min(620px, 100vw);
  gap: 16px;
  padding: calc(env(safe-area-inset-top, 0px) + 12px) 12px calc(env(safe-area-inset-bottom, 0px) + 16px);
}

.customer-editorial-shell .customer-shell-panel,
.customer-editorial-shell .customer-shell-footer,
.customer-editorial-shell .customer-desktop-sidebar,
.customer-editorial-shell .customer-alerts-panel,
.customer-editorial-shell .customer-profile-drawer {
  border: 0;
  background: linear-gradient(180deg, rgba(14, 35, 35, 0.96), rgba(4, 24, 24, 0.98));
  box-shadow: 0 24px 48px rgba(0, 17, 17, 0.4);
}

.customer-editorial-shell .customer-desktop-sidebar {
  top: 24px;
  height: calc(100vh - 48px);
  padding: 28px 22px;
  gap: 20px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(248, 201, 39, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 28, 28, 0.98), rgba(2, 17, 17, 0.99));
}

.customer-editorial-shell .customer-desktop-brand {
  display: grid;
  gap: 8px;
}

.customer-editorial-shell .customer-shell-wordmark {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: 2.25rem;
  line-height: 0.9;
  font-style: italic;
  color: #f8c927;
}

.customer-editorial-shell .customer-desktop-brand--vault strong {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(2.8rem, 3vw, 3.9rem);
  line-height: 0.84;
  letter-spacing: -0.04em;
  color: #d0e7e6;
}

.customer-editorial-shell .customer-desktop-brand--vault small {
  margin: 0;
  color: rgba(208, 231, 230, 0.58);
  font-size: 0.8rem;
  line-height: 1.45;
}

.customer-editorial-shell .customer-sidebar-intro,
.customer-editorial-shell .customer-sidebar-status-card {
  display: grid;
  gap: 10px;
  border-radius: 28px;
  background: rgba(10, 31, 31, 0.88);
  padding: 18px;
}

.customer-editorial-shell .customer-sidebar-tier,
.customer-editorial-shell .customer-sidebar-status-head span:first-child,
.customer-editorial-shell .customer-topbar-status-kicker,
.customer-editorial-shell .customer-shell-footer-meta,
.customer-editorial-shell .customer-alerts-head-copy small,
.customer-editorial-shell .customer-profile-section-title,
.customer-editorial-shell .customer-profile-drawer-kicker small {
  color: rgba(138, 211, 215, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-editorial-shell .customer-sidebar-intro p,
.customer-editorial-shell .customer-sidebar-status-copy,
.customer-editorial-shell .customer-topbar-subtitle,
.customer-editorial-shell .customer-shell-footer-copy p,
.customer-editorial-shell .customer-alerts-empty small,
.customer-editorial-shell .customer-profile-drawer-note,
.customer-editorial-shell .customer-profile-item-detail,
.customer-editorial-shell .customer-profile-email {
  margin: 0;
  color: rgba(208, 231, 230, 0.68);
  line-height: 1.6;
}

.customer-editorial-shell .customer-desktop-nav {
  gap: 10px;
  padding-right: 0;
}

.customer-editorial-shell .customer-shell-nav-item {
  min-height: 60px;
  padding: 14px 16px;
  border: 0;
  border-radius: 22px;
  background: rgba(14, 35, 35, 0.84);
  color: rgba(208, 231, 230, 0.86);
}

.customer-editorial-shell .customer-shell-nav-item:hover,
.customer-editorial-shell .customer-shell-nav-item:focus-visible {
  color: #d0e7e6;
  background: rgba(25, 45, 45, 0.94);
  outline: none;
}

.customer-editorial-shell .customer-shell-nav-item.active {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.18), rgba(14, 35, 35, 0.96));
  color: #f8c927;
}

.customer-editorial-shell .customer-desktop-nav-main {
  gap: 12px;
}

.customer-editorial-shell .customer-desktop-nav-icon {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 16px;
  padding: 10px;
  background: rgba(25, 45, 45, 0.92);
  color: #8ad3d7;
}

.customer-editorial-shell .customer-shell-nav-item.active .customer-desktop-nav-icon {
  background: rgba(248, 201, 39, 0.16);
  color: #f8c927;
}

.customer-editorial-shell .customer-nav-chevron {
  color: rgba(138, 211, 215, 0.4);
  font-size: 1rem;
  line-height: 1;
}

.customer-editorial-shell .customer-sidebar-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-editorial-shell .customer-sidebar-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f8c927;
  box-shadow: 0 0 18px rgba(248, 201, 39, 0.46);
}

.customer-editorial-shell .customer-profile-status-inline--sidebar {
  display: grid;
  gap: 8px;
}

.customer-editorial-shell .customer-profile-status-inline--sidebar .customer-profile-status-chip {
  justify-content: space-between;
}

.customer-editorial-shell .customer-desktop-main--editorial,
.customer-editorial-shell .customer-mobile-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.customer-editorial-shell .customer-desktop-topbar,
.customer-editorial-shell .customer-topbar {
  top: 24px;
  padding: 22px 24px;
  border-radius: 32px;
  background: rgba(2, 22, 22, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0, 17, 17, 0.4);
}

.customer-editorial-shell .customer-topbar.scrolled {
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(0, 17, 17, 0.44);
}

.customer-editorial-shell .customer-topbar-meta h2 {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: #d0e7e6;
}

.customer-editorial-shell .customer-topbar-overline {
  color: rgba(138, 211, 215, 0.78);
}

.customer-editorial-shell .customer-topbar-actions--editorial {
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.customer-editorial-shell .customer-topbar-status {
  min-width: 180px;
  display: grid;
  gap: 3px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(10, 31, 31, 0.84);
}

.customer-editorial-shell .customer-topbar-status strong,
.customer-editorial-shell .customer-shell-footer-copy strong,
.customer-editorial-shell .customer-alerts-head-copy p,
.customer-editorial-shell .customer-profile-drawer-kicker strong,
.customer-editorial-shell .customer-profile-name {
  margin: 0;
  font-family: 'Newsreader', serif;
  color: #d0e7e6;
}

.customer-editorial-shell .customer-topbar-status strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.customer-editorial-shell .customer-shell-icon-btn,
.customer-editorial-shell .customer-profile-drawer-close,
.customer-editorial-shell .customer-alerts-refresh,
.customer-editorial-shell .customer-alerts-clear,
.customer-editorial-shell .customer-alerts-close {
  border: 0;
  background: rgba(14, 35, 35, 0.88);
  color: #8ad3d7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.customer-editorial-shell .customer-shell-icon-btn {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 18px;
}

.customer-editorial-shell .customer-topbar-search-shell {
  min-width: 0;
}

.customer-editorial-shell .customer-topbar-search {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px 0 48px;
  border-radius: 18px;
  border: 1px solid rgba(138, 211, 215, 0.12);
  background: rgba(14, 35, 35, 0.88);
}

.customer-editorial-shell .customer-topbar-search-icon {
  position: absolute;
  left: 16px;
  color: #8ad3d7;
  font-size: 1.15rem;
}

.customer-editorial-shell .customer-topbar-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #d0e7e6;
  font: inherit;
  font-size: 1rem;
}

.customer-editorial-shell .customer-topbar-search-input::placeholder {
  color: rgba(138, 211, 215, 0.44);
}

.customer-editorial-shell .customer-topbar-search-input:focus {
  outline: none;
}

.customer-editorial-shell .customer-shell-icon-btn:hover,
.customer-editorial-shell .customer-shell-icon-btn:focus-visible,
.customer-editorial-shell .customer-profile-drawer-close:hover,
.customer-editorial-shell .customer-profile-drawer-close:focus-visible,
.customer-editorial-shell .customer-alerts-refresh:hover,
.customer-editorial-shell .customer-alerts-refresh:focus-visible,
.customer-editorial-shell .customer-alerts-clear:hover,
.customer-editorial-shell .customer-alerts-clear:focus-visible,
.customer-editorial-shell .customer-alerts-close:hover,
.customer-editorial-shell .customer-alerts-close:focus-visible,
.customer-editorial-shell .customer-shell-footer-link:hover,
.customer-editorial-shell .customer-shell-footer-link:focus-visible,
.customer-editorial-shell .customer-section-tab:hover,
.customer-editorial-shell .customer-section-tab:focus-visible,
.customer-editorial-shell .customer-profile-item:hover,
.customer-editorial-shell .customer-profile-item:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.customer-editorial-shell .customer-profile-trigger.is-labeled {
  width: auto;
  padding: 6px 16px 6px 6px;
}

.customer-editorial-shell .customer-profile-trigger-label {
  color: #d0e7e6;
}

.customer-editorial-shell .customer-avatar {
  width: 40px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
  color: #3d2f00;
}

.customer-editorial-shell .customer-alert-badge {
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border: 0;
  background: #f8c927;
  color: #3d2f00;
}

.customer-editorial-shell .customer-section-shell,
.customer-editorial-shell .customer-section-tabs,
.customer-editorial-shell .customer-section-tabs--inline {
  gap: 0;
}

.customer-editorial-shell .customer-section-tabs-list {
  width: fit-content;
  max-width: 100%;
  border: 0;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10, 31, 31, 0.78);
}

.customer-editorial-shell .customer-section-tab {
  min-height: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 999px;
  color: rgba(138, 211, 215, 0.76);
}

.customer-editorial-shell .customer-section-tab.active {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.18), rgba(80, 197, 184, 0.12));
  color: #f8c927;
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-section-tabs-list {
  border: 1px solid rgba(51, 84, 79, 0.14);
  background: linear-gradient(180deg, rgba(244, 248, 245, 0.98), rgba(237, 244, 240, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-section-tab {
  color: rgba(48, 73, 70, 0.78);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-section-tab:hover,
:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-section-tab:focus-visible {
  color: #173532;
  background: rgba(15, 92, 88, 0.05);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-section-tab.active {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.98), rgba(227, 177, 21, 0.98));
  color: #2e2200;
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar {
  border-color: rgba(51, 84, 79, 0.14);
  background: linear-gradient(180deg, rgb(255, 254, 251), rgb(222, 221, 217));
  box-shadow: 1px 3px #d5d0c1;
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar.scrolled {
  box-shadow: 0 20px 36px rgba(28, 44, 48, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-shell-icon-btn,
:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-profile-trigger {
  border: 1px solid rgba(51, 84, 79, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 245, 0.98));
  color: #173532;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar-search {
  border-color: rgba(51, 84, 79, 0.12);
  background: linear-gradient(180deg, rgba(247, 250, 247, 0.98), rgba(239, 245, 242, 0.98));
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar-search-input,
:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar-search-input::placeholder,
:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-topbar-search-icon {
  color: rgba(71, 92, 89, 0.78);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-phone-brand-title {
  color: #8a6110;
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell:not(.customer-shell-desktop) .customer-phone-brand-subtitle {
  color: rgba(71, 92, 89, 0.62);
}

.customer-editorial-shell .customer-desktop-stage--editorial {
  display: block;
}

.customer-editorial-shell .customer-content,
.customer-editorial-shell .customer-content-desktop {
  gap: 18px;
}

.customer-editorial-shell .customer-content-desktop {
  min-height: calc(100vh - 186px);
}

.customer-editorial-shell .customer-shell-footer {
  margin-top: 12px;
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(10, 31, 31, 0.84);
}

.customer-editorial-shell .customer-shell-footer-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.customer-editorial-shell .customer-shell-wordmark--footer {
  flex-shrink: 0;
  font-size: 1.9rem;
}

.customer-editorial-shell .customer-shell-footer-copy strong {
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.customer-editorial-shell .customer-shell-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-editorial-shell .customer-shell-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(25, 45, 45, 0.9);
  color: rgba(208, 231, 230, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.customer-editorial-shell .customer-shell-footer-link[aria-current='page'] {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.18), rgba(25, 45, 45, 0.94));
  color: #f8c927;
}

.customer-editorial-shell .customer-shell-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-editorial-shell .customer-alerts-backdrop,
.customer-editorial-shell .customer-profile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 115;
  padding: 24px;
  background: linear-gradient(180deg, rgba(2, 22, 22, 0.16), rgba(2, 22, 22, 0.64));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.customer-editorial-shell .customer-profile-drawer-backdrop {
  z-index: 120;
}

.customer-editorial-shell .customer-alerts-panel {
  position: fixed;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100vw - 48px));
  border: 1px solid var(--belora-theme-border);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(248, 201, 39, 0.12), transparent 28%),
    var(--belora-theme-shell-gradient);
  box-shadow:
    var(--belora-theme-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.customer-editorial-shell .customer-alerts-panel-shell {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px;
}

.customer-editorial-shell .customer-alerts-head--editorial {
  align-items: flex-start;
}

.customer-editorial-shell .customer-alerts-head-copy {
  display: grid;
  gap: 6px;
}

.customer-editorial-shell .customer-alerts-head-copy small {
  color: var(--belora-theme-text-soft);
}

.customer-editorial-shell .customer-alerts-head-copy p {
  font-size: 2.3rem;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--belora-theme-gold);
}

.customer-editorial-shell .customer-alerts-toolbar {
  display: grid;
  gap: 12px;
}

.customer-editorial-shell .customer-alerts-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.customer-editorial-shell .customer-alerts-meta {
  margin: 0;
  color: var(--belora-theme-text-muted);
  font-size: 0.82rem;
}

.customer-editorial-shell .customer-alerts-refresh,
.customer-editorial-shell .customer-alerts-clear {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.customer-editorial-shell .customer-alerts-refresh,
.customer-editorial-shell .customer-alerts-close {
  border: 1px solid var(--belora-theme-border-soft);
  background: var(--belora-theme-chip-gradient);
  color: var(--belora-theme-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-editorial-shell .customer-alerts-clear {
  border: 1px solid var(--app-primary-button-border);
  background: var(--app-accent-gradient);
  color: var(--app-accent-contrast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.customer-editorial-shell .customer-alerts-close {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-editorial-shell .customer-alerts-close svg {
  width: 18px;
  height: 18px;
}

.customer-editorial-shell .customer-alerts-close path {
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.customer-editorial-shell .customer-alerts-list--panel {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  gap: 12px;
}

.customer-editorial-shell .customer-alert-item {
  border: 1px solid var(--belora-theme-border-soft);
  border-radius: 22px;
  min-height: 0;
  padding: 16px;
  align-items: flex-start;
  background: var(--belora-theme-card-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  gap: 12px;
}

.customer-editorial-shell .customer-alert-item:hover,
.customer-editorial-shell .customer-alert-item:focus-visible {
  background: var(--belora-theme-chip-gradient);
  outline: none;
}

.customer-editorial-shell .customer-alert-item:disabled {
  cursor: default;
}

.customer-editorial-shell .customer-alert-item-marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--belora-theme-cyan);
  flex-shrink: 0;
}

.customer-editorial-shell .customer-alert-item.is-warning .customer-alert-item-marker {
  background: var(--belora-theme-gold);
}

.customer-editorial-shell .customer-alert-item.is-error .customer-alert-item-marker {
  background: var(--belora-theme-danger);
}

.customer-editorial-shell .customer-alert-item-text {
  flex: 1;
  gap: 6px;
}

.customer-editorial-shell .customer-alert-item-text strong {
  color: var(--belora-theme-text);
  font-size: 1rem;
}

.customer-editorial-shell .customer-alert-item-text small {
  color: var(--belora-theme-text-muted);
  font-size: 0.84rem;
}

.customer-editorial-shell .customer-alert-item-chevron {
  color: var(--belora-theme-gold);
  font-size: 1.1rem;
  line-height: 1;
}

.customer-editorial-shell .customer-alerts-empty {
  margin-top: auto;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--belora-theme-border-soft);
  border-radius: 24px;
  background: var(--belora-theme-card-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.customer-editorial-shell .customer-alerts-empty p {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: 1.7rem;
  line-height: 0.94;
  color: var(--belora-theme-text);
}

.customer-editorial-shell .customer-alerts-empty small {
  color: var(--belora-theme-text-muted);
}

:is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-alerts-backdrop {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.18), rgba(23, 50, 56, 0.28));
}

.customer-editorial-shell .customer-profile-drawer {
  width: min(440px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  margin-left: auto;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(248, 201, 39, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 28, 28, 0.98), rgba(2, 17, 17, 0.99));
}

.customer-editorial-shell .customer-profile-drawer-shell {
  gap: 18px;
  padding: 24px 22px;
}

.customer-editorial-shell .customer-profile-drawer-head {
  align-items: flex-start;
}

.customer-editorial-shell .customer-profile-drawer-kicker strong {
  font-size: 2.2rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.customer-editorial-shell .customer-profile-drawer-close {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
}

.customer-editorial-shell .customer-profile-drawer-account {
  border: 0;
  border-radius: 28px;
  padding: 18px;
  background: rgba(10, 31, 31, 0.84);
}

.customer-editorial-shell .customer-profile-drawer-avatar {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
  color: #3d2f00;
}

.customer-editorial-shell .customer-profile-name {
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.customer-editorial-shell .customer-profile-status-inline {
  gap: 8px;
}

.customer-editorial-shell .customer-profile-status-chip {
  border: 0;
  background: rgba(25, 45, 45, 0.92);
  color: #d0e7e6;
}

.customer-editorial-shell .customer-profile-status-chip.is-good {
  background: rgba(18, 74, 60, 0.88);
}

.customer-editorial-shell .customer-profile-status-chip.is-warn {
  background: rgba(92, 71, 19, 0.88);
}

.customer-editorial-shell .customer-profile-status-chip.is-bad {
  background: rgba(96, 31, 40, 0.88);
}

.customer-editorial-shell .customer-profile-drawer-footer {
  border: 0;
  padding-top: 0;
}

.customer-editorial-shell .customer-profile-item {
  border: 0;
  border-radius: 22px;
  background: rgba(14, 35, 35, 0.88);
  color: #d0e7e6;
}

.customer-editorial-shell .customer-profile-item.active {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.18), rgba(14, 35, 35, 0.96));
  color: #f8c927;
}

.customer-editorial-shell .customer-profile-item-icon {
  border: 0;
  background: rgba(25, 45, 45, 0.92);
  color: #8ad3d7;
}

.customer-editorial-shell .customer-profile-item.active .customer-profile-item-icon {
  background: rgba(248, 201, 39, 0.16);
  color: #f8c927;
}

.customer-editorial-shell .customer-profile-item-danger {
  background: rgba(83, 23, 30, 0.74);
  color: #ffdad6;
}

.customer-editorial-shell .customer-profile-item-danger .customer-profile-item-icon {
  background: rgba(108, 34, 43, 0.78);
  color: #ffdad6;
}

@media (max-width: 919px) {
  .customer-editorial-shell .customer-topbar,
  .customer-editorial-shell .customer-shell-footer {
    border-radius: 24px;
  }

  .customer-editorial-shell .customer-mobile-header-shell {
    gap: 10px;
  }

  .customer-editorial-shell .customer-topbar {
    top: 0;
    height: 68px;
    min-height: 68px;
    padding: 10px 12px;
    gap: 10px;
  }

  .customer-editorial-shell .customer-topbar-search {
    min-height: 48px;
    border-radius: 16px;
  }

  .customer-editorial-shell .customer-topbar .customer-shell-icon-btn,
  .customer-editorial-shell .customer-topbar .customer-profile-trigger {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .customer-editorial-shell .customer-topbar-actions--editorial {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .customer-editorial-shell .customer-topbar-divider {
    display: none;
  }

  .customer-editorial-shell .customer-topbar .customer-profile-trigger--editorial {
    padding: 0;
    gap: 0;
  }

  .customer-editorial-shell.customer-route-home .customer-topbar,
  .customer-editorial-shell.customer-route-account .customer-topbar {
    height: 68px;
    min-height: 68px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 24px;
  }

  .customer-editorial-shell.customer-route-home .customer-topbar .customer-shell-icon-btn,
  .customer-editorial-shell.customer-route-home .customer-topbar .customer-profile-trigger,
  .customer-editorial-shell.customer-route-account .customer-topbar .customer-shell-icon-btn,
  .customer-editorial-shell.customer-route-account .customer-topbar .customer-profile-trigger {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .customer-editorial-shell .customer-section-tabs-list {
    width: 100%;
  }

  .customer-editorial-shell .customer-shell-footer-copy,
  .customer-editorial-shell .customer-shell-footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-editorial-shell .customer-alerts-backdrop,
  .customer-editorial-shell .customer-profile-drawer-backdrop {
    padding: 12px;
  }

  .customer-editorial-shell .customer-alerts-panel,
  .customer-editorial-shell .customer-profile-drawer {
    width: auto;
    max-height: calc(100dvh - 24px);
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .customer-editorial-shell .customer-alerts-panel-shell,
  .customer-editorial-shell .customer-profile-drawer-shell {
    padding: 20px 18px;
  }
}

@media (max-width: 679px) {
  .customer-editorial-shell .customer-topbar-meta h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .customer-editorial-shell .customer-shell-icon-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .customer-editorial-shell .customer-profile-trigger.is-labeled {
    padding-right: 12px;
  }

  .customer-editorial-shell .customer-shell-footer {
    padding: 18px;
  }

  .customer-editorial-shell .customer-shell-footer-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .customer-editorial-shell .customer-alerts-head-copy p,
  .customer-editorial-shell .customer-profile-drawer-kicker strong,
  .customer-editorial-shell .customer-profile-name {
    font-size: 1.9rem;
  }
}


/* Editorial vault account drawer overrides */
.customer-profile-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 24px;
  background: linear-gradient(180deg, rgba(2, 22, 22, 0.16), rgba(2, 22, 22, 0.64));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.customer-profile-drawer {
  width: min(440px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  margin-left: auto;
  border: 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(248, 201, 39, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(5, 28, 28, 0.98), rgba(2, 17, 17, 0.99));
  box-shadow: 0 24px 48px rgba(0, 17, 17, 0.4);
}

.customer-profile-drawer-shell {
  gap: 18px;
  padding: 24px 22px;
}

.customer-profile-drawer-head {
  align-items: flex-start;
}

.customer-profile-drawer-kicker small,
.customer-profile-section-title {
  color: rgba(138, 211, 215, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-profile-drawer-kicker strong,
.customer-profile-name {
  margin: 0;
  font-family: 'Newsreader', serif;
  color: #d0e7e6;
}

.customer-profile-drawer-kicker strong {
  font-size: 2.2rem;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.customer-profile-drawer-close {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 16px;
  background: rgba(14, 35, 35, 0.88);
  color: #8ad3d7;
}

.customer-profile-drawer-account {
  border: 0;
  border-radius: 28px;
  padding: 18px;
  background: rgba(10, 31, 31, 0.84);
}

.customer-profile-drawer-avatar {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
  color: #3d2f00;
}

.customer-profile-name {
  font-size: 2rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.customer-profile-email,
.customer-profile-drawer-note,
.customer-profile-item-detail {
  color: rgba(208, 231, 230, 0.68);
}

.customer-profile-status-inline {
  gap: 8px;
}

.customer-profile-status-chip {
  border: 0;
  background: rgba(25, 45, 45, 0.92);
  color: #d0e7e6;
}

.customer-profile-status-chip.is-good {
  background: rgba(18, 74, 60, 0.88);
}

.customer-profile-status-chip.is-warn {
  background: rgba(92, 71, 19, 0.88);
}

.customer-profile-status-chip.is-bad {
  background: rgba(96, 31, 40, 0.88);
}

.customer-profile-drawer-footer {
  border: 0;
  padding-top: 0;
}

.customer-profile-item {
  border: 0;
  border-radius: 22px;
  background: rgba(14, 35, 35, 0.88);
  color: #d0e7e6;
}

.customer-profile-item.active {
  background: linear-gradient(135deg, rgba(248, 201, 39, 0.18), rgba(14, 35, 35, 0.96));
  color: #f8c927;
}

.customer-profile-item-icon {
  border: 0;
  background: rgba(25, 45, 45, 0.92);
  color: #8ad3d7;
}

.customer-profile-item.active .customer-profile-item-icon {
  background: rgba(248, 201, 39, 0.16);
  color: #f8c927;
}

.customer-profile-item-danger {
  background: rgba(83, 23, 30, 0.74);
  color: #ffdad6;
}

.customer-profile-item-danger .customer-profile-item-icon {
  background: rgba(108, 34, 43, 0.78);
  color: #ffdad6;
}

@media (max-width: 919px) {
  .customer-profile-drawer-backdrop {
    padding: 12px;
  }

  .customer-profile-drawer {
    width: auto;
    max-height: calc(100dvh - 24px);
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .customer-profile-drawer-shell {
    padding: 20px 18px;
  }
}

@media (max-width: 679px) {
  .customer-profile-drawer-kicker strong,
  .customer-profile-name {
    font-size: 1.9rem;
  }
}


/* Editorial vault phone shell refinements */
.customer-bottom-nav-bar {
  display: none;
}

.customer-phone-brand {
  min-width: 0;
  text-align: center;
  display: grid;
  gap: 4px;
}

.customer-phone-brand-title {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 0.9;
  letter-spacing: 0.16em;
  color: #f8c927;
}

.customer-phone-brand-subtitle {
  margin: 0;
  color: rgba(138, 211, 215, 0.54);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.customer-menu-icon {
  width: 22px;
  height: 22px;
}

.customer-menu-icon path {
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
}

.customer-bottom-link-bubble,
.customer-bottom-link-label,
.customer-bottom-bar-icon {
  display: none;
}

@media (max-width: 679px) {
  .customer-editorial-shell.customer-shell {
    width: 100vw;
    gap: 14px;
    padding: 0 12px calc(env(safe-area-inset-bottom, 0px) + 108px);
  }

  .customer-editorial-shell .customer-mobile-header-shell {
    gap: 12px;
  }

  .customer-editorial-shell .customer-topbar--phone {
    top: 0;
    height: 68px;
    min-height: 68px;
    margin: 0;
    padding: 10px 12px;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 10px;
    border-radius: 24px;
    background: rgba(2, 22, 22, 0.82);
    box-shadow: 0 18px 36px rgba(0, 17, 17, 0.18);
  }

  .customer-editorial-shell .customer-topbar--phone.scrolled {
    box-shadow: 0 18px 36px rgba(0, 17, 17, 0.34);
  }

  .customer-editorial-shell .customer-topbar--phone .customer-shell-icon-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .customer-editorial-shell .customer-topbar--phone .customer-profile-trigger--phone,
  .customer-editorial-shell .customer-topbar--phone .customer-shell-icon-btn--menu {
    justify-self: stretch;
  }

  .customer-editorial-shell .customer-topbar--phone .customer-alert-badge {
    top: -4px;
    right: -4px;
  }

  .customer-editorial-shell .customer-topbar--phone .customer-avatar {
    width: 36px;
    height: 38px;
    border-radius: 12px;
  }

  .customer-editorial-shell.customer-route-home .customer-topbar--phone,
  .customer-editorial-shell.customer-route-account .customer-topbar--phone {
    padding: 8px 10px;
    gap: 8px;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-topbar--phone {
    border: 1px solid rgba(51, 84, 79, 0.1);
    background: linear-gradient(180deg, rgba(251, 252, 250, 0.96), rgba(242, 247, 244, 0.98));
    box-shadow: 0 18px 30px rgba(28, 44, 48, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-topbar--phone.scrolled {
    box-shadow: 0 18px 30px rgba(28, 44, 48, 0.12);
  }

  .customer-editorial-shell .customer-section-tabs--inline {
    margin-top: 2px;
  }

  .customer-editorial-shell .customer-section-tabs--inline .customer-section-tabs-list {
    width: calc(100vw - 24px);
    margin: 0 auto;
    border-radius: 24px;
    padding: 6px;
  }

  .customer-editorial-shell .customer-shell-footer--mobile {
    gap: 10px;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(10, 31, 31, 0.72);
  }

  .customer-editorial-shell .customer-shell-footer--mobile .customer-shell-footer-copy strong {
    font-size: 1.5rem;
  }

  .customer-editorial-shell .customer-shell-footer--mobile .customer-shell-footer-links {
    display: none;
  }

  .customer-editorial-shell .customer-shell-footer--mobile .customer-shell-footer-meta {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .customer-bottom-nav-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(var(--customer-phone-nav-count, 5), minmax(0, 1fr));
    align-items: end;
    gap: 2px;
    padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 1px);
    background: rgba(2, 22, 22, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 0.5px solid rgba(248, 201, 39, 0.15);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -12px 24px rgba(0, 17, 17, 0.6);
  }

  .customer-bottom-link--phone {
    min-width: 0;
    text-decoration: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: rgba(138, 211, 215, 0.62);
    padding: 6px 4px 2px;
    border: none;
    border-radius: 18px;
    transform: scale(0.95);
    transition: transform 180ms ease, color 180ms ease, background 180ms ease;
  }

  .customer-bottom-link--phone:hover,
  .customer-bottom-link--phone:focus-visible {
    outline: none;
    color: rgba(248, 201, 39, 0.88);
  }

  .customer-bottom-link--phone.active {
    color: #f8c927;
    background: none;
  }

  .customer-bottom-link-bubble,
  .customer-bottom-link-label,
  .customer-bottom-bar-icon {
    display: block;
  }

  .customer-bottom-link-bubble {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: currentColor;
    transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  }

  .customer-bottom-link--phone.active .customer-bottom-link-bubble {
    background: linear-gradient(180deg, rgba(248, 201, 39, 0.18), rgba(248, 201, 39, 0.08));
  }

  .customer-bottom-link-bubble--quick-buy {
    border-radius: 999px;
  }

  .customer-bottom-link--phone.is-emphasis {
    transform: translateY(-14px) scale(0.95);
    padding-top: 0;
    background: transparent;
  }

  .customer-bottom-link--phone.is-emphasis .customer-bottom-link-bubble {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
    color: #3d2f00;
    box-shadow: 0 18px 30px rgba(248, 201, 39, 0.3);
  }

  .customer-bottom-link-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    margin-top: 1px;
  }

  .customer-bottom-link--phone.active .customer-bottom-link-label {
    color: #f8c927;
  }

  .customer-bottom-link--phone.is-emphasis .customer-bottom-link-label {
    color: rgba(138, 211, 215, 0.76);
    margin-top: 3px;
  }

  .customer-bottom-link--phone.is-emphasis.active .customer-bottom-link-label {
    color: #f8c927;
  }

  .customer-bottom-bar-icon {
    position: absolute;
    inset: 0;
    width: 21px;
    height: 21px;
    margin: auto;
    transition: opacity 180ms ease, transform 160ms ease;
  }

  .customer-bottom-bar-icon path {
    vector-effect: non-scaling-stroke;
  }

  .customer-bottom-bar-icon--outline {
    opacity: 1;
    transform: scale(1);
  }

  .customer-bottom-bar-icon--outline path {
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .customer-bottom-bar-icon--filled {
    opacity: 0;
    transform: scale(0.82);
  }

  .customer-bottom-bar-icon--filled path {
    fill: currentColor;
    stroke: none;
  }

  .customer-bottom-link--phone.active .customer-bottom-bar-icon--outline,
  .customer-bottom-link--phone.is-emphasis .customer-bottom-bar-icon--outline {
    opacity: 0;
    transform: scale(0.9);
  }

  .customer-bottom-link--phone.active .customer-bottom-bar-icon--filled,
  .customer-bottom-link--phone.is-emphasis .customer-bottom-bar-icon--filled {
    opacity: 1;
    transform: scale(1);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-nav-bar {
    background: rgba(248, 251, 249, 0.94);
    border-top-color: rgba(168, 116, 18, 0.14);
    box-shadow: 0 -12px 24px rgba(28, 44, 48, 0.18);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone {
    color: rgba(15, 92, 88, 0.6);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone.active {
    background: none;
    color: #8a6110;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone.active .customer-bottom-link-bubble {
    background: rgba(248, 201, 39, 0.16);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone.is-emphasis .customer-bottom-link-bubble {
    box-shadow: 0 18px 30px rgba(172, 134, 40, 0.18);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone.is-emphasis .customer-bottom-link-label {
    color: rgba(15, 92, 88, 0.72);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-bottom-link--phone.is-emphasis.active .customer-bottom-link-label {
    color: #8a6110;
  }

  .customer-bottom-nav {
    display: none;
  }

  .customer-editorial-shell .customer-alerts-backdrop {
    padding: 0;
    background: rgba(2, 22, 22, 0.56);
  }

  .customer-editorial-shell .customer-alerts-panel {
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    width: min(320px, calc(100vw - 44px));
    max-height: none;
    border-radius: 0 28px 28px 0;
  }

  .customer-editorial-shell .customer-alerts-panel-shell {
    padding: calc(env(safe-area-inset-top, 0px) + 18px) 20px calc(env(safe-area-inset-bottom, 0px) + 20px);
  }

  .customer-editorial-shell .customer-alerts-head-copy p {
    font-size: 1.85rem;
  }

  .customer-editorial-shell .customer-alerts-toolbar-actions {
    gap: 8px;
  }

  .customer-editorial-shell .customer-alert-item {
    border-radius: 18px;
    padding: 14px;
  }

  .customer-profile-drawer-backdrop {
    padding: 12px;
    align-items: flex-end;
  }

  .customer-profile-drawer {
    width: calc(100vw - 24px);
    max-height: min(80vh, calc(100dvh - 24px));
    border-radius: 28px 28px 0 0;
  }
}

/* Aureus desktop shell */
@media (min-width: 920px) {
  .customer-editorial-shell.customer-shell-desktop {
    width: min(1540px, calc(100vw - 48px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 24px;
    grid-template-columns: 256px minmax(0, 1fr);
    gap: 28px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-sidebar {
    top: 24px;
    height: calc(100vh - 48px);
    padding: 28px 0 24px;
    gap: 18px;
    border: 0;
    border-right: 1px solid rgba(138, 211, 215, 0.12);
    border-radius: 0;
    background: rgba(2, 22, 22, 0.96);
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-brand {
    padding: 0 32px 10px;
    gap: 6px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-wordmark {
    font-style: normal;
    font-size: 3rem;
    line-height: 0.88;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8c927;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-brand-tag {
    color: rgba(138, 211, 215, 0.6);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-nav {
    gap: 4px;
    padding: 0;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item {
    min-height: 56px;
    padding: 16px 32px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(138, 211, 215, 0.56);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item:focus-visible {
    background: rgba(138, 211, 215, 0.05);
    color: #8ad3d7;
    filter: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item.active {
    background: linear-gradient(90deg, rgba(248, 201, 39, 0.1), transparent 80%);
    color: #f8c927;
    box-shadow: inset -2px 0 0 #f8c927;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-nav-main {
    gap: 14px;
    align-items: center;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-nav-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-nav-icon {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: currentColor;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item.active .customer-desktop-nav-icon {
    background: transparent;
    color: currentColor;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-nav-chevron {
    display: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-sidebar-cta {
    margin: auto 32px 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
    color: #3d2f00;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 18px 34px rgba(248, 201, 39, 0.12);
    transition: transform 180ms ease, filter 180ms ease;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-sidebar-cta:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-sidebar-cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.02);
    outline: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-main--editorial {
    gap: 20px;
    padding-inline: 16px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    top: 24px;
    padding: 18px 0 20px;
    border: 0;
    border-radius: 0;
    background: rgba(2, 22, 22, 0.82);
    box-shadow: none;
    gap: 18px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-shell {
    max-width: 720px;
    min-width: 0;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search {
    position: relative;
    display: block;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(138, 211, 215, 0.4);
    font-size: 1.1rem;
    pointer-events: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: #243838;
    color: #d0e7e6;
    padding: 0 16px 0 44px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input::placeholder {
    color: rgba(138, 211, 215, 0.4);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(248, 201, 39, 0.55);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-actions--editorial {
    gap: 20px;
    margin-left: 20px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(10, 31, 31, 0.9);
    color: rgba(138, 211, 215, 0.7);
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn .material-symbols-outlined {
    font-size: 1.45rem;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn.is-light {
    color: #f8c927;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:focus-visible {
    background: rgba(25, 45, 45, 0.94);
    color: #f8c927;
    filter: none;
    outline: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-alert-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f8c927;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    width: auto;
    min-width: 0;
    height: auto;
    padding: 0 0 0 20px;
    border: 0;
    border-left: 1px solid rgba(138, 211, 215, 0.1);
    border-radius: 0;
    background: transparent;
    color: #f8c927;
    gap: 12px;
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial.open {
    background: transparent;
    color: #f8c927;
    filter: none;
    box-shadow: none;
    outline: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy {
    display: grid;
    gap: 3px;
    text-align: right;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy small {
    color: rgba(138, 211, 215, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy strong {
    color: #f8c927;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial .customer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(248, 201, 39, 0.2);
    background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
    color: #3d2f00;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-content-desktop {
    min-height: calc(100vh - 178px);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer {
    margin-top: 10px;
    padding: 10px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-copy {
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-wordmark--footer {
    font-style: normal;
    font-size: 1.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-copy p {
    color: rgba(138, 211, 215, 0.54);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-links {
    justify-content: center;
    flex: 1 1 auto;
    gap: 22px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link {
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(138, 211, 215, 0.48);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link[aria-current='page'] {
    background: transparent;
    color: #f8c927;
    filter: none;
    outline: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-meta {
    justify-content: flex-end;
    gap: 8px;
    color: rgba(138, 211, 215, 0.42);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-desktop-sidebar {
    background: rgba(255, 250, 243, 0.96);
    border-right-color: rgba(15, 92, 88, 0.18);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-wordmark,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy strong,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn.is-light,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link:focus-visible,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link[aria-current='page'] {
    color: #8a6410;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-desktop-brand-tag,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy small,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-copy p,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-meta,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-footer-link {
    color: rgba(23, 50, 56, 0.58);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item:focus-visible {
    background: rgba(15, 92, 88, 0.06);
    color: #0a6d78;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-shell-nav-item.active {
    background: linear-gradient(90deg, rgba(138, 100, 16, 0.1), transparent 80%);
    color: #8a6410;
    box-shadow: inset -2px 0 0 #8a6410;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    background: rgba(255, 250, 243, 0.88);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input {
    background: rgba(214, 225, 220, 0.82);
    color: #163238;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input::placeholder,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-icon {
    color: rgba(23, 50, 56, 0.42);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn {
    background: rgba(214, 225, 220, 0.78);
    color: rgba(23, 50, 56, 0.74);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:focus-visible,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:focus-visible {
    background: rgba(214, 225, 220, 0.94);
    color: #8a6410;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    border-left-color: rgba(15, 92, 88, 0.14);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial .customer-avatar {
    border-color: rgba(138, 100, 16, 0.18);
  }
}


/* Aureus desktop topbar refinement */
@media (min-width: 920px) {
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-main--editorial {
    gap: 24px;
    padding-inline: 16px;
  }

  .customer-editorial-shell.customer-shell-desktop,
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-main,
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-main--editorial,
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-stage,
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-stage--editorial,
  .customer-editorial-shell.customer-shell-desktop .customer-content-desktop {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    padding: 18px 22px;
    border: 1px solid rgba(138, 211, 215, 0.08);
    border-radius: 30px;
    background:
      radial-gradient(circle at top right, rgba(248, 201, 39, 0.08), transparent 22%),
      linear-gradient(180deg, rgba(4, 24, 23, 0.92), rgba(2, 22, 22, 0.88));
    box-shadow:
      0 24px 48px rgba(0, 17, 17, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
    gap: 18px 24px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-shell {
    min-width: 0;
    max-width: 860px;
    display: grid;
    gap: 10px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-context {
    display: inline-grid;
    gap: 4px;
    justify-content: start;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-context small {
    color: rgba(138, 211, 215, 0.52);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-context strong {
    color: #f0f5f2;
    font-family: 'Newsreader', serif;
    font-size: 1.65rem;
    line-height: 0.92;
    letter-spacing: -0.02em;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search {
    position: relative;
    display: block;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-icon {
    left: 16px;
    font-size: 1.2rem;
    color: rgba(138, 211, 215, 0.38);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input {
    height: 54px;
    border-radius: 18px;
    background: rgba(36, 56, 56, 0.76);
    padding: 0 18px 0 50px;
    font-size: 0.98rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input:focus {
    box-shadow:
      0 0 0 1px rgba(248, 201, 39, 0.52),
      0 0 0 6px rgba(248, 201, 39, 0.07);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-actions--editorial {
    flex-shrink: 0;
    gap: 14px;
    margin-left: 12px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-utility-rail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    border: 1px solid rgba(138, 211, 215, 0.08);
    border-radius: 20px;
    background: rgba(10, 31, 31, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 15px;
    background: transparent;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:focus-visible {
    background: rgba(25, 45, 45, 0.94);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    min-width: 252px;
    min-height: 60px;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(138, 211, 215, 0.08);
    border-radius: 22px;
    background: rgba(10, 31, 31, 0.84);
    gap: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial.open {
    background: rgba(12, 36, 36, 0.92);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy {
    flex: 1 1 auto;
    display: grid;
    gap: 4px;
    text-align: left;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy strong {
    font-size: 1.08rem;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial .customer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    border-color: rgba(15, 92, 88, 0.12);
    background:
      radial-gradient(circle at top right, rgba(138, 100, 16, 0.08), transparent 24%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(248, 244, 235, 0.9));
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-context strong {
    color: #163238;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-context small {
    color: rgba(23, 50, 56, 0.56);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-topbar-utility-rail,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    background: rgba(214, 225, 220, 0.78);
    border-color: rgba(15, 92, 88, 0.12);
  }
}


/* Aureus desktop topbar final alignment */
@media (min-width: 920px) {
  .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    padding: 12px 0 18px;
    border: 0;
    border-bottom: 1px solid rgba(138, 211, 215, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 16px 20px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-shell {
    display: block;
    min-width: 0;
    max-width: 960px;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search {
    display: block;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input {
    height: 48px;
    border-radius: 10px;
    background: rgba(36, 56, 56, 0.82);
    padding: 0 16px 0 46px;
    font-size: 0.95rem;
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-input:focus {
    box-shadow: 0 0 0 1px rgba(248, 201, 39, 0.45);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-search-icon {
    left: 14px;
    font-size: 1.1rem;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-actions--editorial {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border: 1px solid rgba(138, 211, 215, 0.1);
    border-radius: 14px;
    background: rgba(10, 31, 31, 0.72);
    color: rgba(138, 211, 215, 0.72);
  }

  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:focus-visible {
    background: rgba(25, 45, 45, 0.9);
    color: #f8c927;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-topbar-divider {
    display: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    min-width: 0;
    min-height: 42px;
    padding: 6px 8px 6px 14px;
    border: 1px solid rgba(138, 211, 215, 0.1);
    border-radius: 16px;
    background: rgba(10, 31, 31, 0.72);
    gap: 10px;
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:hover,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:focus-visible,
  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial.open {
    background: rgba(25, 45, 45, 0.9);
    color: #f8c927;
    box-shadow: none;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy {
    display: grid;
    gap: 2px;
    text-align: left;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy small {
    color: rgba(138, 211, 215, 0.54);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger-copy strong {
    color: #f8c927;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.1;
  }

  .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial .customer-avatar {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-desktop-topbar {
    border-bottom-color: rgba(15, 92, 88, 0.14);
    background: transparent;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn {
    border-color: rgba(15, 92, 88, 0.12);
    background: rgba(214, 225, 220, 0.64);
    color: rgba(23, 50, 56, 0.72);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-theme-btn:focus-visible,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-bell-btn:focus-visible {
    background: rgba(214, 225, 220, 0.82);
    color: #8a6410;
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial {
    border-color: rgba(15, 92, 88, 0.12);
    background: rgba(214, 225, 220, 0.64);
  }

  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:hover,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial:focus-visible,
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell.customer-shell-desktop .customer-profile-trigger--editorial.open {
    background: rgba(214, 225, 220, 0.82);
  }

}


/* Editorial main menu */
.customer-profile-drawer-shell--menu {
  gap: 20px;
  padding: 22px 20px 20px;
}

.customer-profile-drawer-shell--menu .customer-profile-drawer-head {
  align-items: flex-start;
}

.customer-profile-drawer-shell--menu .customer-profile-drawer-kicker {
  gap: 6px;
}

.customer-profile-drawer-shell--menu .customer-profile-drawer-kicker small {
  color: rgba(138, 211, 215, 0.58);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.customer-profile-drawer-shell--menu .customer-profile-drawer-kicker strong {
  font-family: 'Newsreader', serif;
  font-size: 2.08rem;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #eef5f1;
}

.customer-profile-drawer-close--menu {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(138, 211, 215, 0.1);
  background: rgba(8, 31, 30, 0.88);
  color: #8ad3d7;
}

.customer-profile-drawer-close--menu .customer-profile-drawer-close-label {
  display: none;
}

.customer-menu-header {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(138, 211, 215, 0.1);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(7, 41, 38, 0.98), rgba(4, 26, 25, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 34px rgba(0, 17, 17, 0.18);
  overflow: clip;
}

.customer-menu-header::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(248, 201, 39, 0.12), transparent 28%);
}

.customer-menu-profile {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  text-align: left;
  gap: 14px;
  padding-top: 0;
}

.customer-menu-avatar-shell {
  width: 46px;
  height: 46px;
  border-radius: 24px;
  padding: 4px;
  background: linear-gradient(135deg, #f8c927 0%, #d9ae00 100%);
  box-shadow: 0 18px 32px rgba(248, 201, 39, 0.16);
}

.customer-menu-avatar {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #072d2a;
  color: #f8c927;
  font-family: 'Newsreader', serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.customer-menu-profile-copy {
  display: grid;
  align-content: center;
  gap: 6px;
  min-width: 0;
}

.customer-menu-profile-name {
  margin: 0;
  font-family: 'Newsreader', serif;
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #eef5f1;
}

.customer-menu-profile-email {
  margin: 0;
  color: rgba(138, 211, 215, 0.46);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  word-break: break-word;
}

.customer-menu-status-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  padding-left: 0;
}
.customer-menu-status-chip {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(138, 211, 215, 0.1);
  background: rgba(31, 58, 56, 0.82);
  color: #8ad3d7;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.customer-menu-status-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.customer-menu-status-chip small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-menu-status-chip strong {
  color: currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.customer-menu-status-chip.is-access,
.customer-menu-status-chip.is-warn {
  color: #f8c927;
}

.customer-menu-status-chip.is-contact,
.customer-menu-status-chip.is-kyc,
.customer-menu-status-chip.is-info,
.customer-menu-status-chip.is-good {
  color: #8ad3d7;
}

.customer-menu-status-chip.is-bad {
  color: #ffb4ab;
}

.customer-profile-drawer-body--menu {
  padding-top: 0;
  display: grid;
  align-content: start;
  gap: 18px;
}

.customer-menu-utility {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(138, 211, 215, 0.1);
}

.customer-menu-nav {
  display: grid;
  gap: 8px;
}

.customer-menu-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 14px;
  border-radius: 24px;
  text-decoration: none;
  color: rgba(138, 211, 215, 0.74);
  background: transparent;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.customer-menu-link:hover,
.customer-menu-link:focus-visible {
  background: rgba(9, 41, 38, 0.52);
  color: #f1e4bc;
  outline: none;
}

.customer-menu-link.active {
  background: linear-gradient(180deg, rgba(12, 67, 61, 0.72), rgba(7, 37, 35, 0.94));
  color: #f8c927;
  box-shadow: inset 0 0 0 1px rgba(248, 201, 39, 0.12), 0 18px 32px rgba(0, 17, 17, 0.18);
}

.customer-menu-link-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: transparent;
  color: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  flex-shrink: 0;
  transition: background 180ms ease, color 180ms ease;
}

.customer-menu-link:hover .customer-menu-link-icon,
.customer-menu-link:focus-visible .customer-menu-link-icon {
  background: rgba(138, 211, 215, 0.08);
}

.customer-menu-link.active .customer-menu-link-icon {
  background: rgba(248, 201, 39, 0.12);
  color: #f8c927;
}

.customer-menu-link-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.customer-menu-link-copy strong {
  color: currentColor;
  font-family: 'Newsreader', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.customer-menu-link-copy small {
  color: rgba(138, 211, 215, 0.38);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-menu-link.active .customer-menu-link-copy small,
.customer-menu-link:hover .customer-menu-link-copy small,
.customer-menu-link:focus-visible .customer-menu-link-copy small {
  color: rgba(241, 228, 188, 0.52);
}

.customer-menu-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(138, 211, 215, 0.1);
  display: grid;
  gap: 12px;
}

.customer-menu-settings {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(138, 211, 215, 0.08);
  border-radius: 20px;
  text-decoration: none;
  color: rgba(138, 211, 215, 0.78);
  background: rgba(10, 31, 31, 0.5);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.customer-menu-settings--button {
  width: 100%;
  font: inherit;
  text-align: left;
}

.customer-menu-settings:hover,
.customer-menu-settings:focus-visible,
.customer-menu-settings.active {
  background: rgba(12, 41, 38, 0.74);
  border-color: rgba(248, 201, 39, 0.1);
  color: #f1e4bc;
  outline: none;
  transform: translateY(-1px);
}

.customer-menu-settings.is-light .customer-menu-settings-icon {
  color: #f8c927;
}

.customer-menu-settings-icon {
  font-size: 1.6rem;
}

.customer-menu-settings-copy {
  display: grid;
  gap: 4px;
}

.customer-menu-settings-copy strong {
  color: currentColor;
  font-family: 'Newsreader', serif;
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 0.94;
}

.customer-menu-settings-copy small {
  color: rgba(138, 211, 215, 0.42);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-menu-settings.active .customer-menu-settings-copy small,
.customer-menu-settings:hover .customer-menu-settings-copy small,
.customer-menu-settings:focus-visible .customer-menu-settings-copy small {
  color: rgba(241, 228, 188, 0.52);
}

.customer-menu-signout {
  width: 100%;
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 180, 171, 0.14);
  border-radius: 24px;
  background: rgba(7, 24, 24, 0.92);
  color: #ffc0b7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.customer-menu-signout:hover,
.customer-menu-signout:focus-visible {
  background: rgba(55, 20, 28, 0.72);
  border-color: rgba(255, 180, 171, 0.24);
  color: #ffe6e2;
  outline: none;
  transform: translateY(-1px);
}

.customer-menu-signout:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.customer-menu-signout-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.customer-menu-signout-copy strong {
  color: currentColor;
  font-family: 'Newsreader', serif;
  font-size: 1.82rem;
  font-weight: 700;
  line-height: 0.92;
}

.customer-menu-signout-copy small {
  color: rgba(255, 180, 171, 0.52);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.customer-menu-signout-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-shell--menu .customer-profile-drawer-kicker small {
  color: rgba(15, 92, 88, 0.54);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-shell--menu .customer-profile-drawer-kicker strong,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-profile-name {
  color: #173238;
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-close--menu {
  border-color: rgba(15, 92, 88, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(23, 50, 56, 0.72);
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer-backdrop--menu {
  background: linear-gradient(180deg, rgba(243, 247, 244, 0.28), rgba(31, 54, 52, 0.18));
}

:is(body.theme-light, :root[data-theme='light']) .customer-profile-drawer--menu {
  border: 1px solid rgba(51, 84, 79, 0.12);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(252, 251, 246, 0.98), rgba(237, 244, 240, 0.98));
  box-shadow: 0 28px 48px rgba(28, 44, 48, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-header {
  border-color: rgba(15, 92, 88, 0.1);
  background: linear-gradient(180deg, rgba(250, 248, 241, 0.98), rgba(232, 240, 235, 0.98));
  box-shadow: 0 18px 34px rgba(28, 44, 48, 0.08);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-header::before {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 30%);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-avatar {
  background: #f7f4ee;
  color: #8a6110;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-profile-email,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-link-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings-copy small {
  color: rgba(15, 92, 88, 0.42);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-status-chip {
  border-color: rgba(15, 92, 88, 0.08);
  background: rgba(255, 255, 255, 0.84);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-status-chip small {
  color: rgba(23, 50, 56, 0.62);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link {
  color: rgba(15, 92, 88, 0.74);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:hover,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:focus-visible {
  background: rgba(214, 225, 220, 0.54);
  color: #173238;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link.active {
  background: linear-gradient(180deg, rgba(253, 252, 249, 0.98), rgba(237, 233, 223, 0.98));
  color: #8a6110;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18), 0 16px 26px rgba(28, 44, 48, 0.08);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:hover .customer-menu-link-icon,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:focus-visible .customer-menu-link-icon {
  background: rgba(15, 92, 88, 0.08);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link.active .customer-menu-link-icon {
  background: rgba(212, 175, 55, 0.14);
  color: #8a6110;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-link.active .customer-menu-link-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:hover .customer-menu-link-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-link:focus-visible .customer-menu-link-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings.active .customer-menu-settings-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings:hover .customer-menu-settings-copy small,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings:focus-visible .customer-menu-settings-copy small {
  color: rgba(138, 97, 16, 0.52);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-utility,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-footer {
  border-top-color: rgba(15, 92, 88, 0.12);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings {
  border-color: rgba(15, 92, 88, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(23, 50, 56, 0.76);
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings:hover,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings:focus-visible,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-settings.active {
  background: rgba(214, 225, 220, 0.72);
  border-color: rgba(212, 175, 55, 0.12);
  color: #8a6110;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-signout {
  border-color: rgba(174, 53, 73, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: #9d3c4a;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-signout:hover,
:is(body.theme-light, :root[data-theme='light']) .customer-menu-signout:focus-visible {
  background: rgba(255, 241, 243, 0.94);
  border-color: rgba(174, 53, 73, 0.18);
  color: #7e2937;
}

:is(body.theme-light, :root[data-theme='light']) .customer-menu-signout-copy small {
  color: rgba(157, 60, 74, 0.46);
}
@media (max-width: 919px) {
  .customer-menu-header {
    gap: 12px;
    padding: 16px;
    border-radius: 26px;
  }

  .customer-menu-profile {
    gap: 12px;
  }

  .customer-menu-avatar-shell {
    width: 46px;
    height: 46px;
    border-radius: 24px;
    padding: 4px;
  }

  .customer-menu-avatar {
    border-radius: 24px;
    font-size: 1.2rem;
  }

  .customer-menu-profile-copy {
    gap: 2px;
  }

  .customer-menu-profile-name {
    font-size: 1.1rem;
    line-height: 0.96;
  }

  .customer-menu-profile-email {
    font-size: 0.56rem;
    letter-spacing: 0.12em;
  }

  .customer-menu-status-grid {
    gap: 6px;
    padding-left: 0;
  }

  .customer-menu-status-chip {
    min-height: 28px;
    padding: 0 11px;
  }

  .customer-menu-status-chip small {
    font-size: 0.5rem;
  }

  .customer-menu-status-chip strong {
    font-size: 0.58rem;
  }
}

@media (max-width: 679px) {
  .customer-profile-drawer-backdrop--menu {
    align-items: flex-start;
  }

  .customer-profile-drawer--menu {
    max-height: calc(100dvh - 24px);
    border-radius: 28px;
  }

  .customer-profile-drawer-shell--menu {
    gap: 16px;
    padding: 14px 18px calc(env(safe-area-inset-bottom, 0px) + 18px);
  }

  .customer-profile-drawer-shell--menu .customer-profile-drawer-kicker strong {
    font-size: 1.9rem;
  }

  .customer-menu-header {
    gap: 10px;
    padding: 13px;
    border-radius: 24px;
  }

  .customer-menu-profile {
    gap: 10px;
  }

  .customer-menu-avatar-shell {
    width: 46px;
    height: 46px;
    border-radius: 24px;
    padding: 4px;
  }

  .customer-menu-avatar {
    border-radius: 24px;
    font-size: 1.2rem;
  }

  .customer-menu-profile-copy {
    gap: 3px;
  }

  .customer-menu-profile-name {
    font-size: 0.98rem;
    line-height: 0.98;
  }

  .customer-menu-profile-email {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .customer-menu-link {
    padding: 14px 12px;
    border-radius: 22px;
  }

  .customer-menu-link-copy strong,
  .customer-menu-settings-copy strong {
    font-size: 1.26rem;
  }

  .customer-menu-link-copy small,
  .customer-menu-settings-copy small,
  .customer-menu-signout-copy small,
  .customer-menu-profile-email {
    font-size: 0.58rem;
  }

  .customer-menu-status-grid {
    gap: 6px;
    padding-left: 0;
  }

  .customer-menu-status-chip {
    min-height: 28px;
    padding: 0 10px;
  }

  .customer-menu-status-chip small {
    font-size: 0.48rem;
  }

  .customer-menu-status-chip strong {
    font-size: 0.56rem;
  }

  .customer-menu-signout {
    min-height: 66px;
    border-radius: 22px;
  }

  .customer-menu-signout-copy strong {
    font-size: 1.54rem;
  }
}

@media (max-width: 679px) {
  :is(body.theme-light, :root[data-theme='light']) .customer-editorial-shell .customer-alerts-backdrop {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.18), rgba(23, 50, 56, 0.28));
  }
}
