/* ═══════════════════════════════════════════════
   PersonaliseLine — Shared Contact FAB Widget
   Include this on every page instead of repeating
   the CSS inline.
═══════════════════════════════════════════════ */

/* ── FAB wrapper ── */
.contact-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
}

/* ── Green circle button ── */
.contact-fab-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; margin-left: auto;
}
.contact-fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.contact-fab-btn svg { width: 28px; height: 28px; }

/* ── Pop-up panel ── */
.contact-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 290px; background: #fff; border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  overflow: hidden; display: none;
  animation: cwSlideUp 0.25s ease;
}
.contact-panel.open { display: block; }

@keyframes cwSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── Panel header ── */
.contact-panel-header {
  background: linear-gradient(135deg, #25D366, #128C7E);
  padding: 18px 20px 22px; position: relative;
}
.contact-panel-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,0.25); border: none; color: #fff;
  width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.contact-panel-header h3 {
  color: #fff; font-size: 16px; font-weight: 600;
  margin: 0 0 4px; font-family: 'Montserrat', sans-serif;
}
.contact-panel-header p {
  color: rgba(255,255,255,0.85); font-size: 12px;
  margin: 0; font-family: 'Montserrat', sans-serif;
}
.contact-panel-timing {
  background: rgba(255,255,255,0.15); border-radius: 8px;
  padding: 6px 10px; margin-top: 10px; display: inline-block;
  color: #fff; font-size: 11px; font-family: 'Montserrat', sans-serif;
}

/* ── Channel rows ── */
.contact-channels { padding: 8px 0; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px; text-decoration: none; color: #333;
  transition: background 0.15s; border-bottom: 1px solid #f0f0f0;
}
.contact-channel:last-child { border-bottom: none; }
.contact-channel:hover { background: #f8f8f8; }

.channel-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.channel-icon.wa { background: #25D366; }
.channel-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.channel-icon.fb { background: #1877F2; }
.channel-icon.em { background: #C9A84C; }

.channel-name {
  font-size: 14px; font-weight: 600; color: #222;
  font-family: 'Montserrat', sans-serif;
}
.channel-sub {
  font-size: 11px; color: #888; margin-top: 2px;
  font-family: 'Montserrat', sans-serif;
}
