.vsp-card {
  --vsp-accent: #d7193f;
  position: fixed;
  z-index: 99990;
  bottom: 22px;
  width: min(360px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(17, 24, 39, .09);
  border-left: 4px solid var(--vsp-accent);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 40px rgba(17, 24, 39, .14);
  color: #17191d;
  font-family: inherit;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.vsp-bottom-left { left: 22px; }
.vsp-bottom-right { right: 22px; }
.vsp-card.vsp-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.vsp-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #eefaf3; color: #148447; font-size: 19px; font-weight: 800; }
.vsp-name { margin-bottom: 2px; font-size: 15px; line-height: 1.25; font-weight: 750; }
.vsp-message { font-size: 13.5px; line-height: 1.4; color: #343841; }
.vsp-product { color: var(--vsp-accent); font-weight: 700; }
.vsp-meta { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 5px; font-size: 11.5px; color: #77808f; }
.vsp-verified { color: #148447; font-weight: 650; }
.vsp-verified::before { content: '•'; margin-right: 7px; color: #b3bac5; }
.vsp-close { position: absolute; top: 7px; right: 9px; width: 28px; height: 28px; border: 0; padding: 0; background: transparent; color: #596170; font-size: 22px; line-height: 1; cursor: pointer; }
.vsp-close:hover, .vsp-close:focus-visible { color: #111318; }

@media (max-width: 600px) {
  .vsp-card { bottom: 14px; left: 12px; right: 12px; width: auto; padding: 12px 38px 12px 12px; border-radius: 12px; }
  .vsp-name { font-size: 14px; }
  .vsp-message { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .vsp-card { transition: none; }
}

