
.Popup {
    position: fixed;
    backdrop-filter: brightness(0.5) blur(20px);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

@property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

.Popup .PopupContentDiv {
    position: relative;
    width: 400px;
    border-radius: 18px;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.Popup .PopupContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.063);
    border-radius: 18px;
    width: calc(100% - 40px);
    gap: 10px;
    color: var(--htext);
    font-family: var(--bFont);
}

.Popup .PopupContent .head {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    height: 0px;
    translate: 15px -15px;
}

.Popup .PopupContent .head .headbtn {
    padding: 4px 8px;
    height: min-content;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: none;
}

.Popup .PopupContent .content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.Popup .PopupContent .contentTxt {
    display: flex;
    gap: 10px;
    width: calc(100% - 20px);
    align-items: center;
    background: var(--bgCard);
    border-radius: 5px;
}

.Popup .PopupContent .contentTxt p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.Popup .PopupContent .contentTxt svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
}

.Popup .PopupContent .act {
    display: flex;
    gap: 10px;
}

.Popup .PopupContent .row {
    padding: 20px 0px;
}

.Popup .PopupContent .image {
    width: 100%;
}

.Popup .PopupContent .image img {
    border-radius: 10px;
    width: 100%;
    max-height: 60vh;
}

.Popup .PopupContent .ico {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px 0px;
    background: var(--bg);
    border-radius: 10px 10px 5px 5px;
}

.Popup .PopupContent .image svg {
}

.Popup .PopupContent h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--htext);
    margin-bottom: 4px;
}

.Popup .PopupContent p {
    text-align: center;
    font-size: 14px;
    color: var(--text);
}


    .popup {
      background: rgba(255, 255, 255, 0.065);
      backdrop-filter: blur(28px) saturate(1.5);
      -webkit-backdrop-filter: blur(28px) saturate(1.5);
      }


    .spec-top {
      position: absolute;
      top: 0;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.55) 70%, transparent);
      z-index: 3;
    }

    .spec-bot {
      position: absolute;
      bottom: 0;
      left: 15%;
      right: 15%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(80, 140, 255, 0.35) 40%, rgba(80, 140, 255, 0.45) 60%, transparent);
      z-index: 3;
    }

    /* ── Header ── */
    .content .heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      position: relative;
      z-index: 4;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      width: auto;
    }

    .head-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .amount-badge {
      background: var(--bgCard);
      border-radius: 14px;
      padding: 10px 16px;
      font-size: 20px;
      font-weight: 800;
    }

    .amount-badge span {
      font-size: 12px;
      font-weight: 400;
      opacity: 0.75;
      display: block;
      margin-bottom: 1px;
    }
