/* ────────────────────────────────────────────────
   Con Motivo · Product Showcase (shared component)
   Used in: index.html, producto/web.html, producto/citas.html
   ──────────────────────────────────────────────── */

.product-showcase {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(20, 24, 31, 0.10);
  overflow: visible;
}

/* Browser chrome */
.showcase-browser {
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  height: 46px;
}
.showcase-browser .bdot { width: 10px; height: 10px; border-radius: 50%; }
.showcase-browser .bdot:nth-child(1) { background: #ff5f57; }
.showcase-browser .bdot:nth-child(2) { background: #febc2e; }
.showcase-browser .bdot:nth-child(3) { background: #28c840; }
.showcase-browser .url {
  flex: 1; margin-left: 10px; padding: 6px 14px;
  background: var(--canvas); border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-soft);
  transition: all 0.5s;
  display: inline-flex; align-items: center; gap: 6px;
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.showcase-browser .url::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.showcase-browser .badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  background: var(--signal-bg);
  border: 1px solid var(--signal-pale);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.5s;
}

/* Stage */
.showcase-stage {
  position: relative;
  height: calc(100% - 46px);
  overflow: hidden;
  border-radius: 0 0 22px 22px;
}
.showcase-screen {
  position: absolute;
  inset: 0;
  padding: 24px 32px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.showcase-screen.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Heads */
.ss-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.ss-title {
  font-family: 'Instrument Serif', serif;
  font-size: 19px;
  font-weight: 400;
}
.ss-title em { font-style: italic; color: var(--signal); }
.ss-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}

/* Agenda screen */
.ss-rows { display: flex; flex-direction: column; gap: 0; }
.ss-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  animation: ss-row-in 0.5s both;
}
.ss-row:last-child { border-bottom: none; }
.showcase-screen.active .ss-row:nth-child(1) { animation-delay: 0.15s; }
.showcase-screen.active .ss-row:nth-child(2) { animation-delay: 0.25s; }
.showcase-screen.active .ss-row:nth-child(3) { animation-delay: 0.35s; }
.showcase-screen.active .ss-row:nth-child(4) { animation-delay: 0.45s; }
.showcase-screen.active .ss-row:nth-child(5) { animation-delay: 0.55s; }
@keyframes ss-row-in {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.ss-row time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-soft); font-weight: 600;
}
.ss-row strong { display: block; font-size: 13.5px; color: var(--ink); font-weight: 500; }
.ss-row small { display: block; font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
.ss-row .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  font-weight: 600;
}
.ss-row .tag.ok { background: var(--sage-pale); color: var(--sage); }
.ss-row .tag.wait { background: var(--gold-pale); color: var(--gold); }
.ss-row .tag.new { background: var(--signal-bg); color: var(--signal); }
.ss-row .tag.pulse { animation: tag-pulse 1.6s ease-out 0.6s; }
@keyframes tag-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 97, 255, 0.4); }
  60% { box-shadow: 0 0 0 8px rgba(0, 97, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 97, 255, 0); }
}

