/* =============================================
   PROJECT DONATION PLUGIN v2.0.1
============================================= */
/* ===== V3 CARD ===== */
.pdon-v3-card {
  background: linear-gradient(144deg, #16181D 0%, #0D0F11 100%);
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #F5F5F5;
}

.pdon-v3-media {
  height: 240px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.pdon-v3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #121417 0%, rgba(18,20,23,0.40) 50%, rgba(18,20,23,0) 100%);
}

.pdon-v3-pill {
  position: absolute;
  top: 18px;
  left: 16px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(18,20,23,0.60);
  outline: 1px solid rgba(255,255,255,0.06);
  color: #F7FF00;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.pdon-v3-location {
  position: absolute;
  left: 16px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,245,245,0.70);
  font-size: 12px;
}

.pdon-v3-pin svg {
  width: 12px;
  height: 12px;
  color: rgba(247,255,0,0.70);
}

.pdon-v3-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pdon-v3-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
  color: #F5F5F5;
  font-family: "Space Grotesk", sans-serif;
}

.pdon-v3-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 22.75px;
  color: #757C8A;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pdon-v3-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
}

.pdon-v3-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdon-v3-raised {
  font-size: 16px;
  font-weight: 700;
  color: #F5F5F5;
  font-family: "Space Grotesk", sans-serif;
}

.pdon-v3-goal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #757C8A;
  font-size: 12px;
}

.pdon-v3-target-icon svg {
  width: 12px;
  height: 12px;
}

.pdon-v3-bar {
  height: 8px;
  background: #202327;
  border-radius: 999px;
  overflow: hidden;
}

.pdon-v3-bar span {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, #FF299B 0%, #FF4785 100%);
  box-shadow: 0 0 10px rgba(255, 41, 155, 0.40);
  border-radius: 999px;
}

.pdon-v3-percent {
  text-align: right;
  font-size: 10px;
  font-weight: 600;
  color: #FF299B;
}
.pdon-v3-percent-1 {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  color: #FF299B;
}
.pdon-v3-btn {
  margin-top: 6px;
  height: 36px;
  border-radius: 12px;
  outline: 1px solid rgba(247,255,0,0.40);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #F7FF00;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.pdon-v3-arrow svg {
  width: 16px;
  height: 16px;
  margin-bottom: -2px;
 
}

.pdon-v3-btn:hover {
	background:#E84992;
	color:#F7FF00;
}
/* =============================================
   GRID — Desktop: 2-col, Mobile: offset slider
============================================= */
.pdon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* ---- Mobile Slider ---- */
@media (max-width: 767px) {
  /* Wrapper that clips overflow */
  .pdon-grid-wrapper {
    position: relative;
    overflow: hidden;
  }

  /* The scrollable track */
  .pdon-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    /* show ~50px of the next card on the right */
    padding: 4px 50px 20px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* no grid columns needed */
    grid-template-columns: unset;
  }

  .pdon-grid::-webkit-scrollbar {
    display: none;
  }

  /* Each card fills most of the viewport width, leaving ~50px for peek */
  .pdon-grid > .pdon-v3-card {
    flex: 0 0 calc(100vw - 90px);
    min-width: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* ---- Pagination dots ---- */
  .pdon-slider-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .pdon-slider-dot {
    height: 8px;
    width: 8px;
    border-radius: 9999px;
    background: rgba(117, 124, 138, 0.30);
    transition: width 0.35s cubic-bezier(.4,0,.2,1), background 0.35s ease;
    cursor: pointer;
    border: none;
    padding: 0;
  }

  .pdon-slider-dot.active {
    width: 24px;
    background: #FF299B;
    border-radius: 9999px;
  }
}

/* On tablet (768–1024) keep 1-col grid, no slider */
@media (min-width: 768px) and (max-width: 1024px) {
  .pdon-grid {
    grid-template-columns: 1fr;
  }

  .pdon-slider-pagination {
    display: none;
  }
}

/* Hide pagination on desktop */
@media (min-width: 768px) {
  .pdon-slider-pagination {
    display: none;
  }
}

