.flyer-ad {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px 16px 12px;
  z-index: 9999;
  min-width: 220px;
  max-width: 320px;
  font-size: 1rem;
  animation: flyerAdFadeIn 0.7s;
}

.flyer-ad-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.flyer-ad-text {
  flex: 1;
  color: #333;
  font-size: 0.98rem;
}

.flyer-ad-close {
  background: none;
  border: none;
  color: #888;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 8px;
  margin-right: -4px;
  transition: color 0.2s;
}
.flyer-ad-close:hover {
  color: #e91e63;
}

@keyframes flyerAdFadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 600px) {
  .flyer-ad {
    right: 8px;
    bottom: 8px;
    max-width: 95vw;
    padding: 10px 12px 10px 8px;
    font-size: 0.95rem;
  }
  .flyer-ad-img {
    width: 44px;
    height: 44px;
  }
}
