/* Toast "Livraison gratuite à Dakar" — Sinlori Store */

.slz-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  max-width: 320px;
  background: #111111;
  border: 1px solid #F0A830;
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  font-family: 'Outfit', sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}

.slz-toast.slz-toast--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.slz-toast__icon {
  color: #F0A830;
  font-size: 20px;
  flex-shrink: 0;
}

.slz-toast__text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.slz-toast__text strong {
  color: #F0A830;
}

.slz-toast__close {
  background: none;
  border: none;
  color: #999999;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}

.slz-toast__close:hover {
  color: #F0A830;
}

/* Mobile : décalé vers le haut pour ne pas gêner le bouton WhatsApp flottant */
@media (max-width: 600px) {
  .slz-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 80px;
  }
}
