@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
  size-adjust: 107.12%;
}

@font-face {
  font-family: "Merriweather";
  src: url("./fonts/merriweather-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Merriweather Fallback";
  src: local("Times New Roman");
  ascent-override: 80.59%;
  descent-override: 22.36%;
  line-gap-override: 0%;
  size-adjust: 122.09%;
}

* {
  box-sizing: border-box;
}

html.theme-changing *,
html.theme-changing *::before,
html.theme-changing *::after {
  transition: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
}

::selection,
*::selection {
  background: var(--color-primary-500);
  color: var(--color-always-white);
  -webkit-text-fill-color: var(--color-always-white);
}

svg::selection,
svg *::selection {
  background: rgba(0, 181, 156, 0.18);
  color: var(--color-primary-500);
  fill: var(--color-primary-500);
  stroke: var(--color-primary-500);
}

.page-shell {
  width: min(100%, 832px);
  max-width: 832px;
  margin: 0 auto;
  padding: 96px 16px;
}

@media (max-width: 600px) {
  .page-shell {
    padding-block: 16px;
  }
}

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

.top-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wordmark-link {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.wordmark-link:focus {
  outline: none;
}

.wordmark-link:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 8px;
  border-radius: 4px;
}

.wordmark {
  display: block;
  height: 40px;
  width: auto;
  color: var(--color-neutral-900);
  transition: color 140ms ease-out;
}

.wordmark-mask {
  width: 126px;
  background: currentColor;
  mask: url("/assets/soundbrenner-wordmark.svg") center / contain no-repeat;
  -webkit-mask: url("/assets/soundbrenner-wordmark.svg") center / contain no-repeat;
}

.wordmark-link:hover .wordmark {
  color: var(--color-primary-500);
}

.theme-switcher-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.account-menu-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.account-menu-shell[hidden] {
  display: none;
}

.theme-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-neutral-100) 75%, transparent);
  cursor: pointer;
  outline: none;
}

.profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--color-neutral-800);
  line-height: 0;
  cursor: pointer;
  outline: none;
  transition: opacity 140ms ease-out;
}

.profile-button:hover,
.profile-button:active {
  opacity: 0.75;
}

.theme-switcher:focus,
.theme-switcher:focus-visible,
.profile-button:focus,
.profile-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.profile-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  color: var(--color-neutral-800);
}

.theme-switcher svg {
  display: block;
}

.theme-icon {
  display: block;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: var(--color-neutral-800);
}

.theme-icon[hidden] {
  display: none !important;
}

[data-theme="light"] [data-theme-dark-icon],
[data-theme="dark"] [data-theme-light-icon] {
  display: none !important;
}

.theme-switcher:hover {
  background: var(--color-neutral-100);
}

.theme-switcher:hover .theme-icon {
  color: var(--color-primary-500);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  z-index: 10;
  display: none;
  min-width: 156px;
  gap: 2px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(165, 165, 165, 0.7);
  border-radius: 14px;
  background: var(--color-neutral-400);
  color: var(--color-neutral-900);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  transform-origin: top right;
  pointer-events: none;
  transition:
    opacity 140ms ease-out,
    transform 140ms ease-out;
}

.menu-panel.is-open {
  display: grid;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.menu-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 120ms ease-out;
}

.menu-option.is-selected {
  background: var(--color-neutral-600);
}

.menu-option:hover {
  background: var(--color-neutral-500);
}

.menu-option-label {
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.account-menu {
  min-width: 220px;
}

.account-menu form {
  display: contents;
}

.title-bold {
  margin: 48px 0 0;
  font-family: "Merriweather", "Merriweather Fallback", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--color-neutral-900);
}

.access-list {
  margin: 16px 0 0;
  color: var(--color-neutral-800);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.access-list[hidden] {
  display: none;
}

.access-list-label {
  text-decoration: underline;
}

.access-list-accounts {
  display: block;
  white-space: pre-line;
}

.home-view.is-hidden,
.detail-view.is-hidden {
  display: none;
}

.auth-flow-card {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--color-neutral-100) 75%, transparent);
  padding: 24px;
}

