/* shop/assets/checkout.css — Styles für Checkout */
.ship-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.ship-option:hover {
  background: #f9fafb;
}
.agb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; /* darf umbrechen wenn nötig */
}

.agb a {
  display: inline;
  color: var(--farbe1); /* oder deine Markenfarbe */
  text-decoration: underline;
  padding: 0;
}
#place-order[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
