:host {
  all: initial !important;
  display: contents !important;
  --sl-rail: var(--store-layout-rail, 72px);
  --sl-expanded: 252px;
  --sl-bg: #17181b;
  --sl-panel: #222328;
  --sl-border: rgba(255, 255, 255, 0.12);
  --sl-text: #eceef0;
  --sl-muted: #8f949b;
  --sl-accent: #ee3777;
  --sl-active-bg: color-mix(in oklab, var(--sl-accent) 20%, transparent);
  --sl-active-ink: color-mix(in oklab, var(--sl-accent) 62%, white);
  /*
   * Compact document-layer scale. Application content is isolated at z=0;
   * common body-portal modals use z=50 and must cover non-modal Store chrome.
   * Native dialogs still use the browser top layer and do not depend on it.
   */
  --sl-layer-backdrop: 30;
  --sl-layer-chrome: 40;
  --sl-layer-mobile-header: 41;
  --sl-layer-callout: 45;
  --sl-layer-modal-fallback: 60;
}

.StoreLayoutSidebar {
  position: fixed;
  z-index: var(--sl-layer-chrome);
  inset: var(--store-layout-native-safe-top, 0px) auto
    var(--store-layout-native-safe-bottom, 0px) 0;
  width: var(--store-layout-visual, var(--sl-rail));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 14px 8px 10px;
  background: var(--sl-bg);
  color: var(--sl-text);
  font:
    14px/1.25 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    width 0.18s ease,
    transform 0.18s ease;
  box-shadow: 1px 0 rgba(0, 0, 0, 0.08);
}
.StoreLayoutSidebar[data-expanded='true'] {
  width: var(--store-layout-visual, var(--sl-expanded));
  padding-left: 12px;
  padding-right: 12px;
}
.StoreLayoutAccount {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 60px;
  margin-bottom: 6px;
}
.StoreLayoutAccount__selector,
.StoreLayoutCollapse,
.StoreLayoutSearchButton,
.StoreLayoutItem,
.StoreLayoutFooter__item {
  appearance: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.StoreLayoutAccount__selector {
  min-width: 0;
  padding: 5px 3px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
}
.StoreLayoutAccount__selector:hover,
.StoreLayoutCollapse:hover {
  background: rgba(255, 255, 255, 0.08);
}
.StoreLayoutAccount__selector[aria-expanded='true'] {
  background: #34363d;
  color: var(--sl-text);
}
.StoreLayoutAccount__text {
  display: block;
  width: 100%;
  min-width: 0;
  text-align: center;
  flex: 1;
}
.StoreLayoutAccount__text strong,
.StoreLayoutAccount__text small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.StoreLayoutAccount__text strong {
  color: var(--sl-muted);
  font-size: 10px;
  font-weight: 500;
}
.StoreLayoutAccount__text small {
  display: none;
  color: var(--sl-muted);
  margin-top: 3px;
  font-size: 11px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccount {
  justify-content: flex-start;
  min-height: 52px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccount__selector {
  height: 52px;
  padding: 5px;
  flex-direction: row;
  justify-content: flex-start;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccount__text {
  width: auto;
  text-align: left;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccount__text strong {
  color: var(--sl-text);
  font-size: 13px;
  font-weight: 700;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccount__text small {
  display: block;
}
.StoreLayoutCollapse {
  position: absolute;
  z-index: 3;
  right: -8px;
  top: 4px;
  width: 16px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px 0 0 9px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--sl-muted);
  opacity: 0.55;
  box-shadow: none;
  transition:
    background 0.12s ease,
    color 0.12s ease,
    opacity 0.12s ease;
}
.StoreLayoutCollapse .StoreLayoutIcon {
  width: 12px;
  height: 12px;
  flex-basis: 12px;
  transform: rotate(180deg);
}
.StoreLayoutSidebar:not([data-expanded='true']):hover .StoreLayoutCollapse {
  background: rgba(255, 255, 255, 0.08);
  color: var(--sl-text);
  opacity: 1;
}
.StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutCollapse:hover,
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutCollapse:focus-visible {
  background: var(--sl-accent);
  color: #fff;
  opacity: 1;
  outline: none;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutCollapse {
  position: static;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 8px;
  background: transparent;
  color: var(--sl-muted);
  opacity: 1;
  border-color: transparent;
  box-shadow: none;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutCollapse
  .StoreLayoutIcon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  transform: none;
}

.StoreLayoutPreviewBadge {
  min-height: 24px;
  margin: 0 0 8px;
  padding: 4px 5px;
  box-sizing: border-box;
  border: 1px solid rgba(244, 196, 100, 0.32);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(244, 196, 100, 0.08);
  color: #f4c464;
}
.StoreLayoutPreviewBadge span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.StoreLayoutPreviewBadge strong {
  display: none;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #f6e0ad;
  font-size: 11px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPreviewBadge {
  justify-content: flex-start;
  padding: 5px 9px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPreviewBadge strong {
  display: block;
}
.StoreLayoutPlanBadge {
  --sl-plan-ink: #a8aeb6;
  --sl-plan-border: rgba(255, 255, 255, 0.17);
  --sl-plan-fill: rgba(255, 255, 255, 0.05);
  --sl-plan-bar: #8f949b;
  appearance: none;
  width: 100%;
  min-height: 29px;
  margin: 0 0 8px;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: none;
  color: var(--sl-plan-ink);
  cursor: pointer;
}
.StoreLayoutPlanBadge.is-standard {
  --sl-plan-ink: #6ed0e0;
  --sl-plan-border: rgba(110, 208, 224, 0.55);
  --sl-plan-fill: rgba(110, 208, 224, 0.1);
  --sl-plan-bar: #6ed0e0;
}
.StoreLayoutPlanBadge.is-premium {
  --sl-plan-ink: #ecbc5c;
  --sl-plan-border: rgba(236, 188, 92, 0.55);
  --sl-plan-fill: rgba(236, 188, 92, 0.11);
  --sl-plan-bar: #ecbc5c;
}
.StoreLayoutPlanBadge.is-expired {
  --sl-plan-ink: #2a0b12;
  --sl-plan-border: #ff6b81;
  --sl-plan-fill: #ff6b81;
  --sl-plan-bar: #ff6b81;
}
.StoreLayoutPlanBadge__compact {
  width: 100%;
  min-height: 26px;
  padding: 0 5px;
  box-sizing: border-box;
  border: 1px solid var(--sl-plan-border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: var(--sl-plan-fill);
  color: var(--sl-plan-ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.StoreLayoutPlanBadge__compactUrgency {
  display: block;
  color: #ffc46b;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.02em;
}
.StoreLayoutPlanBadge:hover .StoreLayoutPlanBadge__compact,
.StoreLayoutPlanBadge[aria-expanded='true'] .StoreLayoutPlanBadge__compact {
  border-color: var(--sl-plan-ink);
}
.StoreLayoutPlanBadge__heading,
.StoreLayoutPlanBadge__period {
  display: none;
}
.StoreLayoutPlanBadge__status {
  display: none;
}
.StoreLayoutPlanBadge__progress {
  width: 100%;
  height: 3px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.StoreLayoutPlanBadge__progress > span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--sl-plan-bar);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge {
  min-height: 66px;
  justify-content: flex-start;
  align-items: stretch;
  padding: 9px 11px 10px;
  gap: 7px;
  border: 1px solid var(--sl-plan-border);
  border-radius: 10px;
  background: var(--sl-plan-fill);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge.is-unknown {
  min-height: 40px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__compact,
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge__compactUrgency {
  display: none;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__heading,
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__period {
  display: flex;
  align-items: center;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__heading {
  gap: 7px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__label {
  flex: none;
  color: var(--sl-muted);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge strong {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  color: var(--sl-plan-ink);
  font-size: 13.5px;
  font-weight: 750;
  line-height: 1;
}
.StoreLayoutPlanBadge__chevron {
  width: 14px;
  height: 14px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--sl-muted);
}
.StoreLayoutPlanBadge__chevron .StoreLayoutIcon {
  width: 14px;
  height: 14px;
  transition: transform 0.16s ease;
}
.StoreLayoutPlanBadge[aria-expanded='true']
  .StoreLayoutPlanBadge__chevron
  .StoreLayoutIcon {
  transform: rotate(90deg);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__period {
  min-width: 0;
  gap: 6px;
  color: var(--sl-muted);
  font-size: 11px;
  line-height: 1.2;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge.is-ending
  .StoreLayoutPlanBadge__period {
  color: #ffc46b;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge.is-expired
  .StoreLayoutPlanBadge__label,
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge.is-expired
  .StoreLayoutPlanBadge__period,
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge.is-expired
  .StoreLayoutPlanBadge__chevron {
  color: rgba(42, 11, 18, 0.68);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__period > span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPlanBadge__period b {
  flex: none;
  color: var(--sl-plan-ink);
  font-size: 11px;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutPlanBadge__period
  .StoreLayoutIcon {
  width: 13px;
  height: 13px;
  flex-basis: 13px;
}

.StoreLayoutAvatar {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 11px;
  object-fit: cover;
  flex: 0 0 auto;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutAccount
  .StoreLayoutAvatar {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.StoreLayoutAvatar.is-small {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.StoreLayoutAvatar.is-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #4c4f58, #292a30);
  color: white;
  font-weight: 700;
}
.StoreLayoutAvatar.is-chatium-logo {
  padding: 4px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.045);
}

.StoreLayoutSearchButton {
  width: 100%;
  height: 32px;
  padding: 0 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  color: var(--sl-muted);
}
.StoreLayoutSearchButton:hover {
  background: #32343a;
}
.StoreLayoutSearchButton span {
  display: none;
}
.StoreLayoutSearchButton kbd {
  display: block;
  color: var(--sl-muted);
  font-size: 9px;
  font-family: inherit;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutSearchButton {
  height: 36px;
  justify-content: flex-start;
  padding: 0 10px;
  gap: 9px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutSearchButton span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutSearchButton kbd {
  display: block;
  margin-left: auto;
  color: var(--sl-muted);
  font: 11px inherit;
}

.StoreLayoutNav {
  flex: 1;
  min-height: 0;
  margin-left: -8px;
  margin-right: -8px;
  padding: 8px 8px 0;
  background: linear-gradient(
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08)
    )
    center top / calc(100% - 24px) 1px no-repeat;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutNav {
  margin-left: -12px;
  margin-right: -12px;
  padding-left: 12px;
  padding-right: 12px;
}
.StoreLayoutNav::-webkit-scrollbar {
  display: none;
}
.StoreLayoutItem {
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 0 2px;
  margin: 1px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  background: transparent;
  color: var(--sl-muted);
}
.StoreLayoutItem:hover {
  background: rgba(255, 255, 255, 0.07);
  color: white;
}
.StoreLayoutItem.is-active {
  background: var(--sl-active-bg);
  color: var(--sl-active-ink);
}
.StoreLayoutItem.is-active:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--sl-accent);
}
.StoreLayoutNewDot {
  position: absolute;
  right: 15px;
  top: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--sl-bg);
  border-radius: 50%;
  box-sizing: content-box;
  background: var(--sl-accent);
  cursor: pointer;
}
.StoreLayoutBadge {
  position: absolute;
  right: 3px;
  top: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  box-sizing: border-box;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--sl-bg);
  border-radius: 10px;
  background: var(--sl-accent);
  color: white;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}
.StoreLayoutBadge[hidden] {
  display: none !important;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutBadge {
  position: static;
  margin-left: auto;
  flex: 0 0 auto;
  border-width: 0;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutNewDot {
  left: 28px;
  right: auto;
  top: 4px;
}
.StoreLayoutItem > span:not(.StoreLayoutIcon) {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0 2px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.15;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutNav
  > .StoreLayoutItem
  > span:not(.StoreLayoutIcon),
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutNav
  > .StoreLayoutGroup
  > .StoreLayoutItem
  > span:not(.StoreLayoutIcon) {
  display: none;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutNav
  > .StoreLayoutItem
  > .StoreLayoutIcon,
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutNav
  > .StoreLayoutGroup
  > .StoreLayoutItem
  > .StoreLayoutIcon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutItem {
  min-height: 38px;
  padding: 0 10px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 11px;
  border-radius: 9px;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutItem
  > span:not(.StoreLayoutIcon) {
  display: block;
  padding: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.25;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutItem.is-active:before {
  left: -12px;
  top: 7px;
  bottom: 7px;
}
.StoreLayoutIcon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
}
.StoreLayoutIcon > svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
}
.StoreLayoutIcon.is-image {
  object-fit: cover;
  border-radius: 7px;
}
.StoreLayoutIcon.is-letter {
  border-radius: 7px;
  color: white;
  background: #41434b;
  font-size: 12px;
  font-weight: 700;
}
.StoreLayoutGroup__chevron {
  position: absolute;
  right: 2px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6.5px;
  color: var(--sl-muted);
  opacity: 0.8;
  pointer-events: none;
  transition: transform 0.16s ease;
}
.StoreLayoutGroup[data-open='true']
  > .StoreLayoutItem
  > .StoreLayoutGroup__chevron {
  transform: rotate(90deg);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutGroup__chevron {
  position: static;
  width: 15px;
  height: 15px;
  margin-top: 0;
  margin-left: auto;
  flex: 0 0 15px;
}
.StoreLayoutGroup__children {
  display: none;
}
.StoreLayoutGroup__flyoutHeader,
.StoreLayoutGroup__flyoutDivider,
.StoreLayoutGroup__add {
  display: none;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutGroup[data-open='true']
  .StoreLayoutGroup__children {
  display: block;
  padding-left: 13px;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup[data-open='true']
  .StoreLayoutGroup__children {
  display: block;
  position: fixed;
  z-index: 2;
  left: var(--store-layout-visual, var(--sl-rail));
  width: 262px;
  max-height: calc(100vh - 20px);
  max-height: calc(100dvh - 20px);
  padding: 12px 10px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: var(--sl-panel);
  box-shadow: 0 22px 52px rgba(8, 9, 11, 0.38);
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__flyoutHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 8px 9px;
  color: var(--sl-muted);
  white-space: nowrap;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__flyoutHeader
  strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutGroup__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__list
  > .StoreLayoutItem {
  min-height: 38px;
  padding: 0 10px;
  margin: 0;
  flex-direction: row;
  justify-content: flex-start;
  gap: 11px;
  border-radius: 9px;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__list
  > .StoreLayoutItem
  > .StoreLayoutIcon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__list
  > .StoreLayoutItem
  > span:not(.StoreLayoutIcon) {
  display: block;
  padding: 0;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.25;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__list
  > .StoreLayoutItem.is-active:before {
  display: none;
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__flyoutDivider {
  display: block;
  height: 1px;
  margin: 9px 8px;
  background: rgba(255, 255, 255, 0.1);
}
.StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutGroup__add {
  min-height: 32px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 9px;
  color: var(--sl-muted);
  text-decoration: none;
  font-size: 12.5px;
}
.StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutGroup__add:hover {
  color: var(--sl-text);
  background: rgba(255, 255, 255, 0.07);
}
.StoreLayoutSidebar:not([data-expanded='true'])
  .StoreLayoutGroup__add
  .StoreLayoutIcon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.StoreLayoutTooltip {
  position: fixed;
  z-index: 3;
  width: max-content;
  max-width: 240px;
  min-height: 32px;
  padding: 7px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #202226;
  color: #f2f3f4;
  box-shadow: 0 14px 34px rgba(8, 9, 11, 0.34);
  pointer-events: none;
}
.StoreLayoutTooltip:before {
  content: '';
  position: absolute;
  left: -5px;
  top: var(--sl-tooltip-arrow-y, 50%);
  width: 0;
  height: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid #202226;
}
.StoreLayoutTooltip > span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}
.StoreLayoutTooltip > small {
  flex: none;
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  color: #9aa1a9;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.StoreLayoutTooltip > small.is-detail {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #8f949b;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0;
}
.StoreLayoutTooltip[hidden],
.StoreLayoutTooltip > small[hidden] {
  display: none !important;
}

.StoreLayoutFooter {
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.StoreLayoutFooter__item {
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 5px;
  border-radius: 9px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #aeb1b8;
}
.StoreLayoutFooter__item:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}
.StoreLayoutFooter__item.is-active {
  color: var(--sl-active-ink);
  background: var(--sl-active-bg);
}
.StoreLayoutFooter__item.is-active:before {
  content: '';
  position: absolute;
  left: -8px;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--sl-accent);
}
.StoreLayoutFooter__item > span:not(.StoreLayoutAvatar) {
  display: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.StoreLayoutFooter__profileText {
  text-align: left;
}
.StoreLayoutFooter__profileText > strong {
  display: block;
  overflow: hidden;
  font: inherit;
  font-weight: inherit;
  text-overflow: ellipsis;
}
.StoreLayoutFooter__profileText > small {
  display: none;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutFooter__item {
  justify-content: flex-start;
  padding: 5px 10px;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutFooter__item.is-active:before {
  left: -12px;
}
.StoreLayoutSidebar[data-expanded='true']
  .StoreLayoutFooter__item
  > span:not(.StoreLayoutAvatar) {
  display: block;
}
.StoreLayoutPopover {
  position: fixed;
  z-index: 2;
  left: calc(var(--store-layout-visual, var(--sl-rail)) + 4px);
  width: 280px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--sl-panel);
  color: white;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutPopover {
  left: 244px;
}
.StoreLayoutNotifications {
  bottom: 14px;
  width: 404px;
  max-width: calc(100vw - var(--store-layout-visual, var(--sl-rail)) - 28px);
  max-height: min(660px, calc(100vh - 28px));
  padding: 0;
  overflow: hidden;
  border-color: #e3e6ea;
  border-radius: 16px;
  background: #fff;
  color: #1f2328;
  box-shadow: 0 22px 54px rgba(12, 14, 18, 0.26);
}
.StoreLayoutNotifications [hidden] {
  display: none !important;
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutNotifications {
  left: calc(var(--store-layout-visual, var(--sl-expanded)) + 4px);
}
.StoreLayoutNotifications__header {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.StoreLayoutNotifications__header strong {
  min-width: 0;
  flex: 1;
  color: #202124;
  font-size: 17px;
  letter-spacing: -0.015em;
}
.StoreLayoutNotifications__header a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #858991;
}
.StoreLayoutNotifications__sourceFilter {
  position: relative;
  min-width: 0;
  max-width: 170px;
  flex: none;
}
.StoreLayoutNotifications__sourceFilter > summary {
  min-width: 0;
  height: 32px;
  padding: 0 9px 0 11px;
  box-sizing: border-box;
  border-radius: 16px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #73777f;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  list-style: none;
  cursor: pointer;
}
.StoreLayoutNotifications__sourceFilter > summary::-webkit-details-marker {
  display: none;
}
.StoreLayoutNotifications__sourceFilter > summary:hover,
.StoreLayoutNotifications__sourceFilter[open] > summary {
  background: #ebedf0;
  color: #303238;
}
.StoreLayoutNotifications__sourceFilter > summary > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.StoreLayoutNotifications__sourceFilter > summary .StoreLayoutIcon {
  width: 14px;
  height: 14px;
  flex: none;
  transform: rotate(90deg);
  transition: transform 0.12s ease;
}
.StoreLayoutNotifications__sourceFilter[open] > summary .StoreLayoutIcon {
  transform: rotate(-90deg);
}
.StoreLayoutNotifications__sourceOptions {
  position: absolute;
  z-index: 4;
  top: 38px;
  right: 0;
  width: max(190px, 100%);
  max-height: 240px;
  padding: 6px;
  overflow: auto;
  border: 1px solid #e0e2e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 20, 24, 0.18);
}
.StoreLayoutNotifications__sourceOptions button {
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: block;
  overflow: hidden;
  color: #5f636b;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}
.StoreLayoutNotifications__sourceOptions button:hover,
.StoreLayoutNotifications__sourceOptions button.is-active {
  background: #f2f3f5;
  color: #202124;
}
.StoreLayoutNotifications__sourceOptions button.is-active {
  font-weight: 700;
}
.StoreLayoutNotifications__header a:hover {
  background: #f2f3f5;
  color: #202124;
}
.StoreLayoutNotifications__header .StoreLayoutIcon {
  width: 17px;
  height: 17px;
}
.StoreLayoutNotifications__tabs {
  min-height: 38px;
  margin: 0 18px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  border-bottom: 1px solid #e7e8eb;
}
.StoreLayoutNotifications__tabs button {
  min-height: 38px;
  margin-bottom: -1px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  color: #92959b;
  font: 650 13px/1 inherit;
  cursor: pointer;
}
.StoreLayoutNotifications__tabs button.is-active {
  border-bottom-color: var(--sl-accent);
  color: #202124;
}
.StoreLayoutNotifications__tabs small {
  color: #a5a8ae;
  font-size: 10.5px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.StoreLayoutNotifications__list {
  min-height: 220px;
  max-height: min(510px, calc(100vh - 180px));
  padding: 6px 10px;
  overflow: auto;
}
.StoreLayoutNotificationRow {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 10px 28px 10px 8px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: #202124;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}
.StoreLayoutNotificationRow:hover,
.StoreLayoutNotificationRow[aria-expanded='true'] {
  background: #fafbfc;
}
.StoreLayoutNotificationRow__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f1f3;
  display: grid;
  place-items: center;
  color: #777b83;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}
.StoreLayoutNotificationRow.is-unread .StoreLayoutNotificationRow__avatar {
  background: #fff0f5;
  color: #d92964;
}
.StoreLayoutNotificationRow__body {
  min-width: 0;
}
.StoreLayoutNotificationRow__title,
.StoreLayoutNotificationRow__text,
.StoreLayoutNotificationRow__meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.StoreLayoutNotificationRow__title {
  color: #3d4046;
  font-size: 13.5px;
  font-weight: 550;
  line-height: 1.3;
  white-space: nowrap;
}
.StoreLayoutNotificationRow.is-unread .StoreLayoutNotificationRow__title {
  color: #202124;
  font-weight: 700;
}
.StoreLayoutNotificationRow__text {
  margin-top: 3px;
  color: #686c73;
  font-size: 12.5px;
  line-height: 1.4;
  white-space: nowrap;
}
.StoreLayoutNotificationRow__meta {
  margin-top: 3px;
  color: #a0a3aa;
  font-size: 10.5px;
  white-space: nowrap;
}
.StoreLayoutNotificationRow__dot {
  position: absolute;
  top: 16px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: transparent;
}
.StoreLayoutNotificationRow.is-unread .StoreLayoutNotificationRow__dot {
  background: var(--sl-accent);
}
.StoreLayoutNotificationChildren {
  margin: -3px 8px 8px 53px;
  padding: 4px 0 2px 10px;
  border-left: 1px solid #e4e6e9;
}
.StoreLayoutNotificationChild {
  min-height: 38px;
  padding: 7px 8px;
  border-radius: 8px;
  display: block;
  color: #555961;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
}
.StoreLayoutNotificationChild:hover {
  background: #f4f5f7;
  color: #202124;
}
.StoreLayoutNotificationChild small {
  display: block;
  margin-top: 2px;
  color: #a0a3aa;
  font-size: 10.5px;
}
.StoreLayoutNotifications__footer {
  min-height: 48px;
  padding: 0 18px;
  border-top: 1px solid #e7e8eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.StoreLayoutNotifications__footer a,
.StoreLayoutNotifications__footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #575b63;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}
.StoreLayoutNotifications__footer a:hover,
.StoreLayoutNotifications__footer button:hover {
  color: #202124;
}
.StoreLayoutAccounts {
  top: 10px;
  left: calc(var(--store-layout-visual, var(--sl-rail)) + 4px);
  width: 300px;
  padding: 0;
  overflow: hidden;
  border-color: #e3e6ea;
  border-radius: 12px;
  background: #fff;
  color: #1f2328;
  box-shadow: 0 22px 54px rgba(12, 14, 18, 0.26);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccounts {
  top: 72px;
  left: 12px;
}
.StoreLayoutProfile {
  bottom: 14px;
}
.StoreLayoutBilling {
  top: 92px;
  left: calc(var(--store-layout-visual, var(--sl-rail)) + 4px);
  width: 340px;
  padding: 0 0 8px;
  overflow: hidden;
  border-color: #e3e6ea;
  border-radius: 14px;
  background: #fff;
  color: #1f2328;
  box-shadow: 0 22px 54px rgba(12, 14, 18, 0.26);
}
.StoreLayoutSidebar[data-expanded='true'] .StoreLayoutBilling {
  left: calc(var(--store-layout-visual, var(--sl-expanded)) + 4px);
}
.StoreLayoutBilling__summary {
  padding: 15px 17px 14px;
  border-bottom: 1px solid #f0f1f3;
}
.StoreLayoutBilling__summary > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
  color: #8b929a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.StoreLayoutBilling__summary > header strong {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #5c636d;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.StoreLayoutBilling__summary > header strong.is-standard {
  color: #0e7f92;
}
.StoreLayoutBilling__summary > header strong.is-premium {
  color: #8a6210;
}
.StoreLayoutBilling__summary > header strong.is-expired {
  color: #c02a45;
}
.StoreLayoutBilling__period {
  min-width: 0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3f4550;
  font-size: 12.5px;
}
.StoreLayoutBilling__period > span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.StoreLayoutBilling__period > a {
  flex: none;
  color: #3f4550;
  font-size: 11.5px;
  font-weight: 650;
  text-decoration: none;
}
.StoreLayoutBilling__period > a:hover {
  text-decoration: underline;
}
.StoreLayoutBilling__progress {
  width: 100%;
  height: 4px;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: #eceef1;
}
.StoreLayoutBilling__progress > span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #5c636d;
}
.StoreLayoutBilling__summary.is-standard .StoreLayoutBilling__progress > span {
  background: #0e7f92;
}
.StoreLayoutBilling__summary.is-premium .StoreLayoutBilling__progress > span {
  background: #8a6210;
}
.StoreLayoutBilling > a,
.StoreLayoutBilling__balance {
  min-height: 44px;
  padding: 8px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  color: #353a40;
  text-decoration: none;
}
.StoreLayoutBilling > a:hover {
  background: #f4f5f6;
}
.StoreLayoutBilling > a {
  margin: 0 8px;
}
.StoreLayoutBilling > a > span:not(.StoreLayoutIcon) {
  min-width: 0;
  flex: 1;
}
.StoreLayoutBilling > a > small {
  flex: none;
  color: #a8aeb5;
  font-size: 11px;
}
.StoreLayoutBilling .StoreLayoutIcon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
  color: #7c838c;
}
.StoreLayoutBilling .StoreLayoutIcon.is-chatium-token {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}
.StoreLayoutBilling__balance {
  margin: 12px 14px 6px;
  padding: 12px 13px;
  border-radius: 12px;
  background: #f6f7f8;
}
.StoreLayoutBilling__balance > span:not(.StoreLayoutIcon) {
  min-width: 0;
  flex: 1;
}
.StoreLayoutBilling__balance small,
.StoreLayoutBilling__balance strong {
  display: block;
}
.StoreLayoutBilling__balance small {
  color: #8b929a;
  font-size: 11.5px;
}
.StoreLayoutBilling__balance strong {
  margin-top: 2px;
  color: #252a30;
  font-size: 17px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.StoreLayoutBilling__balance strong.is-blurred {
  width: 54px;
  filter: blur(4px);
  user-select: none;
}
.StoreLayoutVisuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.StoreLayoutBilling__balance > a {
  flex: none;
  padding: 10px 13px;
  border-radius: 9px;
  background: #17181b;
  color: #fff;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 650;
}
.StoreLayoutPopover input {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #3d3f47;
  border-radius: 10px;
  background: #18191d;
  color: white;
  outline: none;
}
.StoreLayoutAccounts__header {
  padding: 12px 14px 10px;
  border-bottom: 1px solid #f0f1f3;
}
.StoreLayoutAccounts__title {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 9px;
  color: #9aa1a9;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.StoreLayoutAccounts__title b {
  font: inherit;
}
.StoreLayoutMobileAccountSwitch,
.StoreLayoutAccounts__back,
.StoreLayoutAccounts__close {
  display: none;
}
.StoreLayoutAccounts__search {
  height: 32px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-sizing: border-box;
  border: 1px solid #e0e3e7;
  border-radius: 8px;
  color: #b3b9c0;
}
.StoreLayoutAccounts__search .StoreLayoutIcon {
  width: 15px;
  height: 15px;
  flex-basis: 15px;
}
.StoreLayoutAccounts .StoreLayoutAccounts__search input {
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1f2328;
  font-size: 12.5px;
}
.StoreLayoutAccounts .StoreLayoutAccounts__search input::placeholder {
  color: #a8aeb5;
}
.StoreLayoutAccounts__list {
  max-height: min(360px, calc(100vh - 180px));
  max-height: min(360px, calc(100dvh - 180px));
  padding: 6px;
  overflow: auto;
}
.StoreLayoutAccountRow,
.StoreLayoutProfile a,
.StoreLayoutProfile button {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}
.StoreLayoutAccountRow {
  min-height: 46px;
  padding: 9px 10px;
  gap: 11px;
  color: #1f2328;
  cursor: pointer;
}
.StoreLayoutAccountRow[hidden],
.StoreLayoutAccounts__empty[hidden] {
  display: none !important;
}
.StoreLayoutAccountRow.is-current {
  background: rgba(243, 26, 96, 0.055);
  cursor: default;
}
.StoreLayoutAccountRow:not(.is-current):hover {
  background: #f5f6f7;
}
.StoreLayoutAccountRow__avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid #edeef0;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}
.StoreLayoutAccountRow__avatar.is-fallback {
  box-sizing: border-box;
}
.StoreLayoutAccountRow__text {
  min-width: 0;
  flex: 1;
}
.StoreLayoutAccountRow__text strong,
.StoreLayoutAccountRow__text small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.StoreLayoutAccountRow__text strong {
  font-size: 13px;
  font-weight: 600;
}
.StoreLayoutAccountRow__text small {
  margin-top: 2px;
  color: #a8aeb5;
  font:
    11px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.StoreLayoutAccountRow__role {
  flex: none;
  color: #a8aeb5;
  font-size: 10.5px;
}
.StoreLayoutAccountRow__check {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--sl-accent);
}
.StoreLayoutAccounts__empty {
  padding: 18px 10px;
  color: #9aa1a9;
  text-align: center;
  font-size: 12px;
}
.StoreLayoutAccounts__create {
  min-height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid #f0f1f3;
  background: #fafbfc;
  color: #4b5563;
  text-decoration: none;
  font-size: 12.5px;
}
.StoreLayoutAccounts__create:hover {
  background: #f4f5f6;
}
.StoreLayoutAccounts__create .StoreLayoutIcon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
  color: #6b7280;
}
.StoreLayoutProfile__signOut {
  margin-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0 0 10px 10px !important;
  color: #ff859f !important;
}
.StoreLayoutProfile__signOut:hover {
  background: rgba(238, 55, 119, 0.1) !important;
}
.StoreLayoutMuted {
  padding: 18px;
  color: var(--sl-muted);
  text-align: center;
}
.StoreLayoutNotificationRetry {
  margin: 10px auto 0;
  padding: 6px 10px;
  border: 1px solid #dedfe3;
  border-radius: 8px;
  display: block;
  background: #fff;
  color: #575b62;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.StoreLayoutDialog:not([open]),
.StoreLayoutSignOutDialog:not([open]),
.StoreLayoutPopover[hidden] {
  display: none !important;
}
.StoreLayoutDialog::backdrop,
.StoreLayoutSignOutDialog::backdrop {
  background: transparent;
}
.StoreLayoutSignOutDialog {
  position: fixed;
  z-index: var(--sl-layer-modal-fallback);
  inset: 0;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  padding: calc(20px + var(--store-layout-native-safe-top, 0px)) 20px
    calc(20px + var(--store-layout-native-safe-bottom, 0px));
  box-sizing: border-box;
  font:
    14px/1.4 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
.StoreLayoutSignOutDialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 24, 0.48);
  backdrop-filter: blur(3px);
}
.StoreLayoutSignOutDialog > section {
  position: relative;
  width: min(390px, 100%);
  padding: 24px;
  box-sizing: border-box;
  border: 1px solid #e2e4e8;
  border-radius: 18px;
  background: #fff;
  color: #1f2328;
  text-align: center;
  box-shadow: 0 28px 80px rgba(12, 14, 18, 0.3);
}
.StoreLayoutSignOutDialog__icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(238, 55, 119, 0.09);
  color: var(--sl-accent);
}
.StoreLayoutSignOutDialog h2 {
  margin: 0 0 7px;
  font-size: 19px;
}
.StoreLayoutSignOutDialog p {
  margin: 0;
  color: #7c828a;
  font-size: 12.5px;
}
.StoreLayoutSignOutDialog footer {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.StoreLayoutSignOutDialog button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f0f1f3;
  color: #4d535a;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}
.StoreLayoutSignOutDialog button.is-danger {
  background: var(--sl-accent);
  color: #fff;
}
.StoreLayoutSignOutDialog button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.StoreLayoutDialog {
  position: fixed;
  z-index: var(--sl-layer-modal-fallback);
  inset: 0 0 0 var(--store-layout-reserve, var(--sl-rail));
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  margin: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: start center;
  padding: calc(64px + var(--store-layout-native-safe-top, 0px)) 16px
    calc(20px + var(--store-layout-native-safe-bottom, 0px));
  box-sizing: border-box;
  font:
    14px/1.35 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
.StoreLayoutDialog--headless {
  inset: 0;
}
.StoreLayoutDialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 24, 0.42);
}
.StoreLayoutSearch {
  position: relative;
  width: min(620px, 100%);
  max-height: min(
    680px,
    calc(
      100vh - 92px - var(--store-layout-native-safe-top, 0px) -
        var(--store-layout-native-safe-bottom, 0px)
    )
  );
  max-height: min(
    680px,
    calc(
      100dvh - 92px - var(--store-layout-native-safe-top, 0px) -
        var(--store-layout-native-safe-bottom, 0px)
    )
  );
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe1e5;
  border-radius: 14px;
  background: #fff;
  color: #1f2328;
  box-shadow: 0 30px 70px rgba(12, 14, 18, 0.32);
}
.StoreLayoutSearch__input {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eef0f2;
}
.StoreLayoutSearch__input .StoreLayoutIcon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  color: var(--sl-accent);
  stroke-width: 2.1;
}
.StoreLayoutSearch__input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #1f2328;
  font: inherit;
  font-size: 16px;
}
.StoreLayoutSearch__input input::placeholder {
  color: #a8aeb5;
}
.StoreLayoutSearch__input kbd {
  padding: 3px 6px;
  border: 1px solid #e6e8eb;
  border-radius: 5px;
  color: #a8aeb5;
  background: #fff;
  font: inherit;
  font-size: 10.5px;
}
.StoreLayoutSearch__results {
  min-height: 96px;
  max-height: calc(100vh - 210px);
  max-height: calc(100dvh - 210px);
  overflow: auto;
  padding: 10px 8px 6px;
}
.StoreLayoutSearch__group {
  padding: 6px 12px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8aeb5;
}
.StoreLayoutSearch__group strong {
  color: #6f747c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.StoreLayoutSearch__group small {
  font-size: 10px;
}
.StoreLayoutSearch__group span {
  margin-left: auto;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.StoreLayoutSearch__group:not(:first-child) {
  padding-top: 12px;
}
.StoreLayoutSearch__section {
  padding: 4px 12px 5px;
  color: #a8aeb5;
  font-size: 11px;
  font-weight: 650;
}
.StoreLayoutSearchResult {
  appearance: none;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #1f2328;
  text-align: left;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.StoreLayoutSearchResult:hover,
.StoreLayoutSearchResult.is-active {
  background: rgba(243, 26, 96, 0.065);
}
.StoreLayoutSearchResult__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #e6e8eb;
  border-radius: 7px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
}
.StoreLayoutSearchResult__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.StoreLayoutSearchResult__icon > i {
  font-size: 15px;
  line-height: 1;
}
.StoreLayoutSearchResult__icon--svg svg {
  width: 18px;
  height: 18px;
}
.StoreLayoutSearchResult__title {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13.5px;
}
.StoreLayoutSearchResult__title mark {
  padding: 0;
  background: transparent;
  color: var(--sl-accent);
  font-weight: 700;
}
.StoreLayoutSearchResult small {
  flex: none;
  max-width: 180px;
  overflow: hidden;
  color: #9aa1a9;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.StoreLayoutSearch__footer {
  min-height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #eef0f2;
  background: #fafbfc;
  color: #9aa1a9;
  font-size: 11px;
}
.StoreLayoutSearch__scope {
  min-width: 0;
  margin-left: auto;
  overflow: hidden;
  color: #c0c4ca;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.StoreLayoutMobileHeader {
  display: none;
  position: fixed;
  z-index: var(--sl-layer-mobile-header);
  inset: 0 0 auto;
  height: var(--store-layout-mobile-header, 38px);
  box-sizing: border-box;
  padding: var(--store-layout-mobile-safe-top, env(safe-area-inset-top)) 10px 0;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--sl-bg);
  color: var(--sl-text);
  box-shadow: 0 2px 12px rgba(8, 9, 11, 0.16);
  font:
    14px/1.25 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  overflow: hidden;
  transition:
    height 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.StoreLayoutMobileHeader[data-hidden='true'] {
  pointer-events: none;
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
}
.StoreLayoutMobileHeader[data-hidden='true'] > * {
  opacity: 0;
}
.StoreLayoutMobileAccount,
.StoreLayoutMobileInbox {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  box-sizing: border-box;
}
.StoreLayoutMobileAccount {
  min-width: 0;
  height: 100%;
  padding: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.StoreLayoutMobileAccount .StoreLayoutAvatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition:
    width 0.2s ease,
    height 0.2s ease;
}
.StoreLayoutMobileAccount strong {
  min-width: 0;
  overflow: hidden;
  color: var(--sl-text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: font-size 0.2s ease;
}
.StoreLayoutMobileAccount__chevron {
  width: 14px;
  height: 14px;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--sl-muted);
}
.StoreLayoutMobileAccount__chevron .StoreLayoutIcon {
  width: 13px;
  height: 13px;
  transform: rotate(90deg);
  transition: transform 0.18s ease;
}
.StoreLayoutMobileAccount[aria-expanded='true']
  .StoreLayoutMobileAccount__chevron
  .StoreLayoutIcon {
  transform: rotate(-90deg);
}
.StoreLayoutMobileInbox {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--sl-muted);
}
.StoreLayoutMobileInbox:hover,
.StoreLayoutMobileInbox[aria-expanded='true'] {
  background: var(--sl-panel);
  color: var(--sl-text);
}
.StoreLayoutMobileInbox__icon,
.StoreLayoutMobileInbox__close {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}
.StoreLayoutMobileInbox__close {
  display: none;
}
.StoreLayoutMobileInbox .StoreLayoutIcon {
  width: 18px;
  height: 18px;
}
.StoreLayoutMobileHeader[data-drawer-open='true']
  .StoreLayoutMobileInbox__icon {
  display: none;
}
.StoreLayoutMobileHeader[data-drawer-open='true']
  .StoreLayoutMobileInbox__close {
  display: grid;
}
.StoreLayoutMobileInbox__badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 7px;
  height: 7px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: var(--sl-accent);
  box-shadow: 0 0 0 2px var(--sl-bg);
  color: transparent;
  font-size: 0;
}
.StoreLayoutMobileInbox__badge[hidden] {
  display: none;
}
.StoreLayoutMobileAccount:focus-visible,
.StoreLayoutMobileInbox:focus-visible {
  outline: 2px solid var(--sl-accent);
  outline-offset: -2px;
}
.StoreLayoutMobileHeader[data-compact='true'] {
  padding-right: 9px;
  padding-left: 9px;
}
.StoreLayoutMobileHeader[data-compact='true']
  .StoreLayoutMobileAccount
  .StoreLayoutAvatar {
  width: 15px;
  height: 15px;
}
.StoreLayoutMobileHeader[data-compact='true'] .StoreLayoutMobileAccount {
  gap: 6px;
}
.StoreLayoutMobileHeader[data-compact='true'] .StoreLayoutMobileAccount strong {
  color: var(--sl-muted);
  font-size: 9px;
}
.StoreLayoutMobileHeader[data-compact='true']
  .StoreLayoutMobileAccount__chevron
  .StoreLayoutIcon {
  width: 11px;
  height: 11px;
}
.StoreLayoutMobileHeader[data-compact='true'] .StoreLayoutMobileInbox {
  width: 22px;
  height: 20px;
  flex-basis: 22px;
}
.StoreLayoutMobileHeader[data-compact='true']
  .StoreLayoutMobileInbox
  .StoreLayoutIcon {
  width: 14px;
  height: 14px;
}
.StoreLayoutNotifications__mobileTitle,
.StoreLayoutPlanBadge__mobilePeriod,
.StoreLayoutMobileBilling,
.StoreLayoutMobileDrawerHandle {
  display: none;
}
.StoreLayoutIntroduction {
  position: fixed;
  z-index: var(--sl-layer-callout);
  left: 100px;
  top: 90px;
  width: 288px;
  box-sizing: border-box;
  padding: 16px 18px 14px;
  border: 1px solid #e3e6ea;
  border-radius: 12px;
  background: #fff;
  color: #1f2328;
  box-shadow: 0 18px 44px rgba(16, 18, 22, 0.22);
  font:
    14px/1.4 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}
.StoreLayoutIntroduction:before {
  content: '';
  position: absolute;
  left: -6px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
  background: #fff;
  transform: rotate(45deg);
}
.StoreLayoutIntroduction__eyebrow {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d51654;
}
.StoreLayoutIntroduction__eyebrow i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--sl-accent);
}
.StoreLayoutIntroduction__eyebrow span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.StoreLayoutIntroduction > strong {
  display: block;
  margin-bottom: 5px;
  color: #1f2328;
  font-size: 14.5px;
  font-weight: 700;
}
.StoreLayoutIntroduction > p {
  margin: 0 0 13px;
  color: #6b7280;
  font-size: 12.5px;
  line-height: 1.45;
  text-wrap: pretty;
}
.StoreLayoutIntroduction__error {
  margin: -4px 0 10px;
  color: #bd2944;
  font-size: 11px;
}
.StoreLayoutIntroduction__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.StoreLayoutIntroduction__actions button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dfe1e5;
  border-radius: 7px;
  background: #fff;
  color: #4b5563;
  font:
    550 11.5px/1 Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  white-space: nowrap;
  cursor: pointer;
}
.StoreLayoutIntroduction__actions button:hover {
  background: #f5f6f7;
}
.StoreLayoutIntroduction__actions button.is-primary {
  border-color: var(--sl-accent);
  background: var(--sl-accent);
  color: #fff;
  font-weight: 650;
}
.StoreLayoutIntroduction__actions button.is-primary:hover {
  filter: brightness(0.94);
}
.StoreLayoutIntroduction__actions button.is-quiet {
  margin-left: auto;
  padding: 0 2px;
  border-color: transparent;
  background: transparent;
  color: #9aa1a9;
}
.StoreLayoutIntroduction__actions button.is-quiet:hover {
  color: #5f6670;
}
.StoreLayoutIntroduction__actions button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.StoreLayoutIntroduction__actions button[hidden],
.StoreLayoutIntroduction__error[hidden] {
  display: none;
}
.StoreLayoutIntroduction[hidden] {
  display: none;
}
.StoreLayoutBackdrop {
  display: none;
}

@media (min-width: 900px) {
  .StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutAccount {
    min-height: calc(var(--store-layout-logo-size, 36px) + 24px);
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutAccount
    .StoreLayoutAvatar {
    width: var(--store-layout-logo-size, 36px);
    height: var(--store-layout-logo-size, 36px);
  }
  .StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutSearchButton {
    height: var(--store-layout-search-size, 32px);
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutItem,
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutGroup
    > .StoreLayoutItem {
    min-height: var(--store-layout-item-size, 40px);
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutItem
    > .StoreLayoutIcon,
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutGroup
    > .StoreLayoutItem
    > .StoreLayoutIcon,
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutFooter__item
    > .StoreLayoutIcon {
    width: var(--store-layout-icon-size, 22px);
    height: var(--store-layout-icon-size, 22px);
    flex-basis: var(--store-layout-icon-size, 22px);
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutFooter__item
    > .StoreLayoutAvatar.is-small {
    width: var(--store-layout-avatar-size, 30px);
    height: var(--store-layout-avatar-size, 30px);
  }
  .StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutNewDot {
    top: var(--store-layout-new-dot-top, 5px);
    right: var(--store-layout-new-dot-right, 11px);
  }
}

/* Mobile Web: the account strip is the trigger, the account menu grows from it. */
@media (max-width: 899px) {
  .StoreLayoutTooltip {
    display: none !important;
  }
  .StoreLayoutMobileHeader {
    display: flex;
  }

  .StoreLayoutSidebar,
  .StoreLayoutSidebar[data-expanded='true'] {
    z-index: var(--sl-layer-chrome);
    inset: var(--store-layout-mobile-header, 38px) 0 auto;
    width: 100%;
    height: min(
      86vh,
      calc(100vh - var(--store-layout-mobile-header, 38px) - 24px)
    );
    height: min(
      86dvh,
      calc(100dvh - var(--store-layout-mobile-header, 38px) - 24px)
    );
    max-height: 88vh;
    max-height: 88dvh;
    padding: 9px 10px 12px;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 40px rgba(8, 9, 11, 0.42);
    clip-path: inset(0 0 100% 0);
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      clip-path 0.2s ease,
      transform 0.2s ease,
      visibility 0s linear 0.2s;
  }
  .StoreLayoutSidebar[data-mobile-open='true'],
  .StoreLayoutSidebar[data-expanded='true'][data-mobile-open='true'] {
    clip-path: inset(0);
    transform: translateY(var(--sl-mobile-drawer-drag-y, 0px));
    visibility: visible;
    transition:
      clip-path 0.2s ease,
      transform 0.2s ease,
      visibility 0s linear 0s;
  }
  .StoreLayoutSidebar[data-mobile-open='true'][data-mobile-dragging='true'],
  .StoreLayoutSidebar[data-expanded='true'][data-mobile-open='true'][data-mobile-dragging='true'] {
    will-change: transform;
    transition: none;
  }
  .StoreLayoutSidebar[data-mobile-closing='true'],
  .StoreLayoutSidebar[data-expanded='true'][data-mobile-closing='true'] {
    clip-path: inset(0);
    pointer-events: none;
    transform: translateY(
      calc(-100% - var(--store-layout-mobile-header, 38px))
    );
    visibility: hidden;
    transition:
      transform 0.2s ease-out,
      visibility 0s linear 0.2s;
  }
  .StoreLayoutSidebar > .StoreLayoutAccount {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutSearchButton {
    order: 1;
    height: 44px;
    min-height: 44px;
    margin: 0 0 8px;
    padding: 0 10px;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 10px;
  }
  .StoreLayoutSidebar > .StoreLayoutSearchButton .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .StoreLayoutSidebar > .StoreLayoutSearchButton span {
    display: block;
    min-width: 0;
    overflow: hidden;
    color: var(--sl-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutSidebar > .StoreLayoutSearchButton kbd {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutPreviewBadge,
  .StoreLayoutSidebar > .StoreLayoutPlanBadge {
    order: 2;
  }
  .StoreLayoutSidebar > .StoreLayoutPreviewBadge {
    min-height: 24px;
    margin-bottom: 5px;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge {
    min-height: 44px;
    margin: 0 0 5px;
    padding: 0 8px;
    display: grid;
    grid-template-columns: 6px minmax(0, auto) minmax(0, 1fr) 14px;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 7px;
    background: transparent;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge:hover,
  .StoreLayoutSidebar > .StoreLayoutPlanBadge[aria-expanded='true'] {
    background: var(--sl-panel);
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge.is-expired {
    --sl-plan-ink: #ff6b81;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__compact,
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge
    .StoreLayoutPlanBadge__compactUrgency,
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__label,
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge
    > .StoreLayoutPlanBadge__progress {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__heading {
    display: contents;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__status {
    grid-column: 1;
    grid-row: 1;
    width: 6px;
    height: 6px;
    display: block;
    border-radius: 50%;
    background: var(--sl-plan-bar);
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge strong {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    overflow: hidden;
    color: var(--sl-plan-ink);
    font-size: 15px;
    font-weight: 750;
    line-height: 1;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__period {
    display: none;
  }
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge
    .StoreLayoutPlanBadge__mobilePeriod {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--sl-muted);
    font-size: 13px;
    line-height: 1;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge
    .StoreLayoutPlanBadge__period
    .StoreLayoutIcon {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__period b {
    color: #ff8fa7;
    font-size: 10.5px;
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge .StoreLayoutPlanBadge__chevron {
    grid-column: 4;
    grid-row: 1;
    width: 14px;
    height: 14px;
  }
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge
    .StoreLayoutPlanBadge__chevron
    .StoreLayoutIcon {
    width: 12px;
    height: 12px;
    transform: rotate(90deg);
  }
  .StoreLayoutSidebar
    > .StoreLayoutPlanBadge[aria-expanded='true']
    .StoreLayoutPlanBadge__chevron
    .StoreLayoutIcon {
    transform: rotate(-90deg);
  }
  .StoreLayoutSidebar > .StoreLayoutPlanBadge[aria-expanded='true'] {
    min-height: 44px;
    margin-bottom: 0;
    padding: 7px 10px 4px;
    border-radius: 12px 12px 0 0;
  }
  .StoreLayoutMobileBilling {
    --sl-plan-bar: #8f949b;
    order: 3;
    margin: 0 0 7px;
    padding: 0 10px 9px;
    min-height: 0;
    flex: 0 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0 0 12px 12px;
    background: var(--sl-panel);
  }
  .StoreLayoutMobileBilling.is-standard {
    --sl-plan-bar: #6ed0e0;
  }
  .StoreLayoutMobileBilling.is-premium {
    --sl-plan-bar: #ecbc5c;
  }
  .StoreLayoutMobileBilling.is-expired {
    --sl-plan-bar: #ff6b81;
  }
  .StoreLayoutMobileBilling:not([hidden]) {
    display: flex;
    flex-direction: column;
  }
  .StoreLayoutMobileBilling__progress {
    width: 100%;
    height: 3px;
    margin: 0 0 5px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.12);
  }
  .StoreLayoutMobileBilling__progress > span {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: var(--sl-plan-bar, #8f949b);
  }
  .StoreLayoutMobileBilling > a {
    min-width: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--sl-text);
    font-size: 15px;
    text-decoration: none;
  }
  .StoreLayoutMobileBilling > a:hover {
    color: #fff;
  }
  .StoreLayoutMobileBilling > a > .StoreLayoutIcon:first-child {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    color: var(--sl-muted);
  }
  .StoreLayoutMobileBilling > a > span:not(.StoreLayoutIcon) {
    min-width: 0;
    flex: 1;
  }
  .StoreLayoutMobileBilling > a > strong,
  .StoreLayoutMobileBilling > a > small {
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
    color: var(--sl-muted);
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutMobileBilling > a > strong {
    color: var(--sl-text);
    font-size: 15px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }
  .StoreLayoutMobileBilling > a > .StoreLayoutIcon:last-child {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    color: var(--sl-muted);
  }
  .StoreLayoutSidebar > .StoreLayoutNav {
    order: 4;
    min-height: 44px;
    margin: 0 -10px;
    padding: 0 10px;
    background: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .StoreLayoutSidebar .StoreLayoutItem {
    min-height: 44px;
    padding: 0 8px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
  }
  .StoreLayoutSidebar .StoreLayoutItem > .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .StoreLayoutSidebar .StoreLayoutItem > span:not(.StoreLayoutIcon),
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutItem
    > span:not(.StoreLayoutIcon),
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutNav
    > .StoreLayoutGroup
    > .StoreLayoutItem
    > span:not(.StoreLayoutIcon) {
    display: block;
    padding: 0;
    font-size: 15px;
    line-height: 1.2;
    text-align: left;
  }
  .StoreLayoutSidebar .StoreLayoutItem.is-active:before,
  .StoreLayoutSidebar .StoreLayoutFooter__item.is-active:before {
    left: -10px;
  }
  .StoreLayoutSidebar .StoreLayoutGroup,
  .StoreLayoutSidebar .StoreLayoutGroup__list {
    width: 100%;
    min-width: 0;
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup[data-open='true']
    .StoreLayoutGroup__children {
    display: block;
    position: static;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: none;
    margin: 0;
    padding: 0 0 0 13px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup__flyoutHeader,
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup__flyoutDivider,
  .StoreLayoutSidebar:not([data-expanded='true']) .StoreLayoutGroup__add {
    display: none;
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup__list
    > .StoreLayoutItem {
    min-height: 44px;
    padding: 0 8px;
    gap: 10px;
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup__list
    > .StoreLayoutItem
    > .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .StoreLayoutSidebar:not([data-expanded='true'])
    .StoreLayoutGroup__list
    > .StoreLayoutItem
    > span:not(.StoreLayoutIcon) {
    font-size: 15px;
  }
  .StoreLayoutSidebar .StoreLayoutGroup__chevron {
    position: static;
    width: 14px;
    height: 14px;
    margin-left: auto;
    flex: 0 0 14px;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter {
    order: 5;
    flex: none;
    min-height: 43px;
    margin-top: 4px;
    padding-top: 4px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter > [data-sl-notifications] {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter > a[href*='/sidebar/settings'] {
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
  }
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    > a[href*='/sidebar/settings']
    > span:not(.StoreLayoutIcon) {
    display: none;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter > [data-sl-profile],
  .StoreLayoutSidebar > .StoreLayoutFooter > a[href='/app/users/me'] {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    justify-content: flex-start;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter .StoreLayoutAvatar.is-small {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }
  .StoreLayoutSidebar > .StoreLayoutFooter .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    > [data-sl-profile]
    > span:not(.StoreLayoutAvatar),
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    > a[href='/app/users/me']
    > span:not(.StoreLayoutAvatar) {
    display: block;
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    .StoreLayoutFooter__profileText
    > strong {
    color: var(--sl-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
  }
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    .StoreLayoutFooter__profileText
    > small {
    margin-top: 3px;
    display: block;
    overflow: hidden;
    color: var(--sl-muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-overflow: ellipsis;
  }
  .StoreLayoutMobileAccountSwitch {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--sl-muted);
    font: inherit;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
  }
  .StoreLayoutMobileAccountSwitch:hover {
    background: var(--sl-panel);
    color: var(--sl-text);
  }
  .StoreLayoutMobileAccountSwitch > span {
    flex: none;
  }
  .StoreLayoutMobileAccountSwitch > small {
    min-width: 0;
    margin-left: auto;
    overflow: hidden;
    font: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutSidebar
    > .StoreLayoutFooter
    .StoreLayoutMobileAccountSwitch
    > .StoreLayoutIcon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .StoreLayoutMobileDrawerHandle {
    order: 6;
    appearance: none;
    /* Full-width touch strip; do not extend upwards over account/profile actions. */
    width: 100%;
    height: 44px;
    margin: 0 auto -12px;
    padding: 20px 0 21px;
    flex: 0 0 44px;
    display: block;
    border: 0;
    background: transparent;
    cursor: grab;
    touch-action: none;
    user-select: none;
  }
  .StoreLayoutMobileDrawerHandle:active {
    cursor: grabbing;
  }
  .StoreLayoutMobileDrawerHandle:before {
    content: '';
    width: 36px;
    height: 3px;
    margin: 0 auto;
    display: block;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
  }
  .StoreLayoutBackdrop {
    position: fixed;
    z-index: var(--sl-layer-backdrop);
    inset: var(--store-layout-mobile-header, 38px) 0 0;
    background: rgba(18, 19, 22, 0.5);
    opacity: 0;
    transition: opacity 0.18s ease;
  }
  .StoreLayoutBackdrop.is-open {
    display: block;
    opacity: 1;
  }

  .StoreLayoutBilling,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutBilling {
    display: none !important;
  }
  .StoreLayoutProfile,
  .StoreLayoutAccounts,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutProfile,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccounts {
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }
  .StoreLayoutProfile,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutProfile {
    position: absolute;
    top: auto;
    bottom: 129px;
    max-height: calc(100% - 141px);
    padding: 6px;
    overflow-y: auto;
    border-radius: 12px;
  }
  .StoreLayoutProfile a,
  .StoreLayoutProfile button,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutProfile a,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutProfile button {
    min-height: 44px;
    padding: 0 8px;
    gap: 10px;
    border-radius: 9px;
    font-size: 15px;
    line-height: 1.2;
  }
  .StoreLayoutProfile a > .StoreLayoutIcon,
  .StoreLayoutProfile button > .StoreLayoutIcon,
  .StoreLayoutSidebar[data-expanded='true']
    .StoreLayoutProfile
    a
    > .StoreLayoutIcon,
  .StoreLayoutSidebar[data-expanded='true']
    .StoreLayoutProfile
    button
    > .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .StoreLayoutProfile__signOut {
    min-height: 44px !important;
    margin-top: 4px;
    padding: 0 8px !important;
  }

  /* Tour 16B: account switch lives below the profile; the shared account list
     becomes a full-screen mobile view (15A), not a second floating popover. */
  .StoreLayoutMobileHeader[data-drawer-view='accounts'] {
    visibility: hidden;
  }
  .StoreLayoutSidebar[data-mobile-open='true'][data-mobile-view='accounts'] {
    inset: 0;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding: calc(
        var(--store-layout-mobile-safe-top, env(safe-area-inset-top)) + 8px
      )
      10px env(safe-area-inset-bottom);
    border-radius: 0;
    transform: none;
  }
  .StoreLayoutSidebar[data-mobile-view='accounts']
    > :not(.StoreLayoutAccounts) {
    display: none !important;
  }
  .StoreLayoutAccounts,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutAccounts {
    position: static;
    min-height: 0;
    max-height: none;
    flex: 1;
    border: 0;
    border-radius: 0;
    background: var(--sl-bg);
    color: var(--sl-text);
    box-shadow: none;
  }
  .StoreLayoutAccounts:not([hidden]) {
    display: flex;
    flex-direction: column;
  }
  .StoreLayoutAccounts__header {
    padding: 0 0 10px;
    flex: none;
    border: 0;
  }
  .StoreLayoutAccounts__title {
    min-height: 44px;
    gap: 8px;
    color: var(--sl-text);
    font-size: 17px;
    letter-spacing: normal;
    text-transform: none;
  }
  .StoreLayoutAccounts__title b {
    color: var(--sl-muted);
    font-size: 13px;
    font-weight: 400;
  }
  .StoreLayoutAccounts__back,
  .StoreLayoutAccounts__close {
    width: 44px;
    height: 44px;
    padding: 0;
    flex: none;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }
  .StoreLayoutAccounts__back:hover,
  .StoreLayoutAccounts__close:hover {
    background: var(--sl-panel);
  }
  .StoreLayoutAccounts__close {
    margin-left: auto;
    color: var(--sl-muted);
  }
  .StoreLayoutAccounts__title .StoreLayoutIcon,
  .StoreLayoutAccounts__search .StoreLayoutIcon,
  .StoreLayoutAccounts__create .StoreLayoutIcon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    color: inherit;
  }
  .StoreLayoutAccounts__search {
    height: 44px;
    border-color: var(--sl-border);
    color: var(--sl-muted);
  }
  .StoreLayoutAccounts .StoreLayoutAccounts__search input {
    color: var(--sl-text);
    font-size: 16px;
  }
  .StoreLayoutAccounts__list {
    min-height: 0;
    max-height: none;
    padding: 0;
    flex: 1;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .StoreLayoutAccountRow {
    min-height: 56px;
    padding: 8px;
    color: var(--sl-text);
  }
  .StoreLayoutAccountRow.is-current {
    background: var(--sl-active-bg);
  }
  .StoreLayoutAccountRow:not(.is-current):hover {
    background: var(--sl-panel);
  }
  .StoreLayoutAccountRow__avatar {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-color: var(--sl-border);
    background: var(--sl-panel);
    color: var(--sl-text);
  }
  .StoreLayoutAccountRow__text strong {
    font-size: 15px;
  }
  .StoreLayoutAccountRow__text small {
    font-size: 12px;
  }
  .StoreLayoutAccountRow__role {
    max-width: 32%;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .StoreLayoutAccounts__create {
    min-height: 52px;
    padding: 0 8px;
    flex: none;
    border-color: var(--sl-border);
    background: transparent;
    color: var(--sl-text);
    font-size: 15px;
  }
  .StoreLayoutAccounts__create:hover {
    background: var(--sl-panel);
  }

  .StoreLayoutSidebar[data-mobile-view='notifications'] {
    padding: 0 0 12px;
  }
  .StoreLayoutSidebar[data-mobile-view='notifications']
    > :not(.StoreLayoutNotifications):not(.StoreLayoutMobileDrawerHandle) {
    display: none !important;
  }
  .StoreLayoutNotifications,
  .StoreLayoutSidebar[data-expanded='true'] .StoreLayoutNotifications {
    position: static;
    order: 1;
    width: auto;
    max-width: none;
    min-height: 0;
    max-height: none;
    padding: 0;
    flex: 1;
    border: 0;
    border-radius: 0;
    background: var(--sl-bg);
    color: var(--sl-text);
    box-shadow: none;
  }
  .StoreLayoutNotifications:not([hidden]) {
    display: flex;
    flex-direction: column;
  }
  .StoreLayoutNotifications__desktopTitle {
    display: none;
  }
  .StoreLayoutNotifications__mobileTitle {
    display: inline;
  }
  .StoreLayoutNotifications__header {
    min-height: 38px;
    padding: 0 12px;
    gap: 8px;
  }
  .StoreLayoutNotifications__header strong {
    color: var(--sl-text);
    font-size: 13px;
  }
  .StoreLayoutNotifications__header > a {
    display: none;
  }
  .StoreLayoutNotifications__sourceFilter {
    max-width: 150px;
  }
  .StoreLayoutNotifications__sourceFilter > summary {
    height: 28px;
    padding: 0;
    justify-content: flex-end;
    background: transparent;
    color: var(--sl-muted);
    font-size: 10.5px;
  }
  .StoreLayoutNotifications__sourceFilter > summary:hover,
  .StoreLayoutNotifications__sourceFilter[open] > summary {
    background: transparent;
    color: var(--sl-text);
  }
  .StoreLayoutNotifications__sourceOptions {
    top: 31px;
    right: 0;
    border-color: rgba(255, 255, 255, 0.09);
    background: var(--sl-panel);
    box-shadow: 0 14px 34px rgba(8, 9, 11, 0.45);
  }
  .StoreLayoutNotifications__sourceOptions button {
    color: var(--sl-muted);
  }
  .StoreLayoutNotifications__sourceOptions button:hover,
  .StoreLayoutNotifications__sourceOptions button.is-active {
    background: rgba(255, 255, 255, 0.07);
    color: var(--sl-text);
  }
  .StoreLayoutNotifications__tabs {
    min-height: 32px;
    margin: 0 12px;
    gap: 16px;
    border-bottom-color: rgba(255, 255, 255, 0.09);
  }
  .StoreLayoutNotifications__tabs button {
    min-height: 32px;
    padding-bottom: 7px;
    color: var(--sl-muted);
    font-size: 12px;
  }
  .StoreLayoutNotifications__tabs button.is-active {
    color: var(--sl-text);
  }
  .StoreLayoutNotifications__tabs small {
    color: var(--sl-muted);
    font-size: 10px;
  }
  .StoreLayoutNotifications__list {
    min-height: 0;
    max-height: none;
    padding: 6px;
    flex: 1;
    overscroll-behavior: contain;
  }
  .StoreLayoutNotificationRow {
    min-height: 58px;
    padding: 8px 28px 8px 8px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 9px;
    border-radius: 10px;
    background: transparent;
    color: var(--sl-text);
  }
  .StoreLayoutNotificationRow:hover,
  .StoreLayoutNotificationRow[aria-expanded='true'],
  .StoreLayoutNotificationRow.is-unread {
    background: var(--sl-panel);
  }
  .StoreLayoutNotificationRow__avatar {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--sl-muted);
    font-size: 10px;
  }
  .StoreLayoutNotificationRow.is-unread .StoreLayoutNotificationRow__avatar {
    background: rgba(216, 28, 81, 0.14);
    color: #ff8fb2;
  }
  .StoreLayoutNotificationRow__title,
  .StoreLayoutNotificationRow.is-unread .StoreLayoutNotificationRow__title {
    color: var(--sl-text);
    font-size: 11.5px;
    line-height: 1.25;
  }
  .StoreLayoutNotificationRow__text {
    color: var(--sl-muted);
    font-size: 10.5px;
    line-height: 1.35;
  }
  .StoreLayoutNotificationRow__meta {
    color: var(--sl-muted);
    font-size: 9.5px;
  }
  .StoreLayoutNotificationRow__dot {
    top: 13px;
    right: 10px;
  }
  .StoreLayoutNotificationChildren {
    margin: 0 8px 6px 45px;
    border-left-color: rgba(255, 255, 255, 0.09);
  }
  .StoreLayoutNotificationChild {
    color: var(--sl-muted);
  }
  .StoreLayoutNotificationChild:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--sl-text);
  }
  .StoreLayoutNotifications__footer {
    min-height: 40px;
    padding: 0 12px;
    border-top-color: rgba(255, 255, 255, 0.09);
  }
  .StoreLayoutNotifications__footer a,
  .StoreLayoutNotifications__footer button {
    color: var(--sl-text);
    font-size: 11px;
  }

  .StoreLayoutDialog {
    left: 0;
    padding: calc(var(--store-layout-mobile-header, 38px) + 12px) 12px
      calc(12px + var(--store-layout-native-safe-bottom, 0px));
  }
  .StoreLayoutSearch {
    max-height: calc(
      100vh - var(--store-layout-mobile-header, 38px) - 24px -
        var(--store-layout-native-safe-bottom, 0px)
    );
    max-height: calc(
      100dvh - var(--store-layout-mobile-header, 38px) - 24px -
        var(--store-layout-native-safe-bottom, 0px)
    );
  }
  .StoreLayoutSearch__results {
    max-height: calc(100vh - 172px);
    max-height: calc(100dvh - 172px);
  }
  .StoreLayoutSearch__scope {
    display: none;
  }
  .StoreLayoutIntroduction {
    left: 12px !important;
    right: 12px;
    top: auto !important;
    bottom: 12px;
    width: auto;
    max-width: 420px;
    margin: 0 auto;
  }
  .StoreLayoutIntroduction:before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .StoreLayoutSidebar,
  .StoreLayoutMobileHeader,
  .StoreLayoutBackdrop {
    transition: none !important;
  }
}

@media print {
  .StoreLayoutSidebar,
  .StoreLayoutMobileHeader,
  .StoreLayoutBackdrop,
  .StoreLayoutDialog,
  .StoreLayoutSignOutDialog,
  .StoreLayoutIntroduction {
    display: none !important;
  }
}