.auth-card-title {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Merriweather", "Merriweather Fallback", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}

.auth-card-body {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.auth-status-link {
  text-decoration: none;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.auth-form-error {
  margin: 0;
  color: var(--color-red-500);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.auth-submit-button {
  width: 100%;
}

.detail-view {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.thread-back-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-primary-500);
  text-decoration: none;
  cursor: pointer;
}

.thread-back-link-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--color-primary-500);
}

.thread-back-link-label {
  color: var(--color-primary-500);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none;
}

.thread-back-link:focus {
  outline: none;
}

.thread-back-link:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}

.thread-back-link:hover .thread-back-link-label {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.thread-header-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
  background: color-mix(in srgb, var(--color-neutral-100) 75%, transparent);
  padding: 24px;
}

.thread-detail-card {
  gap: 24px;
}

.thread-header-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.thread-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
}

.thread-header-action-shell {
  position: relative;
  flex: 0 0 auto;
}

.thread-header-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 16px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: var(--color-neutral-200);
  color: var(--color-neutral-800);
  cursor: pointer;
}

.thread-header-action-trigger.is-open {
  background: var(--color-neutral-200);
}

.thread-header-action-trigger:hover {
  background: var(--color-neutral-300);
}

.thread-header-action-trigger:focus {
  outline: none;
}

.thread-header-action-trigger:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
}

.thread-header-action-icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--color-neutral-800);
}

.promotion-actions-menu {
  right: 0;
  top: calc(100% + 4px);
  min-width: 120px;
}

.new-suggestion-title-input {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  margin: 0;
  border: 0;
  padding: 0;
  resize: none;
  overflow: visible;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  color: var(--color-neutral-900);
  caret-color: var(--color-primary-500);
  font-family: "Merriweather", "Merriweather Fallback", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: normal;
  text-rendering: optimizeLegibility;
  -webkit-text-fill-color: currentColor;
  outline: none;
}

.new-suggestion-title-input::placeholder {
  color: var(--color-neutral-800);
  opacity: 1;
}

.new-suggestion-title-input.is-invalid::placeholder {
  color: var(--color-red-500);
}

.auth-field-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 20px;
  overflow: visible;
}

.auth-field-list-item {
  --auth-field-surface: var(--color-neutral-200);
  position: relative;
  display: block;
  height: 56px;
  padding: 0 16px;
  background: var(--auth-field-surface);
  cursor: text;
  transition: background-color 140ms ease-out;
}

.auth-field-list-item.is-disabled {
  cursor: default;
  opacity: 0.5;
}

.auth-field-list-item.is-disabled .auth-field-list-input {
  pointer-events: none;
}

