.btn {
      padding: 8px 12px;
      border: 1px solid #aaa;
      background: #fff;
       color: red;   
           font-weight: bold;
      cursor: pointer;
    }
       .btn:hover {
      background-color: #c22e2e;
      color: white;
    }
       h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 20px;
    }

/*==============================
Postwurf Spezial
================================*/
.postwurfspezial-container {
  max-width: 1220px;
  margin: 115px auto 120px;
  padding: 0 60px 110px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2c30;
}

.pws-intro h1 {
  color: #b21324;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pws-intro p {
  max-width: 820px;
  color: #5f5f64;
  line-height: 1.6;
  margin: 0;
}

.pws-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 640px) 238px;
  gap: 58px;
  margin-top: 48px;
  align-items: flex-start;
}

.pws-left {
  text-align: left;
  padding-left: 4px;
}

.pws-left .pws-filter {
  margin-bottom: 34px;
}

.filter-label {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  color: #6a6b70;
  margin-bottom: 10px;
  font-weight: 600;
}

.pws-filter button {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #dcdce0;
  padding: 6px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: #16171a;
  cursor: pointer;
}

.pws-filter button span:first-child {
  flex: 1;
  text-align: left;
}

.chevron {
  width: 9px;
  height: 9px;
  border-right: 1px solid #6c6d71;
  border-bottom: 1px solid #6c6d71;
  transform: rotate(45deg);
  margin-left: 14px;
}

.pws-center .filter-label {
  margin-bottom: 14px;
  letter-spacing: 0.18em;
}

.radio-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 15px;
  color: #232428;
  margin-bottom: 20px;
}

.radio-flex .radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  min-height: 28px;
  position: relative;
}

.radio-flex input,
.radio-line input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-indicator {
  width: 21px;
  height: 21px;
  border: 1.35px solid #a5a6ab;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  background: #fff;
}

.radio-indicator::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2a2b2f;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.radio-flex input:checked + .radio-indicator,
.radio-line input:checked + .radio-indicator {
  border-color: #2a2b2f;
}

.radio-flex input:checked + .radio-indicator::after,
.radio-line input:checked + .radio-indicator::after {
  opacity: 1;
}

.radio-flex input:checked + .radio-indicator + .radio-text,
.radio-line input:checked + .radio-indicator + .radio-text {
  color: #2a2b2f;
  font-weight: 400;
}

.radio-flex .has-line .radio-text {
  display: inline-flex;
  align-items: center;
}

.radio-flex .plz-line {
  display: inline-block;
  flex: 1;
  height: 1px;
  background: #cfd1d7;
  margin-left: 12px;
  min-width: 120px;
}

.pws-tabs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  border-bottom: 1px solid #e3e4e8;
}

.pws-tabs li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8a8c92;
  padding-bottom: 12px;
  position: relative;
  min-width: 60px;
}

.pws-tabs li.active {
  color: #17181b;
  font-weight: 600;
}

.pws-tabs li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #bb1628;
}

.tab-icon {
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.pws-tabs li.active .tab-circle::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59b14c;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab-bars::before,
.tab-bars::after,
.tab-list::before,
.tab-list::after,
.tab-route::before,
.tab-import::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  background: currentColor;
}

.tab-bars::before {
  top: 4px;
  height: 2px;
}

.tab-bars::after {
  bottom: 4px;
  height: 2px;
}

.tab-route::before {
  top: 2px;
  bottom: 2px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.tab-import::before {
  top: 5px;
  bottom: 5px;
  border: 1px solid currentColor;
  border-radius: 2px;
  background: transparent;
}

.tab-list::before {
  top: 4px;
  height: 2px;
}

.tab-list::after {
  bottom: 4px;
  height: 2px;
}

.pws-map {
  margin-top: 18px;
  border: 1px solid #dde0e5;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f8fb;
}

.pws-map img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}

.pws-right {
  border-left: 1px solid #e5e6ea;
  padding-left: 26px;
}

.summary-title {
  font-size: 15px;
  font-weight: 600;
  color: #1d1e20;
  margin-bottom: 12px;
}

.pws-right table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pws-right th {
  text-align: left;
  font-weight: 500;
  color: #7f8187;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6e7eb;
}

.pws-right td {
  padding: 12px 0;
  border-bottom: 1px solid #f1f1f4;
  color: #2a2b30;
  font-weight: 600;
}

.pws-right td:nth-child(2) {
  text-align: right;
}

.pws-right tfoot td {
  font-weight: 700;
  border-bottom: none;
}

.pws-right .remove {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #d4d5da;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.pws-right .remove::before,
.pws-right .remove::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  right: 5px;
  height: 1.4px;
  background: #bb1628;
}

