/* RESET */
      .ts-thankyou-wrap {
        max-width: 800px;
        margin: 40px auto;
        padding: 0 20px;
        font-family: 'Poppins', system-ui, -apple-system, sans-serif;
        color: #111;
      }
      .ts-thankyou-wrap * { box-sizing: border-box; }

      /* CARD CONTAINER */
      .ts-thankyou-card {
        background: #fff;
        border-radius: 24px;
        border: 1px solid #f0f0f0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        padding: 40px;
        text-align: center;
      }

      /* HEADER */
      .ts-top-status { margin-bottom: 30px; }
      .status-icon { font-size: 48px; margin-bottom: 10px; }
      .status-text h1 { margin: 0 0 8px; font-size: 28px; font-weight: 800; color: #111; line-height: 1.2; }
      .status-text p { margin: 0; color: #666; font-size: 16px; }

      /* PRODUCT SUMMARY */
      .ts-summary-box {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 30px;
        text-align: left;
      }

      .ts-product-row {
        display: flex;
        gap: 16px;
        align-items: center;
        padding-bottom: 16px;
        border-bottom: 1px dashed #d1d5db;
        margin-bottom: 16px;
      }
      .ts-prod-thumb img {
        width: 64px; height: 64px; border-radius: 10px; object-fit: cover;
        border: 1px solid #e5e7eb;
      }
      .ts-prod-details { flex: 1; }
      .ts-prod-details h2 { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: #111; }
      .ts-meta { font-size: 13px; color: #666; }
      .ts-prod-price { font-size: 16px; font-weight: 800; color: #111; }

      .ts-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
      .ts-info-item { display: flex; flex-direction: column; }
      .ts-info-item .label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; margin-bottom: 2px; }
      .ts-info-item .value { font-size: 14px; font-weight: 700; color: #111; }

      /* STEPS */
      .ts-steps-box { text-align: left; margin-bottom: 30px; }
      .ts-steps-box h3 { font-size: 16px; font-weight: 800; margin: 0 0 16px; color: #111; }
      .ts-step { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
      .step-num {
        width: 28px; height: 28px; border-radius: 50%;
        background: #f3f4f6; color: #9ca3af;
        display: flex; align-items: center; justify-content: center;
        font-weight: 700; font-size: 13px; flex-shrink: 0;
      }
      .step-num.active { background: #111; color: #fff; }
      .step-content strong { display: block; font-size: 14px; color: #111; margin-bottom: 2px; }
      .step-content p { margin: 0; font-size: 13px; color: #666; line-height: 1.4; }

      /* WHATSAPP BUTTON */
      .ts-wa-btn {
        display: flex; align-items: center; justify-content: center; gap: 10px;
        width: 100%; padding: 18px;
        background: #22c55e; color: #fff;
        text-decoration: none; font-weight: 700; font-size: 16px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
        transition: transform 0.2s ease;
      }
      .ts-wa-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
      .wa-icon svg { width: 24px; height: 24px; }

      /* FOOTNOTE */
      .ts-footnote { margin-top: 16px; font-size: 12px; color: #888; font-weight: 500; }

      /* RESPONSIVE */
      @media (max-width: 600px) {
        .ts-thankyou-card { padding: 24px; }
        .ts-product-row { flex-direction: column; align-items: flex-start; text-align: left; }
        .ts-prod-thumb { margin-bottom: 10px; }
        .ts-info-grid { grid-template-columns: 1fr; }
      }