/* ===== HERO ===== */
.pdon-hero {
  position: relative;
  min-height: 540px;
  color: #F5F5F5;
  overflow: hidden;
}

.pdon-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pdon-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #090A0C 0%, rgba(9, 10, 12, 0.60) 50%, rgba(9, 10, 12, 0) 100%);
}

.pdon-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 352px 24px 40px;
  
}

.pdon-hero-back {
  color: #757C8A;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
	width:100%;
	transition:0.4sec;
}
.pdon-hero-back:hover { 
	color:#757C8A !important;
}

.pdon-hero-pill {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(18, 20, 23, 0.60);
  border-radius: 999px;
  outline: 1px solid rgba(255,255,255,0.06);
  color: #F7FF00;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
	margin:10px 0px 10px 0px;
}

.pdon-hero-title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  margin: 0;
	padding:15px 0px 15px 0px;
  font-family: "Space Grotesk", sans-serif;
}

.pdon-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #757C8A;
  font-size: 14px;
}

.pdon-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pdon-hero-meta-item svg {
  width: 16px;
  height: 16px;
  color: #F7FF00;
}

/* ===== DETAIL GRID ===== */
.pdon-detail-grid {
  max-width: 1400px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 60% 32%;
  gap: 32px;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .pdon-detail-grid {
    grid-template-columns: 1fr;
  }
}

