/* === FLASH AUTUMN === */
#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: #fff8f0;
  border-left: 4px solid #d35400;
  padding: 12px;
  border-radius: 6px;
  margin: 12px 0;
  font-size: 14px;
  color: #4e2a08;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* 🍂 Листья */
.flash-leaf {
  position: fixed;
  font-size: 18px;
  pointer-events: none;
  opacity: 0.9;
  animation: leafMove 2.5s forwards ease-out;
}

@keyframes leafMove {
  0% {
    transform: translate(0,0) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0.5) rotate(720deg);
    opacity: 0;
  }
}