/* Multi-employee agenda (peluquerías) */
.ss-emp-grid {
  display: grid;
  grid-template-columns: 50px 1fr 1fr 1fr;
  gap: 4px;
  font-size: 11px;
}
.ss-emp-h {
  padding: 6px 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
  text-align: center;
}
.ss-emp-h .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-size: 11px;
  color: var(--canvas);
  margin-right: 5px;
  vertical-align: middle;
}
.ss-emp-h .av.b { background: var(--signal); }
.ss-emp-h .av.g { background: var(--gold); }
.ss-emp-h .av.s { background: var(--sage); }
.ss-time-row {
  padding: 5px 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex; align-items: center;
}
.ss-emp-slot {
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 10.5px;
  line-height: 1.2;
  min-height: 30px;
  opacity: 0;
  animation: ss-row-in 0.4s both;
}
.ss-emp-slot strong { font-weight: 600; display: block; font-size: 10.5px; }
.ss-emp-slot small { font-size: 9.5px; opacity: 0.85; display: block; margin-top: 1px; }
.ss-emp-slot.b { background: var(--signal-bg); color: var(--signal-ink); }
.ss-emp-slot.g { background: var(--gold-pale); color: var(--gold); }
.ss-emp-slot.s { background: var(--sage-pale); color: var(--sage); }
.ss-emp-slot.empty { background: transparent; }
.ss-emp-slot.span2 { grid-row: span 2; }
.showcase-screen.active .ss-emp-slot:nth-of-type(2) { animation-delay: 0.2s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(3) { animation-delay: 0.3s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(4) { animation-delay: 0.4s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(5) { animation-delay: 0.5s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(6) { animation-delay: 0.6s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(7) { animation-delay: 0.7s; }
.showcase-screen.active .ss-emp-slot:nth-of-type(8) { animation-delay: 0.8s; }

/* WhatsApp screen */
.ss-wa {
  background: #efeae2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.3) 0%, transparent 50%);
  border-radius: 12px;
  height: 100%;
  display: flex; flex-direction: column; gap: 7px;
  margin: -24px -32px;
  padding: 20px 24px;
}
.ss-wa-bubble {
  max-width: 75%;
  padding: 9px 12px 16px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.4;
  position: relative;
  opacity: 0;
  animation: bubble-in 0.4s both;
}
.showcase-screen.active .ss-wa-bubble:nth-child(1) { animation-delay: 0.2s; }
.showcase-screen.active .ss-wa-bubble:nth-child(2) { animation-delay: 0.5s; }
.showcase-screen.active .ss-wa-bubble:nth-child(3) { animation-delay: 1.4s; }
.showcase-screen.active .ss-wa-bubble:nth-child(4) { animation-delay: 1.7s; }
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ss-wa-bubble.them { background: var(--canvas); align-self: flex-start; border-top-left-radius: 4px; }
.ss-wa-bubble.me { background: #d9fdd3; align-self: flex-end; border-top-right-radius: 4px; }
.ss-wa-bubble .time {
  position: absolute; bottom: 4px; right: 8px;
  font-size: 9px; color: rgba(0,0,0,0.45);
}
.ss-wa-quick { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.ss-wa-quick span {
  background: var(--canvas);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--signal);
  font-weight: 600;
}

/* Google screen */
.ss-google { padding-top: 0; }
.ss-search-bar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 18px 12px 44px;
  position: relative;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 14px;
}
.ss-search-bar::before {
  content: '🔍';
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  filter: grayscale(1); opacity: 0.6;
}
.ss-gbp {
  background: var(--canvas);
  border: 1px solid var(--signal);
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  box-shadow: 0 6px 18px rgba(0, 97, 255, 0.08);
  position: relative;
  opacity: 0;
  animation: gbp-rise 0.7s 0.2s both cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes gbp-rise {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ss-gbp::before {
  content: '#1';
  position: absolute; top: -10px; left: 14px;
  background: var(--signal); color: var(--canvas);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em;
  padding: 3px 8px; border-radius: 4px; font-weight: 700;
  opacity: 0;
  animation: rank-pop 0.5s 0.8s both;
}
@keyframes rank-pop {
  0% { opacity: 0; transform: scale(0.5) rotate(-10deg); }
  60% { opacity: 1; transform: scale(1.15) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.ss-gbp-thumb {
  background: linear-gradient(135deg, var(--signal-bg) 0%, var(--canvas) 100%);
  border-radius: 8px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 24px;
  color: var(--signal);
}
.ss-gbp-info .name {
  font-family: 'Instrument Serif', serif;
  font-size: 15px; margin-bottom: 4px;
}
.ss-gbp-info .rating { font-size: 11.5px; color: var(--ink-soft); margin-bottom: 5px; }
.ss-gbp-info .rating .stars { color: #f4b400; margin-right: 4px; }
.ss-gbp-info .meta { font-size: 11px; color: var(--ink-soft); margin-bottom: 8px; }
.ss-gbp-info .actions { display: flex; gap: 5px; }
.ss-gbp-info .actions span {
  font-size: 10.5px; padding: 4px 9px;
  border-radius: 100px; background: var(--paper); color: var(--ink);
}
.ss-gbp-info .actions span.primary {
  background: var(--signal); color: var(--canvas);
}
.ss-other {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 10px;
  display: grid; grid-template-columns: 40px 1fr;
  gap: 12px; align-items: center;
  opacity: 0.65;
  font-size: 11.5px;
}
.ss-other .ot-th {
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--paper) 100%);
  border-radius: 6px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-style: italic;
  color: var(--ink-soft); font-size: 18px;
}
.ss-other .ot-info .name { font-family: 'Instrument Serif', serif; font-size: 13px; margin-bottom: 2px; }
.ss-other .ot-info .meta { color: var(--ink-soft); font-size: 10.5px; }

/* Invoice screen */
.ss-inv {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  position: relative;
  display: flex; flex-direction: column;
}
.ss-inv-stamp {
  position: absolute;
  top: 16px; right: -16px;
  background: var(--signal);
  color: var(--canvas);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  padding: 6px 11px; border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(0, 97, 255, 0.30);
  transform: rotate(4deg);
  text-transform: uppercase;
  opacity: 0;
  animation: stamp-in 0.6s 0.4s both;
  z-index: 2;
}
@keyframes stamp-in {
  0% { opacity: 0; transform: rotate(4deg) scale(1.4); }
  100% { opacity: 1; transform: rotate(4deg) scale(1); }
}
.ss-inv-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.ss-inv-logo {
  font-family: 'Instrument Serif', serif; font-size: 16px;
}
.ss-inv-logo em { font-style: italic; }
.ss-inv-logo .dot { color: var(--signal); font-style: italic; }
.ss-inv-logo .cif {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--ink-soft);
  margin-top: 2px;
}
.ss-inv-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink); font-weight: 600;
  text-align: right;
}
.ss-inv-num small { display: block; font-weight: 400; color: var(--steel); font-size: 9px; margin-bottom: 2px; letter-spacing: 0.1em; text-transform: uppercase; }
.ss-inv-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ss-inv-table td { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.ss-inv-table td.r { text-align: right; font-family: 'JetBrains Mono', monospace; }
.ss-inv-table .total td {
  border-top: 1.5px solid var(--ink); border-bottom: none;
  padding-top: 10px;
  font-family: 'Instrument Serif', serif; font-size: 14px; font-weight: 400;
}
.ss-inv-table .total td.r { font-size: 16px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }

/* Web preview screen (showing a fake site mockup) */
.ss-webpreview {
  background: var(--paper);
  border-radius: 12px;
  height: 100%;
  margin: -24px -32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ss-webhead {
  background: var(--canvas);
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.ss-webhead .wh-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
}
.ss-webhead .wh-logo em { font-style: italic; }
.ss-webhead .wh-logo .dot { color: var(--gold); font-style: italic; }
.ss-webhead .wh-nav {
  display: flex; gap: 14px;
  font-size: 11px;
  color: var(--ink-soft);
}
.ss-webhead .wh-cta {
  background: var(--gold); color: var(--canvas);
  padding: 5px 12px; border-radius: 100px;
  font-size: 10.5px; font-weight: 600;
}
.ss-webhero {
  padding: 22px 24px;
  flex-grow: 1;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.ss-webhero .wh-eye {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.ss-webhero h2 {
  font-family: 'Instrument Serif', serif;
  font-size: 24px; line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.ss-webhero h2 em { font-style: italic; color: var(--gold); }
.ss-webhero p {
  font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; max-width: 90%;
}
.ss-webhero .wh-btns { display: flex; gap: 6px; margin-top: 4px; }
.ss-webhero .wh-btns span {
  font-size: 10.5px; padding: 6px 12px; border-radius: 100px;
  background: var(--ink); color: var(--canvas); font-weight: 600;
}
.ss-webhero .wh-btns span.ghost { background: var(--canvas); color: var(--ink); border: 1px solid var(--line); }

/* Pagos screen */
.ss-pay { padding-top: 0; }
.ss-pay-row {
  background: var(--paper);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.ss-pay-row .info .name { font-size: 13.5px; font-weight: 500; }
.ss-pay-row .info .det {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.ss-pay-row .amt {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.ss-pay-methods {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 12px;
}
.ss-pay-method {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
}
.ss-pay-method.selected {
  border-color: var(--signal);
  background: var(--signal-bg);
  color: var(--signal-ink);
}
.ss-pay-method .pic {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--canvas);
}
.ss-pay-method .pic.b { background: #00C3E3; }
.ss-pay-method .pic.t { background: var(--ink); }
.ss-pay-method .pic.d { background: var(--gold); }
.ss-pay-method .pic.r { background: var(--sage); }

/* Comisiones screen */
.ss-comm-grid {
  display: grid; grid-template-columns: 36px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 11px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
}
.ss-comm-grid:last-child { border-bottom: none; }
.ss-comm-grid .av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 14px;
  color: var(--canvas);
}
.ss-comm-grid .av.b { background: var(--signal); }
.ss-comm-grid .av.g { background: var(--gold); }
.ss-comm-grid .av.s { background: var(--sage); }
.ss-comm-grid .name strong { display: block; font-size: 12.5px; }
.ss-comm-grid .name small { font-size: 10.5px; color: var(--ink-soft); }
.ss-comm-grid .pct {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-soft);
  background: var(--paper);
  padding: 3px 8px; border-radius: 100px;
  font-weight: 600;
}
.ss-comm-grid .eur {
  font-family: 'Instrument Serif', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Notification dot animation (small badge that pops on screen activation) */
.ss-notif {
  position: absolute;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(20, 24, 31, 0.15);
  display: flex; gap: 10px; align-items: center;
  font-size: 11.5px;
  opacity: 0;
  transform: translateX(20px);
  animation: notif-slide 0.5s 0.9s both cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
  max-width: 220px;
}
@keyframes notif-slide {
  from { opacity: 0; transform: translateX(30px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.ss-notif .nic {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--canvas); font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}
.ss-notif .nic.wa { background: #25D366; }
.ss-notif .nic.gb { background: var(--signal); }
.ss-notif .nic.gold { background: var(--gold); }
.ss-notif .ntop {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: var(--steel); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ss-notif .ntext { font-size: 12px; color: var(--ink); font-weight: 500; line-height: 1.3; }
.ss-notif.top-right { top: 16px; right: 16px; }
.ss-notif.bottom-right { bottom: 16px; right: 16px; }
.ss-notif.bottom-left { bottom: 16px; left: 16px; }

/* Floating bubbles (outside frame) */
.showcase-bubble {
  position: absolute;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 16px;
  box-shadow: 0 14px 30px rgba(20, 24, 31, 0.14);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: opacity 0.45s, transform 0.45s;
  white-space: nowrap;
}
.showcase-bubble::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: bub-pulse 2s infinite;
}
.bubble-left {
  top: 18%;
  left: -28px;
  transform: translateX(-8px);
}
.bubble-left::before { background: var(--signal); }
.bubble-right {
  bottom: 22%;
  right: -28px;
  transform: translateX(8px);
}
.bubble-right::before { background: var(--gold); }
.bubble-right.kpi-sage::before { background: var(--sage); }
.bubble-right.kpi-pink::before { background: #c0357e; }
.bubble-left.kpi-gold::before { background: var(--gold); }
.bubble-left.kpi-sage::before { background: var(--sage); }
@keyframes bub-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 97, 255, 0); }
  50% { box-shadow: 0 0 0 6px rgba(0, 97, 255, 0); }
}
.bubble-swap {
  opacity: 0;
  transform: scale(0.94);
}

/* Progress dots */
.showcase-progress {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.showcase-progress button {
  width: 44px; height: 4px;
  background: var(--line);
  border-radius: 2px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  padding: 0;
}
.showcase-progress button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--signal);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
}
.showcase-progress button.active::after {
  animation: prog-fill 4.5s linear both;
}
@keyframes prog-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* MOBILE polish */
@media (max-width: 960px) {
  .bubble-left { top: 14px; left: 14px; transform: none; }
  .bubble-right { bottom: 60px; right: 14px; transform: none; }
  .showcase-bubble { font-size: 11px; padding: 8px 12px; }
}
@media (max-width: 720px) {
  .showcase-screen { padding: 18px 22px; }
  .ss-wa { margin: -18px -22px; }
  .showcase-browser .badge { display: none; }
  .showcase-browser { padding: 10px 14px; height: 42px; }
  .showcase-stage { height: calc(100% - 42px); }
  .ss-row { grid-template-columns: 44px 1fr auto; gap: 10px; padding: 9px 0; }
  .ss-row strong { font-size: 12.5px; }
  .ss-row small { font-size: 10.5px; }
  .ss-title { font-size: 16px; }
  .ss-emp-grid { grid-template-columns: 40px 1fr 1fr 1fr; }
  .ss-emp-slot { padding: 5px 7px; font-size: 9.5px; min-height: 26px; }
  .ss-emp-slot strong { font-size: 9.5px; }
  .ss-emp-slot small { font-size: 8.5px; }
  .ss-inv-stamp { right: -8px; top: 12px; font-size: 8px; padding: 4px 8px; }
  .ss-notif { display: none; }
}
