
#didot-wa-wrap {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99990;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

#didot-wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
#didot-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
#didot-wa-btn.open-hours  { background: #25D366; }
#didot-wa-btn.closed-hours { background: #888; }

#didot-wa-btn svg { width: 28px; height: 28px; fill: #fff; }

#didot-wa-status {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
}
#didot-wa-status.open-dot  { background: #4ADE80; }
#didot-wa-status.closed-dot { background: #f87171; }

#didot-wa-tooltip {
  position: absolute;
  bottom: 64px;
  left: 0;
  background: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  width: 220px;
  font-size: 12.5px;
  line-height: 1.5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: none;
}
#didot-wa-tooltip.visible { display: block; }
#didot-wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px; height: 12px;
  background: #1a1a1a;
  transform: rotate(45deg);
  border-radius: 2px;
}
#didot-wa-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
#didot-wa-tooltip .wa-hours {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
}

#didot-wa-cta {
  display: none;
  margin-top: 8px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
}
#didot-wa-cta:hover { background: #1da851; }
