.contactShortcuts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 126px;
}

.floatingContact .contactShortcuts .contactShortcut {
  width: 126px;
  min-height: 46px;
  padding: 0 11px;
  border: 1px solid color-mix(in srgb, var(--shortcut-color) 72%, white 8%);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: color-mix(in srgb, var(--shortcut-color) 18%, #071018 82%);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px #0005, inset 0 0 22px color-mix(in srgb, var(--shortcut-color) 12%, transparent);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.floatingContact .contactShortcuts .contactShortcut:hover {
  transform: translateY(-2px);
  border-color: var(--shortcut-color);
  background: color-mix(in srgb, var(--shortcut-color) 28%, #071018 72%);
}

.contactShortcutIcon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 27px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--shortcut-color) 40%, transparent);
}

.contactShortcutIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contactShortcut--dingtalk .contactShortcutIcon {
  padding: 6px;
  background: var(--shortcut-color);
}

.contactShortcut--whatsapp { --shortcut-color: #25d366; }
.contactShortcut--telegram { --shortcut-color: #229ed9; }
.contactShortcut--dingtalk { --shortcut-color: #1677ff; }

@media (max-width: 900px) {
  .contactShortcuts {
    width: 48px;
    gap: 7px;
  }

  .floatingContact .contactShortcuts .contactShortcut {
    width: 48px;
    min-height: 48px;
    height: 48px;
    padding: 0;
    border-radius: 14px 0 0 14px;
    justify-content: center;
  }

  .contactShortcut > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
}
