/* ═══════════════════════════════════════════════════════════════════════
   Coming Soon — temporary payment lockout overlay
   Blurs a pricing/purchase card and disables its checkout button.
   To REMOVE later: delete coming-soon.css + coming-soon.js references
   from the HTML pages. No other markup needs changing.
   ═══════════════════════════════════════════════════════════════════════ */

/* The wrapper around any locked card. JS adds .cs-locked to it. */
.cs-locked {
  position: relative;
  overflow: hidden;
}

/* Blur + dim everything inside the locked card */
.cs-locked > .cs-blur-target {
  filter: blur(6px) saturate(0.7);
  pointer-events: none;
  user-select: none;
  transition: filter .3s ease;
}

/* The overlay sitting on top of the blurred card */
.cs-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  background: rgba(10, 12, 20, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: inherit;
  cursor: not-allowed;
}

.cs-overlay .cs-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.45);
  padding: 5px 16px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
}

.cs-overlay .cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.cs-overlay .cs-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 260px;
}

/* Neutralized buttons (kept visible for layout, but inert) */
.cs-disabled-btn {
  pointer-events: none !important;
  opacity: 0.5 !important;
  filter: grayscale(0.4);
  cursor: not-allowed !important;
}

@media (max-width: 600px) {
  .cs-overlay .cs-title { font-size: 24px; }
  .cs-overlay .cs-sub { font-size: 12px; }
}
