/* Toast boutique – bas à gauche, visible PC + mobile */
.pettys-activitypopup-container {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99999;
  pointer-events: none;
}

.pettys-activitypopup-toast {
  pointer-events: auto;
  max-width: 320px;
  min-width: 260px;
  padding: 12px 14px;
  margin-top: 10px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.pettys-activitypopup-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pettys-activitypopup-toast.is-leaving {
  opacity: 0;
  transform: translateY(-10px);
}

.pettys-activitypopup-toast a {
  color: #fff;
  text-decoration: underline;
}

.pettys-activitypopup-toast a:hover {
  color: #e0e0e0;
}

.pettys-activitypopup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.pettys-activitypopup-close:hover {
  color: #fff;
}

.pettys-activitypopup-toast-inner {
  padding-right: 28px;
}

@media (max-width: 576px) {
  .pettys-activitypopup-container {
    left: 12px;
    bottom: 12px;
  }
  .pettys-activitypopup-toast {
    min-width: 220px;
    font-size: 13px;
  }
}
