/* === FLASH SPRING === */
#flash-container {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;

  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 90%;
  text-align: center;
  pointer-events: none;
}

#flash-container .shop-flash {
  background: #fef9fb;
  border-left: 4px solid #e67fa1;
  padding: 12px;
  border-radius: 6px;
  margin: 12px 0;
  font-size: 14px;
  color: #6b2c45;
  position: relative;
  box-shadow: 0 4px 10px rgba(230,127,161,0.4);
}

/* 🌸 Цветочки */
.flash-flower {
  position: fixed;
  font-size: 18px;
  pointer-events: none;
  opacity: 0.95;
  animation: flowerMove 2s forwards ease-out;
}

@keyframes flowerMove {
  0% {
    transform: translate(0,0) scale(0.8) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(1.4) rotate(360deg);
    opacity: 0;
  }
}
