/* =======================================================
   SesiPotret — Online LDR & Solo Photobooth (css/app.css)
   Inspired by Momoto LDR Photobooth UI
   ======================================================= */

:root {
  --app-bg: #F8F9FA;
  --app-card: #FFFFFF;
  --app-border: #E5E7EB;
  --app-text: #111827;
  --app-text-muted: #6B7280;
  --app-primary: #111827;
  --app-accent: #EC4899;
  --app-green: #10B981;
  --app-yellow: #F59E0B;
  --app-radius: 16px;
  --app-radius-sm: 10px;
  --app-radius-lg: 24px;
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background-color: var(--app-bg);
  color: var(--app-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ========================================
   HEADER & TOPBAR (Momoto Style)
   ======================================== */
.ldr-header {
  background: #ffffff;
  border-bottom: 1px solid var(--app-border);
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 10px rgba(0,0,0,0.03);
}
.ldr-header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ldr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--app-text);
  text-decoration: none;
}
.ldr-brand-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #FF6B8B, #FF8E53);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.ldr-room-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ldr-room-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--app-text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ldr-code-tag {
  font-family: monospace;
  font-weight: 800;
  background: #F3F4F6;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
.ldr-status-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ldr-status-pill.connected { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.ldr-status-pill.waiting { background: #FFFBEB; color: #D97706; border: 1px solid #FDE68A; }
.ldr-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.ldr-timer-box {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--app-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ldr-timer-box strong {
  font-size: 1.05rem;
  color: #EF4444;
  font-family: monospace;
}

.btn-finish-session {
  background: #ffffff;
  border: 1px solid var(--app-border);
  color: var(--app-text-muted);
  padding: 6px 14px;
  border-radius: var(--app-radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.btn-finish-session:hover { background: #FEE2E2; color: #DC2626; border-color: #FCA5A5; }

/* ========================================
   MAIN CONTAINER
   ======================================== */
.app-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  width: 100%;
  flex: 1;
}

/* ========================================
   STAGE 1: LOBBY & MODE SELECTION
   ======================================== */
.stage-card {
  background: #ffffff;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-lg);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  text-align: center;
  animation: fadeIn 0.3s ease;
}
.mode-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.mode-hero-desc {
  font-size: 0.95rem;
  color: var(--app-text-muted);
  margin-bottom: 32px;
}

.mode-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.mode-select-card {
  background: #FAFAFA;
  border: 2px solid var(--app-border);
  border-radius: var(--app-radius);
  padding: 28px 20px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mode-select-card:hover {
  background: #ffffff;
  border-color: #111827;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.mode-card-icon {
  font-size: 3rem;
  line-height: 1;
}
.mode-select-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
}
.mode-select-card p {
  font-size: 0.85rem;
  color: var(--app-text-muted);
  line-height: 1.5;
}
.mode-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF1F2;
  color: #E11D48;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 50px;
  border: 1px solid #FFE4E6;
}
.mode-badge-sub {
  background: #EEF2FF;
  color: #4F46E5;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ========================================
   STAGE 1.5: ROOM WAITING SCREEN (Image 1)
   ======================================== */
.waiting-box {
  max-width: 480px;
  margin: 0 auto;
}
.waiting-code-display {
  background: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.big-code-text {
  font-family: monospace;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: #111827;
  margin-bottom: 8px;
}
.btn-copy-code {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.btn-copy-code:hover { background: #E5E7EB; color: #111; }

.waiting-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--app-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
}
.spinner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #EC4899;
  animation: pulseDot 1.2s infinite ease-in-out;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* Tips Popup Card (Image 1 bottom popup) */
.tips-popup-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  margin-top: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.tips-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.tips-icon-bulb {
  width: 34px; height: 34px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.tips-item {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.tips-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #F3F4F6;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tips-item-content strong { font-size: 0.88rem; display: block; margin-bottom: 2px; }
.tips-item-content p { font-size: 0.82rem; color: var(--app-text-muted); line-height: 1.5; }

/* ========================================
   STAGE 2: DUAL CAMERA STUDIO (Image 2)
   ======================================== */
.studio-stage-layout {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.studio-title-box {
  text-align: center;
  margin-bottom: 2px;
  width: 100%;
}
.studio-title-box h2 {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Dual Camera Grid */
.dual-camera-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
.cam-frame-box {
  background: #111827;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  max-height: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.cam-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
}
.cam-user-tag {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cam-mic-icon {
  position: absolute;
  top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  z-index: 6;
}
.cam-mic-icon.muted {
  background: rgba(220, 38, 38, 0.9) !important;
}
.cam-mic-icon.speaking {
  background: #10B981 !important;
  box-shadow: 0 0 12px #10B981;
  transform: scale(1.12);
}
.cam-frame-box.speaking {
  border: 2px solid #10B981 !important;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.45) !important;
}
.cam-off-overlay {
  position: absolute;
  inset: 0;
  background: #111827;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  gap: 6px;
  z-index: 5;
}
.cam-off-overlay span {
  font-size: 2.2rem;
  opacity: 0.8;
}
.cam-off-overlay p {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  color: #E5E7EB;
}

/* Media Controls below cameras */
.media-toggle-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0 4px;
  flex-wrap: wrap;
  width: 100%;
}
.btn-media-toggle {
  background: #ffffff;
  border: 1px solid var(--app-border);
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: var(--font-sans);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.btn-media-toggle:hover { background: #F9FAFB; border-color: #D1D5DB; }
.btn-media-toggle.off { background: #FEE2E2; color: #DC2626; border-color: #FCA5A5; }

.btn-start-session-center {
  width: auto !important;
  padding: 10px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.18) !important;
}
.btn-start-session-center:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.28) !important;
}

/* ========================================
   TEMPLATE SELECTOR TABS & CARDS
   ======================================== */
.template-selector-section {
  background: #ffffff;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  padding: 20px;
  width: 100%;
}
.template-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.template-section-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--app-text-muted);
}

/* Format Switcher 4x1 vs 2x2 */
.format-switch-tabs {
  display: inline-flex;
  background: #F3F4F6;
  border-radius: 50px;
  padding: 3px;
  gap: 4px;
}
.format-tab-btn {
  background: transparent;
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--app-text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.format-tab-btn.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Template Category Pills */
.template-category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.template-category-pills::-webkit-scrollbar {
  height: 4px;
}
.template-category-pills::-webkit-scrollbar-thumb {
  background: #E5E7EB;
  border-radius: 4px;
}
.tpl-cat-btn {
  flex: 0 0 auto;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: var(--font-sans);
}
.tpl-cat-btn:hover {
  background: #E5E7EB;
  color: #111827;
}
.tpl-cat-btn.active {
  background: #111827;
  color: #FFFFFF;
  border-color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Template Cards Carousel */
.template-cards-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.template-mini-card {
  flex: 0 0 90px;
  height: 120px;
  border-radius: 12px;
  border: 2px solid var(--app-border);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 6px;
  transition: all 0.2s;
  background: #FAFAFA;
}
.template-mini-card:hover { transform: translateY(-3px); border-color: #111827; }
.template-mini-card.active {
  border-color: #111827;
  box-shadow: 0 0 0 2px #111827;
  background: #ffffff;
}
.mini-strip-lines {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  justify-content: center;
}
.mini-slot-rect {
  height: 16px;
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}
.template-card-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Primary Start Button */
.btn-start-session-main {
  width: 100%;
  background: #111827;
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-start-session-main:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ========================================
   COUNTDOWN & FLASH OVERLAY (Clean - No Blur)
   ======================================== */
.sync-countdown-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 500;
  pointer-events: none;
}
.sync-countdown-overlay.show { display: flex; animation: fadeIn 0.15s ease; }
.countdown-pose-badge {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: none;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.big-countdown-num {
  font-size: 8.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.9);
  animation: popScale 1s ease;
}
.sync-countdown-overlay p {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
}

.flash-screen {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 600;
  transition: opacity 0.08s ease-out;
}
.flash-screen.flash { opacity: 1; }

/* ========================================
   STAGE 3: STRIP RESULT & EDITOR (Image 3, 4, 5)
   ======================================== */
.editor-stage-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Mini Floating Call Pill */
.floating-call-pill {
  background: #ffffff;
  border: 1px solid var(--app-border);
  border-radius: 50px;
  padding: 8px 16px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.call-avatars-pair {
  display: flex;
  align-items: center;
}
.mini-avatar-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #E5E7EB;
  border: 2px solid #fff;
  object-fit: cover;
  margin-right: -8px;
}
.call-pill-text { font-size: 0.82rem; font-weight: 600; color: #374151; }

/* ========================================
   THE STRIP (MOMOTO / NEWSPAPER STYLE)
   ======================================== */
.strip-editor-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.momoto-photo-strip {
  width: 360px;
  background: #F3EFE6; /* Cream Newspaper */
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
  padding: 18px 16px;
  position: relative;
  user-select: none;
  transition: all 0.3s ease;
}

/* Newspaper Header */
.strip-newspaper-header {
  border-bottom: 2px solid #1A1815;
  padding-bottom: 8px;
  margin-bottom: 12px;
  text-align: center;
}
.strip-newspaper-topline {
  display: flex;
  justify-content: space-between;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1A1815;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.strip-newspaper-headline {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1A1815;
  line-height: 1.15;
}

/* Dual Split Pose Slots */
.strip-poses-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dual-pose-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: transparent;
  padding: 0;
  border-radius: 8px;
  position: relative;
}
.dual-pose-row.solo-row {
  grid-template-columns: 1fr;
}
.pose-number-badge {
  position: absolute;
  top: -6px; left: -6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #1A1815;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.pose-half-photo {
  aspect-ratio: 3 / 4;
  background: #1F2937;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.dual-pose-row.solo-row .pose-half-photo {
  aspect-ratio: 3 / 2;
}

/* 2x2 Grid Format Overrides */
.momoto-photo-strip.format-2x2 {
  width: 420px;
}
.momoto-photo-strip.format-2x2 .strip-poses-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.momoto-photo-strip.format-2x2 .dual-pose-row.solo-row .pose-half-photo {
  aspect-ratio: 4 / 3;
}
.momoto-photo-strip.format-2x2 .dual-pose-row.couple-row .pose-half-photo {
  aspect-ratio: 3 / 4;
}

.pose-half-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.btn-retake-slot {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid #D1D5DB;
  color: #111;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  z-index: 15;
}
.btn-retake-slot:hover { transform: scale(1.15); background: #ffffff; }
.btn-retake-slot.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: #E5E7EB;
  border-color: #D1D5DB;
  color: #9CA3AF;
  box-shadow: none;
}
.btn-retake-slot.disabled:hover {
  transform: none;
  background: #E5E7EB;
}

/* Strip Newspaper Footer */
.strip-newspaper-footer {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #1A1815;
  text-align: center;
}
.strip-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.58rem;
  line-height: 1.4;
  color: #4A4036;
}
.strip-meta-text {
  font-size: 0.52rem;
  color: #7A6F62;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   DRAG & DROP PLACED STICKERS
   ======================================== */
.placed-sticker {
  position: absolute;
  cursor: move;
  user-select: none;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.placed-sticker.active {
  outline: 2px dashed #3B82F6;
  border-radius: 8px;
}
.stk-btn-del {
  position: absolute;
  top: -8px; right: -8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #EF4444;
  color: #fff;
  border: 1px solid #fff;
  font-size: 0.65rem;
  font-weight: 800;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.placed-sticker:hover .stk-btn-del,
.placed-sticker.active .stk-btn-del { display: flex; }

/* ========================================
   BOTTOM EDITOR CONTROLS (TABS & PALETTES)
   ======================================== */
.strip-editor-panel {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius);
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.editor-tabs-nav {
  display: flex;
  background: #F3F4F6;
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 16px;
}
.editor-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--app-text-muted);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.2s;
}
.editor-tab-btn.active {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.editor-tab-content { display: none; }
.editor-tab-content.active { display: block; animation: fadeIn 0.2s ease; }

/* Filter Thumbnails Carousel (Image 4) */
.filter-thumb-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.filter-thumb-item {
  flex: 0 0 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}
.filter-thumb-box {
  width: 74px; height: 50px;
  border-radius: 8px;
  border: 2px solid var(--app-border);
  overflow: hidden;
  background: #E5E7EB;
  transition: all 0.2s;
}
.filter-thumb-item.active .filter-thumb-box {
  border-color: #111827;
  box-shadow: 0 0 0 2px #111827;
}
.filter-thumb-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--app-text-muted);
}
.filter-thumb-item.active span { color: #111827; }

/* Sticker Palette Grid (Image 5) */
.sticker-palette-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}
.sticker-palette-item {
  background: #F9FAFB;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.15s;
}
.sticker-palette-item:hover {
  background: #EEF2FF;
  border-color: #C7D2FE;
  transform: scale(1.1);
}

/* Actions at Bottom */
.editor-bottom-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.btn-retake-all {
  background: #ffffff;
  border: 1px solid var(--app-border);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--app-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-retake-all:hover { background: #F9FAFB; color: #111; }
.btn-retake-all.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #F3F4F6;
  color: #9CA3AF;
  border-color: #E5E7EB;
}
.btn-retake-all.disabled:hover {
  background: #F3F4F6;
  color: #9CA3AF;
}

.retake-quota-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  color: #1D4ED8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-top: 14px;
  transition: all 0.3s ease;
}
.retake-quota-notice.exhausted {
  background: #FEF2F2;
  border-color: #FEE2E2;
  color: #DC2626;
}
.btn-download-strip-main {
  flex: 1;
  background: #111827;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-download-strip-main:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ========================================
   MODALS & ALERTS
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  overflow-y: auto;
}
.modal-overlay.show { display: flex; animation: fadeIn 0.2s ease; }
.modal-card {
  background: #ffffff;
  border-radius: var(--app-radius);
  max-width: 440px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.download-modal-card {
  max-width: 420px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-modal-close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 20;
}
.btn-modal-close-icon:hover {
  background: #EF4444;
  color: #ffffff;
  border-color: #DC2626;
  transform: scale(1.1);
}

.modal-header-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding-right: 28px;
}
.modal-preview-box {
  background: #F3F4F6;
  padding: 8px;
  border-radius: 12px;
  max-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E7EB;
  overflow: hidden;
}
.modal-preview-box img {
  max-height: 144px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s;
}
.modal-preview-box img:hover {
  transform: scale(1.04);
}
.modal-tip-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.74rem;
  color: #92400E;
  text-align: left;
  line-height: 1.4;
}
.modal-actions-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-actions-container .btn-start-session-main {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 800;
}
.modal-sub-btn {
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid #D1D5DB;
  border-radius: 50px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.modal-sub-btn:hover {
  background: #F9FAFB;
  border-color: #9CA3AF;
}
.btn-modal-close-bottom {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #4B5563;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-modal-close-bottom:hover {
  background: #E5E7EB;
  color: #111827;
}

/* ========================================
   ANIMATIONS & RESPONSIVE
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .ldr-header { padding: 10px 14px; }
  .app-container { padding: 16px 12px 60px; }
  .mode-cards-grid { grid-template-columns: 1fr; }
  .sticker-palette-grid { grid-template-columns: repeat(5, 1fr); }
  .momoto-photo-strip { width: 100%; max-width: 320px; }
  .dual-camera-grid { gap: 8px; }
}

/* ========================================
   FRAME LIVE PREVIEW (Studio)
   ======================================== */
.frame-preview-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 0.3s ease;
}
.frame-preview-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.frame-preview-strip {
  width: 160px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #F3EFE6;
  border: 2px solid #2B2620;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, width 0.3s;
}
.frame-preview-strip.format-3x1 {
  width: 160px;
}
.frame-preview-strip.format-3x1 .fp-slots {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.frame-preview-strip.format-3x1 .fp-slot {
  height: 48px;
}
.frame-preview-strip.format-2x2 {
  width: 180px;
}
.frame-preview-strip.format-2x2 .fp-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.frame-preview-strip.format-2x2 .fp-slot {
  height: 48px;
}
.fp-header {
  padding: 6px 8px;
  border-bottom: 2px solid #2B2620;
  background: inherit;
  transition: border-color 0.3s;
}
.fp-topline {
  display: flex;
  justify-content: space-between;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.fp-headline {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  color: #1A1815;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: color 0.3s, font-family 0.3s;
}
.fp-slots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 6px;
}
.fp-slot {
  background: rgba(0,0,0,0.07);
  border-radius: 4px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.fp-slot-icon {
  font-size: 0.9rem;
  opacity: 0.4;
}
.fp-footer {
  padding: 5px 8px;
  border-top: 1px solid rgba(0,0,0,0.12);
  transition: border-color 0.3s;
}
.fp-quote {
  font-size: 0.42rem;
  color: #888;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2px;
  transition: color 0.3s;
}
.fp-meta {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  color: #aaa;
  text-transform: uppercase;
}

/* ========================================
   PAYORA PAYMENT MODAL (Aesthetic & Modern 2-Step Flow)
   ======================================== */
.payora-modal-card {
  max-width: 480px;
  width: 92%;
  padding: 24px 20px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.payora-header-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.payora-brand-pill {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFF1F2, #FFE4E6);
  color: #E11D48;
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid #FECDD3;
}

.payora-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.payora-subtitle {
  font-size: 0.82rem;
  color: var(--app-text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ── Step 1: Package Selection Cards Grid ── */
.payora-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 460px) {
  .payora-packages-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.payora-package-card {
  background: #FAFAFA;
  border: 2px solid #E5E7EB;
  border-radius: 18px;
  padding: 14px 12px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.payora-package-card:hover {
  background: #ffffff;
  border-color: #CBD5E1;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.payora-package-card.selected {
  background: #FFF5F7;
  border-color: #E11D48;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.16);
  transform: translateY(-2px);
}

.payora-package-card.featured {
  border-color: #F43F5E;
}

.pkg-badge-popular {
  position: absolute;
  top: -9px;
  right: 10px;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
  letter-spacing: 0.02em;
}

.pkg-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
}

.pkg-card-info {
  display: flex;
  flex-direction: column;
}

.pkg-card-icon {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.pkg-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 2px 0;
}

.payora-package-card.selected .pkg-card-title {
  color: #E11D48;
}

.pkg-pill-hemat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 1px 6px;
  border-radius: 4px;
  width: fit-content;
}

.pkg-pill-complete {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #7C3AED;
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  padding: 1px 6px;
  border-radius: 4px;
  width: fit-content;
}

/* Custom Radio Indicator */
.pkg-radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.payora-package-card.selected .pkg-radio-circle {
  border-color: #E11D48;
  background: #E11D48;
}

.pkg-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.payora-package-card.selected .pkg-radio-dot {
  opacity: 1;
  transform: scale(1);
}

.pkg-card-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin: 6px 0 10px 0;
}

.payora-package-card.selected .pkg-card-price {
  color: #E11D48;
}

.pkg-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: 1px dashed #E5E7EB;
  padding-top: 8px;
}

.pkg-card-features li {
  font-size: 0.72rem;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
}

.feat-check {
  color: #059669;
  font-weight: 900;
  font-size: 0.8rem;
}

.feat-check-gold {
  color: #E11D48;
  font-weight: 900;
  font-size: 0.8rem;
}

/* Proceed CTA Button */
.btn-payora-proceed {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
  margin-bottom: 12px;
}

.btn-payora-proceed:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.45);
}

.btn-payora-proceed:active {
  transform: translateY(0);
}

/* ── Step 2: QRIS Payment View ── */
.payora-qris-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.btn-payora-back {
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.btn-payora-back:hover {
  background: #E5E7EB;
  color: #111827;
  transform: translateX(-2px);
}

/* Package summary box in Step 2 */
.payora-package-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9FAFB;
  border: 1.5px solid #F3F4F6;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 12px;
  text-align: left;
}
.payora-package-left {
  display: flex;
  flex-direction: column;
}
.payora-package-tag {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1F2937;
}
.payora-pkg-features-pill {
  font-size: 0.72rem;
  color: #059669;
  font-weight: 600;
  margin-top: 2px;
}
.payora-order-code {
  font-size: 0.7rem;
  font-family: monospace;
  color: #9CA3AF;
  margin-top: 2px;
}
.payora-package-price {
  font-size: 1.3rem;
  font-weight: 900;
  color: #E11D48;
}

/* QRIS Container */
.payora-qris-container {
  background: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.qris-brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid #F3F4F6;
  margin-bottom: 8px;
}

.payora-qr-canvas-box {
  width: 210px;
  height: 210px;
  margin: 0 auto 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.payora-qr-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 5;
  font-size: 0.8rem;
  font-weight: 700;
  color: #4B5563;
}

.payora-qr-canvas {
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}
.payora-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Radar scan animation */
.payora-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #E11D48, #FB7185, transparent);
  box-shadow: 0 0 10px #E11D48;
  animation: scanDown 2.2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes scanDown {
  0% { top: 0%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.payora-qris-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid #F3F4F6;
  font-size: 0.75rem;
}
.payora-merchant {
  font-weight: 700;
  color: #4B5563;
}
.payora-timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FEF2F2;
  color: #DC2626;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.8rem;
}

/* Status Indicator */
.payora-status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  border-radius: 50px;
  padding: 8px 14px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1D4ED8;
}
.payora-pulsing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Actions Grid */
.payora-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.btn-payora-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #111827, #1F2937);
  color: #ffffff;
  padding: 11px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.btn-payora-checkout:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #000000, #111827);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #ffffff;
}

.btn-payora-retry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(124,58,237,0.25);
}
.btn-payora-retry:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124,58,237,0.35);
}

.payora-note {
  font-size: 0.72rem;
  color: #9CA3AF;
  line-height: 1.4;
  margin: 0;
}

.payora-success-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  animation: popScale 0.5s ease;
}
.payora-success-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
}


