@charset "UTF-8";
/*
 * Floating support widget (replaces the old .chat-with-us bubble, 2026-07-04).
 * Self-contained, scoped to .ck-help. Brand vars are scoped here (NOT :root) to
 * avoid colliding with theme globals. Font is inherited (Plus Jakarta Sans is
 * already enqueued site-wide) — no font import here.
 */
.ck-help {
  --ck-navy: #01234A;
  --ck-navy-2: #062D57;
  --ck-orange: #BD5B0B;
  --ck-text: #1D2C3A;
  --ck-soft: #637487;
  --ck-line: #E1E7EE;
  --ck-shadow: 0 20px 54px rgba(1, 35, 74, .23);
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
}

.ck-help * {
  box-sizing: border-box;
}

.ck-help-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px 0 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--ck-navy);
  border: 1px solid rgba(1, 35, 74, 0.12);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(1, 35, 74, 0.18), 0 6px 16px rgba(0, 0, 0, 0.08);
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.ck-help-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 35, 74, 0.2);
  box-shadow: 0 16px 38px rgba(1, 35, 74, 0.22), 0 8px 18px rgba(0, 0, 0, 0.1);
}

.ck-help-toggle-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ck-navy);
}

.ck-help-toggle .label {
  line-height: 1;
}

.ck-help-dot {
  position: absolute;
  right: 6px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #32D66B;
  border: 2px solid #fff;
}

.ck-help-card {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(350px, 100vw - 28px);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ck-shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.ck-help.is-open .ck-help-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ck-help-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 1px solid rgba(1, 35, 74, 0.08);
  border-bottom: 1px solid rgba(1, 35, 74, 0.08);
}

.ck-help-head {
  position: relative;
  padding: 17px 56px 17px 18px;
  color: #fff;
  background: radial-gradient(260px 120px at 80% 0%, rgba(255, 255, 255, 0.12), transparent 60%), linear-gradient(180deg, var(--ck-navy-2), var(--ck-navy));
}

.ck-help-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.ck-help-avatar {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 42%), rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.14);
}

.ck-help-avatar img {
  width: 41px;
  max-height: 41px;
  display: block;
  object-fit: contain;
}

.ck-help-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ck-help-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32D66B;
  box-shadow: 0 0 0 3px rgba(50, 214, 107, 0.17);
}

.ck-help-close {
  position: absolute;
  top: 29px;
  right: 16px;
  width: 31px;
  height: 31px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.ck-help-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ck-help-body {
  padding: 20px 20px 18px;
}

.ck-help-body .ck-help-title {
  color: var(--ck-text);
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.ck-help-body p {
  color: var(--ck-soft);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ck-help-actions {
  display: grid;
  gap: 10px;
}

.ck-help-action {
  min-height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
}

.ck-help-action:hover {
  transform: translateY(-1px);
}

.ck-help-action.primary {
  background: #063B78;
  color: #fff;
  box-shadow: 0 10px 22px rgba(6, 59, 120, 0.22);
}

.ck-help-action.primary:hover {
  background: #052F60;
}

.ck-help-action.secondary {
  background: #F3F6F9;
  color: var(--ck-navy);
  border: 1px solid var(--ck-line);
}

.ck-help-action.secondary:hover {
  background: #EDF2F6;
}

.ck-help-foot {
  padding: 0 20px 18px;
  color: #7A8795;
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 520px) {
  .ck-help {
    right: 14px;
    bottom: 14px;
  }
  .ck-help-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
  }
  .ck-help-toggle .label {
    display: none;
  }
  .ck-help-toggle-icon {
    width: 52px;
    height: 52px;
    background: #fff;
    color: var(--ck-navy);
  }
  .ck-help-head {
    padding: 16px 54px 16px 17px;
  }
  .ck-help-avatar {
    width: 54px;
    height: 54px;
  }
  .ck-help-avatar img {
    width: 39px;
    max-height: 39px;
  }
  .ck-help-brand {
    gap: 11px;
  }
  .ck-help-status {
    font-size: 12px;
    padding: 6px 9px;
  }
  .ck-help-close {
    top: 28px;
    right: 15px;
  }
}

/*# sourceMappingURL=chat-widget.css.map */
