/* ==========================================================
   Versand – PLZ Checker
   Zweck:
   - ruhiges Prüfmodul oberhalb des Versand-Contents
   - Ergebnisbox im Stil der bestehenden Content-Seiten
   ========================================================== */

.bt-shipping-plz-checker {
  margin: 0 0 18px;
}

.bt-shipping-plz-checker__box {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 22px 22px 18px;
  background: transparent;
}

.bt-shipping-plz-checker__title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 600;
}

.bt-shipping-plz-checker__intro {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.8;
}

.bt-shipping-plz-checker__label {
  display: block;
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.bt-shipping-plz-checker__controls {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.bt-shipping-plz-checker__input {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  line-height: 1;
}

.bt-shipping-plz-checker__input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
}

.bt-shipping-plz-checker__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  color: #222;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bt-shipping-plz-checker__button:hover,
.bt-shipping-plz-checker__button:focus {
  background: #f7f7f7;
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.bt-shipping-plz-checker__result {
  margin-top: 14px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.025);
}

.bt-shipping-plz-checker__result.is-error {
  border-color: rgba(0, 0, 0, 0.1);
}

.bt-shipping-plz-checker__result-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.bt-shipping-plz-checker__result-text a {
  font-weight: 600;
  text-underline-offset: 4px;
}

.bt-shipping-plz-checker__result-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.bt-shipping-plz-checker__result-item {
  margin: 8px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #fff;
}

.bt-shipping-plz-checker__result-item strong {
  font-weight: 600;
}

.bt-shipping-plz-highlight {
  animation: btShippingPlzHighlight 2.2s ease;
}

@keyframes btShippingPlzHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.14);
    border-color: rgba(0, 0, 0, 0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 680px) {
  .bt-shipping-plz-checker__box {
    padding: 18px 16px 16px;
    border-radius: 14px;
  }

  .bt-shipping-plz-checker__controls {
    flex-direction: column;
  }

  .bt-shipping-plz-checker__button {
    width: 100%;
    min-width: 0;
  }
}