/* ── Coming Soon / Empty Category Page ── */

.coming-soon-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: #fdf4ff;
}

.coming-soon-inner {
  max-width: 600px;
  text-align: center;
}

.cs-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 24px;
  animation: csWobble 3s ease-in-out infinite;
}

@keyframes csWobble {
  0%, 100% { transform: rotate(-6deg); }
  50%       { transform: rotate(6deg); }
}

.coming-soon-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: #1e0a2e;
  margin-bottom: 28px;
  line-height: 1.15;
}

.cs-message {
  font-family: 'Lora', serif;
  font-size: 1.02rem;
  color: #4c1d95;
  line-height: 1.85;
  margin-bottom: 18px;
}

.cs-message a {
  color: #c026d3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-message a:hover { color: #a21caf; }

.cs-sign {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #a78bca;
  font-size: 1rem;
  margin-top: 6px;
  margin-bottom: 44px;
}

.cs-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cs-btn.primary {
  background: #c026d3;
  color: white;
  box-shadow: 0 6px 18px rgba(192, 38, 211, 0.28);
}

.cs-btn.primary:hover {
  background: #a21caf;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(192, 38, 211, 0.38);
}

.cs-btn.secondary {
  background: white;
  color: #6b21a8;
  border: 2px solid #d8b4fe;
}

.cs-btn.secondary:hover {
  background: #6b21a8;
  color: white;
  border-color: #6b21a8;
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .coming-soon-page { padding: 60px 20px; }
  .cs-actions { flex-direction: column; align-items: center; }
  .cs-btn { width: 100%; max-width: 280px; text-align: center; }
}