
.shipping-payment-page {
  display: grid;
  gap: 22px;
  width: 100%;
}

.shipping-payment-page * {
  box-sizing: border-box;
}

.sp-hero-card,
.sp-card,
.sp-final-card {
  border: 1px solid rgba(152, 112, 52, 0.22);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 249, 238, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 42px rgba(62, 40, 16, 0.08);
}

.sp-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
  align-items: center;
  padding: 28px;
  overflow: hidden;
}

.sp-eyebrow {
  margin: 0 0 8px;
  color: #9f6b21;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.sp-hero-copy h3,
.sp-card h3,
.sp-final-card h3 {
  margin: 0;
  line-height: 1.18;
  color: #191512;
}

.sp-hero-copy h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  margin-bottom: 12px;
}

.sp-hero-copy p,
.sp-card p,
.sp-final-card p {
  color: #5e5349;
  line-height: 1.65;
}

.sp-hero-copy p,
.sp-card p {
  margin: 0;
}

.sp-hero-badge {
  min-height: 180px;
  border-radius: 24px;
  background: rgba(255, 245, 220, 0.9);
  border: 1px solid rgba(152, 112, 52, 0.18);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
  font-weight: 800;
  color: #38281b;
}

.sp-hero-badge img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 18px;
}

.sp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.sp-payment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sp-card {
  padding: 24px;
}

.sp-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.sp-card-head p {
  margin-top: 4px;
  font-size: 0.95rem;
}

.sp-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 239, 202, 0.95);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.sp-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(152, 112, 52, 0.18);
  background: #fff;
}

.sp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.sp-table th,
.sp-table td {
  padding: 13px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(152, 112, 52, 0.14);
}

.sp-table th {
  background: rgba(255, 243, 218, 0.9);
  color: #33251b;
  font-weight: 800;
}

.sp-table tr:last-child td {
  border-bottom: 0;
}

.sp-table td:last-child,
.sp-table th:last-child {
  text-align: right;
  font-weight: 800;
}

.sp-note {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 247, 231, 0.9);
  color: #584b3f;
  line-height: 1.55;
}

.sp-checklist {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sp-checklist li {
  position: relative;
  padding-left: 28px;
  color: #4d4239;
}

.sp-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 220, 144, 0.9);
  color: #372312;
  font-weight: 900;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
}

.sp-final-card {
  padding: 26px;
  display: grid;
  gap: 12px;
}

.sp-final-card p {
  margin: 0;
  max-width: 860px;
}

.sp-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1e1711;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.sp-button:hover {
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .sp-hero-card,
  .sp-grid,
  .sp-payment-grid {
    grid-template-columns: 1fr;
  }

  .sp-hero-badge {
    min-height: 140px;
  }
}

@media (max-width: 560px) {
  .sp-hero-card,
  .sp-card,
  .sp-final-card {
    border-radius: 18px;
    padding: 20px;
  }

  .sp-card-head {
    gap: 12px;
  }

  .sp-table th,
  .sp-table td {
    padding: 11px 12px;
  }
}

/* Mobile: Versandtabelle darf das Layout nicht verbreitern */
.shipping-payment-page,
.sp-hero-card,
.sp-grid,
.sp-payment-grid,
.sp-card,
.sp-card-large,
.sp-final-card,
.sp-table-wrap {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .shipping-payment-page {
    overflow: hidden;
  }

  .sp-card {
    overflow: hidden;
  }

  .sp-card p {
    overflow-wrap: anywhere;
  }

  .sp-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    border-radius: 0;
    margin-top: 16px;
  }

  .sp-table {
    width: 100%;
    min-width: 0;
    display: block;
    border-collapse: separate;
  }

  .sp-table thead {
    display: none;
  }

  .sp-table tbody {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .sp-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(152, 112, 52, 0.18);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
  }

  .sp-table th,
  .sp-table td {
    border: 0;
    padding: 0;
    text-align: left !important;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .sp-table td {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 10px;
    align-items: baseline;
    color: #4f443b;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .sp-table td::before {
    color: #8b642c;
    font-weight: 800;
    font-size: 0.82rem;
  }

  .sp-table td:nth-child(1)::before { content: "Gewicht"; }
  .sp-table td:nth-child(2)::before { content: "Versand"; }
  .sp-table td:nth-child(3)::before { content: "Preis"; }

  .sp-table td:first-child {
    color: #221912;
    font-weight: 800;
  }

  .sp-table td:last-child {
    color: #221912;
    font-weight: 900;
  }
}