.head-title  {flex: 2;}
    .head-title h2 {
      font-size: 16px;
      font-weight: 700;
      color: var(--htext);
      margin-bottom: 3px;
    }

    .Popup .PopupContent .head-title p {
      font-size: 12px;
      font-weight: 300;
      text-align: left;
    }

    .close-btn {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.6);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
    }

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

    /* ── Progress ── */
    .progress {
      display: flex;
      align-items: center;
      padding: 16px 32px 0;
      position: relative;
      z-index: 4;
      gap: 0;
    }

    .prog-step {
      display: flex;
      align-items: center;
      flex: 1;
    }

    .prog-step:last-child {
      flex: none;
    }

    .prog-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      border: 1.5px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.07);
      color: rgba(255, 255, 255, 0.3);
      transition: all 0.4s ease;
      flex-shrink: 0;
    }

    .prog-dot.active {
      background: rgba(255, 255, 255, 0.92);
      color: #0a0f1e;
      border-color: transparent;
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.35);
    }

    .prog-dot.done {
      background: rgba(0, 255, 136, 0.18);
      color: rgba(0, 255, 136, 0.9);
      border-color: rgba(0, 255, 136, 0.3);
    }

    .prog-line {
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.1);
      margin: 0 6px;
      transition: background 0.4s ease;
    }

    .prog-line.done {
      background: rgba(0, 255, 136, 0.3);
    }

    .prog-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.28);
      margin-left: 8px;
      white-space: nowrap;
    }

    .prog-label.active {
      color: rgba(255, 255, 255, 0.6);
    }

    /* ── Steps ── */
    .steps-wrap {
      position: relative;
      z-index: 4;
      min-height: 200px;
    }

    .step {
      display: none;
      flex-direction: column;
      gap: 14px;
      animation: fadeUp 0.3s ease;
    }

    .step.active {
      display: flex;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(8px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .step-legend {
      font-size: 10px;
      font-weight: 600;
      text-transform: capitalize;
    }

    /* Method cards */
    .method-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .method-card {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 18px;
      border-radius: 14px;
      border: 1.5px solid var(--bg);
      background: var(--bgCard);
      cursor: pointer;
      transition: all 0.2s ease;
      position: relative;
      overflow: hidden;
    }

    .method-card:hover {
      background: rgba(255, 255, 255, 0.09);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .method-card.selected {
      border-color: var(--first);
      background: var(--bg);
    }

    .method-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .method-icon.paypal {
      background: linear-gradient(135deg, #003087, #009cde);
    }

    .method-icon.card {
      background: linear-gradient(135deg, #1a1a2e, #16213e);
    }

    .method-icon.wire {
      background: linear-gradient(135deg, #134e22, #1a6b2e);
    }

    .method-icon.CCP {
      background: linear-gradient(135deg, #4e4613, #d4af0a);
    }

    .method-info {
      flex: 1;
    }

    .method-name {
      font-size: 14px;
      font-weight: 600;
    }

    .method-desc {
      font-size: 11px;
      font-weight: 300;
    }

    .method-radio {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      border: 1.5px solid var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .method-card.selected .method-radio {
      border-color: var(--first);
    }

    .method-radio::after {
      content: '';
      width: 8px;
      height: 8px;
      min-width: 8px;
      min-height: 8px;
      border-radius: 50%;
      background: var(--first);
      opacity: 0;
      transform: scale(0);
      transition: all 0.2s;
    }

    .method-card.selected .method-radio::after {
      opacity: 1;
      transform: scale(1);
    }

    /* Sub-steps */
    .sub-step {
      /* display: none; */
      flex-direction: column;
      gap: 13px;
      animation: fadeUp 0.25s ease;
    }

    .sub-step.active {
      display: flex;
    }

    /* Form inputs */
    .inputDiv {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 11px;
      padding: 11px 14px;
      font-size: 13px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.88);
      outline: none;
      width: 100%;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    }

    input::placeholder {
      color: rgba(255, 255, 255, 0.2);
    }

    input:focus {
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.09);
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
    }

    input.error {
      border-color: rgba(255, 80, 80, 0.6) !important;
      background: rgba(255, 50, 50, 0.06) !important;
    }

    .input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    /* Card preview */
    .card-preview {
      background: linear-gradient(135deg, #1a1f35 0%, #2d3561 50%, #1a1f35 100%);
      border-radius: 14px;
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      margin-bottom: 2px;
    }

    .card-preview::before {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(100, 120, 255, 0.2), transparent 70%);
    }

    .card-chip {
      width: 32px;
      height: 24px;
      border-radius: 5px;
      background: linear-gradient(135deg, #d4a843, #f0cc6e);
      margin-bottom: 14px;
    }

    .card-number-display {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: 0.15em;
      margin-bottom: 10px;
      font-family: monospace;
    }

    .card-bottom {
      display: flex;
      justify-content: space-between;
    }

    .card-holder-display {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .card-expiry-display {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.45);
    }

    /* Info / wire boxes */
    .info-box {
      background: var(--bgCard);
      border: 1px solid var(--bg);
      border-radius: 12px;
      padding: 10px 14px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin: 8px 0;
    }

    .info-box-icon {
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .info-box p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.55;
    }

    .info-box strong {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
    }

    /* ── PayPal button container ── */
    #paypal-button-container {
      margin-top: 4px;
    }

    #paypal-button-container .paypal-buttons {
      border-radius: 12px !important;
      overflow: hidden;
    }

    /* Wire section */
    .wire-table {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 14px;
      overflow: hidden;
    }

    .wire-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 18px;
      border-bottom: 1px solid var(--bg);
    }

    .wire-row:last-child {
      border-bottom: none;
    }

    .wire-row-label {
      font-size: 11px;
      color: var(--htext);
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .wire-row-val {
      font-size: 12px;
      color: var(--first);
      font-weight: 600;
      font-family: monospace;
    }

    /* ── Receipt upload zone ── */
    .upload-zone {
      border: 1.5px dashed var(--bg);
      border-radius: 14px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      transition: all 0.25s ease;
      background: var(--bgCard);
      position: relative;
      overflow: hidden;
    }

    .upload-zone:hover,
    .upload-zone.drag {
      border-color: rgba(255, 255, 255, 0.38);
      background: rgba(255, 255, 255, 0.07);
    }

    .upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
    }

    .upload-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      border: 1px solid;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .upload-title {
      font-size: 13px;
      font-weight: 600;
    }

    .upload-sub {
      font-size: 11px;
      text-align: center;
      line-height: 1.5;
    }

    .upload-formats {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .fmt-badge {
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: 5px;
      background: var(--bg);
    }

    /* File preview */
    .file-preview {
      display: none;
      align-items: center;
      gap: 12px;
      background: rgba(0, 255, 136, 0.07);
      border: 1px solid rgba(0, 255, 136, 0.18);
      border-radius: 12px;
      padding: 12px 16px;
    }

    .file-preview.visible {
      display: flex;
    }

    .file-thumb {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .file-thumb-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--act1);
      flex-shrink: 0;
    }

    .file-info {
      flex: 1;
      min-width: 0;
    }

    .file-name {
      font-size: 12px;
      font-weight: 600;
      color: var(--htext);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .file-size {
      font-size: 10px;
      color: var(--act1);
      margin-top: 1px;
    }

    .file-remove {
      background: var(--danger);
      border: 1px solid rgba(255, 80, 80, 0.2);
      border-radius: 8px;
      color: var(--color);
      cursor: pointer;
      padding: 4px 10px;
      font-size: 11px;
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .file-remove:hover {
      background: rgba(255, 80, 80, 0.22);
    }

    /* Confirm step */
    .confirm-summary {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 14px;
      overflow: hidden;
    }

    .confirm-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .confirm-row:last-child {
      border-bottom: none;
    }

    .confirm-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-family: var(--hFont);
    }

    .confirm-val {
      font-size: 12px;
      color: var(--act1);
      font-weight: 600;
      font-family: system-ui;
    }

    .confirm-total {
      background: rgba(255, 255, 255, 0.05);
    }

    .confirm-total .confirm-val {
      font-size: 16px;
      color: #fff;
      font-weight: 800;
    }

    .security-note {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 10px;
      background: rgba(0, 255, 136, 0.06);
      border: 1px solid rgba(0, 255, 136, 0.14);
    }
.Popup .PopupContent .security-note .ico {
      color: var(--success);
      padding: 10px;
      width: auto;
      background: var(--color);
      }
    .security-note p {
      font-size: 11px;
      color: rgba(180, 255, 220, 0.7);
      line-height: 1.4;
    }

    /* Success */
    .success-screen {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 36px 32px 40px;
      gap: 14px;
      animation: fadeUp 0.4s ease;
      position: relative;
      z-index: 4;
    }

    .success-screen.active {
      display: flex;
    }

    .success-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(0, 255, 136, 0.12);
      border: 1.5px solid rgba(0, 255, 136, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: popIn 0.5s cubic-bezier(.22, .68, 0, 1.4) 0.1s both;
      color: var(--success);
    }

    @keyframes popIn {
      from {
        transform: scale(0);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .success-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--act1);
    }

    .success-sub {
      font-size: 13px;
      font-weight: 300;
      color: var(--text);
      max-width: 280px;
      line-height: 1.6;
    }

    .success-ref {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: rgba(0, 255, 136, 0.6);
      font-family: monospace;
    }

    /* Footer */
    .foot {
      display: flex;
      gap: 10px;
      justify-content: flex-end;
      padding: 16px 0 0;
      position: relative;
      z-index: 4;
    }

    .btn-primary,
    .btn-secondary {
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 600;
      border-radius: 12px;
      padding: 11px 22px;
      cursor: pointer;
      letter-spacing: 0.03em;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--htext);
    }

    .btn-primary {
      background: rgba(255, 255, 255, 0.92);
      border: none;
      color: #0a0f1e;
    }

    .btn-primary:hover {
      background: #fff;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(255, 255, 255, 0.18);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-primary:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .btn-secondary {
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.22);
      color: #fff;
    }

    /* Message */
    .message {
      margin: 0 32px 10px;
      padding: 11px 15px;
      border-radius: 11px;
      background: rgba(255, 80, 80, 0.1);
      border: 1px solid rgba(255, 80, 80, 0.22);
      display: none;
      align-items: center;
      gap: 9px;
      position: relative;
      z-index: 4;
    }

    .message.success {
      background: rgba(0, 255, 136, 0.07);
      border-color: rgba(0, 255, 136, 0.2);
    }

    .message p {
      font-size: 12px;
      color: rgba(255, 200, 200, 0.9);
      line-height: 1.4;
    }

    .message.success p {
      color: rgba(180, 255, 220, 0.9);
    }

    /* Spinner */
    .spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(10, 15, 30, 0.2);
      border-top-color: #0a0f1e;
      border-radius: 50%;
      animation: spin2 0.7s linear infinite;
      flex-shrink: 0;
    }

    @keyframes spin2 {
      to {
        transform: rotate(360deg)
      }
    }
  


/* ── tokens ── */
  :root {
    --promo-accent  : #f5a623;
    --promo-accent2 : #e8832a;
    --promo-dark    : #1a1a2e;
    --promo-card    : #ffffff;
    --promo-radius  : 18px;
    --promo-shadow  : 0 20px 60px rgba(0,0,0,.18), 0 4px 20px rgba(0,0,0,.12);
    --promo-font    : 'Sora', 'Segoe UI', sans-serif;
  }

  /* ── backdrop ── */
  #promo-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 9998;
    pointer-events: none;
  }

  /* ── card ── */
  #promo-popup {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: var(--color);
    border-radius: var(--promo-radius);
    box-shadow: var(--promo-shadow);
    font-family: var(--promo-font);
    overflow: hidden;

    /* hidden state */
    opacity: 0;
    transform: translateY(30px) scale(.96);
    pointer-events: none;
    transition: opacity .45s cubic-bezier(.22,1,.36,1),
                transform .45s cubic-bezier(.22,1,.36,1);
  }
  #promo-popup.promo--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* ── inner padding ── */
  .promo-body {padding: 12px 16px 22px;}

  /* ── close ── */
  .promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bgCard);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 14px;
    transition: background .2s, color .2s;
    line-height: 1;
    padding: 8px 12px;
  }
  .promo-close:hover { background: #ebebeb; color: #333; }

  /* ── header row (avatar + name) ── */
  .promo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .promo-avatar-wrap {
    position: relative;
    flex-shrink: 0;
  }
  .promo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--promo-accent);
  }
  .promo-avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--promo-accent), var(--promo-accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 2.5px solid var(--promo-accent);
  }
  .promo-logo-badge {
    position: absolute;
    bottom: 0px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
    padding: 1px;
  }
  .promo-name-block { flex: 1; min-width: 0; }
  .promo-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--promo-dark);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .promo-company {
    font-size: 12px;
    color: #888;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── message ── */
  .promo-message {
    font-size: 13.5px;
    line-height: 1.55;
    color: #444;
    margin: 0 0 16px;
  }
  .promo-message strong {color: var(--promo-dark);text-transform: capitalize;}

  /* ── code pill ── */
  .promo-code-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdf6ec;
    border: 1.5px dashed var(--promo-accent);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
  }
  .promo-code-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: .06em; }
  .promo-code-value {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--promo-accent2);
  }
  .promo-copy-btn {
    margin-left: auto;
    background: var(--promo-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
    white-space: nowrap;
  }
  .promo-copy-btn:hover   { background: var(--promo-accent2); }
  .promo-copy-btn:active  { transform: scale(.95); }
  .promo-copy-btn.copied  { background: #4caf50; }

  /* ── taux badge ── */
  .promo-taux {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--promo-accent), var(--promo-accent2));
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  /* ── social links ── */
  .promo-socials {
    display: flex;
    gap: 8px;
    margin-top: 6px;
  }
  .promo-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--actText2);
    color: var(--htext);
    text-decoration: none;
    font-size: 14px;
    transition: background .2s, color .2s;
  }
  .promo-social-link:hover { background: var(--promo-accent); color: #fff; }

  /* ── progress bar ── */
  .promo-progress {
    height: 3px;
    background: #eee;
    border-radius: 0 0 var(--promo-radius) var(--promo-radius);
    overflow: hidden;
  }
  .promo-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--promo-accent), var(--promo-accent2));
    width: 100%;
    transform-origin: left;
    animation: promoCountdown 12s linear forwards;
  }
  @keyframes promoCountdown {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
  }

  /* ── sponsored label ── */
  .promo-sponsored-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 10px;
  }
  .promo-sponsored-tag::before { content: '✦ '; }

  /* ── mobile ── */
  @media (max-width: 480px) {
    #promo-popup { bottom: 16px; right: 16px; left: 16px; width: auto; }
  }