.pdon-detail-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== ABOUT CARD ===== */
.pdon-about-card {
  padding: 32px;
  background: linear-gradient(167deg, #16181D 0%, #0D0F11 100%);
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdon-about-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #F5F5F5;
  font-family: "Space Grotesk", sans-serif;
}

.pdon-about-text {
  color: #757C8A;
  font-size: 16px;
  line-height: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ===== UPDATES CARD ===== */
.pdon-updates-card {
  padding: 32px;
  background: linear-gradient(158deg, #16181D 0%, #0D0F11 100%);
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdon-updates-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #F5F5F5;
  font-family: "Space Grotesk", sans-serif;
}

/* ===== DONATE CARD ===== */
.pdon-donate-card {
  padding: 24px;
  background: linear-gradient(143deg, #16181D 0%, #0D0F11 100%);
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 24px;
}

.pdon-share-btn {
  height: 48px;
  border-radius: 12px;
  border:1px solid #F7FF00;
  color: #F7FF00;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
transition:0.4sec;
}
.pdon-share-btn:hover{
	background: #F7FF00;
	color: black ; 

}
.pdon-donate-btn{
 height: 48px;
  border-radius: 12px;
   color: black;
  background: #F7FF00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
transition:0.4sec;
}
.pdon-donate-btn:hover{
	background: #FF299B;
	color: white ;
}

/* =============================================
   DONATION PAGE — full page layout
============================================= */
.donation-wrapper {
  background: radial-gradient(circle at top center, rgba(45,45,20,.25), transparent 30%), #090909;
  color: #fff;
  min-height: 100vh;
  padding: 60px 20px 80px;
  font-family: Inter, Arial, sans-serif;
  text-align: center;
}

.donation-top-label {
  color: #dfff00;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.donation-title {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.donation-title span { color: #eaff00; }

.donation-project-name {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin: 0 0 6px;
}

.donation-project-name strong { color: #eaff00; }

.donation-subtitle {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Step tabs */
.step-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.step-tab {
  background: #22252a;
  color: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1;
  transition: .3s ease;
}

.step-tab.active {
  background: rgba(226,255,0,.12);
  color: #eaff00;
  box-shadow: inset 0 0 0 1px rgba(226,255,0,.25);
}

/* Card */
.donation-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(26,28,31,0.95), rgba(16,17,19,0.96));
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.03);
  text-align: left;
  position: relative;
}

.step-content { display: none; }
.step-content.active { display: block; }

.donation-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.amount-btn {
  background: #25282d;
  color: #fff;
  border: 1px solid transparent;
  height: 58px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
}

.amount-btn:hover { border-color: rgba(226,255,0,.35); }

.amount-btn.active {
  background: #f0ff12;
  color: #111;
  box-shadow: 0 0 18px rgba(240,255,18,.22);
}

.custom-amount-wrap { margin-bottom: 14px; }

.custom-amount-wrap input,
.field input,
.field textarea {
  width: 100%;
  background: #25282d;
  border: 1px solid rgba(255,255,255,.04);
  color: #fff;
  border-radius: 10px;
  padding: 16px;
  outline: none;
  font-size: 14px;
  box-sizing: border-box;
}

.field input,
.field textarea { margin-top: 8px; }

.field label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.field { margin-bottom: 14px; }

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(226,255,0,.75);
  margin: 12px 0 20px;
}

.btn-row {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.full-btn { width: 100%; }

.primary-btn,
.secondary-btn {
  height: 54px;
  border-radius: 10px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: #f0ff12;
  color: #111;
  box-shadow: 0 10px 26px rgba(240,255,18,.18);
  flex: 1;
}

.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(240,255,18,.22);
}

.primary-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.secondary-btn {
  background: transparent;
  color: #d8ef0e;
  border: 1px solid rgba(226,255,0,.35);
  flex: 1;
}

/* Selected amount line */
.selected-amount-line {
  color: rgba(255,255,255,.7);
  margin: 0 0 16px;
  font-size: 14px;
}

.selected-amount-line strong { color: #f0ff12; }

/* Payment options */
.payment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #25282d;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: .25s ease;
}

.payment-option.active {
  background: rgba(226,255,0,.10);
  border-color: rgba(226,255,0,.4);
  box-shadow: inset 0 0 0 1px rgba(226,255,0,.15);
}

.payment-option input { display: none; }

.payment-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.payment-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.payment-text strong { color: #fff; font-size: 15px; }
.payment-text span   { color: rgba(255,255,255,.55); font-size: 12px; }
.payment-check       { color: #eaff00; font-size: 18px; flex-shrink: 0; }

/* =============================================
   RESULT SCREENS (Success + Failed)
============================================= */
.result-screen {
  text-align: center;
  padding: 16px 10px 10px;
  position: relative;
}

.result-close {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: .2s ease;
}

.result-close:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.result-close svg { width: 16px; height: 16px; }

.result-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 12px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
}

.result-icon--success {
  background: rgba(226,255,0,.10);
  color: #eaff00;
  border: 1px solid rgba(226,255,0,.3);
}

.result-icon--failed {
  background: rgba(255,60,60,.10);
  color: #ff4444;
  border: 1px solid rgba(255,60,60,.3);
}

.result-screen h2 {
  font-size: 32px;
  margin: 0 0 12px;
  color: #fff;
}

.result-screen p {
  color: rgba(255,255,255,.7);
  margin: 6px 0;
  font-size: 15px;
}

.result-screen strong { color: #f0ff12; }

.result-sub {
  font-size: 13px !important;
  color: rgba(255,255,255,.45) !important;
  margin-bottom: 24px !important;
}

.result-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.result-btn-row .primary-btn,
.result-btn-row .secondary-btn {
  flex: none;
  min-width: 180px;
}

/* =============================================
   TIMELINE — Recent Donations
============================================= */
.pdon-timeline {
  display: flex;
  flex-direction: column;
}

.pdon-timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pdon-timeline-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pdon-timeline-dot {
  width: 12px;
  height: 12px;
  background: #F7FF00;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(247,255,0,.15), 0 0 60px rgba(247,255,0,.05);
  flex-shrink: 0;
  margin-top: 2px;
}

.pdon-timeline-line {
  width: 1px;
  flex: 1;
  min-height: 32px;
  background: #202327;
  margin: 6px 0;
}

.pdon-timeline-content {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdon-timeline-date {
  color: #F7FF00;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.pdon-timeline-msg {
  color: #757C8A;
  font-size: 14px;
  line-height: 22px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 767px) {
  .donation-title { font-size: 34px; }
  .donation-card  { padding: 22px 16px; }
  .amount-grid    { grid-template-columns: repeat(2, 1fr); }
  .two-col        { grid-template-columns: 1fr; }
  .btn-row        { flex-direction: column; }
  .result-screen h2 { font-size: 26px; }
  .result-btn-row { flex-direction: column; }
  .result-btn-row .primary-btn,
  .result-btn-row .secondary-btn { width: 100%; }
}

/* =============================================
   DONATIONS TIMELINE
============================================= */
.pdon-timeline-card {
  padding: 31.67px;
  background: linear-gradient(158deg, #16181D 0%, #0D0F11 100%);
  border-radius: 16px;
  outline: 1px solid rgba(255,255,255,0.06);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.pdon-timeline-header {
  color: #F5F5F5;
  font-size: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 28px;
}

.pdon-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pdon-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pdon-timeline-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.pdon-timeline-dot {
  width: 12px;
  height: 12px;
  background: #F7FF00;
  border-radius: 9999px;
  box-shadow: 0px 0px 20px rgba(247,255,0,0.15), 0px 0px 60px rgba(247,255,0,0.05);
  flex-shrink: 0;
}

.pdon-timeline-line {
  width: 1px;
  flex: 1;
  background: #202327;
  min-height: 28px;
  margin-top: 8px;
}

.pdon-timeline-content {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.pdon-timeline-item:last-child .pdon-timeline-line {
  display: none;
}

.pdon-timeline-item:last-child .pdon-timeline-content {
  padding-bottom: 0;
}

.pdon-timeline-date {
  color: #F7FF00;
  font-size: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 16px;
}

.pdon-timeline-amount {
  color: #757C8A;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 22.75px;
}

/* =============================================
   PROJECT COMPLETED STATE
============================================= */
.pdon-completed-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(247,255,0,0.08);
  border: 1px solid rgba(247,255,0,0.25);
  border-radius: 10px;
  color: #F7FF00;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.pdon-btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
  background: #444;
  color: #aaa;
  border: none;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}

/* Card completed overlay */
/* .pdon-v3-card.pdon-card-completed .pdon-v3-btn {
  opacity: 0.4;
  pointer-events: none;
  background: #444;
  color: #aaa;
} */

.pdon-v3-card.pdon-card-completed::after {
  content: '✓ Ziel erreicht';
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(247,255,0,0.15);
  border: 1px solid rgba(247,255,0,0.4);
  color: #F7FF00;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* =============================================
   HERO COMPLETED BADGE (meta row)
============================================= */
.pdon-hero-completed-badge {
  color: #F7FF00 !important;
  font-weight: 600;
}

.pdon-hero-completed-badge svg {
  color: #F7FF00;
}

/* =============================================
   COMPLETED BADGE — checkmark span
============================================= */
.pdon-completed-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(247,255,0,0.15);
  border-radius: 50%;
  font-size: 10px;
  flex-shrink: 0;
}

/* =============================================
   COMPLETED PROJECT — donate page notice
============================================= */
.pdon-completed-page-notice {
  text-align: center;
  padding: 32px 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pdon-completed-page-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(247,255,0,0.10);
  border: 1px solid rgba(247,255,0,0.35);
  color: #F7FF00;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.pdon-completed-page-notice h2 {
  font-size: 26px;
  margin: 0;
  color: #fff;
}

.pdon-completed-page-notice p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   CARD COMPLETED — archive overlay pill
============================================= */
/* .pdon-v3-card.pdon-card-completed {
  position: relative;
}

.pdon-v3-card.pdon-card-completed::after {
  content: '✓ Ziel erreicht';
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(247,255,0,0.15);
  border: 1px solid rgba(247,255,0,0.4);
  color: #F7FF00;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}

.pdon-v3-card.pdon-card-completed .pdon-v3-btn {
  opacity: 0.45;
  pointer-events: none;
  background: rgba(255,255,255,0.04);
  color: #666;
  outline-color: rgba(255,255,255,0.08);
}
 */