/* ===== Celebration Cards – Order Form polish ===== */

.cards-form .section-intro {
  color: #374151;
  margin-bottom: 1rem;
}

.cards-form .section-intro p {
  margin: 0 0 .35rem 0;
}

.cards-form .form-label {
  font-weight: 600;
  color: #1f2937;
}

.cards-form .help {
  color: #6b7280;
  font-size: .9rem;
}

/* Radio “card” group for Card Type */

.cardtype-group {
  display: grid;
  gap: .75rem;
}

@media (min-width: 576px) {
  .cardtype-group {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (min-width: 992px) {
  .cardtype-group {
    grid-template-columns: repeat(5,1fr);
  }
}

.cardtype {
  position: relative;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: .85rem .9rem;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.cardtype:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.cardtype input[type="radio"] {
  appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #94a3b8;
  border-radius: 50%;
  display: grid;
  place-content: center;
  transition: border-color .2s ease, background .2s ease;
}

.cardtype input[type="radio"]::before {
  content: "";
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  transform: scale(0);
  transition: transform .15s ease;
  background: #779349;
}

.cardtype input[type="radio"]:checked {
  border-color: #779349;
}

.cardtype input[type="radio"]:checked::before {
  transform: scale(1);
}

.cardtype .label {
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}

/* File input hint */

.custom-file-hint {
  color: #6b7280;
  font-size: .9rem;
  margin-top: .25rem;
}

/* Button */

.cards-form .btn-primary {
  background: #779349;
  border-color: #779349;
}

.cards-form .btn-primary:hover {
  background: #5f7b39;
  border-color: #5f7b39;
}

