/* ============================================================
   AURIVÉ — Checkout próprio (Bynet PIX)
   ============================================================ */
:root{
  --bg:#f6f5f2;
  --paper:#ffffff;
  --ink:#0e0d0c;
  --ink-2:#3d3a37;
  --muted:#7a7570;
  --line:#e8e4dd;
  --line-2:#f0ece4;
  --gold:#a78757;
  --gold-2:#c9a573;
  --green:#1f9e5a;
  --green-2:#16723f;
  --red:#d63838;
  --pix:#32bcad;
  --shadow:0 1px 0 rgba(20,15,10,.04), 0 6px 24px rgba(60,45,25,.06);
  --shadow-lg:0 12px 40px rgba(40,30,15,.12);
  --serif:'Fraunces', Georgia, serif;
  --sans:'Manrope', system-ui, -apple-system, sans-serif;
  --radius:14px;
  --radius-lg:18px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:var(--sans);-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:var(--ink);text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit}
input,select,textarea{font-family:inherit;font-size:15px;color:var(--ink);outline:none}
svg{width:1em;height:1em}
.ck-container{max-width:1180px;margin:0 auto;padding:0 18px}

/* ============================================================
   URGENCY BAR (timer no topo)
   ============================================================ */
.urgency-bar{
  background:linear-gradient(90deg,#1a1814,#2c2620,#1a1814);
  color:#f3e7cd;
  text-align:center;
  font-size:13px;
  padding:9px 16px;
  letter-spacing:.2px;
  position:sticky; top:0; z-index:50;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
}
.urgency-bar strong{color:#ffd28a;font-weight:800;font-variant-numeric:tabular-nums}
.ub-icon{width:14px;height:14px;vertical-align:-2px;margin-right:4px;color:#ffd28a}

/* ============================================================
   HEADER
   ============================================================ */
.ck-header{
  background:var(--paper);
  border-bottom:1px solid var(--line);
  padding:14px 0;
}
.ck-header .ck-container{
  display:flex;align-items:center;justify-content:space-between;gap:18px;
}
.ck-back{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;color:var(--muted);font-weight:600;
}
.ck-back svg{width:16px;height:16px}
.ck-back:hover{color:var(--ink)}
.ck-logo{
  display:flex;flex-direction:column;align-items:center;line-height:1;
}
.logo-text{
  font-family:var(--serif);font-weight:700;font-size:24px;letter-spacing:6px;
  background:linear-gradient(90deg,#a78757,#e7c98a,#a78757);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.logo-tag{font-size:9px;letter-spacing:5px;color:var(--muted);font-weight:700;margin-top:3px}
.ck-secure{
  display:flex;align-items:center;gap:10px;
  background:#f3f6ee;border:1px solid #d8e6c9;
  padding:8px 12px;border-radius:10px;
}
.ck-secure svg{width:24px;height:24px;color:var(--green)}
.ck-secure strong{font-size:12px;display:block;color:#1a3a23}
.ck-secure span{font-size:10.5px;color:#3c5a44;letter-spacing:.3px}

/* ============================================================
   STEPS
   ============================================================ */
.ck-steps{
  list-style:none;display:flex;justify-content:center;gap:8px;
  padding:24px 0 8px;margin:0;
}
.ck-steps li{
  display:flex;align-items:center;gap:10px;
  padding:8px 16px;border-radius:999px;
  font-size:13px;color:var(--muted);font-weight:600;
  background:transparent;border:1px solid transparent;
  transition:all .25s ease;
}
.ck-steps .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  background:#e2dccf;color:#7a7570;font-size:12px;font-weight:800;
}
.ck-steps li.active{background:#fff;border-color:var(--line);color:var(--ink);box-shadow:var(--shadow)}
.ck-steps li.active .num{background:linear-gradient(135deg,#1a1814,#3a3026);color:#ffd28a}
.ck-steps li.done .num{background:var(--green);color:#fff}
.ck-steps li.done{color:#1a3a23}

/* ============================================================
   GRID
   ============================================================ */
.ck-grid{
  display:grid;grid-template-columns:1fr 380px;gap:30px;
  padding:18px 18px 60px;
}
@media(max-width:920px){
  .ck-grid{grid-template-columns:1fr;gap:14px;padding:8px 14px 100px}
  .ck-right{order:-1}
}

/* ============================================================
   CARDS
   ============================================================ */
.ck-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:24px 24px 26px;
  margin-bottom:14px;
  box-shadow:var(--shadow);
  transition:all .35s ease;
}
.ck-card.collapsed{opacity:.55;pointer-events:none;filter:saturate(.6)}
.ck-card-head{margin-bottom:18px}
.ck-step-pill{
  display:inline-block;font-size:10.5px;font-weight:800;
  letter-spacing:1.2px;color:var(--gold);
  background:#fdf6ea;border:1px solid #f0e0bf;
  padding:4px 10px;border-radius:999px;
  margin-bottom:8px;
}
.ck-card h2{
  font-family:var(--serif);
  font-size:24px;font-weight:600;margin:0 0 4px;letter-spacing:-.4px;
}
.ck-card-head p{margin:0;color:var(--muted);font-size:14px;line-height:1.5}

/* ============================================================
   FIELDS
   ============================================================ */
.ck-fields{display:flex;flex-direction:column;gap:14px}
.fld{display:flex;flex-direction:column;gap:6px;position:relative}
.fld>span{font-size:12.5px;font-weight:700;color:var(--ink-2);letter-spacing:.3px}
.fld input, .fld select{
  width:100%;
  padding:13px 14px;
  border:1.5px solid var(--line);
  border-radius:11px;
  background:#fcfbf8;
  font-size:15px;font-weight:500;
  transition:all .15s ease;
}
.fld input:focus, .fld select:focus{
  border-color:var(--gold-2);
  background:#fff;
  box-shadow:0 0 0 4px rgba(199,165,115,.18);
}
.fld input.invalid, .fld select.invalid{
  border-color:var(--red);
  background:#fff5f5;
  box-shadow:0 0 0 4px rgba(214,56,56,.10);
}
.fld input.valid{border-color:#bfe5cc;background:#f4fbf6}
.fld .err{
  display:none;color:var(--red);font-size:12px;font-weight:600;
  font-style:normal;margin-top:2px;
}
.fld .err.show{display:block}
.fld-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.fld-row .fld-cep{flex:1}
.fld-uf{max-width:90px}
.fld-num{max-width:130px}
@media(max-width:540px){
  .fld-row{grid-template-columns:1fr}
  .fld-uf,.fld-num{max-width:100%}
}
.fld-cep{position:relative}
.cep-status{
  position:absolute;right:10px;top:36px;
  font-size:11px;color:var(--muted);font-weight:600;
}
.cep-status.loading{color:var(--gold)}
.cep-status.ok{color:var(--green)}
.cep-status.err{color:var(--red)}
.cep-link{
  align-self:flex-end;
  font-size:12px;color:var(--gold);font-weight:700;
  text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px;
}

.ck-trust-line{
  display:flex;align-items:center;gap:6px;
  margin:6px 0 0;font-size:12px;color:var(--muted);
}
.ck-trust-line svg{width:14px;height:14px;color:var(--green)}

/* ============================================================
   NEXT BUTTON
   ============================================================ */
.ck-next-btn{
  width:100%;margin-top:18px;
  padding:16px 20px;border-radius:12px;
  background:linear-gradient(180deg,#1a1814,#0a0908);
  color:#ffd28a;font-weight:800;font-size:15px;letter-spacing:.5px;
  border:1px solid #2a2520;
  box-shadow:0 8px 22px rgba(20,15,10,.20);
  transition:all .15s ease;
}
.ck-next-btn:hover{transform:translateY(-1px);box-shadow:0 12px 28px rgba(20,15,10,.28)}
.ck-next-btn:active{transform:translateY(0)}
.ck-next-btn[disabled]{opacity:.5;cursor:not-allowed;transform:none;box-shadow:none}

/* ============================================================
   PAYMENT METHOD
   ============================================================ */
.pay-method{
  display:flex;align-items:center;gap:14px;
  padding:16px 18px;
  border:2px solid var(--pix);
  background:linear-gradient(180deg,#f0fcfa,#e6f8f4);
  border-radius:14px;
  margin-bottom:18px;
  position:relative;
  box-shadow:0 6px 18px rgba(50,188,173,.12);
}
.pm-radio{
  width:22px;height:22px;border-radius:50%;
  border:2px solid var(--pix);background:#fff;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.pm-dot{width:11px;height:11px;border-radius:50%;background:var(--pix)}
.pm-icon{
  display:flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:10px;
  background:var(--pix);color:#fff;flex-shrink:0;
}
.pm-icon svg{width:24px;height:24px}
.pm-info{flex:1}
.pm-info strong{display:block;font-size:15px;color:#0d4d44}
.pm-info span{font-size:12.5px;color:#1a6b60}
.pm-discount{
  background:#fff;color:var(--green);font-weight:800;
  padding:4px 10px;border-radius:8px;font-size:12px;
  border:1px solid #bfe5cc;
}

/* ============================================================
   ORDER BUMPS
   ============================================================ */
.bumps-section{margin:18px 0 14px}
.bumps-title{
  font-family:var(--serif);font-size:18px;font-weight:600;
  margin:0 0 4px;letter-spacing:-.2px;
}
.bumps-sub{margin:0 0 12px;color:var(--muted);font-size:13px}
.bumps-list{display:flex;flex-direction:column;gap:10px}
.bump-item{
  display:flex;align-items:center;gap:12px;
  padding:14px;
  border:1.5px dashed var(--gold-2);
  background:linear-gradient(180deg,#fff9ee,#fef3dd);
  border-radius:13px;
  cursor:pointer;
  transition:all .2s ease;
  position:relative;
}
.bump-item:hover{transform:translateY(-1px);box-shadow:0 8px 22px rgba(167,135,87,.16)}
.bump-item.added{
  border-style:solid;border-color:var(--green);
  background:linear-gradient(180deg,#f4fbf6,#e6f5ec);
}
.bump-img{
  width:60px;height:60px;border-radius:10px;
  background:#fff;flex-shrink:0;
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.bump-img img{width:100%;height:100%;object-fit:cover}
.bump-info{flex:1;min-width:0}
.bump-tag{
  display:inline-block;font-size:9.5px;font-weight:800;letter-spacing:1px;
  color:#876119;background:#ffe8b8;
  padding:2px 8px;border-radius:999px;margin-bottom:3px;
}
.bump-name{font-size:14px;font-weight:700;line-height:1.3;color:var(--ink)}
.bump-price{display:flex;align-items:center;gap:8px;margin-top:4px}
.bump-price del{color:var(--muted);font-size:12px}
.bump-price strong{color:var(--green);font-size:15px;font-weight:800}
.bump-add-btn{
  background:#1a1814;color:#ffd28a;
  font-weight:800;font-size:12px;letter-spacing:.5px;
  padding:10px 14px;border-radius:9px;flex-shrink:0;
  transition:all .15s ease;
  display:flex;align-items:center;gap:5px;
}
.bump-add-btn:hover{transform:scale(1.04)}
.bump-item.added .bump-add-btn{background:var(--green);color:#fff}
.bump-add-btn .plus{font-size:16px;font-weight:900;line-height:1}

/* ============================================================
   COUPON
   ============================================================ */
.coupon-row{
  display:flex;align-items:center;gap:8px;
  padding:6px 10px 6px 14px;
  border:1.5px solid var(--line);
  border-radius:11px;background:#fcfbf8;
  margin-top:10px;
}
.coup-icon{width:18px;height:18px;color:var(--gold);flex-shrink:0}
.coupon-row input{
  flex:1;border:0;background:transparent;
  padding:11px 0;font-size:14px;font-weight:600;
  text-transform:uppercase;letter-spacing:1px;
}
.coupon-row input:focus{outline:none}
.coupon-row button{
  background:var(--ink);color:#ffd28a;
  padding:10px 18px;border-radius:9px;
  font-weight:800;font-size:12.5px;letter-spacing:.5px;
}
.coupon-msg{display:block;margin:6px 4px 0;font-size:12px;color:var(--muted);min-height:14px}
.coupon-msg.ok{color:var(--green)}
.coupon-msg.err{color:var(--red)}

/* Termos */
.terms-row{
  display:flex;align-items:flex-start;gap:9px;
  margin:14px 0 18px;font-size:12.5px;color:var(--ink-2);
  line-height:1.5;cursor:pointer;
}
.terms-row input{margin-top:2px;accent-color:var(--green);width:16px;height:16px}
.terms-row a{color:var(--gold);font-weight:700;text-decoration:underline;text-underline-offset:2px}

/* ============================================================
   PAY BUTTON (CTA principal)
   ============================================================ */
.ck-pay-btn{
  width:100%;
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:18px 20px;
  background:linear-gradient(180deg,#22c167,#159f49);
  color:#fff;
  font-weight:900;font-size:16px;letter-spacing:.6px;
  border-radius:13px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 8px 0 #0d6b30, 0 18px 36px rgba(34,193,103,.36);
  transition:all .12s ease;
  position:relative;
  text-shadow:0 1px 0 rgba(0,0,0,.16);
}
.ck-pay-btn::before{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.35) 50%,transparent 100%);
  background-size:220% 100%;
  animation:shineBtn 2.6s ease-in-out infinite;
  pointer-events:none;mix-blend-mode:overlay;
}
@keyframes shineBtn{0%,100%{background-position:120% 0}50%{background-position:-20% 0}}
.ck-pay-btn:hover{transform:translateY(-2px);box-shadow:0 10px 0 #0d6b30, 0 22px 42px rgba(34,193,103,.46)}
.ck-pay-btn:active{transform:translateY(2px);box-shadow:0 4px 0 #0d6b30, 0 10px 20px rgba(34,193,103,.36)}
.ck-pay-btn[disabled]{opacity:.55;cursor:not-allowed;animation:none}
.ck-pay-btn[disabled]::before{display:none}
.ck-pay-icon{width:22px;height:22px}
.ck-pay-lock{width:16px;height:16px;opacity:.8}
.ck-pay-text{flex:1;text-align:center}

.pay-trust{
  display:flex;justify-content:center;gap:18px;
  margin-top:14px;font-size:11.5px;color:var(--muted);
  flex-wrap:wrap;
}
.pay-trust span{display:inline-flex;align-items:center;gap:5px}
.pay-trust svg{width:14px;height:14px;color:var(--gold)}
.pay-trust strong{color:var(--ink-2);font-weight:700}

/* ============================================================
   SUMMARY (right column)
   ============================================================ */
.ck-right{position:relative}
.ck-summary{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  position:sticky;top:62px;
  overflow:hidden;
}
.sum-toggle{
  width:100%;display:none;align-items:center;justify-content:space-between;
  padding:14px 16px;font-size:14px;font-weight:700;color:var(--ink);
  background:linear-gradient(180deg,#fff9ee,#fff5e0);
  border-bottom:1px solid var(--line);
}
.sum-toggle .st-left{display:flex;align-items:center;gap:8px}
.sum-toggle svg{width:16px;height:16px;color:var(--gold)}
.sum-toggle strong{color:var(--green-2);font-size:16px}
.sum-body{padding:20px}
.sum-body h3{
  font-family:var(--serif);font-size:18px;font-weight:600;
  margin:0 0 16px;letter-spacing:-.2px;
}
.sum-items{
  display:flex;flex-direction:column;gap:12px;
  padding-bottom:14px;border-bottom:1px dashed var(--line);
  margin-bottom:14px;
}
.sum-item{display:flex;gap:12px;align-items:flex-start}
.sum-item-img{
  width:60px;height:60px;border-radius:9px;flex-shrink:0;
  background:#f0ece4;border:1px solid var(--line);overflow:hidden;
  display:flex;align-items:center;justify-content:center;position:relative;
}
.sum-item-img img{width:100%;height:100%;object-fit:cover}
.sum-item-qty{
  position:absolute;top:-7px;right:-7px;
  background:var(--ink);color:#ffd28a;
  width:22px;height:22px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:800;
}
.sum-item-info{flex:1;min-width:0}
.sum-item-name{font-size:13.5px;font-weight:700;line-height:1.3;color:var(--ink);margin:0 0 3px}
.sum-item-meta{font-size:11.5px;color:var(--muted)}
.sum-item-price{
  font-size:14px;font-weight:800;color:var(--ink);
  text-align:right;flex-shrink:0;
}
.sum-item-price del{display:block;font-size:11px;color:var(--muted);font-weight:500}
.sum-row{
  display:flex;justify-content:space-between;align-items:center;
  font-size:13.5px;color:var(--ink-2);margin-bottom:8px;
}
.sum-row strong{color:var(--ink);font-weight:700;font-variant-numeric:tabular-nums}
.sum-pix-row strong{color:var(--green)}
.sum-discount-row strong{color:var(--green)}
.sum-discount-row em{font-style:normal;font-weight:800;color:var(--gold)}
.sum-total{
  margin-top:14px;padding-top:14px;
  border-top:1.5px solid var(--ink);
  font-size:18px;font-weight:800;color:var(--ink);
}
.sum-total strong{
  font-size:22px;font-family:var(--serif);font-weight:700;
  color:var(--green-2);letter-spacing:-.5px;
}
.sum-savings{
  display:block;margin-top:6px;font-size:12px;font-weight:700;
  color:var(--gold);text-align:right;
}

[hidden]{display:none !important}
.sum-shipping{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 12px;border-radius:9px;
  background:#f3f6ee;border:1px solid #d8e6c9;
  font-size:12.5px;color:#1a3a23;margin-bottom:12px;
}
.sum-shipping strong{color:var(--green)}

.sum-trust{
  display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;
  padding:14px 0;margin-top:14px;
  border-top:1px dashed var(--line);
}
.st-item{display:flex;align-items:center;gap:6px}
.st-item svg{width:22px;height:22px;color:var(--gold);flex-shrink:0}
.st-item strong{display:block;font-size:11.5px;color:var(--ink);font-weight:800;line-height:1.1}
.st-item span{display:block;font-size:9.5px;color:var(--muted);line-height:1.2}

.sum-review{
  margin-top:14px;padding:12px 14px;
  background:#fdfaf2;border:1px solid var(--line);
  border-radius:11px;
}
.ck-stars{color:#ffb01f;display:flex;gap:1px;font-size:14px}
.ck-stars svg{width:14px;height:14px}
.sum-review p{
  font-size:12.5px;line-height:1.5;font-style:italic;
  color:var(--ink-2);margin:6px 0 4px;
}
.sum-review span{font-size:11px;color:var(--muted);font-weight:700}

/* ============================================================
   FOOTER TRUST
   ============================================================ */
.ck-footer-trust{
  background:#1a1814;color:#ada599;
  padding:30px 0 24px;margin-top:24px;
}
.ft-grid{
  display:flex;justify-content:center;gap:18px;flex-wrap:wrap;
  padding-bottom:18px;margin-bottom:18px;
  border-bottom:1px solid #2a2520;
}
.ft-item{
  display:flex;align-items:center;gap:8px;
  font-size:12px;color:#d2c8b3;
}
.ft-item svg{width:18px;height:18px;color:#ffd28a}
.ft-item strong{font-weight:700;letter-spacing:.4px}
.ft-legal{
  text-align:center;font-size:11px;line-height:1.7;
  color:#8a8275;margin:0;
}
.ft-legal a{color:#bfb39e;text-decoration:underline;text-underline-offset:2px;margin:0 4px}

/* ============================================================
   PIX MODAL
   ============================================================ */
.pix-modal{
  position:fixed;inset:0;
  background:rgba(15,12,8,.78);backdrop-filter:blur(6px);
  display:none;align-items:center;justify-content:center;
  z-index:1000;padding:18px;
  animation:fadeIn .25s ease;
}
.pix-modal.show{display:flex}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.pix-card{
  width:100%;max-width:440px;
  background:#fff;border-radius:18px;
  padding:30px 26px 26px;
  box-shadow:var(--shadow-lg);
  position:relative;
  text-align:center;
  animation:popIn .3s ease;
  max-height:calc(100vh - 36px);overflow-y:auto;
}
@keyframes popIn{from{transform:scale(.93);opacity:0}to{transform:scale(1);opacity:1}}
.pix-close{
  position:absolute;top:10px;right:14px;
  width:34px;height:34px;border-radius:50%;
  font-size:24px;color:var(--muted);
}
.pix-close:hover{background:#f0ece4;color:var(--ink)}

/* Loading state */
.pix-spinner{
  width:54px;height:54px;
  border:4px solid #f0ece4;border-top-color:var(--gold);
  border-radius:50%;margin:6px auto 16px;
  animation:spin 1s linear infinite;
}
.pix-spinner.small{width:28px;height:28px;border-width:3px}
@keyframes spin{to{transform:rotate(360deg)}}
.pix-loading h3{font-family:var(--serif);font-size:22px;margin:6px 0 6px}
.pix-loading p{color:var(--muted);font-size:14px;margin:0}

/* Ready state */
.pix-tag{
  display:inline-flex;align-items:center;gap:5px;
  background:#e6f8f4;color:#0d6b62;
  font-size:11.5px;font-weight:800;letter-spacing:.6px;
  padding:5px 12px;border-radius:999px;margin-bottom:10px;
}
.pix-tag svg{width:14px;height:14px}
.pix-ready h3{
  font-family:var(--serif);font-size:22px;font-weight:600;
  margin:0 0 16px;letter-spacing:-.3px;
}
.pix-timer{
  color:var(--red);font-weight:800;font-variant-numeric:tabular-nums;
}
.pix-qr-wrap{
  width:240px;height:240px;
  margin:0 auto 14px;
  border:2px solid var(--ink);border-radius:14px;
  padding:8px;background:#fff;
  position:relative;overflow:hidden;
}
.pix-qr-wrap img{width:100%;height:100%;object-fit:contain}
.pix-shine{
  position:absolute;inset:0;
  background:linear-gradient(115deg,transparent 30%,rgba(255,210,138,.45) 50%,transparent 70%);
  background-size:200% 100%;
  pointer-events:none;
  animation:shineQR 3s ease-in-out infinite;
}
@keyframes shineQR{0%,100%{background-position:140% 0}50%{background-position:-40% 0}}

.pix-help{
  font-size:13px;color:var(--ink-2);line-height:1.5;
  margin:0 0 14px;
}
.pix-or{
  display:flex;align-items:center;gap:10px;
  margin:14px 0;color:var(--muted);font-size:12px;
}
.pix-or::before, .pix-or::after{
  content:"";flex:1;height:1px;background:var(--line);
}

.pix-copy-wrap{
  display:flex;gap:8px;margin-bottom:14px;
}
.pix-copy-wrap input{
  flex:1;
  padding:12px 14px;
  border:1.5px solid var(--line);
  border-radius:10px;background:#fafaf8;
  font-size:12px;font-family:'SF Mono', Menlo, monospace;
  color:var(--ink-2);
  white-space:nowrap;text-overflow:ellipsis;
}
.pix-copy-btn{
  background:linear-gradient(180deg,#1a1814,#0a0908);
  color:#ffd28a;font-weight:800;font-size:13px;
  padding:0 18px;border-radius:10px;
  display:flex;align-items:center;gap:6px;
  transition:all .15s ease;
}
.pix-copy-btn:hover{transform:scale(1.03)}
.pix-copy-btn.copied{background:var(--green);color:#fff}
.pix-copy-btn svg{width:14px;height:14px}

.pix-amount-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 14px;border-radius:10px;
  background:#fdfaf2;border:1px dashed var(--gold-2);
  margin-bottom:12px;font-size:14px;
}
.pix-amount-row strong{
  font-family:var(--serif);font-size:22px;font-weight:700;
  color:var(--green-2);letter-spacing:-.4px;
}

.pix-status{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:10px;font-size:12.5px;color:var(--ink-2);
  background:#fef9ed;border-radius:10px;
}
.ps-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 0 rgba(199,165,115,.7);
  animation:pulse 1.5s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(199,165,115,.7)}
  70%{box-shadow:0 0 0 12px rgba(199,165,115,0)}
  100%{box-shadow:0 0 0 0 rgba(199,165,115,0)}
}

.pix-steps{
  list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:6px;
  padding:12px 0 0;margin:14px 0 0;
  border-top:1px dashed var(--line);
}
.pix-steps li{
  font-size:11px;color:var(--muted);font-weight:700;text-align:center;
  display:flex;flex-direction:column;align-items:center;gap:5px;
}
.pix-steps span{
  display:flex;align-items:center;justify-content:center;
  width:24px;height:24px;border-radius:50%;
  background:#1a1814;color:#ffd28a;font-size:12px;font-weight:800;
}

/* Paid state */
.pix-paid{padding:14px 0}
.pix-check{
  width:80px;height:80px;border-radius:50%;
  background:var(--green);color:#fff;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 16px;
  animation:popIn .4s ease;
  box-shadow:0 10px 26px rgba(31,158,90,.35);
}
.pix-check svg{width:42px;height:42px;stroke-width:3}
.pix-paid h3{font-family:var(--serif);font-size:24px;margin:0 0 8px}
.pix-paid p{margin:0 0 18px;color:var(--ink-2);font-size:14px}
.pix-paid small{color:var(--muted);font-size:12px}

/* Error state */
.pix-x{
  width:64px;height:64px;border-radius:50%;
  background:#ffe6e6;color:var(--red);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 14px;
  font-size:32px;font-weight:900;
}
.pix-error h3{font-family:var(--serif);font-size:22px;margin:0 0 8px}
.pix-error p{color:var(--muted);font-size:13.5px;margin:0 0 16px}

/* ============================================================
   TOAST
   ============================================================ */
.ck-toast{
  position:fixed;left:50%;bottom:24px;transform:translate(-50%,80px);
  background:#1a1814;color:#ffd28a;
  padding:12px 22px;border-radius:999px;
  font-size:13.5px;font-weight:600;
  box-shadow:0 14px 36px rgba(0,0,0,.28);
  opacity:0;pointer-events:none;
  transition:all .25s ease;z-index:1100;
  max-width:90vw;
}
.ck-toast.show{opacity:1;transform:translate(-50%,0)}

/* ============================================================
   MOBILE
   ============================================================ */
@media(max-width:920px){
  .ck-secure{display:none}
  .ck-back{font-size:0}
  .ck-back svg{width:22px;height:22px;font-size:initial}
  .ck-steps{padding:14px 0 4px;gap:4px;flex-wrap:wrap}
  .ck-steps li{padding:6px 10px;font-size:12px}
  .ck-card{padding:18px 16px 20px}
  .ck-card h2{font-size:20px}
  .sum-toggle{display:flex}
  .sum-body{display:none;padding:14px 16px 18px}
  .ck-summary.open .sum-body{display:block}
  .ck-summary{position:static}
  .pix-qr-wrap{width:200px;height:200px}
}
