#paywall-overlay {
  position: fixed; inset: 0;
  background: rgba(248,244,238,0.96);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  overflow-y: auto;
  padding: 1rem;
  backdrop-filter: blur(4px);
}

.pw-box {
  width: 100%; max-width: 460px;
  background: #ffffff;
  border: 1px solid #e8e0d0;
  border-radius: 18px;
  padding: 2.4rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.pw-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #64748b;
  margin-bottom: 1.8rem;
  text-align: center;
  letter-spacing: -.01em;
}

.pw-state {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  text-align: center;
}

.pw-spinner {
  width: 36px; height: 36px;
  border: 3px solid #e8e0d0; border-top-color: #C9A84C;
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.pw-title { font-size: 1.3rem; font-weight: 700; color: #0f172a; margin-bottom: .1rem; letter-spacing: -.02em; }
.pw-sub { font-size: .85rem; color: #64748b; line-height: 1.6; }

/* ── Pricing options ── */
.pw-option {
  width: 100%;
  background: #faf7f2;
  border: 1px solid #e8e0d0;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: left;
  margin-top: .6rem;
  transition: all .15s;
}
.pw-option:hover { border-color: #C9A84C; }
.pw-option-best {
  border-color: #d4a94a;
  background: #fdf8f0;
}

.pw-option-header {
  margin-bottom: .5rem;
}
.pw-option-tag {
  font-family: 'DM Mono', monospace;
  font-size: .63rem; letter-spacing: .1em;
  color: #6b6260;
  background: #e8e0d0;
  padding: 2px 8px; border-radius: 4px;
}
.pw-option-best .pw-option-tag {
  background: #f5e9c8; color: #9b7d2e;
}

.pw-option-name {
  font-size: .95rem; font-weight: 700; color: #0f172a;
  margin-bottom: .3rem;
}
.pw-option-price {
  font-size: 1.1rem; font-weight: 700; color: #0f172a;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}
.pw-option-price span { font-size: .8rem; font-weight: 400; color: #64748b; }
.pw-option-desc {
  font-size: .78rem; color: #64748b; line-height: 1.55;
  margin-bottom: .8rem;
}

/* Buttons */
.pw-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: .75rem 1rem;
  border-radius: 8px; font-size: .88rem; font-weight: 600;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .15s; font-family: 'Inter', sans-serif;
}
.pw-btn-google { background: #fff; color: #0f172a; border: 1.5px solid #e2e8f0; }
.pw-btn-google:hover { background: #f8fafc; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.06); }

.pw-btn-pay {
  background: #f5f0e8; color: #1a1a1a;
  border: 1.5px solid #e8e0d0;
}
.pw-btn-pay:hover { border-color: #C9A84C; color: #9b7d2e; transform: translateY(-1px); }

.pw-btn-bundle {
  background: #000000;
  color: #fff;
}
.pw-btn-bundle:hover { background: #222; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

.pw-hint { font-size: .75rem; color: #6b6260; margin-top: .5rem; }
.pw-link-btn {
  background: none; border: none; color: #C9A84C;
  cursor: pointer; font-size: .75rem; font-family: 'Inter', sans-serif;
  padding: 0; text-decoration: underline;
}