/* Enten-Kapazität im 2-kg-Paket */
.sp-duck-capacity {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(152, 112, 52, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 224, 158, 0.26), transparent 38%),
    rgba(255, 250, 240, 0.96);
}

.sp-duck-capacity__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sp-duck-capacity__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 225, 158, 0.75);
  font-size: 1.3rem;
}

.sp-duck-capacity h4 {
  margin: 0 0 6px;
  color: #241a13;
  font-size: 1.08rem;
  line-height: 1.3;
}

.sp-duck-capacity__head p,
.sp-duck-capacity__footnote {
  margin: 0;
  color: #66584d;
  line-height: 1.55;
}

.sp-duck-capacity__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.sp-duck-capacity__item {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(152, 112, 52, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
}

.sp-duck-capacity__item strong {
  color: #2b2018;
  font-size: 1rem;
}

.sp-duck-capacity__item span {
  color: #76685c;
  font-size: 0.84rem;
}

.sp-duck-capacity__item b {
  margin-top: 3px;
  color: #8a5a18;
  font-size: 0.9rem;
  line-height: 1.3;
}

.sp-duck-capacity__footnote {
  margin-top: 13px;
  font-size: 0.84rem;
}

@media (max-width: 800px) {
  .sp-duck-capacity__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .sp-duck-capacity {
    padding: 15px;
  }

  .sp-duck-capacity__head {
    gap: 10px;
  }

  .sp-duck-capacity__grid {
    grid-template-columns: 1fr;
  }
}

.sp-delivery-figure {
  margin: 18px 0 6px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(152, 112, 52, 0.15);
  background: radial-gradient(circle at top right, rgba(255, 224, 158, 0.32), transparent 42%), rgba(255, 252, 245, 0.96);
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.sp-delivery-figure__image {
  width: 132px;
  height: 132px;
  border-radius: 28px;
  background: rgba(255, 244, 218, 0.96);
  border: 1px solid rgba(152, 112, 52, 0.14);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.sp-delivery-figure__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transform: rotate(-4deg);
  filter: drop-shadow(0 10px 18px rgba(80, 50, 18, 0.16));
}

.sp-delivery-figure__text {
  color: #6a5a4b;
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 260px;
}

@media (max-width: 980px) {
  .sp-delivery-figure {
    max-width: 340px;
  }
}

@media (max-width: 560px) {
  .sp-delivery-figure__image {
    width: 118px;
    height: 118px;
  }

  .sp-delivery-figure__image img {
    width: 88px;
    height: 88px;
  }
}

.sp-duck-etiquette {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(152, 112, 52, 0.28);
  background: rgba(255, 248, 232, 0.76);
}

.sp-duck-etiquette__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.sp-duck-etiquette__title span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(255, 225, 158, 0.78);
  font-size: 1.05rem;
}

.sp-duck-etiquette h4 {
  margin: 0;
  color: #2b2018;
  font-size: 1rem;
  line-height: 1.25;
}

.sp-duck-etiquette__list {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 7px;
  color: #55483e;
  line-height: 1.45;
  font-size: 0.91rem;
}

.sp-duck-etiquette__list li::marker {
  color: #a46716;
  font-weight: 800;
}

.sp-duck-etiquette__closing {
  margin: 12px 0 0 !important;
  padding-top: 10px;
  border-top: 1px solid rgba(152, 112, 52, 0.14);
  color: #7a5c35 !important;
  font-size: 0.84rem;
  font-style: italic;
  line-height: 1.45 !important;
}

