/* ===================================================================
   AllWeddingCards Component Styles
==================================================================== */
.wc-all-catalogue-section {
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 4px 20px rgba(15, 43, 92, 0.05);
}

.wc-all-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 1rem;
}

.wc-all-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wc-all-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  width: fit-content;
}

.wc-all-heading {
  font-size: 1.65rem;
  font-weight: 800;
  color: #0f2b5c;
  margin: 0;
  letter-spacing: -0.4px;
}

.wc-all-subheading {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.wc-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 600;
}

.wc-count-pill strong {
  color: #0f2b5c;
}

.wc-catalog-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px dashed #cbd5e1;
  margin: 1.5rem 0;
}

.wc-catalog-empty-state .empty-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
}

.wc-catalog-empty-state h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f2b5c;
  margin: 0 0 0.5rem 0;
}

.wc-catalog-empty-state p {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .wc-all-catalogue-section {
    padding: 1.25rem 1rem;
  }
  .wc-all-heading {
    font-size: 1.35rem;
  }
  .wc-all-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