.pws-right .remove::before {
  transform: rotate(45deg);
}

.pws-right .remove::after {
  transform: rotate(-45deg);
}

.pws-delivery {
  margin-top: 70px;
}

.radio-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #232429;
  margin-bottom: 14px;
  position: relative;
}

.radio-line input:checked + .radio-indicator + .radio-text {
  font-weight: 600;
  color: #1f1f22;
}

.pws-date .date-row {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: #6c6d71;
}

.pws-date label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #5f6065;
}

.date-input {
  width: 170px;
  border: 1px solid #d5d6dc;
  border-radius: 6px;
  padding: 9px 36px 9px 12px;
  font-size: 14px;
  color: #1f1f22;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4.5' y='4' width='15' height='16' rx='2' ry='2' fill='none' stroke='%239396a2' stroke-width='1.4'/%3E%3Cpath d='M4.5 9h15' stroke='%239396a2' stroke-width='1.4'/%3E%3Cpath d='M9 4v4M15 4v4' stroke='%239396a2' stroke-width='1.4'/%3E%3C/svg%3E") no-repeat right 12px center;
  background-size: 18px;
}

.date-divider {
  font-size: 14px;
  color: #7a7b80;
}

.btn-next {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 12px 38px;
  background: #b01322;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.btn-next svg {
  width: 18px;
  height: 12px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

.btn-next:hover {
  background: #8e0f1b;
}

@media (max-width: 1050px) {
  .pws-grid {
    grid-template-columns: 220px 1fr;
  }

  .pws-right {
    grid-column: 1 / -1;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e3e4e7;
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .postwurfspezial-container {
    padding: 0 18px 60px;
  }

  .pws-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Postwurfspezial Landing Layout
   ============================== */
.pws-page {
  max-width: 1220px;
  margin: 100px auto 120px;
  padding: 0 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2c30;
}

.pws-hero {
  margin-bottom: 80px;
}

.pws-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.pws-hero-image {
  text-align: right;
}

.pws-hero-text h1 {
  color: #b21324;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pws-hero-text p {
  line-height: 1.65;
  color: #4a4c50;
  margin-bottom: 16px;
}

.pws-advantages h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 12px;
  color: #222;
}

.pws-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.pws-checklist li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #3a3c41;
  line-height: 1.55;
}

.pws-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #b21324;
  font-weight: 700;
}

.pws-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #b01322;
  color: #fff;
  padding: 13px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 10px;
}

.pws-btn:hover {
  background: #8f0f1d;
}

.pws-hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}

.pws-case h2 {
  color: #b21324;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 34px;
  margin-top: -6px;
}

.pws-case-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.pws-case-text p {
  line-height: 1.6;
  color: #3b3d42;
  margin-bottom: 16px;
}

.pws-case-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.pws-block {
  background: #fafafa;
  border: 1px solid #ededed;
  padding: 26px;
  border-radius: 6px;
  margin-bottom: 44px;
}

.pws-block h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #b21324;
}

.pws-block p {
  margin: 0;
  line-height: 1.65;
  color: #3f4146;
}

.pws-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.pws-row-gap {
  margin-top: 38px;
}

.pws-column img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.pws-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 6px;
}

.pws-table th,
.pws-table td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid #e8e9ec;
  vertical-align: top;
  color: #2f3034;
  line-height: 1.45;
}

.pws-table th {
  font-weight: 700;
  color: #4a4b50;
  background: #f7f7f9;
}

.pws-table tbody tr:first-child th {
  border-top: 1px solid #e8e9ec;
}

.pws-table .pws-total td {
  font-weight: 800;
}

.pws-bullets {
  margin: 10px 0 12px 18px;
  color: #393b40;
  line-height: 1.55;
}

.pws-callout {
  background: #b01322;
  color: #fff;
  border-radius: 6px;
  padding: 20px 22px 18px;
  margin-bottom: 12px;
}

.pws-callout h3 {
  margin: 0 0 10px;
  color: #fff;
}

.pws-callout-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  line-height: 1.5;
}

.pws-optimization {
  background: #e5e6ea;
  border-radius: 6px;
  padding: 16px 18px 14px;
}

.pws-optimization h4 {
  margin: 0 0 8px;
  color: #222;
}

.pws-optimization ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
  color: #35363a;
}

@media (max-width: 1024px) {
  .pws-hero-grid,
  .pws-case-lead,
  .pws-row {
    grid-template-columns: 1fr;
  }

  .pws-page {
    padding: 0 18px;
  }
}

@media (max-width: 640px) {
  .pws-hero-text h1 {
    font-size: 26px;
  }

  .pws-btn {
    width: 100%;
    justify-content: center;
  }
}
