.woo-spn-root {
  position: fixed;
  z-index: 999999;
}

.woo-spn-toast {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  min-width: 280px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(17,24,39,0.08);
  background: var(--bg-color, #ffffff);
  color: var(--text-color, #111827);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Segoe UI Emoji', 'Apple Color Emoji', sans-serif;
}

.woo-spn-close {
  position: absolute;
  top: 8px; right: 8px;
  width: 24px; height: 24px;
  border: none; border-radius: 6px;
  background: #f3f4f6;
  color: var(--text-color, #111827);
  cursor: pointer;
}

.woo-spn-toast a { color: var(--link-color, #f97316); text-decoration: none; }

.woo-spn-img { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; background: #f3f4f6; }
.woo-spn-img img { width:100%; height:100%; object-fit: cover; }

.woo-spn-title { font-weight: 600; line-height: 1.25; display:flex; align-items:center; gap:8px; }
.woo-spn-emoji { font-size: 18px; }
.woo-spn-price { margin-top: 4px; font-weight: 600; }
.woo-spn-meta { font-size: 12px; color: #6b7280; margin-top: 4px; }
.woo-spn-actions { margin-top: 8px; }
/* Text-link style CTA to match screenshot */
.woo-spn-cta { font-weight:600; color: var(--link-color, #f97316); }

.pos-bottom_left { left: var(--offset-x, 20px); bottom: var(--offset-y, 20px); }
.pos-bottom_right { right: var(--offset-x, 20px); bottom: var(--offset-y, 20px); }
.pos-top_left { left: var(--offset-x, 20px); top: var(--offset-y, 20px); }
.pos-top_right { right: var(--offset-x, 20px); top: var(--offset-y, 20px); }

.anim-slide_in { animation: wooSpnSlideIn 0.35s ease-out forwards; }
.anim-fade_in { animation: wooSpnFadeIn 0.35s ease-out forwards; }
.anim-slide_right { animation: wooSpnSlideRight 0.35s ease-out forwards; }

@keyframes wooSpnSlideIn {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes wooSpnFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes wooSpnSlideRight { from { transform: translateX(10px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.woo-spn-hide { animation: wooSpnHide 0.3s ease-in forwards; }
@keyframes wooSpnHide { to { opacity: 0; transform: translateY(10px); } }

@media (max-width: 640px) {
  .woo-spn-toast { max-width: 92vw; grid-template-columns: 40px 1fr; }
  .woo-spn-img { width:40px; height:40px; }
}