/* =============================================
   SHOP'N MAX — WHATSAPP FLOTTANT CSS
============================================= */

#whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9500;
}

.wa-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  position: relative;
  transition: transform .3s ease;
}
.wa-button:hover { transform: scale(1.08); }

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .5;
  animation: wa-pulse-anim 2s infinite;
  z-index: -1;
}
@keyframes wa-pulse-anim {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  width: 220px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .3s ease;
}
.wa-tooltip.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-tooltip strong {
  display: block;
  font-size: .9rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.wa-tooltip p {
  font-size: .82rem;
  color: var(--text-light);
  margin: 0;
}
.wa-tooltip-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: .8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  #whatsapp-float { bottom: 16px; right: 16px; }
  .wa-button { width: 52px; height: 52px; }
  .wa-button svg { width: 26px; height: 26px; }
  .wa-tooltip { width: 190px; bottom: 64px; }
}