.auth-field-list-item:first-child {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.auth-field-list-item:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.auth-field-list-label {
  position: absolute;
  left: 16px;
  top: 50%;
  color: var(--color-neutral-800);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  transform: translateY(-50%) scale(1);
  transform-origin: left top;
  transition:
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
    color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-field-list-input {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  width: auto;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: var(--auth-field-surface) !important;
  box-shadow: none;
  color: var(--color-neutral-900);
  caret-color: var(--color-primary-500);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  outline: none;
  opacity: 0;
  transform: translateY(4px);
  -webkit-appearance: none;
  appearance: none;
  transition:
    opacity 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.promotion-color-fields .auth-field-list-input {
  right: 56px;
}

.color-preview {
  position: absolute;
  right: 16px;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--preview-color, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.92);
  transition:
    opacity 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-field-list-item.has-valid-color .color-preview {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.auth-field-list-input:-webkit-autofill,
.auth-field-list-input:-webkit-autofill:hover,
.auth-field-list-input:-webkit-autofill:focus {
  border-radius: 0;
  background: var(--auth-field-surface) !important;
  -webkit-text-fill-color: var(--color-neutral-900);
  caret-color: var(--color-primary-500);
  -webkit-box-shadow: 0 0 0 1000px var(--auth-field-surface) inset !important;
  box-shadow: 0 0 0 1000px var(--auth-field-surface) inset !important;
  transition:
    opacity 150ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 150ms cubic-bezier(0.4, 0, 0.2, 1),
    background-color 9999s ease-out 0s;
}

[data-theme="dark"] .auth-field-list-input {
  color-scheme: dark;
}

.auth-field-list-item:not(.has-value) .auth-field-list-input {
  inset: 0;
  left: 16px;
  right: 16px;
  bottom: 0;
}

.promotion-color-fields .auth-field-list-item:not(.has-value) .auth-field-list-input {
  right: 56px;
}

.auth-field-list-item.has-value .auth-field-list-input {
  opacity: 1;
  transform: translateY(0);
}

.auth-field-list-item.has-value .auth-field-list-label {
  color: var(--color-neutral-800);
  transform: translateY(-19px) scale(0.75);
}

.auth-field-list-item.is-invalid .auth-field-list-label,
.auth-field-list-item.is-invalid.has-value .auth-field-list-label {
  color: var(--color-red-500);
}

.field-footer-caption {
  margin: -12px 0 0;
  padding-left: 16px;
  color: var(--color-neutral-800);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.translation-preview-caption {
  margin-top: 12px;
  white-space: pre-line;
}

.detail-field-section,
.promotion-card-settings {
  display: grid;
  gap: 0;
}

.detail-section-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
}

.detail-section-title {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Merriweather", "Merriweather Fallback", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
  text-align: left;
}

.switch-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: default;
}

.switch-list-label {
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.settings-switch {
  position: relative;
  flex: 0 0 auto;
  width: 52px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sb-switch {
  position: relative;
  display: block;
  width: 52px;
  height: 32px;
  flex: 0 0 auto;
}

.sb-switch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--color-neutral-700);
  background: transparent;
  transition:
    background-color 67ms linear,
    border-color 67ms linear;
}

.sb-switch__thumb-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 4px 0 8px;
  transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sb-switch__thumb {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--color-neutral-700);
  transition:
    width 250ms cubic-bezier(0.2, 0, 0, 1),
    height 250ms cubic-bezier(0.2, 0, 0, 1),
    background-color 67ms linear;
}

.sb-switch[data-on="true"] .sb-switch__track {
  border-color: transparent;
  background: var(--color-primary-500);
}

.sb-switch[data-on="true"] .sb-switch__thumb-wrap {
  transform: translateX(16px);
}

.sb-switch[data-on="true"] .sb-switch__thumb {
  width: 24px;
  height: 24px;
  background: var(--color-white);
}

.settings-switch:hover .sb-switch[data-on="false"] .sb-switch__track {
  border-color: var(--color-neutral-900);
  background: transparent;
}

.settings-switch:hover .sb-switch[data-on="false"] .sb-switch__thumb {
  background: var(--color-neutral-900);
}

.settings-switch:hover .sb-switch[data-on="true"] .sb-switch__track {
  background: var(--color-switch-on-hover-track);
}

.settings-switch:focus {
  outline: none;
}

.settings-switch:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 4px;
}

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

.promotion-save-button,
.promotion-publish-button {
  width: 100%;
}

.app-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0, 0, 0, 0.48);
  animation: app-dialog-backdrop-enter 200ms cubic-bezier(0.2, 0, 0, 1);
}

.app-dialog-backdrop.is-hidden,
.app-dialog.is-hidden {
  display: none;
}

.app-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 4001;
  display: flex;
  width: min(calc(100vw - 32px), 392px);
  flex-direction: column;
  border-radius: 28px;
  background: var(--color-neutral-200);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  animation: app-dialog-enter 200ms cubic-bezier(0.2, 0, 0, 1);
}

.app-dialog:focus,
.app-dialog:focus-visible {
  outline: none;
  -webkit-focus-ring-color: transparent;
}

.app-dialog-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.app-dialog-title {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Merriweather", "Merriweather Fallback", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.app-dialog-description {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  white-space: pre-line;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.app-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px 24px 24px 16px;
}

.app-dialog-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: var(--color-primary-500);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.app-dialog-action[hidden] {
  display: none;
}

.app-dialog-action--text {
  background: transparent;
  color: var(--color-primary-500);
}

.app-dialog-action--text:hover {
  color: var(--color-primary-700);
}

