/* SSIQ By MG - Quote Buttons with Icons */
.ssiq-quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ssiq-quote-actions .ssiq-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f4f4f5;
  color: #222;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.ssiq-quote-actions .ssiq-btn:hover {
  background: #e5e7eb;
  border-color: rgba(0,0,0,0.2);
}

.ssiq-copy svg { stroke: currentColor; fill: none; }
.ssiq-whatsapp { background: #25d366; color: #fff; }
.ssiq-facebook { background: #1877f2; color: #fff; }
.ssiq-twitter { background: #1da1f2; color: #fff; }

.ssiq-whatsapp svg,
.ssiq-facebook svg,
.ssiq-twitter svg {
  fill: currentColor;
}

/* Tooltips for SSIQ buttons */
.ssiq-btn { position: relative; }

.ssiq-btn::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) scale(0.95);
  background: #111827;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 9999;
}

.ssiq-btn::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #111827;
  opacity: 0;
  transition: opacity .15s ease;
  z-index: 9999;
}

.ssiq-btn.ssiq-tip-show::after,
.ssiq-btn.ssiq-tip-show::before {
  opacity: 1;
}

.ssiq-btn.ssiq-tip-show::after {
  transform: translateX(-50%) scale(1);
}
