/* CalcuTools India — Shared CSS for SEO enhancements and Share Button */

/* ===== SHARE BUTTON SYSTEM ===== */
.share-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.share-main-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d4aa, #0099ff);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(0,212,170,0.4);
  transition: transform .2s;
}
.share-main-btn:hover { transform: scale(1.1); }
.share-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all .25s;
}
.share-options.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.share-opt-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: transform .15s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.share-opt-btn:hover { transform: scale(1.04); }
.share-opt-btn.whatsapp { background: #25d366; color: #fff; }
.share-opt-btn.twitter  { background: #1da1f2; color: #fff; }
.share-opt-btn.facebook { background: #1877f2; color: #fff; }
.share-opt-btn.copy     { background: #334155; color: #f0f4ff; }
.share-opt-btn.telegram { background: #229ed9; color: #fff; }

/* Result share strip */
.result-share-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.result-share-strip span {
  font-size: 12px;
  color: #8892a4;
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.rs-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
  font-family: 'DM Sans', sans-serif;
}
.rs-btn:hover { opacity: .85; }
.rs-btn.wa  { background: #25d366; color: #fff; }
.rs-btn.tw  { background: #1da1f2; color: #fff; }
.rs-btn.tg  { background: #229ed9; color: #fff; }
.rs-btn.cp  { background: #334155; color: #f0f4ff; }

/* Toast */
.ct-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a2235;
  color: #f0f4ff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  z-index: 9999;
  border: 1px solid rgba(0,212,170,0.3);
  white-space: nowrap;
}
.ct-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