.app-dialog-action--danger {
  color: var(--color-red-500);
}

.app-dialog-action--danger:hover {
  color: color-mix(in srgb, var(--color-red-500) 82%, var(--color-always-black));
}

.app-dialog-action:focus-visible {
  outline: 2px solid var(--color-primary-500);
  outline-offset: 2px;
  border-radius: 8px;
}

@keyframes app-dialog-backdrop-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes app-dialog-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.filter-section {
  margin-top: 24px;
}

.filter-section-title {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.filter-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: var(--color-neutral-200);
  box-shadow:
    inset 0 0 0.5px 1px color-mix(in srgb, var(--color-white) 25%, transparent),
    0 7px 4px 0 var(--color-skeuomorphic-black-12-soft),
    0 3px 3px 0 var(--color-skeuomorphic-black-12-soft),
    0 1px 2px 0 var(--color-skeuomorphic-black-12-soft),
    inset 0 1.5px 0 0 color-mix(in srgb, var(--color-white) 12%, transparent);
  color: var(--color-neutral-900);
  cursor: pointer;
  position: relative;
  transition:
    background-color 140ms ease-out,
    color 140ms ease-out,
    box-shadow 140ms ease-out,
    border-color 140ms ease-out;
}

.filter-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.75px solid var(--color-skeuomorphic-neutral-200-darker);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.filter-chip-home-product {
  background: color-mix(in srgb, var(--color-neutral-100) 75%, transparent);
}

.filter-chip.is-selected {
  border: 0;
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-white) 25%, transparent) 0%,
      color-mix(in srgb, var(--color-primary-700) 25%, transparent) 100%
    ),
    var(--color-primary-700);
  box-shadow:
    0 9px 9px 0 color-mix(in srgb, var(--color-primary-500) 25%, transparent),
    0 2.5px 5px 0 color-mix(in srgb, var(--color-primary-500) 25%, transparent),
    inset 0 -1px 1px 0 color-mix(in srgb, var(--color-white) 25%, transparent),
    inset 0 1px 1px 0 color-mix(in srgb, var(--color-white) 25%, transparent);
  color: var(--color-white);
}

.filter-chip.is-selected::before {
  content: none;
}

.filter-chip-label {
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.filter-chip.is-selected .filter-chip-label {
  font-weight: 600;
}

.filter-chip:hover {
  background: var(--color-neutral-300);
  box-shadow:
    inset 0 0 0.5px 1px color-mix(in srgb, var(--color-white) 44%, transparent),
    0 12px 7px 0 var(--color-skeuomorphic-black-12-soft),
    0 6px 5px 0 var(--color-skeuomorphic-black-12-soft),
    0 2px 3px 0 var(--color-skeuomorphic-black-12-soft),
    inset 0 1.5px 0 0 color-mix(in srgb, var(--color-white) 20%, transparent);
}

.filter-chip.is-selected:hover {
  background:
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-white) 34%, transparent) 0%,
      color-mix(in srgb, var(--color-primary-700) 34%, transparent) 100%
    ),
    var(--color-primary-700);
  box-shadow:
    0 12px 12px 0 color-mix(in srgb, var(--color-primary-500) 32%, transparent),
    0 4px 7px 0 color-mix(in srgb, var(--color-primary-500) 32%, transparent),
    inset 0 -1px 1px 0 color-mix(in srgb, var(--color-white) 32%, transparent),
    inset 0 1px 1px 0 color-mix(in srgb, var(--color-white) 32%, transparent);
}

.seasonal-promotions {
  margin-top: 24px;
}

.seasonal-promotions.is-hidden {
  display: none;
}

.promotion-list {
  display: grid;
  gap: 24px;
}

.callout-bold {
  margin: 64px 0 24px;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0;
}

