/* ═══════════════════════════════════════════════
   TASSY POPUP — Complete Frontend Styles
═══════════════════════════════════════════════ */

/* ── Overlay ─────────────────────────────────── */
.tassy-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(26,20,14,.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  padding: 16px;
}
.tassy-overlay.open {
  opacity: 1; pointer-events: all;
}

/* ── Popup container ─────────────────────────── */
.tassy-popup {
  background: #F5EDDA;
  border-radius: 20px;
  width: 100%; max-width: 860px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(26,20,14,.35);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.tassy-overlay.open .tassy-popup {
  transform: translateY(0);
}

/* ── Close button ────────────────────────────── */
.tassy-close {
  position: absolute; top: 14px; right: 16px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(26,20,14,.08); border: none; cursor: pointer;
  font-size: 15px; color: #6B4226; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.tassy-close:hover { background: rgba(26,20,14,.16); }

/* ── Progress bar ────────────────────────────── */
.tp-progress {
  background: #EDE0C4;
  padding: 18px 28px 14px;
  border-bottom: 1px solid rgba(107,66,38,.1);
  flex-shrink: 0;
}
.tp-prog-wrap {
  display: flex; align-items: center; max-width: 620px; margin: 0 auto;
}
.tp-prog-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  position: relative; z-index: 2;
}
.tp-dot {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(107,66,38,.2);
  border: 2px solid rgba(107,66,38,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: rgba(107,66,38,.5);
  transition: all .3s ease; flex-shrink: 0;
}
.tp-prog-step.active .tp-dot {
  background: #6B4226; border-color: #6B4226; color: #fff;
}
.tp-prog-step.done .tp-dot {
  background: #5cb85c; border-color: #5cb85c; color: #fff;
}
.tp-prog-step.done .tp-dot span::before { content: '✓'; }
.tp-prog-step.done .tp-dot span { font-size: 0; }
.tp-label {
  font-size: 10px; font-weight: 700; color: rgba(107,66,38,.45);
  letter-spacing: .07em; text-transform: uppercase; white-space: nowrap;
}
.tp-prog-step.active .tp-label { color: #6B4226; }
.tp-prog-line {
  flex: 1; height: 2px; background: rgba(107,66,38,.15);
  margin: 0 4px; overflow: hidden;
}
.tp-line-fill {
  height: 100%; background: #6B4226; width: 0%;
  transition: width .45s ease;
}

/* ── Body / scroll area ──────────────────────── */
.tp-body {
  flex: 1; overflow-y: auto; padding: 28px 32px;
  scrollbar-width: thin; scrollbar-color: rgba(107,66,38,.2) transparent;
}
.tp-body::-webkit-scrollbar { width: 4px; }
.tp-body::-webkit-scrollbar-thumb { background: rgba(107,66,38,.2); border-radius: 2px; }

/* ── Step animation ──────────────────────────── */
.tp-step { animation: tpFadeIn .3s ease; }
@keyframes tpFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ── Typography ──────────────────────────────── */
.tp-h {
  font-family: 'Gagalin', serif;
  font-size: clamp(22px, 4vw, 32px);
  color: #6B4226; letter-spacing: .03em;
  margin: 0 0 6px; line-height: 1.1;
}
.tp-sub {
  font-size: 14px; color: rgba(44,26,14,.6);
  margin: 0 0 22px; line-height: 1.5;
}

/* ── STEP 1: Bag grid ────────────────────────── */
.tp-bag-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.tp-bag-card {
  background: #fff; border-radius: 14px;
  border: 2.5px solid rgba(107,66,38,.1);
  padding: 16px; cursor: pointer;
  transition: all .22s ease; text-align: center;
  position: relative;
}
.tp-bag-card:hover { border-color: rgba(107,66,38,.35); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,66,38,.1); }
.tp-bag-card.sel {
  border-color: #6B4226;
  box-shadow: 0 0 0 3px rgba(107,66,38,.12);
}
.tp-bag-card.sel::after {
  content: '✓';
  position: absolute; top: 10px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #6B4226; color: #fff;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.tp-bag-img {
  width: 100%; max-width: 220px; height: 220px;
  object-fit: contain; border-radius: 10px;
  margin: 0 auto 12px;
}
.tp-bag-name { font-size: 17px; font-weight: 800; color: #2C1A0E; margin-bottom: 4px; }
.tp-bag-desc { font-size: 13px; color: rgba(44,26,14,.55); }

/* ── STEP 2: Character grid ──────────────────── */
.tp-char-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.tp-char-card {
  background: #fff; border-radius: 12px;
  border: 2px solid rgba(107,66,38,.08);
  padding: 16px 10px; cursor: pointer; text-align: center;
  transition: all .2s ease;
}
.tp-char-card:hover { border-color: rgba(107,66,38,.3); transform: translateY(-2px); }
.tp-char-card.sel {
  border-color: #6B4226; background: rgba(107,66,38,.04);
  box-shadow: 0 0 0 3px rgba(107,66,38,.1);
}
.tp-char-icon { font-size: 32px; margin-bottom: 8px; line-height: 1; }
.tp-char-name { font-size: 12.5px; font-weight: 700; color: #2C1A0E; }

/* ── STEP 3: Upload ──────────────────────────── */
.tp-upload-area {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.tp-upload-zone {
  border: 2.5px dashed rgba(107,66,38,.3);
  border-radius: 14px; padding: 32px 20px;
  text-align: center; cursor: pointer;
  background: rgba(107,66,38,.03);
  transition: all .2s; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.tp-upload-zone:hover, .tp-upload-zone.drag {
  border-color: #6B4226; background: rgba(107,66,38,.06);
}
.tp-upload-icon { font-size: 44px; margin-bottom: 12px; line-height: 1; }
.tp-upload-main { font-size: 15px; font-weight: 700; color: #2C1A0E; margin-bottom: 6px; }
.tp-upload-hint { font-size: 12.5px; color: rgba(44,26,14,.5); margin-bottom: 14px; line-height: 1.5; }
.tp-upload-btn {
  display: inline-block; background: #6B4226; color: #fff;
  padding: 10px 24px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
}
#uploadPreview { flex-direction: column; align-items: center; gap: 10px; }
.tp-preview-img {
  width: 130px; height: 130px; border-radius: 50%;
  object-fit: cover; border: 3px solid #6B4226;
  box-shadow: 0 6px 20px rgba(107,66,38,.2);
}
.tp-face-status {
  font-size: 13px; font-weight: 700; padding: 5px 14px;
  border-radius: 100px; display: inline-block;
}
.tp-face-status.ok       { background: #d4edda; color: #155724; }
.tp-face-status.error    { background: #f8d7da; color: #721c24; }
.tp-face-status.checking { background: #fff3cd; color: #856404; }
.tp-upload-tips {
  background: #fff; border-radius: 14px;
  padding: 20px 22px; border: 1px solid rgba(107,66,38,.1);
}
.tp-upload-tips h4 { font-size: 14px; font-weight: 800; color: #2C1A0E; margin: 0 0 12px; }
.tp-upload-tips ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tp-upload-tips li { font-size: 13.5px; color: rgba(44,26,14,.7); font-weight: 500; }
.tp-tip-note {
  margin-top: 14px; padding: 10px 12px;
  background: rgba(107,66,38,.06); border-radius: 8px;
  font-size: 12px; color: rgba(44,26,14,.6); line-height: 1.55;
}
.tp-error {
  margin-top: 12px; padding: 10px 14px;
  background: #f8d7da; border-radius: 8px;
  color: #721c24; font-size: 13px; font-weight: 600;
}

/* ── STEP 4: Generating ──────────────────────── */
.tp-generating {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 24px 0; text-align: center;
  min-height: 300px;
}
.tp-orbit-wrap {
  position: relative; width: 80px; height: 80px; margin-bottom: 8px;
}
.tp-orbit-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 1.5px solid rgba(107,66,38,.15);
  position: relative; animation: tpOrbitSpin 8s linear infinite;
}
@keyframes tpOrbitSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.tp-orbit-dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: #6B4226; top: 50%; left: 50%;
  transform-origin: 40px 0; margin-top: -4.5px; margin-left: -4.5px;
}
.tp-orbit-dot.d1 { animation: tpOrbit 1.1s linear infinite; }
.tp-orbit-dot.d2 { animation: tpOrbit 1.1s linear infinite .37s; }
.tp-orbit-dot.d3 { animation: tpOrbit 1.1s linear infinite .74s; }
@keyframes tpOrbit {
  from { transform: rotate(0deg) translateX(36px); }
  to   { transform: rotate(360deg) translateX(36px); }
}
.tp-orbit-logo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Gagalin', serif; font-size: 22px; color: #6B4226; letter-spacing: .08em;
}
.tp-gen-msg { font-size: 15px; color: rgba(44,26,14,.65); margin: 8px 0; min-height: 24px; }
.tp-gen-progress-wrap {
  width: 260px; height: 3px; background: rgba(107,66,38,.12);
  border-radius: 2px; overflow: hidden; margin: 12px auto 8px;
}
.tp-gen-progress-bar {
  height: 100%; background: #6B4226; width: 0%;
  border-radius: 2px; transition: width .5s ease;
}
.tp-gen-note { font-size: 12px; color: rgba(44,26,14,.4); margin: 4px 0 0; }

/* ── STEP 5: Variation picker ────────────────── */
.tp-variation-instruction {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff; border-radius: 12px; padding: 14px 18px;
  margin-bottom: 20px; border: 1px solid rgba(107,66,38,.1);
}
.tp-vi-icon { font-size: 22px; flex-shrink: 0; }
.tp-variation-instruction p { font-size: 14px; color: rgba(44,26,14,.7); line-height: 1.6; margin: 0; }
.tp-var-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.tp-var-card {
  background: #fff; border-radius: 14px;
  border: 2.5px solid rgba(107,66,38,.1);
  cursor: pointer; overflow: hidden;
  transition: all .22s ease;
}
.tp-var-card:hover { border-color: rgba(107,66,38,.35); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(107,66,38,.12); }
.tp-var-card.sel {
  border-color: #6B4226;
  box-shadow: 0 0 0 3px rgba(107,66,38,.15), 0 10px 30px rgba(107,66,38,.15);
}
.tp-var-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.tp-var-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-var-selected-badge {
  position: absolute; inset: 0;
  background: rgba(107,66,38,.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; letter-spacing: .04em;
  opacity: 0; transition: opacity .2s;
}
.tp-var-card.sel .tp-var-selected-badge { opacity: 1; }
.tp-var-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; gap: 8px;
}
.tp-var-label { font-size: 13px; font-weight: 700; color: #2C1A0E; }
.tp-var-zoom {
  font-size: 11px; background: rgba(107,66,38,.08);
  border: none; border-radius: 100px; padding: 3px 10px;
  cursor: pointer; color: #6B4226; font-weight: 600;
}
.tp-var-radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(107,66,38,.25); flex-shrink: 0; margin-left: auto;
  transition: all .2s;
}
.tp-var-card.sel .tp-var-radio {
  background: #6B4226; border-color: #6B4226;
}
.tp-var-selected {
  display: flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 10px 16px;
  background: #d4edda; border-radius: 8px;
  font-size: 14px; font-weight: 700; color: #155724;
}
.tp-check { font-size: 16px; }

/* ── STEP 6: Bag preview ─────────────────────── */
.tp-preview-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: start;
}
.tp-canvas-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
#bagCanvas {
  width: 100%; border-radius: 14px;
  border: 1px solid rgba(107,66,38,.1);
  box-shadow: 0 12px 40px rgba(107,66,38,.15);
}
.tp-canvas-label { font-size: 12px; color: rgba(44,26,14,.45); text-align: center; }
.tp-download-btn {
  background: transparent; border: 1.5px solid rgba(107,66,38,.3);
  color: #6B4226; padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.tp-download-btn:hover { background: rgba(107,66,38,.06); border-color: #6B4226; }

/* Summary box */
.tp-summary-box {
  background: #fff; border-radius: 14px;
  padding: 20px; border: 1px solid rgba(107,66,38,.1);
  margin-bottom: 14px;
}
.tp-summary-box h3 { font-size: 16px; font-weight: 800; color: #2C1A0E; margin: 0 0 14px; }
.tp-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(107,66,38,.08);
  font-size: 14px;
}
.tp-sum-row:last-child { border: none; }
.tp-sum-row span { color: rgba(44,26,14,.55); }
.tp-sum-row strong { color: #2C1A0E; }
.tp-sum-price-row {
  display: flex; justify-content: space-between;
  padding: 12px 0 0; font-size: 18px; font-weight: 800;
}
.tp-sum-price-row span { color: rgba(44,26,14,.6); }
.tp-sum-price-row strong { color: #6B4226; }

/* ── STEP 7: Payment ─────────────────────────── */
.tp-payment-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.tp-order-summary { background: #fff; border-radius: 14px; padding: 20px; border: 1px solid rgba(107,66,38,.1); }
.tp-order-summary h3 { font-size: 15px; font-weight: 800; color: #2C1A0E; margin: 0 0 14px; }
.tp-order-img-wrap { margin-bottom: 14px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(107,66,38,.1); }
.tp-payment-form { background: #fff; border-radius: 14px; padding: 20px; border: 1px solid rgba(107,66,38,.1); }
.tp-payment-form h3 { font-size: 15px; font-weight: 800; color: #2C1A0E; margin: 0 0 14px; }

.tp-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.tp-method {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px;
  border: 1.5px solid rgba(107,66,38,.15);
  cursor: pointer; font-size: 13px; font-weight: 700; color: #2C1A0E;
  transition: all .18s;
}
.tp-method:hover { border-color: rgba(107,66,38,.4); }
.tp-method.selected { border-color: #6B4226; background: rgba(107,66,38,.05); }
.tp-method-icon { font-size: 18px; }
.tp-ideal-banks select {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid rgba(107,66,38,.2); border-radius: 8px;
  font-size: 14px; background: #fff; color: #2C1A0E;
  margin-bottom: 12px;
}
.tp-customer-fields { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.tp-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(107,66,38,.2); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: #2C1A0E;
  background: #fff; transition: border-color .2s;
}
.tp-input:focus { outline: none; border-color: #6B4226; }
.tp-input::placeholder { color: rgba(44,26,14,.38); }
.tp-pay-btn {
  width: 100%; padding: 15px;
  background: #6B4226; color: #fff; border: none;
  border-radius: 100px; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all .2s; font-family: inherit;
  letter-spacing: .03em;
}
.tp-pay-btn:hover { background: #52321C; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,66,38,.3); }
.tp-pay-btn:disabled { opacity: .55; pointer-events: none; }
.tp-pay-note { text-align: center; font-size: 12px; color: rgba(44,26,14,.45); margin: 10px 0 0; }

/* ── STEP 8: Confirmation ────────────────────── */
.tp-confirmation { text-align: center; padding: 24px 0; }
.tp-confirm-icon { font-size: 64px; margin-bottom: 16px; animation: tpBounce .6s ease; }
@keyframes tpBounce {
  0%   { transform: scale(.5); opacity: 0; }
  70%  { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}
.tp-confirm-details { margin: 20px auto; max-width: 380px; }
.tp-confirm-box {
  background: #fff; border-radius: 12px; padding: 18px 20px;
  border: 1px solid rgba(107,66,38,.1); text-align: left;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; font-weight: 600; color: #2C1A0E;
}
.tp-confirm-note { font-size: 14px; color: rgba(44,26,14,.6); line-height: 1.6; margin: 16px 0 24px; }

/* ── Nav bar ─────────────────────────────────── */
.tp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(107,66,38,.1);
  background: #EDE0C4; flex-shrink: 0;
}
.tp-step-info { font-size: 12.5px; font-weight: 700; color: rgba(107,66,38,.5); letter-spacing: .06em; text-transform: uppercase; }

/* ── Buttons ─────────────────────────────────── */
.tp-btn-primary {
  background: #6B4226; color: #fff;
  border: none; border-radius: 100px;
  padding: 13px 32px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .2s;
  display: inline-block; text-align: center;
}
.tp-btn-primary:hover { background: #52321C; transform: translateY(-1px); }
.tp-btn-back, .tp-btn-next {
  padding: 10px 22px; border-radius: 100px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .2s;
}
.tp-btn-back {
  background: transparent; border: 1.5px solid rgba(107,66,38,.2); color: #6B4226;
}
.tp-btn-back:hover { background: rgba(107,66,38,.07); }
.tp-btn-back:disabled { opacity: .35; pointer-events: none; }
.tp-btn-next {
  background: #6B4226; color: #fff; border: none;
  box-shadow: 0 4px 14px rgba(107,66,38,.25);
}
.tp-btn-next:hover { background: #52321C; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(107,66,38,.3); }
.tp-btn-next:disabled { opacity: .38; pointer-events: none; box-shadow: none; }
.tp-btn-ghost {
  background: transparent; border: 1.5px solid rgba(107,66,38,.2);
  color: #6B4226; border-radius: 100px; padding: 11px 28px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit; transition: all .2s;
}
.tp-btn-ghost:hover { background: rgba(107,66,38,.06); }

/* ── Open button ─────────────────────────────── */
.tassy-open-btn {
  background: #6B4226; color: #fff;
  border: none; border-radius: 100px;
  padding: 15px 36px; font-size: 16px; font-weight: 800;
  cursor: pointer; font-family: inherit;
  transition: all .22s; letter-spacing: .03em;
  box-shadow: 0 4px 20px rgba(107,66,38,.3);
}
.tassy-open-btn:hover { background: #52321C; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(107,66,38,.35); }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 700px) {
  .tp-body { padding: 20px 16px; }
  .tp-bag-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tp-char-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .tp-var-grid { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .tp-upload-area { grid-template-columns: 1fr; }
  .tp-preview-layout { grid-template-columns: 1fr; }
  .tp-payment-layout { grid-template-columns: 1fr; }
  .tp-label { display: none; }
  .tp-progress { padding: 14px 16px 10px; }
}
@media (max-width: 480px) {
  .tassy-popup { border-radius: 16px 16px 0 0; max-height: 96vh; align-self: flex-end; }
  .tassy-overlay { align-items: flex-end; padding: 0; }
  .tp-char-grid { grid-template-columns: repeat(3, 1fr); }
  .tp-var-grid { grid-template-columns: 1fr 1fr; }
  .tp-methods { grid-template-columns: 1fr 1fr; }
}

/* ── Step 6 preview image ────────────────────────────────── */
.tp-preview-img-wrap {
  position: relative; width: 100%;
}
.tp-preview-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 60px 20px;
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(107,66,38,.1);
  min-height: 300px;
}
.tp-preview-loading p {
  color: rgba(44,26,14,.5); font-size: 14px; margin: 12px 0 0;
}
.tp-preview-spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(107,66,38,.15);
  border-top-color: #6B4226;
  border-radius: 50%;
  animation: tpSpin .8s linear infinite;
}
@keyframes tpSpin { to { transform: rotate(360deg); } }
#bagPreviewImg {
  width: 100%; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(107,66,38,.18);
  display: block;
}

/* ── Step 6: Full-width preview ──────────────────────────────────────────── */
.tp-preview-full {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 560px; margin: 0 auto;
}
.tp-preview-full .tp-preview-loading {
  flex-direction: column; align-items: center; justify-content: center;
  min-height: 360px; width: 100%;
}
#previewImgWrap {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(107,66,38,.2);
}
#bagPreviewImg {
  width: 100%; display: block;
  border-radius: 16px;
}
.tp-preview-actions {
  display: flex; gap: 12px; justify-content: center;
}
.tp-preview-cta {
  display: flex; flex-direction: column; gap: 10px; width: 100%;
}
.tp-cta-order {
  width: 100%; padding: 16px; font-size: 18px;
  box-shadow: 0 6px 24px rgba(107,66,38,.3);
}
.tp-preview-cta .tp-btn-ghost {
  width: 100%;
}
