.smovey-form-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.smovey-form-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.smovey-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-weight: 700;
  font-size: 14px;
}

.field input[type="text"],
.field input[type="email"],
.field select {
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #d7dbe0;
  border-radius: 12px;
  outline: none;
  background: #fff;
}

.field input:focus,
.field select:focus {
  border-color: #4DD0E1;
  box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.18);
}

.req {
  color: #c62828;
  font-weight: 800;
}

.field-error {
  min-height: 16px;
  color: #c62828;
  font-size: 12px;
}

.chk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  line-height: 1.35;
}

.chk input {
  margin-top: 2px;
}

/* Layout Spalten */
.col-12 { flex: 0 0 100%; }
.col-6  { flex: 0 0 calc(50% - 7px); }
.col-4  { flex: 0 0 calc(33.333% - 10px); }

.smovey-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn-submit {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: none;
  background: #0E1628;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
}

.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c62828; }

/* Paket Grid (für pkg + pkg-card) */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

/* ALT: einfache Paketbox (falls noch verwendet) */
.pkg {
  border: 1px solid #d7dbe0;
  border-radius: 12px;
  padding: 12px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  cursor: pointer;
}

.pkg input {
  transform: translateY(1px);
}

.pkg:hover {
  border-color: #4DD0E1;
}

/* NEU: Paket Cards */
.pkg-card {
  border: 1px solid #d7dbe0;
  border-radius: 16px;
  padding: 12px 12px;
  cursor: pointer;
  background: #fff;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pkg-card input {
  margin-top: 3px;
}

.pkg-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pkg-title {
  font-weight: 800;
}

.pkg-desc {
  font-size: 12px;
  color: #5b6776;
  line-height: 1.35;
}

.pkg-card:hover {
  border-color: #4DD0E1;
}

/* Responsive */
@media (max-width: 980px) {
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .col-6, .col-4 { flex-basis: 100%; }
}

@media (max-width: 520px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* --- Radio: immer rund (kein oval) - kompatibel --- */
.pkg-card input[type="radio"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #d7dbe0;
  background: #fff;

  display: inline-block; /* statt grid (alte Browser) */
  position: relative;    /* für inneren Punkt */
  margin-top: 3px;
  flex: 0 0 18px;
}

.pkg-card input[type="radio"]::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  border-radius: 999px;
  background: #ffffff; /* Punkt weiß auf grün */
  transform: scale(0);
  transition: transform 120ms ease-in-out;
}

/* wenn nur Radio checked (auch ohne Card-Klasse) */
.pkg-card input[type="radio"]:checked{
  border-color: #95C11F;
  background: #95C11F;
}

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

/* --- Card selected (OHNE :has()) --- */
.pkg-card.is-selected{
  border-color: #95C11F;
  background: #95C11F;
  box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.18);
}

.pkg-card.is-selected .pkg-title,
.pkg-card.is-selected .pkg-desc{
  color: #fff;
}

.pkg-card.is-selected .pkg-desc{
  opacity: 0.9;
}

/* Tastatur-Focus (fallback) */
.pkg-card input[type="radio"]:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.25);
}

.smovey-hint{
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.35;
}
.smovey-hint strong{
  font-weight: 800;
}

.req-text{
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  color: #000;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
}