.radiant-button {
  --radiant-color-300: var(--color-primary-300, #5CCFC1);
  --radiant-color-500: var(--color-primary-500);
  --radiant-color-700: var(--color-primary-700);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--radiant-color-500);
  border-radius: 999px;
  background: var(--radiant-color-500);
  color: var(--color-white);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 -10px 20px 0 color-mix(in srgb, var(--radiant-color-500) 25%, transparent),
    0 0 0 1px var(--radiant-color-700) inset,
    0 -20px 20px 0 rgba(255, 255, 255, 0.5) inset,
    0 2px 1px 0 rgba(255, 255, 255, 0.5) inset;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.radiant-button.promotion-publish-button {
  --radiant-color-300: color-mix(in srgb, var(--color-red-500) 62%, var(--color-white));
  --radiant-color-500: var(--color-red-500);
  --radiant-color-700: var(--color-red-700);
}

.radiant-button::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 72px;
  height: 8px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.25);
  filter: blur(10px);
  transform: translateY(-50%);
}

.radiant-button::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.5px;
  border-radius: inherit;
  opacity: 0.75;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.5) 100%
    );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.radiant-button-label {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}

.radiant-button-spinner {
  position: relative;
  z-index: 1;
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid color-mix(in srgb, var(--color-white) 35%, transparent);
  border-top-color: var(--color-white);
  border-radius: 999px;
  animation: radiant-button-spinner 720ms linear infinite;
}

.radiant-button.is-loading .radiant-button-spinner {
  display: block;
}

.radiant-button:disabled {
  cursor: progress;
}

.radiant-button:hover,
.radiant-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 -18px 30px 0 color-mix(in srgb, var(--radiant-color-300) 25%, transparent),
    0 -6px 14px 0 color-mix(in srgb, var(--radiant-color-300) 25%, transparent),
    0 -10px 20px 0 color-mix(in srgb, var(--radiant-color-500) 25%, transparent),
    0 0 0 1px var(--radiant-color-700) inset,
    0 -20px 20px 0 rgba(255, 255, 255, 0.5) inset,
    0 2px 1px 0 rgba(255, 255, 255, 0.5) inset;
  outline: none;
}

.radiant-button:active {
  transform: translateY(0);
}

@keyframes radiant-button-spinner {
  to {
    transform: rotate(360deg);
  }
}

.promotion-card {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 24px;
  padding: 24px;
  background: var(--promotion-gradient, var(--color-neutral-100));
  color: inherit;
  font: inherit;
  text-align: left;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  transition:
    filter 140ms ease-out,
    transform 140ms ease-out;
}

.promotion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--color-neutral-100) 25%, transparent) 0%,
    color-mix(in srgb, var(--color-neutral-100) 0%, transparent) 100%
  );
  pointer-events: none;
}

.promotion-card-new-years-sale {
  --promotion-gradient: var(--gradient-new-years-sale);
}

.promotion-card-valentines-day-sale {
  --promotion-gradient: var(--gradient-valentines-day-sale);
}

.promotion-card-spring-sale {
  --promotion-gradient: var(--gradient-spring-sale);
}

.promotion-card-easter-sale {
  --promotion-gradient: var(--gradient-easter-sale);
}

.promotion-card-anniversary-sale {
  --promotion-gradient: var(--gradient-anniversary-sale);
}

.promotion-card-summer-sale {
  --promotion-gradient: var(--gradient-summer-sale);
}

.promotion-card-back-to-school-sale {
  --promotion-gradient: var(--gradient-back-to-school-sale);
}

.promotion-card-fall-sale {
  --promotion-gradient: var(--gradient-fall-sale);
}

.promotion-card-halloween-sale {
  --promotion-gradient: var(--gradient-halloween-sale);
}

.promotion-card-bfcm-sale {
  --promotion-gradient: var(--gradient-bfcm-sale);
}

.promotion-card-holiday-sale {
  --promotion-gradient: var(--gradient-holiday-sale);
}

.promotion-card-draft {
  --promotion-gradient: var(--gradient-new-years-sale);
}

.promotion-card:hover {
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(-1px);
}

.promotion-card:active {
  filter: brightness(0.98) saturate(1);
  transform: translateY(0);
}

.promotion-card:focus {
  outline: none;
}

.promotion-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary-500) 38%, transparent);
}

.promotion-card > * {
  position: relative;
  z-index: 1;
}

.promotion-name {
  margin: 0;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.promotion-summary {
  margin: 12px 0 0;
  color: var(--color-neutral-900);
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}
