/* POS24 Add-to-Cart Popup — responsive, RTL-first */
.pos24-overlay{
  position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:99998;
}
.pos24-popup{
  position:fixed;inset:0;display:flex;align-items:center;justify-content:center;z-index:99999;
  font-family:iransans, Vazirmatn, tahoma, sans-serif;
}
.pos24-card{
  width:min(720px, 94vw);background:#fff;border-radius:20px;box-shadow:0 10px 40px rgba(0,0,0,.2);
  overflow:hidden; transform: translateY(12px); opacity:0; transition: all .18s ease;
}
.pos24-popup.pos24-show .pos24-card{ transform: translateY(0); opacity:1; }
.pos24-close{ position:absolute; margin:12px; right:12px; top:12px; background:#f5f5f5; border:0; width:36px;height:36px;border-radius:50%; font-size:22px; line-height:36px; cursor:pointer;}
.pos24-anim{ height:120px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#e8f9f1,#f4fff9); }
.pos24-checkmark{ width:64px; height:64px; border-radius:50%; border:4px solid #00b894; position:relative; transform:scale(.7); opacity:.6;}
.pos24-checkmark.run{ animation:pop .35s ease forwards; }
@keyframes pop{ to{ transform:scale(1); opacity:1; } }
.pos24-checkmark:after{
  content:""; position:absolute; width:28px; height:14px; border:4px solid #00b894; border-top:0;border-left:0;
  transform: rotate(45deg); left:14px; top:18px;
}
.pos24-title{ font-size:18px; font-weight:700; padding:14px 18px; }
.pos24-body{ padding:0 18px 10px; }
.pos24-color-block{ display:grid; grid-template-columns: 180px 1fr; gap:16px; align-items:center; }
.pos24-color-image{ width:100%; height:auto; object-fit:contain; background:#fafafa; border-radius:16px; border:1px solid #eee; }
.pos24-color-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.pos24-btn{
  border:0; padding:10px 14px; border-radius:12px; cursor:pointer; background:#111; color:#fff; font-weight:700;
}
.pos24-btn-white{ background:#f1f1f1; color:#111; border:1px solid #ddd; }
.pos24-btn-black{ background:#111; color:#fff; }
.pos24-upsell{ margin-top:10px; padding-top:10px; border-top:1px dashed #eee; }
.pos24-chk{ display:block; margin:6px 0; }
.pos24-summary{ margin-top:10px; display:flex; align-items:center; justify-content:space-between; font-weight:700; }
.pos24-actions{ padding:12px 18px 18px; display:flex; justify-content:flex-end; }
.pos24-go-checkout{ background:#ff3b30; }
.pos24-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.pos24-name-suffix{ font-weight:700; }
@media (max-width:600px){
  .pos24-color-block{ grid-template-columns: 1fr; }
  .pos24-actions{ justify-content:stretch; }
  .pos24-go-checkout{ width:100%; }
}
