/* Voke — Crafting Experience Notice & Modal Styles */

:root {
  --voke-craft-bg: rgba(255, 255, 255, 0.96);
  --voke-craft-ink: #1d1d1f;
  --voke-craft-ink-soft: #6e6e73;
  --voke-craft-border: rgba(0, 0, 0, 0.08);
  --voke-craft-accent: #0a84ff;
  --voke-craft-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.18), 0 8px 24px -4px rgba(0, 0, 0, 0.08);
}

/* --- Crafting Modal Overlay --- */
.voke-craft-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 15, 17, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.voke-craft-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.voke-craft-modal {
  background: var(--voke-craft-bg);
  border: 1px solid var(--voke-craft-border);
  border-radius: 24px;
  box-shadow: var(--voke-craft-shadow);
  max-width: 460px;
  width: 100%;
  padding: 36px 32px 28px;
  position: relative;
  text-align: center;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.voke-craft-overlay.is-active .voke-craft-modal {
  transform: scale(1) translateY(0);
}

.voke-craft-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.03);
  color: var(--voke-craft-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s ease;
  padding: 0;
}

.voke-craft-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--voke-craft-ink);
  transform: scale(1.05);
}

/* Icon & Brand Mark Header */
.voke-craft-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #f4f3ee;
  border: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.voke-craft-icon-wrap img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* Title & Subtitle */
.voke-craft-title {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.025em;
  color: var(--voke-craft-ink);
  margin-bottom: 12px;
  line-height: 1.25;
}

.voke-craft-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--voke-craft-ink-soft);
  margin-bottom: 24px;
  padding: 0 6px;
}

/* Notification / Waitlist Form */
.voke-craft-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.voke-craft-input-row {
  display: flex;
  gap: 8px;
}

.voke-craft-input {
  flex: 1;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--voke-craft-ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.voke-craft-input:focus {
  border-color: var(--voke-craft-accent);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.voke-craft-submit-btn {
  background: var(--voke-craft-ink);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 550;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.1s ease;
}

.voke-craft-submit-btn:hover {
  background: #000000;
}

.voke-craft-submit-btn:active {
  transform: scale(0.98);
}

/* Success Message */
.voke-craft-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eaf8ee;
  border: 1px solid rgba(48, 209, 88, 0.3);
  color: #1a7a35;
  padding: 11px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Actions Footer */
.voke-craft-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.voke-craft-btn-primary {
  width: 100%;
  padding: 11px 20px;
  background: var(--voke-craft-accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 550;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.voke-craft-btn-primary:hover {
  background: #0972d9;
}

@media (max-width: 640px) {
  .voke-craft-modal {
    padding: 28px 20px 24px;
  }
  .voke-craft-input-row {
    flex-direction: column;
  }
}
