/* ── Coming Soon — notify-me card (standalone / product-detail embed) ── */
.notify-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--fg-color, #f0f0f0) 16%, transparent);
  background: color-mix(in srgb, var(--fg-color, #f0f0f0) 4%, transparent);
  text-align: center;
  box-sizing: border-box;
  max-height: 100vh;
  overflow-y: auto;
}

.notify-card__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-color, #f0f0f0);
  margin: 0 0 0.35rem;
}

.notify-card__subtitle {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--fg-color, #f0f0f0);
  opacity: 0.55;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.notify-card__field {
  margin-bottom: 0.75rem;
  text-align: left;
}

.notify-card__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-color, #f0f0f0);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.notify-card__toggle {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.notify-card__tab {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--fg-color, #f0f0f0) 40%, transparent);
  cursor: pointer;
  transition: color 0.15s ease;
}

.notify-card__tab:hover {
  color: color-mix(in srgb, var(--fg-color, #f0f0f0) 70%, transparent);
}

.notify-card__tab.active,
.notify-card__tab.active:hover {
  color: var(--fg-color, #f0f0f0);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notify-card__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--fg-color, #f0f0f0) 25%, transparent);
  border-radius: 0;
  color: var(--fg-color, #f0f0f0);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.55rem 0.1rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.notify-card__input::placeholder {
  color: color-mix(in srgb, var(--fg-color, #f0f0f0) 40%, transparent);
}

.notify-card__input:focus {
  outline: none;
  border-bottom-color: var(--fg-color, #f0f0f0);
}

.notify-card__checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.75rem 0 1rem;
}

.notify-card__checkbox-row input[type="checkbox"] {
  accent-color: var(--fg-color, #f0f0f0);
}

.notify-card__checkbox-row label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--fg-color, #f0f0f0);
  opacity: 0.55;
  margin: 0;
}

.notify-card__btn {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--fg-color, #f0f0f0);
  color: var(--bg-color, #0a0a0a);
  border: 1px solid var(--fg-color, #f0f0f0);
  border-radius: 0;
  padding: 0.9rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.notify-card__btn:hover {
  background: transparent;
  color: var(--fg-color, #f0f0f0);
  border-color: var(--fg-color, #f0f0f0);
}

.notify-card__error {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: #ef4444;
  margin-top: 0.75rem;
}

/* Success state */
.notify-card__success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--fg-color, #f0f0f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--bg-color, #0a0a0a);
}

.notify-card__success-msg {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--fg-color, #f0f0f0);
  margin: 0 0 0.4rem;
}

.notify-card__success-sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--fg-color, #f0f0f0);
  opacity: 0.5;
  margin: 0 0 1.5rem;
}

.notify-card__success-sub strong {
  opacity: 1;
}

.notify-card__ghost-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--fg-color, #f0f0f0) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--fg-color, #f0f0f0) 25%, transparent);
  border-radius: 8px;
  color: var(--fg-color, #f0f0f0);
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.notify-card__ghost-btn:hover {
  background: color-mix(in srgb, var(--fg-color, #f0f0f0) 16%, transparent);
  border-color: color-mix(in srgb, var(--fg-color, #f0f0f0) 45%, transparent);
  color: var(--fg-color, #f0f0f0);
}
