   /* ── Widerruf-spezifische Styles ── */

      .nav-ruecktritt {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(0,78,132,.1);
        color: #004e84 !important;
        transition: background .2s, transform .15s;
        padding: 0 !important;
        margin-left: .25rem;
      }
      .nav-ruecktritt:hover {
        background: rgba(0,78,132,.18);
        transform: scale(1.08);
      }
      .nav-ruecktritt svg { display: block; }


      .widerruf-page {
        padding: 3rem 0 5rem;
      }

      /* Frist-Banner */
      .frist-banner {
        background: linear-gradient(135deg, #004e84 0%, #006ab3 100%);
        color: #fff;
        border-radius: 12px;
        padding: 1.75rem 2rem;
        margin-bottom: 2.5rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        box-shadow: 0 4px 20px rgba(0,78,132,.25);
      }
      .frist-banner .frist-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        background: rgba(255,255,255,.18);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
      }
      .frist-banner .frist-days {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -1px;
      }
      .frist-banner .frist-label {
        font-size: .85rem;
        opacity: .85;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-top: .2rem;
      }
      .frist-banner .frist-text {
        font-size: .95rem;
        line-height: 1.6;
        opacity: .92;
      }
      .frist-banner .frist-text strong {
        opacity: 1;
        font-weight: 700;
      }

      /* Formular-Card */
      .form-card {
        background: #fff;
        border: 1px solid #e4eaf0;
        border-radius: 12px;
        padding: 2.5rem;
        box-shadow: 0 2px 16px rgba(0,0,0,.06);
      }
      .user-display {
        font-size: .875rem;
        color: #5a7080;
        margin-top: -.75rem;
        margin-bottom: 1.25rem;
      }
      .form-card .section-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a2a3a;
        margin-bottom: 1.75rem;
        padding-bottom: .75rem;
        border-bottom: 2px solid #e4eaf0;
      }

      /* Formfelder */
      .widerruf-form .form-group {
        margin-bottom: 1.5rem;
      }
      .widerruf-form label {
        font-size: .875rem;
        font-weight: 600;
        color: #3a4a5a;
        margin-bottom: .4rem;
        display: block;
      }
      .widerruf-form label .required {
        color: #004e84;
        margin-left: .2rem;
      }
      .widerruf-form .form-control {
        border: 1.5px solid #d0dce8;
        border-radius: 8px;
        padding: .65rem 1rem;
        font-size: .95rem;
        color: #1a2a3a;
        transition: border-color .2s, box-shadow .2s;
        background: #f8fbff;
      }
      .widerruf-form .form-control:focus {
        border-color: #004e84;
        box-shadow: 0 0 0 3px rgba(0,78,132,.12);
        background: #fff;
        outline: none;
      }
      .widerruf-form .form-control::placeholder {
        color: #9aafbf;
      }
      .widerruf-form textarea.form-control {
        resize: vertical;
        min-height: 80px;
      }
      .widerruf-form .hint {
        font-size: .8rem;
        color: #6a8a9a;
        margin-top: .3rem;
      }

      /* Vorausgefüllte (gesperrte) Felder */
      .prefilled-field {
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .65rem 1rem;
        background: #f0f4f8;
        border: 1.5px solid #d0dce8;
        border-radius: 8px;
        color: #3a4a5a;
        font-size: .95rem;
        cursor: default;
      }
      .prefilled-icon {
        font-size: 1rem;
        opacity: .6;
        flex-shrink: 0;
      }

      /* Custom Dropdown */
      .csel {
        position: relative;
        display: flex;
        align-items: center;
        padding: .65rem 2.5rem .65rem 1rem;
        border: 1.5px solid #d0dce8;
        border-radius: 8px;
        background: #f8fbff;
        cursor: pointer;
        user-select: none;
        transition: border-color .2s, box-shadow .2s;
        min-height: 44px;
        box-sizing: border-box;
      }
      .csel:focus,
      .csel.open {
        border-color: #004e84;
        box-shadow: 0 0 0 3px rgba(0,78,132,.12);
        background: #fff;
        outline: none;
      }
      .csel-value {
        flex: 1;
        font-size: .95rem;
        color: #1a2a3a;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .csel-value.placeholder {
        color: #9aafbf;
      }
      .csel-arrow {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-right: 2px solid #004e84;
        border-bottom: 2px solid #004e84;
        transform: translateY(-65%) rotate(45deg);
        transition: transform .2s;
        flex-shrink: 0;
      }
      .csel.open .csel-arrow {
        transform: translateY(-35%) rotate(-135deg);
      }
      .csel-list {
        display: none;
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1.5px solid #004e84;
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,78,132,.15);
        list-style: none;
        margin: 0;
        padding: .3rem 0;
        z-index: 200;
        max-height: 280px;
        overflow-y: auto;
      }
      .csel.open .csel-list {
        display: block;
      }
      .csel-list li {
        padding: .6rem 1rem;
        font-size: .9rem;
        color: #1a2a3a;
        cursor: pointer;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: background .15s;
      }
      .csel-list li:hover,
      .csel-list li:focus {
        background: #e8f2fb;
        color: #004e84;
        outline: none;
      }
      .csel-list li.selected {
        background: #f0f6fb;
        font-weight: 600;
        color: #004e84;
      }
      .csel-list li + li {
        border-top: 1px solid #f0f4f8;
      }

      /* Bestelldetail-Panel */
      .cards-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        align-items: start;
      }
      .cards-row.has-detail {
        grid-template-columns: 2fr 3fr;
      }
      @media (max-width: 900px) {
        .cards-row.has-detail { grid-template-columns: 1fr; }
      }
      #order-detail-loading {
        display: flex;
        align-items: center;
        gap: .6rem;
        padding: .65rem 1rem;
        font-size: .875rem;
        color: #6a8a9a;
      }
      .odp-spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid #d0dce8;
        border-top-color: #004e84;
        border-radius: 50%;
        animation: odp-spin .7s linear infinite;
        flex-shrink: 0;
      }
      @keyframes odp-spin { to { transform: rotate(360deg); } }
      .odp-header {
        display: flex;
        gap: 1.5rem;
        margin-bottom: .6rem;
      }
      .odp-meta {
        display: flex;
        align-items: center;
        gap: .4rem;
        font-size: .875rem;
        color: #1a2a3a;
      }
      .odp-meta-label {
        font-size: .75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #5a7080;
      }
      .odp-table {
        width: 100%;
        border-collapse: collapse;
        font-size: .875rem;
        border: 1.5px solid #d0dce8;
        border-radius: 8px;
        overflow: hidden;
      }
      .odp-table thead tr {
        background: #f4f7fa;
      }
      .odp-table th {
        padding: .5rem .75rem;
        text-align: left;
        font-size: .75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #5a7080;
        border-bottom: 1.5px solid #d0dce8;
      }
      .odp-table td {
        padding: .55rem .75rem;
        color: #1a2a3a;
        border-bottom: 1px solid #edf1f5;
      }
      .odp-table tbody tr:last-child td {
        border-bottom: none;
      }
      .odp-table tbody tr:hover td {
        background: #f8fbff;
      }
      .odp-num {
        text-align: right !important;
      }
      #order-detail-error {
        font-size: .875rem;
        color: #c00;
        padding: .5rem 0;
      }

      /* Divider */
      .form-divider {
        border: none;
        border-top: 1px solid #e4eaf0;
        margin: 2rem 0;
      }

      /* Bestätigungsbutton */
      .btn-ruecktritt {
        background: linear-gradient(135deg, #004e84 0%, #006ab3 100%);
        color: #fff !important;
        border: none;
        border-radius: 8px;
        padding: .85rem 2.5rem;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: .03em;
        cursor: pointer;
        transition: opacity .2s, transform .1s;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: .6rem;
      }
      .btn-ruecktritt:hover {
        opacity: .9;
        transform: translateY(-1px);
      }
      .btn-ruecktritt:active {
        transform: translateY(0);
      }
      .btn-ruecktritt svg {
        flex-shrink: 0;
      }

      /* Hinweisbox */
      .info-box {
        background: #f0f6fb;
        border-left: 4px solid #004e84;
        border-radius: 0 8px 8px 0;
        padding: 1rem 1.25rem;
        font-size: .875rem;
        color: #3a4a5a;
        line-height: 1.6;
        margin-top: 1.5rem;
      }
      .info-box strong {
        color: #004e84;
      }

      /* Erfolgs-Overlay */
      #success-overlay {
        display: none;
        text-align: center;
        padding: 3rem 2rem;
      }
      #success-overlay .success-icon {
        width: 72px;
        height: 72px;
        background: #e8f5e9;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
      }
      #success-overlay h2 {
        color: #1a2a3a;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: .75rem;
      }
      #success-overlay p {
        color: #5a7080;
        font-size: .95rem;
      }

      @media (max-width: 576px) {
        .frist-banner {
          flex-direction: column;
          text-align: center;
        }
        .frist-banner .frist-icon { margin: 0 auto; }
        .form-card { padding: 1.5rem; }
        .kom-options { flex-direction: column; }
        .kom-option { min-width: 100%; }
      }