.delivery-choice-dialog {
  width: min(100%, 520px);
}

.delivery-choice-body {
  padding-top: 4px;
  padding-bottom: 4px;
}

.delivery-choice-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.delivery-choice-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  text-align: center;
}

.delivery-choice-option:hover {
  border-color: #e5322d;
  background: linear-gradient(135deg, #fffafa 0%, #fff5f5 100%);
  box-shadow: 0 4px 14px rgba(229, 50, 45, 0.12);
}

.delivery-choice-option:focus {
  outline: 2px solid #e5322d;
  outline-offset: 2px;
}

.delivery-choice-option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #e5322d;
}

.delivery-choice-option-title {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
}

.delivery-choice-option-hint {
  font-size: 12px;
  line-height: 1.4;
  color: #6c757d;
}

#delivery-choice-shipping.is-selected,
#delivery-choice-pickup.is-selected {
  border-color: #e5322d;
  background: linear-gradient(135deg, #fffafa 0%, #fff5f5 100%);
}

.delivery-choice-shipping-panel {
  margin-top: 10px;
  text-align: left;
}

.delivery-choice-shipping-panel[hidden] {
  display: none !important;
}

.delivery-choice-outside-de {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #212529;
  cursor: pointer;
  user-select: none;
}

.delivery-choice-outside-de input {
  margin-top: 2px;
  flex-shrink: 0;
}

.delivery-choice-plz-wrap[hidden] {
  display: none !important;
}

.delivery-choice-plz-label {
  display: block;
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: #212529;
  line-height: 1.3;
}

.delivery-choice-plz-input {
  display: block;
  width: 100%;
  max-width: 11rem;
  padding: 6px 8px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.3;
}

.delivery-choice-plz-input:focus {
  outline: 2px solid #e5322d;
  outline-offset: 1px;
  border-color: #e5322d;
}

.delivery-choice-plz-error {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.35;
  color: #c82333;
  font-weight: 500;
}

.delivery-choice-plz-error[hidden] {
  display: none !important;
}

.delivery-choice-footer {
  background: #fafafa;
}

@media (max-width: 480px) {
  .delivery-choice-options {
    grid-template-columns: 1fr;
  }

  .delivery-choice-plz-input {
    max-width: none;
  }
}
