/* PIMPS static prototype — chrome only */
.proto-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: linear-gradient(90deg, #5c2b9e, #7c3aed, #c9971a);
  color: #fff;
  font-family: Lato, system-ui, sans-serif;
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.proto-ribbon strong {
  font-family: Cinzel, serif;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.proto-toast-wrap {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  pointer-events: none;
}
.proto-toast {
  pointer-events: auto;
  background: rgba(26, 8, 53, 0.96);
  border: 1px solid rgba(201, 151, 26, 0.45);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  animation: protoToastIn 0.35s ease both;
}
html[data-theme="light"] .proto-toast {
  background: rgba(255, 255, 255, 0.98);
  color: rgba(26, 8, 53, 0.9);
  border-color: rgba(124, 58, 237, 0.25);
}
@keyframes protoToastIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-secondary, rgba(255, 255, 255, 0.55));
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-cart:hover {
  color: var(--gold-bright, #f0c040);
  background: rgba(201, 151, 26, 0.1);
}
.nav-cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-mid, #c9971a);
  color: var(--purple-deep, #1a0835);
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.nav-cart-count:empty,
.nav-cart[data-empty="1"] .nav-cart-count {
  display: none;
}
body.proto-pad-bottom {
  padding-bottom: 40px;
}
