/* src/styles.scss */
:root {
  --shop-surface-background: var(--mat-sys-surface);
  --shop-surface-card-background: #fff;
  --shop-surface-border: #eee;
  --shop-surface-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shop-surface-radius: 12px;
  --shop-button-primary-background: #111;
  --shop-button-primary-color: #fff;
  --shop-button-secondary-background: #f1f1f1;
  --shop-button-secondary-color: #111;
}
.shop-surface-page {
  min-height: 100vh;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--shop-surface-background);
  color: #0a0a0a;
}
.shop-surface-card {
  background-color: var(--shop-surface-card-background);
  border: 1px solid var(--shop-surface-border);
  border-radius: var(--shop-surface-radius);
  overflow: hidden;
  box-shadow: var(--shop-surface-shadow);
}
.shop-surface-card__body {
  padding: 24px;
}
.shop-surface-separator {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: #eee;
}
.shop-action-group {
  display: flex;
  gap: 12px;
}
.shop-action-group > .shop-pill-button {
  flex: 1;
}
.shop-action-group--stacked {
  flex-direction: column;
}
.shop-action-group--stacked > .shop-pill-button {
  width: 100%;
}
.shop-pill-button {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  cursor: pointer;
  transition: transform 0.16s ease, opacity 0.16s ease;
}
.shop-pill-button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.shop-pill-button:disabled {
  opacity: 0.55;
  cursor: default;
}
.shop-pill-button--primary {
  background: var(--shop-button-primary-background);
  color: var(--shop-button-primary-color);
  font-weight: 700;
}
.shop-pill-button--secondary {
  background: var(--shop-button-secondary-background);
  color: var(--shop-button-secondary-color);
}
.shop-summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-summary-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.shop-summary-item__main {
  display: flex;
  gap: 12px;
  min-width: 0;
}
.shop-summary-item__preview {
  width: var(--shop-summary-preview-size, 60px);
  height: var(--shop-summary-preview-size, 60px);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--shop-summary-preview-radius, 4px);
  background: #eee;
}
.shop-summary-item__content {
  min-width: 0;
}
.shop-summary-item__title {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
}
.shop-summary-item__details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shop-summary-item__detail {
  display: flex;
  gap: 6px;
  font-size: 0.92rem;
  line-height: 1.45;
}
.shop-summary-item__detail-label {
  color: var(--app-text-muted);
  flex-shrink: 0;
}
.shop-summary-item__detail-value {
  min-width: 0;
  color: #111;
  word-break: break-word;
}
.shop-summary-total {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.05rem;
}
.shop-order-summary-panel {
  --shop-order-summary-header-padding: 20px 20px 18px;
  --shop-order-summary-body-padding: 16px 20px;
  --shop-order-summary-footer-padding: 20px;
  --shop-order-summary-body-gap: 12px;
  --shop-order-summary-preview-size: 72px;
  --shop-order-summary-remove-size: 28px;
  --shop-order-summary-remove-icon-size: 20px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.shop-order-summary-panel--drawer,
.shop-order-summary-panel--checkout-card {
  height: 100%;
}
.shop-order-summary-panel--checkout-card {
  --shop-order-summary-header-padding: 24px 24px 18px;
  --shop-order-summary-body-padding: 16px 24px 20px;
  --shop-order-summary-footer-padding: 18px 24px 24px;
}
.shop-order-summary-panel--drawer {
  --shop-order-summary-header-padding: 18px 20px 16px;
  --shop-order-summary-body-padding: 12px 20px 16px;
  --shop-order-summary-footer-padding: 16px 20px 20px;
}
.shop-order-summary-panel__header,
.shop-order-summary-panel__footer {
  padding: var(--shop-order-summary-header-padding);
}
.shop-order-summary-panel__header {
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}
.shop-order-summary-panel__title {
  margin: 0;
  padding-right: 40px;
  font-size: 1.8rem;
  font-family: "Neue Haas Unica Pro Medium Italic", sans-serif;
  font-style: italic;
}
.shop-order-summary-panel__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--shop-order-summary-body-gap);
  padding: var(--shop-order-summary-body-padding);
}
.shop-order-summary-panel__empty {
  margin: 0;
  color: #5f5f5f;
}
.shop-order-summary-panel__list {
  display: flex;
  flex-direction: column;
  gap: var(--shop-order-summary-body-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-order-summary-item {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
}
.shop-order-summary-item__header {
  display: grid;
  grid-template-columns: var(--shop-order-summary-preview-size) minmax(0, 1fr);
  grid-template-areas: "preview title" "details details";
  gap: 12px;
  align-items: start;
}
.shop-order-summary-panel--editable .shop-order-summary-item__header {
  grid-template-columns: var(--shop-order-summary-preview-size) minmax(0, 1fr) var(--shop-order-summary-remove-size);
  grid-template-areas: "preview title remove" "details details details";
}
.shop-order-summary-item__preview {
  grid-area: preview;
  width: var(--shop-order-summary-preview-size);
  height: var(--shop-order-summary-preview-size);
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 12px;
}
.shop-order-summary-item__content {
  display: contents;
}
.shop-order-summary-item__title {
  grid-area: title;
  display: inline-block;
  min-width: 0;
  margin-bottom: 10px;
  color: #111;
  font-size: 1rem;
  font-weight: 700;
}
.shop-order-summary-item__details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.shop-order-summary-item__detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.shop-order-summary-item__detail-label {
  color: #555;
  font-size: 0.82rem;
  font-weight: 700;
}
.shop-order-summary-item__detail-value {
  min-width: 0;
  color: #111;
  font-size: 0.82rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.shop-order-summary-item__remove {
  grid-area: remove;
  align-self: start;
  justify-self: end;
  width: var(--shop-order-summary-remove-size);
  height: var(--shop-order-summary-remove-size);
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shop-order-summary-item__remove img {
  width: var(--shop-order-summary-remove-icon-size);
  height: var(--shop-order-summary-remove-icon-size);
  filter: brightness(0) saturate(100%) invert(40%) sepia(67%) saturate(1079%) hue-rotate(318deg) brightness(94%) contrast(88%);
}
.shop-order-summary-panel__footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--shop-order-summary-footer-padding);
  border-top: 1px solid #eee;
}
.shop-order-summary-panel__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shop-order-summary-panel__actions {
  margin-top: 4px;
}
.shop-cart-panel {
  --shop-cart-panel-header-padding: 20px 20px 18px;
  --shop-cart-panel-body-padding: 16px 20px;
  --shop-cart-panel-body-gap: 12px;
  --shop-cart-panel-footer-gap: 16px;
  --shop-cart-item-padding: 12px;
  --shop-cart-item-gap: 12px;
  --shop-cart-item-header-gap: 12px;
  --shop-cart-preview-size: 72px;
  --shop-cart-control-size: 28px;
  --shop-cart-icon-size: 20px;
  --shop-cart-item-name-size: 1rem;
  --shop-cart-detail-font-size: 0.82rem;
  --shop-cart-detail-label-width: 84px;
  --shop-cart-detail-gap: 12px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.shop-cart-panel__header,
.shop-cart-panel__footer {
  padding: var(--shop-cart-panel-header-padding);
}
.shop-cart-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eee;
}
.shop-cart-panel__title {
  margin: 0;
  font-size: 1.8rem;
  font-family: "Neue Haas Unica Pro Medium Italic", sans-serif;
  font-style: italic;
}
.shop-cart-panel__body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--shop-cart-panel-body-gap);
  padding: var(--shop-cart-panel-body-padding);
}
.shop-cart-empty {
  margin: 0;
  color: #5f5f5f;
}
.shop-cart-list {
  display: flex;
  flex-direction: column;
  gap: var(--shop-cart-panel-body-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-cart-item {
  display: flex;
  flex-direction: column;
  gap: var(--shop-cart-item-gap);
  padding: var(--shop-cart-item-padding);
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
}
.shop-cart-item__header {
  display: grid;
  grid-template-columns: var(--shop-cart-preview-size) minmax(0, 1fr) var(--shop-cart-control-size);
  gap: var(--shop-cart-item-header-gap);
  align-items: center;
}
.shop-cart-item__preview {
  width: var(--shop-cart-preview-size);
  height: var(--shop-cart-preview-size);
  overflow: hidden;
  border: 1px solid #ececec;
  border-radius: 12px;
}
.shop-cart-item__name {
  display: block;
  min-width: 0;
  font-size: var(--shop-cart-item-name-size);
  font-weight: 700;
  color: #111;
}
.shop-cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.shop-cart-item__detail {
  display: grid;
  grid-template-columns: var(--shop-cart-detail-label-width) minmax(0, 1fr);
  gap: var(--shop-cart-detail-gap);
  align-items: start;
  min-width: 0;
  font-size: var(--shop-cart-detail-font-size);
}
.shop-cart-item__detail-label {
  color: #555;
  font-weight: 700;
}
.shop-cart-item__detail-value {
  min-width: 0;
  color: #111;
  text-align: right;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: break-word;
  word-break: normal;
}
.shop-cart-item__detail--stacked {
  grid-template-columns: 1fr;
  gap: 4px;
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.shop-cart-item__detail--stacked .shop-cart-item__detail-value {
  text-align: left;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}
.shop-cart-remove {
  width: var(--shop-cart-control-size);
  height: var(--shop-cart-control-size);
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shop-cart-remove img {
  width: var(--shop-cart-icon-size);
  height: var(--shop-cart-icon-size);
  filter: brightness(0) saturate(100%) invert(40%) sepia(67%) saturate(1079%) hue-rotate(318deg) brightness(94%) contrast(88%);
}
.shop-cart-panel__footer {
  display: flex;
  flex-direction: column;
  gap: var(--shop-cart-panel-footer-gap);
  border-top: 1px solid #eee;
}
.shop-cart-expiry-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #e8e0c7;
  border-radius: 14px;
  background: #faf6ea;
  color: #2d2410;
}
.shop-cart-expiry-note strong {
  font-size: 0.95rem;
}
.shop-cart-expiry-note span {
  font-size: 0.9rem;
  line-height: 1.5;
}
.shop-cart-expiry-note + .shop-summary-list {
  margin-top: 16px;
}
.shop-cart-expiry-note + .shop-order-summary-panel__list {
  margin-top: 4px;
}
.shop-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shop-summary-drawer-mask {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1100;
}
.shop-summary-drawer-mask.visible {
  opacity: 1;
  pointer-events: auto;
}
.shop-summary-drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(480px, 100vw - 16px);
  padding: 12px 12px 12px 0;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 1101;
}
.shop-summary-drawer.visible {
  transform: translateX(0);
}
.shop-summary-drawer__close {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}
.shop-status-page {
  --shop-status-page-surface:
    linear-gradient(
      180deg,
      #f7f5ef 0%,
      #f2f0ea 100%);
  --shop-status-page-accent-radial: rgba(247, 198, 54, 0.14);
  --shop-status-card-border: #e6e1d3;
  --shop-status-accent: #f7c636;
  --shop-status-accent-shadow: rgba(247, 198, 54, 0.16);
  --shop-status-eyebrow: #9a7a15;
  --shop-status-panel-background:
    linear-gradient(
      180deg,
      #121212 0%,
      #1b1b1b 100%);
  --shop-status-panel-accent: #f6d778;
  --shop-status-panel-mark-background:
    linear-gradient(
      180deg,
      #f7c636 0%,
      #d9a61d 100%);
  min-height: 100vh;
  padding: 16px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    radial-gradient(
      circle at var(--shop-status-page-radial-position, top left),
      var(--shop-status-page-accent-radial),
      transparent 24%),
    var(--shop-status-page-surface);
  color: #0a0a0a;
}
.shop-status-shell {
  flex: 1;
  display: grid;
  place-items: center;
}
.shop-status-card {
  width: min(100%, var(--shop-status-card-width, 920px));
  padding: 28px;
  border: 1px solid var(--shop-status-card-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(15, 15, 15, 0.08);
}
.shop-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}
.shop-status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--shop-status-accent);
  box-shadow: 0 0 0 6px var(--shop-status-accent-shadow);
}
.shop-status-badge__copy {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-status-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--shop-status-content-ratio, 1.45fr)) minmax(var(--shop-status-panel-min, 240px), var(--shop-status-panel-max, 300px));
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 767px) {
  .shop-cart-panel__title {
    font-size: 1.5rem;
  }
  .shop-order-summary-panel {
    --shop-order-summary-header-padding: 16px;
    --shop-order-summary-body-padding: 12px 16px;
    --shop-order-summary-footer-padding: 14px 16px 16px;
    --shop-order-summary-preview-size: 64px;
    --shop-order-summary-remove-size: 24px;
    --shop-order-summary-remove-icon-size: 18px;
  }
  .shop-order-summary-panel__title {
    font-size: 1.5rem;
  }
  .shop-summary-drawer {
    width: min(420px, 100vw - 8px);
    padding: 8px 8px 8px 0;
  }
  .shop-summary-drawer__close {
    top: 22px;
    right: 20px;
  }
}
.shop-status-copy {
  min-width: 0;
}
.shop-status-copy-block {
  display: grid;
  gap: 0;
}
.shop-status-copy--spread {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.shop-status-eyebrow {
  margin: 0 0 12px;
  color: var(--shop-status-eyebrow);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-status-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Neue Haas Unica Pro Medium Italic", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.shop-status-copy-text {
  margin: 18px 0 0;
  max-width: 54ch;
  color: var(--app-text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}
.shop-status-order-box {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e7e1d5;
  border-radius: 18px;
  background: #f5f3ee;
}
.shop-status-order-box span {
  color: var(--app-text-muted);
}
.shop-status-order-box strong {
  color: #111;
  text-align: right;
}
.shop-status-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.shop-status-highlight {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid #e7e1d5;
  border-radius: 20px;
  background:
    linear-gradient(
      180deg,
      #faf8f3 0%,
      #f4f1ea 100%);
}
.shop-status-highlight--muted {
  background: #fff;
}
.shop-status-highlight__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.shop-status-highlight__value {
  margin: 0;
  color: #111;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.shop-status-highlight__value--eyebrow {
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--app-text-secondary);
}
.shop-status-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: var(--shop-status-panel-background);
  color: #fff;
}
.shop-status-panel-copy {
  display: grid;
  gap: 10px;
}
.shop-status-panel__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--shop-status-panel-mark-background);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.shop-status-panel__title {
  margin: 0;
  color: var(--shop-status-panel-accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.shop-status-panel__copy {
  margin: 0;
  color: var(--app-text-inverse-muted);
  line-height: 1.6;
}
.shop-status-spinner-ring {
  width: 144px;
  height: 144px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(
      circle,
      var(--shop-status-accent-shadow) 0%,
      rgba(247, 198, 54, 0) 70%);
}
.shop-status-step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shop-status-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.shop-status-step:first-child {
  padding-top: 0;
  border-top: 0;
}
.shop-status-step__index {
  min-width: 28px;
  color: var(--shop-status-panel-accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.shop-status-step__copy {
  color: var(--app-text-inverse-muted);
  line-height: 1.55;
}
.shop-status-actions {
  margin-top: 28px;
}
.shop-payment-page {
  min-height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background:
    radial-gradient(
      circle at top left,
      rgba(247, 198, 54, 0.12),
      transparent 28%),
    linear-gradient(
      180deg,
      #121212 0%,
      #1b1b1b 100%);
  color: #f8f8f8;
}
.shop-payment-card {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}
.shop-payment-eyebrow {
  margin: 0 0 10px;
  color: #f7c636;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.shop-payment-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}
.shop-payment-copy {
  margin: 14px 0 0;
  color: var(--app-text-inverse-muted);
  line-height: 1.6;
}
.shop-payment-loading {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.shop-payment-loading--compact {
  margin-top: 18px;
}
.shop-payment-error {
  margin: 18px 0 0;
  color: #ff8e8e;
}
@media (max-width: 640px) {
  .shop-surface-page {
    padding: 18px;
  }
  .shop-surface-card__body {
    padding: 24px;
  }
  .shop-action-group {
    flex-direction: column;
  }
  .shop-status-page {
    padding: 18px;
  }
  .shop-status-card {
    padding: 22px;
    border-radius: 22px;
  }
  .shop-status-order-box {
    flex-direction: column;
  }
  .shop-status-highlight-grid {
    grid-template-columns: 1fr;
  }
  .shop-payment-page {
    padding: 18px;
  }
  .shop-payment-card {
    padding: 24px;
  }
}
@media (max-width: 900px) {
  .shop-status-layout {
    grid-template-columns: 1fr;
  }
  .shop-status-title {
    max-width: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
  --mat-sys-background: light-dark(#faf9fd, #121316);
  --mat-sys-error: light-dark(#ba1a1a, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#f2f0f4, #2f3033);
  --mat-sys-inverse-primary: light-dark(#abc7ff, #005cbb);
  --mat-sys-inverse-surface: light-dark(#2f3033, #e3e2e6);
  --mat-sys-on-background: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #002f65);
  --mat-sys-on-primary-container: light-dark(#00458f, #d7e3ff);
  --mat-sys-on-primary-fixed: light-dark(#001b3f, #001b3f);
  --mat-sys-on-primary-fixed-variant: light-dark(#00458f, #00458f);
  --mat-sys-on-secondary: light-dark(#ffffff, #283041);
  --mat-sys-on-secondary-container: light-dark(#3e4759, #dae2f9);
  --mat-sys-on-secondary-fixed: light-dark(#131c2b, #131c2b);
  --mat-sys-on-secondary-fixed-variant: light-dark(#3e4759, #3e4759);
  --mat-sys-on-surface: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-surface-variant: light-dark(#44474e, #e0e2ec);
  --mat-sys-on-tertiary: light-dark(#ffffff, #0001ac);
  --mat-sys-on-tertiary-container: light-dark(#0000ef, #e0e0ff);
  --mat-sys-on-tertiary-fixed: light-dark(#00006e, #00006e);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#0000ef, #0000ef);
  --mat-sys-outline: light-dark(#74777f, #8e9099);
  --mat-sys-outline-variant: light-dark(#c4c6d0, #44474e);
  --mat-sys-primary: light-dark(#005cbb, #abc7ff);
  --mat-sys-primary-container: light-dark(#d7e3ff, #00458f);
  --mat-sys-primary-fixed: light-dark(#d7e3ff, #d7e3ff);
  --mat-sys-primary-fixed-dim: light-dark(#abc7ff, #abc7ff);
  --mat-sys-scrim: light-dark(#000000, #000000);
  --mat-sys-secondary: light-dark(#565e71, #bec6dc);
  --mat-sys-secondary-container: light-dark(#dae2f9, #3e4759);
  --mat-sys-secondary-fixed: light-dark(#dae2f9, #dae2f9);
  --mat-sys-secondary-fixed-dim: light-dark(#bec6dc, #bec6dc);
  --mat-sys-shadow: light-dark(#000000, #000000);
  --mat-sys-surface: light-dark(#faf9fd, #121316);
  --mat-sys-surface-bright: light-dark(#faf9fd, #38393c);
  --mat-sys-surface-container: light-dark(#efedf0, #1f2022);
  --mat-sys-surface-container-high: light-dark(#e9e7eb, #292a2c);
  --mat-sys-surface-container-highest: light-dark(#e3e2e6, #343537);
  --mat-sys-surface-container-low: light-dark(#f4f3f6, #1a1b1f);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #0d0e11);
  --mat-sys-surface-dim: light-dark(#dbd9dd, #121316);
  --mat-sys-surface-tint: light-dark(#005cbb, #abc7ff);
  --mat-sys-surface-variant: light-dark(#e0e2ec, #44474e);
  --mat-sys-tertiary: light-dark(#343dff, #bec2ff);
  --mat-sys-tertiary-container: light-dark(#e0e0ff, #0000ef);
  --mat-sys-tertiary-fixed: light-dark(#e0e0ff, #e0e0ff);
  --mat-sys-tertiary-fixed-dim: light-dark(#bec2ff, #bec2ff);
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Satoshi;
  --mat-sys-body-large-font: Satoshi;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Satoshi;
  --mat-sys-body-medium-font: Satoshi;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Satoshi;
  --mat-sys-body-small-font: Satoshi;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Satoshi;
  --mat-sys-display-large-font: Satoshi;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Satoshi;
  --mat-sys-display-medium-font: Satoshi;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Satoshi;
  --mat-sys-display-small-font: Satoshi;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Satoshi;
  --mat-sys-headline-large-font: Satoshi;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Satoshi;
  --mat-sys-headline-medium-font: Satoshi;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Satoshi;
  --mat-sys-headline-small-font: Satoshi;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Satoshi;
  --mat-sys-label-large-font: Satoshi;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Satoshi;
  --mat-sys-label-medium-font: Satoshi;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Satoshi;
  --mat-sys-label-small-font: Satoshi;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Satoshi;
  --mat-sys-title-large-font: Satoshi;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Satoshi;
  --mat-sys-title-medium-font: Satoshi;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Satoshi;
  --mat-sys-title-small-font: Satoshi;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
:root {
  --app-text-primary: #111111;
  --app-text-secondary: #454545;
  --app-text-muted: #4f4f4f;
  --app-text-subtle: #5a5a5a;
  --app-text-inverse-muted: rgba(255, 255, 255, 0.88);
}
body {
  color-scheme: light;
  background-color: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
  font: var(--mat-sys-body-medium);
  font-family: "Satoshi", sans-serif;
  line-height: 1.5;
  margin: 0;
  height: 100%;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role=button]:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
[data-main-content]:focus {
  outline: none;
}
p,
li,
label,
input,
textarea,
select,
small {
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  font-family: "Neue Haas Unica Pro Medium Italic", sans-serif;
  font-style: italic;
  font-weight: 500;
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
